Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • kernel/arch/amd64/include/mm/ptl.h

    r2ddcc7b rdf4ed85  
    2727 */
    2828
    29 /** @addtogroup amd64mm
     29/** @addtogroup amd64mm 
    3030 * @{
    3131 */
     
    3636#define KERN_amd64_PTL_H_
    3737
    38 #define PTL_NO_EXEC        (1 << 63)
    39 #define PTL_ACCESSED       (1 << 5)
    40 #define PTL_CACHE_DISABLE  (1 << 4)
    41 #define PTL_CACHE_THROUGH  (1 << 3)
    42 #define PTL_USER           (1 << 2)
    43 #define PTL_WRITABLE       (1 << 1)
    44 #define PTL_PRESENT        1
    45 #define PTL_2MB_PAGE       (1 << 7)
     38#define PTL_NO_EXEC       (1<<63)
     39#define PTL_ACCESSED      (1<<5)
     40#define PTL_CACHE_DISABLE (1<<4)
     41#define PTL_CACHE_THROUGH (1<<3)
     42#define PTL_USER          (1<<2)
     43#define PTL_WRITABLE      (1<<1)
     44#define PTL_PRESENT       1
     45#define PTL_2MB_PAGE      (1<<7)
    4646
    4747
Note: See TracChangeset for help on using the changeset viewer.