diff options
author | Ingo Molnar <mingo@elte.hu> | 2008-01-25 15:08:34 -0500 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2008-01-25 15:08:34 -0500 |
commit | 90739081ef8d5495d50abba9c5d333be9acd872a (patch) | |
tree | 37dc5c626940a4bad6d9ffad81b7be12dc44f054 /include/linux/sched.h | |
parent | 9745512ce79de686df354dc70a8d1a74d801892d (diff) |
softlockup: fix signedness
fix softlockup tunables signedness.
mark tunables read-mostly.
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'include/linux/sched.h')
-rw-r--r-- | include/linux/sched.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/linux/sched.h b/include/linux/sched.h index dfc76e172f3f..53534f90a96a 100644 --- a/include/linux/sched.h +++ b/include/linux/sched.h | |||
@@ -269,10 +269,10 @@ extern void softlockup_tick(void); | |||
269 | extern void spawn_softlockup_task(void); | 269 | extern void spawn_softlockup_task(void); |
270 | extern void touch_softlockup_watchdog(void); | 270 | extern void touch_softlockup_watchdog(void); |
271 | extern void touch_all_softlockup_watchdogs(void); | 271 | extern void touch_all_softlockup_watchdogs(void); |
272 | extern int softlockup_thresh; | 272 | extern unsigned long softlockup_thresh; |
273 | extern unsigned long sysctl_hung_task_check_count; | 273 | extern unsigned long sysctl_hung_task_check_count; |
274 | extern unsigned long sysctl_hung_task_timeout_secs; | 274 | extern unsigned long sysctl_hung_task_timeout_secs; |
275 | extern long sysctl_hung_task_warnings; | 275 | extern unsigned long sysctl_hung_task_warnings; |
276 | #else | 276 | #else |
277 | static inline void softlockup_tick(void) | 277 | static inline void softlockup_tick(void) |
278 | { | 278 | { |