]> Pileus Git - ~andy/linux/commitdiff
extable: Flip the sorting message
authorBorislav Petkov <bp@suse.de>
Mon, 15 Apr 2013 10:51:49 +0000 (12:51 +0200)
committerIngo Molnar <mingo@kernel.org>
Mon, 15 Apr 2013 11:25:16 +0000 (13:25 +0200)
Now that we do sort the __extable at build time, we actually are
interested only in the case where we still do need to sort it.

Signed-off-by: Borislav Petkov <bp@suse.de>
Cc: David Daney <david.daney@cavium.com>
Link: http://lkml.kernel.org/r/1366023109-12098-1-git-send-email-bp@alien8.de
Signed-off-by: Ingo Molnar <mingo@kernel.org>
kernel/extable.c

index fe35a634bf7695efd26856cf53e5d9bd9e14c357..67460b93b1a1cb8d60294cd90c2972ab97fd80e8 100644 (file)
@@ -41,10 +41,10 @@ u32 __initdata main_extable_sort_needed = 1;
 /* Sort the kernel's built-in exception table */
 void __init sort_main_extable(void)
 {
-       if (main_extable_sort_needed)
+       if (main_extable_sort_needed) {
+               pr_notice("Sorting __ex_table...\n");
                sort_extable(__start___ex_table, __stop___ex_table);
-       else
-               pr_notice("__ex_table already sorted, skipping sort\n");
+       }
 }
 
 /* Given an address, look for it in the exception tables. */