Skip to content

Commit

Permalink
watchdog: rename watchdog_suspend() and watchdog_resume()
Browse files Browse the repository at this point in the history
Rename watchdog_suspend() to lockup_detector_suspend() and
watchdog_resume() to lockup_detector_resume() to avoid confusion with the
watchdog subsystem and to be consistent with the existing name
lockup_detector_init().

Also provide comment blocks to explain the watchdog_running and
watchdog_suspended variables and their relationship.

Signed-off-by: Ulrich Obergfell <[email protected]>
Reviewed-by: Aaron Tomlin <[email protected]>
Cc: Guenter Roeck <[email protected]>
Cc: Don Zickus <[email protected]>
Cc: Ulrich Obergfell <[email protected]>
Cc: Jiri Olsa <[email protected]>
Cc: Michal Hocko <[email protected]>
Cc: Stephane Eranian <[email protected]>
Cc: Chris Metcalf <[email protected]>
Cc: Frederic Weisbecker <[email protected]>
Cc: Peter Zijlstra <[email protected]>
Cc: Ingo Molnar <[email protected]>
Signed-off-by: Andrew Morton <[email protected]>
Signed-off-by: Linus Torvalds <[email protected]>
  • Loading branch information
rh-ulrich-o authored and torvalds committed Sep 4, 2015
1 parent 999bbe4 commit ec6a906
Show file tree
Hide file tree
Showing 3 changed files with 28 additions and 10 deletions.
4 changes: 2 additions & 2 deletions arch/x86/kernel/cpu/perf_event_intel.c
Original file line number Diff line number Diff line change
Expand Up @@ -3627,7 +3627,7 @@ static __init int fixup_ht_bug(void)
return 0;
}

if (watchdog_suspend() != 0) {
if (lockup_detector_suspend() != 0) {
pr_debug("failed to disable PMU erratum BJ122, BV98, HSD29 workaround\n");
return 0;
}
Expand All @@ -3638,7 +3638,7 @@ static __init int fixup_ht_bug(void)
x86_pmu.commit_scheduling = NULL;
x86_pmu.stop_scheduling = NULL;

watchdog_resume();
lockup_detector_resume();

get_online_cpus();

Expand Down
8 changes: 4 additions & 4 deletions include/linux/nmi.h
Original file line number Diff line number Diff line change
Expand Up @@ -78,15 +78,15 @@ extern int proc_watchdog_thresh(struct ctl_table *, int ,
void __user *, size_t *, loff_t *);
extern int proc_watchdog_cpumask(struct ctl_table *, int,
void __user *, size_t *, loff_t *);
extern int watchdog_suspend(void);
extern void watchdog_resume(void);
extern int lockup_detector_suspend(void);
extern void lockup_detector_resume(void);
#else
static inline int watchdog_suspend(void)
static inline int lockup_detector_suspend(void)
{
return 0;
}

static inline void watchdog_resume(void)
static inline void lockup_detector_resume(void)
{
}
#endif
Expand Down
26 changes: 22 additions & 4 deletions kernel/watchdog.c
Original file line number Diff line number Diff line change
Expand Up @@ -67,8 +67,26 @@ unsigned long *watchdog_cpumask_bits = cpumask_bits(&watchdog_cpumask);
#define for_each_watchdog_cpu(cpu) \
for_each_cpu_and((cpu), cpu_online_mask, &watchdog_cpumask)

static int __read_mostly watchdog_suspended;
/*
* The 'watchdog_running' variable is set to 1 when the watchdog threads
* are registered/started and is set to 0 when the watchdog threads are
* unregistered/stopped, so it is an indicator whether the threads exist.
*/
static int __read_mostly watchdog_running;
/*
* If a subsystem has a need to deactivate the watchdog temporarily, it
* can use the suspend/resume interface to achieve this. The content of
* the 'watchdog_suspended' variable reflects this state. Existing threads
* are parked/unparked by the lockup_detector_{suspend|resume} functions
* (see comment blocks pertaining to those functions for further details).
*
* 'watchdog_suspended' also prevents threads from being registered/started
* or unregistered/stopped via parameters in /proc/sys/kernel, so the state
* of 'watchdog_running' cannot change while the watchdog is deactivated
* temporarily (see related code in 'proc' handlers).
*/
static int __read_mostly watchdog_suspended;

static u64 __read_mostly sample_period;

static DEFINE_PER_CPU(unsigned long, watchdog_touch_ts);
Expand Down Expand Up @@ -669,7 +687,7 @@ static void watchdog_unpark_threads(void)
/*
* Suspend the hard and soft lockup detector by parking the watchdog threads.
*/
int watchdog_suspend(void)
int lockup_detector_suspend(void)
{
int ret = 0;

Expand All @@ -679,7 +697,7 @@ int watchdog_suspend(void)
* the 'watchdog_suspended' variable). If the watchdog threads are
* running, the first caller takes care that they will be parked.
* The state of 'watchdog_running' cannot change while a suspend
* request is active (see related changes in 'proc' handlers).
* request is active (see related code in 'proc' handlers).
*/
if (watchdog_running && !watchdog_suspended)
ret = watchdog_park_threads();
Expand All @@ -695,7 +713,7 @@ int watchdog_suspend(void)
/*
* Resume the hard and soft lockup detector by unparking the watchdog threads.
*/
void watchdog_resume(void)
void lockup_detector_resume(void)
{
mutex_lock(&watchdog_proc_mutex);

Expand Down

0 comments on commit ec6a906

Please sign in to comment.