Changeset cfd6efd2 in mainline for arch/amd64/include/mm/page.h


Ignore:
Timestamp:
2005-08-24T12:33:38Z (20 years ago)
Author:
Ondrej Palkovsky <ondrap@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
361635c
Parents:
6e787c4
Message:

Do not allow red area on stack in kernel mode.
Small updates for AMD64 memory layout.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • arch/amd64/include/mm/page.h

    r6e787c4 rcfd6efd2  
    3636#define PAGE_SIZE       FRAME_SIZE
    3737
    38 #define KA2PA(x)        (((__address) (x)) - 0x80000000)
    39 #define PA2KA(x)        (((__address) (x)) + 0x80000000)
     38#define KA2PA(x)        (((__address) (x)) + 0x80000000)
     39#define PA2KA(x)        (((__address) (x)) - 0x80000000)
    4040
    4141#define PTL0_INDEX_ARCH(vaddr)          0
Note: See TracChangeset for help on using the changeset viewer.