Gitweb:     
http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=edcd81199dbad5db11ae91b507cec1d46dd94a49
Commit:     edcd81199dbad5db11ae91b507cec1d46dd94a49
Parent:     27cc2a812eb504f4aadff5baa862da715fb0f886
Author:     Harvey Harrison <[EMAIL PROTECTED]>
AuthorDate: Wed Jan 30 13:33:16 2008 +0100
Committer:  Ingo Molnar <[EMAIL PROTECTED]>
CommitDate: Wed Jan 30 13:33:16 2008 +0100

    x86: unify printk strings in fault_32|64.c
    
    Adding the address of the faulting library missed removing a
    line ending from X86_32.
    
    Also update the shorter printk format for X86_32 in fault_64.c
    to make it easier to se the remaining differences.
    
    Signed-off-by: Harvey Harrison <[EMAIL PROTECTED]>
    Signed-off-by: Ingo Molnar <[EMAIL PROTECTED]>
    Signed-off-by: Thomas Gleixner <[EMAIL PROTECTED]>
---
 arch/x86/mm/fault_32.c |    2 +-
 arch/x86/mm/fault_64.c |    2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/arch/x86/mm/fault_32.c b/arch/x86/mm/fault_32.c
index 71c722b..13d2955 100644
--- a/arch/x86/mm/fault_32.c
+++ b/arch/x86/mm/fault_32.c
@@ -512,7 +512,7 @@ bad_area_nosemaphore:
                    printk_ratelimit()) {
                        printk(
 #ifdef CONFIG_X86_32
-                       "%s%s[%d]: segfault at %lx ip %08lx sp %08lx error 
%lx\n",
+                       "%s%s[%d]: segfault at %lx ip %08lx sp %08lx error %lx",
 #else
                        "%s%s[%d]: segfault at %lx ip %lx sp %lx error %lx\n",
 #endif
diff --git a/arch/x86/mm/fault_64.c b/arch/x86/mm/fault_64.c
index 75b7b16..b606bde 100644
--- a/arch/x86/mm/fault_64.c
+++ b/arch/x86/mm/fault_64.c
@@ -550,7 +550,7 @@ bad_area_nosemaphore:
                    printk_ratelimit()) {
                        printk(
 #ifdef CONFIG_X86_32
-                       "%s%s[%d]: segfault at %08lx ip %08lx sp %08lx error 
%lx\n",
+                       "%s%s[%d]: segfault at %lx ip %08lx sp %08lx error %lx",
 #else
                        "%s%s[%d]: segfault at %lx ip %lx sp %lx error %lx\n",
 #endif
-
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