diff options
| -rw-r--r-- | kernel/watchdog.c | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/kernel/watchdog.c b/kernel/watchdog.c index 84c4744d1977..18f34cf75f74 100644 --- a/kernel/watchdog.c +++ b/kernel/watchdog.c @@ -289,7 +289,7 @@ static int is_softlockup(unsigned long touch_ts)  {  	unsigned long now = get_timestamp(); -	if (watchdog_enabled & SOFT_WATCHDOG_ENABLED) { +	if ((watchdog_enabled & SOFT_WATCHDOG_ENABLED) && watchdog_thresh){  		/* Warn about unreasonable delays. */  		if (time_after(now, touch_ts + get_softlockup_thresh()))  			return now - touch_ts; | 
