Gitweb:     
http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=8a19da7b7f16d8360e39035f6ab96686e835522b
Commit:     8a19da7b7f16d8360e39035f6ab96686e835522b
Parent:     8c1c9356429741a82ff176d0f3400fb9e06b2a30
Author:     Ingo Molnar <[EMAIL PROTECTED]>
AuthorDate: Wed Jan 30 13:32:53 2008 +0100
Committer:  Ingo Molnar <[EMAIL PROTECTED]>
CommitDate: Wed Jan 30 13:32:53 2008 +0100

    x86: clean up arch/x86/mm/fault_64.c
    
    clean up arch/x86/mm/fault_64.c a bit.
    
    Signed-off-by: Ingo Molnar <[EMAIL PROTECTED]>
    Signed-off-by: Thomas Gleixner <[EMAIL PROTECTED]>
---
 arch/x86/mm/fault_64.c |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/arch/x86/mm/fault_64.c b/arch/x86/mm/fault_64.c
index dcf430b..058b04c 100644
--- a/arch/x86/mm/fault_64.c
+++ b/arch/x86/mm/fault_64.c
@@ -39,10 +39,10 @@
  *     bit 3 == 1 means use of reserved bit detected
  *     bit 4 == 1 means fault was an instruction fetch
  */
-#define PF_PROT        (1<<0)
+#define PF_PROT                (1<<0)
 #define PF_WRITE       (1<<1)
-#define PF_USER        (1<<2)
-#define PF_RSVD        (1<<3)
+#define PF_USER                (1<<2)
+#define PF_RSVD                (1<<3)
 #define PF_INSTR       (1<<4)
 
 static inline int notify_page_fault(struct pt_regs *regs)
-
To unsubscribe from this list: send the line "unsubscribe git-commits-head" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to