Changeset 6be2c13 in mainline for kernel/generic/include/mm/mm.h
- Timestamp:
- 2018-03-16T20:58:20Z (7 years ago)
- Parents:
- 973be387 (diff), 4b1c7c6f (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - git-author:
- Jiří Zárevúcky <zarevucky.jiri@…> (2018-03-16 20:58:20)
- git-committer:
- GitHub <noreply@…> (2018-03-16 20:58:20)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/generic/include/mm/mm.h
r973be387 r6be2c13 37 37 38 38 #define PAGE_CACHEABLE_SHIFT 0 39 #define PAGE_NOT_CACHEABLE_SHIFT PAGE_CACHEABLE_SHIFT 40 #define PAGE_PRESENT_SHIFT 1 41 #define PAGE_NOT_PRESENT_SHIFT PAGE_PRESENT_SHIFT 39 #define PAGE_NOT_PRESENT_SHIFT 1 42 40 #define PAGE_USER_SHIFT 2 43 #define PAGE_KERNEL_SHIFT PAGE_USER_SHIFT44 #define PAGE_READ_SHIFT 345 41 #define PAGE_WRITE_SHIFT 4 46 42 #define PAGE_EXEC_SHIFT 5 47 43 #define PAGE_GLOBAL_SHIFT 6 48 44 49 #define PAGE_NOT_CACHEABLE (0 << PAGE_CACHEABLE_SHIFT)50 45 #define PAGE_CACHEABLE (1 << PAGE_CACHEABLE_SHIFT) 51 52 #define PAGE_PRESENT (0 << PAGE_PRESENT_SHIFT) 53 #define PAGE_NOT_PRESENT (1 << PAGE_PRESENT_SHIFT) 54 46 #define PAGE_NOT_PRESENT (1 << PAGE_NOT_PRESENT_SHIFT) 55 47 #define PAGE_USER (1 << PAGE_USER_SHIFT) 56 #define PAGE_KERNEL (0 << PAGE_USER_SHIFT)57 58 #define PAGE_READ (1 << PAGE_READ_SHIFT)59 48 #define PAGE_WRITE (1 << PAGE_WRITE_SHIFT) 60 49 #define PAGE_EXEC (1 << PAGE_EXEC_SHIFT) 61 62 50 #define PAGE_GLOBAL (1 << PAGE_GLOBAL_SHIFT) 63 51
Note:
See TracChangeset
for help on using the changeset viewer.