[PATCH] remove pointless test of task == NULL from i386 dump_trace()

From: Jesper Juhl
Date: Wed Nov 01 2006 - 18:16:34 EST


In arch/i386/kernel/traps.c::dump_trace() there's a line that reads
if (task && task != current)
but at the start of the function we have
if (!task)
task = current;
So 'task' will never be NULL (since 'current' will never be NULL unless
I'm very much mistaken). Which renders the test of 'task == NULL' utter
pointless.

Removing the check should provide a microscopic speedup due to a saved
cycle or two and in addition it certainly does save a few bytes of .text
for traps.o :

before:
text data bss dec hex filename
11887 2284 52 14223 378f arch/i386/kernel/traps.o
after:
text data bss dec hex filename
11871 2284 52 14207 377f arch/i386/kernel/traps.o


Signed-off-by: Jesper Juhl <jesper.juhl@xxxxxxxxx>
---

diff --git a/arch/i386/kernel/traps.c b/arch/i386/kernel/traps.c
index 00489b7..6355ce1 100644
--- a/arch/i386/kernel/traps.c
+++ b/arch/i386/kernel/traps.c
@@ -214,7 +214,7 @@ void dump_trace(struct task_struct *task
if (!stack) {
unsigned long dummy;
stack = &dummy;
- if (task && task != current)
+ if (task != current)
stack = (unsigned long *)task->thread.esp;
}


-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/