提交 451637e4 编写于 作者: Y Yaowei Bai 提交者: Linus Torvalds

kernel/watchdog.c: is_hardlockup can be boolean

Make is_hardlockup return bool to improve readability due to this
particular function only using either one or zero as its return value.

No functional change.
Signed-off-by: NYaowei Bai <bywxiaobai@163.com>
Reviewed-by: NAaron Tomlin <atomlin@redhat.com>
Acked-by: NDon Zickus <dzickus@redhat.com>
Signed-off-by: NAndrew Morton <akpm@linux-foundation.org>
Signed-off-by: NLinus Torvalds <torvalds@linux-foundation.org>
上级 b6478740
...@@ -263,15 +263,15 @@ void touch_softlockup_watchdog_sync(void) ...@@ -263,15 +263,15 @@ void touch_softlockup_watchdog_sync(void)
#ifdef CONFIG_HARDLOCKUP_DETECTOR #ifdef CONFIG_HARDLOCKUP_DETECTOR
/* watchdog detector functions */ /* watchdog detector functions */
static int is_hardlockup(void) static bool is_hardlockup(void)
{ {
unsigned long hrint = __this_cpu_read(hrtimer_interrupts); unsigned long hrint = __this_cpu_read(hrtimer_interrupts);
if (__this_cpu_read(hrtimer_interrupts_saved) == hrint) if (__this_cpu_read(hrtimer_interrupts_saved) == hrint)
return 1; return true;
__this_cpu_write(hrtimer_interrupts_saved, hrint); __this_cpu_write(hrtimer_interrupts_saved, hrint);
return 0; return false;
} }
#endif #endif
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册