diff options
author | Mandeep Singh Baines <msb@google.com> | 2009-01-16 12:09:38 -0500 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2009-01-16 12:17:34 -0500 |
commit | af432eb1cc3178ec7109aca2283aafb1c12ccac1 (patch) | |
tree | 32b290ae6c1f07667b7e6044cc94e4efee58edfc | |
parent | e162b39a368f0401e41b558f430c354d12a85b37 (diff) |
softlockup: fix to allow compiling with !DETECT_HUNG_TASK
Fixes the following compile error:
kernel/fork.c:1049: error: 'struct task_struct' has no member named 'last_switch_count'
kernel/fork.c:1050: error: 'struct task_struct' has no member named 'last_switch_timestamp'
Signed-off-by: Mandeep Singh Baines <msb@google.com>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
-rw-r--r-- | kernel/fork.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kernel/fork.c b/kernel/fork.c index 1d68f1255dd8..fb9444282836 100644 --- a/kernel/fork.c +++ b/kernel/fork.c | |||
@@ -1041,7 +1041,7 @@ static struct task_struct *copy_process(unsigned long clone_flags, | |||
1041 | 1041 | ||
1042 | p->default_timer_slack_ns = current->timer_slack_ns; | 1042 | p->default_timer_slack_ns = current->timer_slack_ns; |
1043 | 1043 | ||
1044 | #ifdef CONFIG_DETECT_SOFTLOCKUP | 1044 | #ifdef CONFIG_DETECT_HUNG_TASK |
1045 | p->last_switch_count = 0; | 1045 | p->last_switch_count = 0; |
1046 | p->last_switch_timestamp = 0; | 1046 | p->last_switch_timestamp = 0; |
1047 | #endif | 1047 | #endif |