|
|
@@ -263,15 +263,15 @@ void touch_softlockup_watchdog_sync(void)
|
|
|
|
|
|
#ifdef CONFIG_HARDLOCKUP_DETECTOR
|
|
|
/* watchdog detector functions */
|
|
|
-static int is_hardlockup(void)
|
|
|
+static bool is_hardlockup(void)
|
|
|
{
|
|
|
unsigned long hrint = __this_cpu_read(hrtimer_interrupts);
|
|
|
|
|
|
if (__this_cpu_read(hrtimer_interrupts_saved) == hrint)
|
|
|
- return 1;
|
|
|
+ return true;
|
|
|
|
|
|
__this_cpu_write(hrtimer_interrupts_saved, hrint);
|
|
|
- return 0;
|
|
|
+ return false;
|
|
|
}
|
|
|
#endif
|
|
|
|