Skip to content

Commit

Permalink
kernel/watchdog.c: is_hardlockup can be boolean
Browse files Browse the repository at this point in the history
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: Yaowei Bai <bywxiaobai@163.com>
Reviewed-by: Aaron Tomlin <atomlin@redhat.com>
Acked-by: Don Zickus <dzickus@redhat.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
  • Loading branch information
baihuahua authored and torvalds committed Nov 6, 2015
1 parent b647874 commit 451637e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions kernel/watchdog.c
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down

0 comments on commit 451637e

Please sign in to comment.