From 3dc06a14a120800ca38e4027f11c24421d2434dc Mon Sep 17 00:00:00 2001 From: Jiri Slaby Date: Sat, 22 Mar 2008 18:50:22 +0100 Subject: [PATCH] --- yaml --- r: 89055 b: refs/heads/master c: 43cdf5d6e0a75c1069adc8d126b97b792ff53142 h: refs/heads/master i: 89053: 4b3a012d6834b06497ba58233c8332d8352a78b2 89051: 705274f028f6f5a5478a19a80e9a4fbbe4b0d5d7 89047: 8d9e6789bddf0cba5553ac88f85282fe15ca839d 89039: d8ce118a082e1c606c00c0ebdf327b1e8b405fa8 89023: eb7ec47aa0ef1d142b117fdf95ddb4eba8e8e9fa v: v3 --- [refs] | 2 +- trunk/include/asm-x86/pgtable.h | 14 +++++++------- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/[refs] b/[refs] index a04fd383dd1f..ca83645e8369 100644 --- a/[refs] +++ b/[refs] @@ -1,2 +1,2 @@ --- -refs/heads/master: 7fda20f146d5d217684ffbc37c6b6c5f82c2dffd +refs/heads/master: 43cdf5d6e0a75c1069adc8d126b97b792ff53142 diff --git a/trunk/include/asm-x86/pgtable.h b/trunk/include/asm-x86/pgtable.h index 2ce765070464..f1d9f4a03f6f 100644 --- a/trunk/include/asm-x86/pgtable.h +++ b/trunk/include/asm-x86/pgtable.h @@ -4,13 +4,13 @@ #define USER_PTRS_PER_PGD ((TASK_SIZE-1)/PGDIR_SIZE+1) #define FIRST_USER_ADDRESS 0 -#define _PAGE_BIT_PRESENT 0 -#define _PAGE_BIT_RW 1 -#define _PAGE_BIT_USER 2 -#define _PAGE_BIT_PWT 3 -#define _PAGE_BIT_PCD 4 -#define _PAGE_BIT_ACCESSED 5 -#define _PAGE_BIT_DIRTY 6 +#define _PAGE_BIT_PRESENT 0 /* is present */ +#define _PAGE_BIT_RW 1 /* writeable */ +#define _PAGE_BIT_USER 2 /* userspace addressable */ +#define _PAGE_BIT_PWT 3 /* page write through */ +#define _PAGE_BIT_PCD 4 /* page cache disabled */ +#define _PAGE_BIT_ACCESSED 5 /* was accessed (raised by CPU) */ +#define _PAGE_BIT_DIRTY 6 /* was written to (raised by CPU) */ #define _PAGE_BIT_FILE 6 #define _PAGE_BIT_PSE 7 /* 4 MB (or 2MB) page */ #define _PAGE_BIT_PAT 7 /* on 4KB pages */