diff options
author | Don Zickus <dzickus@redhat.com> | 2010-05-07 17:11:45 -0400 |
---|---|---|
committer | Frederic Weisbecker <fweisbec@gmail.com> | 2010-05-12 17:55:43 -0400 |
commit | 332fbdbca3f7716c5620970755ae054d213bcc4e (patch) | |
tree | ce6fe479c9b362fab1ce9530a0f6545d9f79025d /include/linux/sched.h | |
parent | 58687acba59266735adb8ccd9b5b9aa2c7cd205b (diff) |
lockup_detector: Touch_softlockup cleanups and softlockup_tick removal
Just some code cleanup to make touch_softlockup clearer and remove the
softlockup_tick function as it is no longer needed.
Also remove the /proc softlockup_thres call as it has been changed to
watchdog_thres.
Signed-off-by: Don Zickus <dzickus@redhat.com>
Cc: Ingo Molnar <mingo@elte.hu>
Cc: Peter Zijlstra <peterz@infradead.org>
Cc: Cyrill Gorcunov <gorcunov@gmail.com>
Cc: Eric Paris <eparis@redhat.com>
Cc: Randy Dunlap <randy.dunlap@oracle.com>
LKML-Reference: <1273266711-18706-3-git-send-email-dzickus@redhat.com>
Signed-off-by: Frederic Weisbecker <fweisbec@gmail.com>
Diffstat (limited to 'include/linux/sched.h')
-rw-r--r-- | include/linux/sched.h | 16 |
1 files changed, 3 insertions, 13 deletions
diff --git a/include/linux/sched.h b/include/linux/sched.h index 37efe8fa530..33f9b2ad0bb 100644 --- a/include/linux/sched.h +++ b/include/linux/sched.h | |||
@@ -312,19 +312,15 @@ extern void scheduler_tick(void); | |||
312 | extern void sched_show_task(struct task_struct *p); | 312 | extern void sched_show_task(struct task_struct *p); |
313 | 313 | ||
314 | #ifdef CONFIG_DETECT_SOFTLOCKUP | 314 | #ifdef CONFIG_DETECT_SOFTLOCKUP |
315 | extern void softlockup_tick(void); | ||
316 | extern void touch_softlockup_watchdog(void); | 315 | extern void touch_softlockup_watchdog(void); |
317 | extern void touch_softlockup_watchdog_sync(void); | 316 | extern void touch_softlockup_watchdog_sync(void); |
318 | extern void touch_all_softlockup_watchdogs(void); | 317 | extern void touch_all_softlockup_watchdogs(void); |
319 | extern int proc_dosoftlockup_thresh(struct ctl_table *table, int write, | 318 | extern int proc_dowatchdog_thresh(struct ctl_table *table, int write, |
320 | void __user *buffer, | 319 | void __user *buffer, |
321 | size_t *lenp, loff_t *ppos); | 320 | size_t *lenp, loff_t *ppos); |
322 | extern unsigned int softlockup_panic; | 321 | extern unsigned int softlockup_panic; |
323 | extern int softlockup_thresh; | 322 | extern int softlockup_thresh; |
324 | #else | 323 | #else |
325 | static inline void softlockup_tick(void) | ||
326 | { | ||
327 | } | ||
328 | static inline void touch_softlockup_watchdog(void) | 324 | static inline void touch_softlockup_watchdog(void) |
329 | { | 325 | { |
330 | } | 326 | } |
@@ -346,12 +342,6 @@ extern int proc_dohung_task_timeout_secs(struct ctl_table *table, int write, | |||
346 | size_t *lenp, loff_t *ppos); | 342 | size_t *lenp, loff_t *ppos); |
347 | #endif | 343 | #endif |
348 | 344 | ||
349 | #ifdef CONFIG_LOCKUP_DETECTOR | ||
350 | extern int proc_dowatchdog_thresh(struct ctl_table *table, int write, | ||
351 | void __user *buffer, | ||
352 | size_t *lenp, loff_t *ppos); | ||
353 | #endif | ||
354 | |||
355 | /* Attach to any functions which should be ignored in wchan output. */ | 345 | /* Attach to any functions which should be ignored in wchan output. */ |
356 | #define __sched __attribute__((__section__(".sched.text"))) | 346 | #define __sched __attribute__((__section__(".sched.text"))) |
357 | 347 | ||