tag | line | file | source code |
PAGE_ACCESSED | 145 | include/linux/mm.h | #define PAGE_PRIVATE (PAGE_PRESENT | PAGE_RW | PAGE_USER | PAGE_ACCESSED | PAGE_COW) |
PAGE_ACCESSED | 146 | include/linux/mm.h | #define PAGE_SHARED (PAGE_PRESENT | PAGE_RW | PAGE_USER | PAGE_ACCESSED) |
PAGE_ACCESSED | 147 | include/linux/mm.h | #define PAGE_COPY (PAGE_PRESENT | PAGE_USER | PAGE_ACCESSED | PAGE_COW) |
PAGE_ACCESSED | 148 | include/linux/mm.h | #define PAGE_READONLY (PAGE_PRESENT | PAGE_USER | PAGE_ACCESSED) |
PAGE_ACCESSED | 149 | include/linux/mm.h | #define PAGE_TABLE (PAGE_PRESENT | PAGE_RW | PAGE_USER | PAGE_ACCESSED) |
PAGE_ACCESSED | 227 | mm/swap.c | if (PAGE_ACCESSED & page) { |
PAGE_ACCESSED | 228 | mm/swap.c | *table_ptr &= ~PAGE_ACCESSED; |