[patch] profiling: fix sched profiling typo

From: Ingo Molnar
Date: Tue Jan 02 2007 - 18:40:44 EST


Subject: [patch] profiling: fix sched profiling typo
From: Ingo Molnar <mingo@xxxxxxx>

fix sched profiling typo, introduced by the sleep profiling patch. This
bug caused profile=sched to not work.

Signed-off-by: Ingo Molnar <mingo@xxxxxxx>
---
kernel/profile.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)

Index: linux/kernel/profile.c
===================================================================
--- linux.orig/kernel/profile.c
+++ linux/kernel/profile.c
@@ -64,7 +64,7 @@ static int __init profile_setup(char * s
printk(KERN_INFO
"kernel sleep profiling enabled (shift: %ld)\n",
prof_shift);
- } else if (!strncmp(str, sleepstr, strlen(sleepstr))) {
+ } else if (!strncmp(str, schedstr, strlen(schedstr))) {
prof_on = SCHED_PROFILING;
if (str[strlen(schedstr)] == ',')
str += strlen(schedstr) + 1;
-
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/