diff options
author | Borislav Petkov <[email protected]> | 2013-04-15 12:51:49 +0200 |
---|---|---|
committer | Ingo Molnar <[email protected]> | 2013-04-15 13:25:16 +0200 |
commit | bec1b9e76353ecf05fac6a87f8e4102dfb618cd2 (patch) | |
tree | 8bf569a85520ed83278a4f3b93d88d156b402425 | |
parent | 41ef2d5678d83af030125550329b6ae8b74618fa (diff) |
extable: Flip the sorting message
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 <[email protected]>
Cc: David Daney <[email protected]>
Link: http://lkml.kernel.org/r/[email protected]
Signed-off-by: Ingo Molnar <[email protected]>
-rw-r--r-- | kernel/extable.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/kernel/extable.c b/kernel/extable.c index fe35a634bf76..67460b93b1a1 100644 --- a/kernel/extable.c +++ b/kernel/extable.c @@ -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. */ |