2019-06-01 11:08:20 +03:00
// SPDX-License-Identifier: GPL-2.0-only
2005-04-17 02:20:36 +04:00
/*
* hangcheck - timer . c
*
* Driver for a little io fencing timer .
*
2005-05-01 19:59:08 +04:00
* Copyright ( C ) 2002 , 2003 Oracle . All rights reserved .
2005-04-17 02:20:36 +04:00
*
* Author : Joel Becker < joel . becker @ oracle . com >
*/
/*
* The hangcheck - timer driver uses the TSC to catch delays that
* jiffies does not notice . A timer is set . When the timer fires , it
* checks whether it was delayed and if that delay exceeds a given
2008-02-03 18:11:42 +03:00
* margin of error . The hangcheck_tick module parameter takes the timer
2005-04-17 02:20:36 +04:00
* duration in seconds . The hangcheck_margin parameter defines the
* margin of error , in seconds . The defaults are 60 seconds for the
* timer and 180 seconds for the margin of error . IOW , a timer is set
* for 60 seconds . When the timer fires , the callback checks the
* actual duration that the timer waited . If the duration exceeds the
2017-03-24 00:41:04 +03:00
* allotted time and margin ( here 60 + 180 , or 240 seconds ) , the machine
2005-04-17 02:20:36 +04:00
* is restarted . A healthy machine will have the duration match the
* expected timeout very closely .
*/
# include <linux/module.h>
# include <linux/moduleparam.h>
# include <linux/types.h>
# include <linux/kernel.h>
# include <linux/fs.h>
# include <linux/mm.h>
# include <linux/reboot.h>
# include <linux/init.h>
2005-05-01 19:59:08 +04:00
# include <linux/delay.h>
2016-12-24 22:46:01 +03:00
# include <linux/uaccess.h>
2005-05-01 19:59:08 +04:00
# include <linux/sysrq.h>
Detach sched.h from mm.h
First thing mm.h does is including sched.h solely for can_do_mlock() inline
function which has "current" dereference inside. By dealing with can_do_mlock()
mm.h can be detached from sched.h which is good. See below, why.
This patch
a) removes unconditional inclusion of sched.h from mm.h
b) makes can_do_mlock() normal function in mm/mlock.c
c) exports can_do_mlock() to not break compilation
d) adds sched.h inclusions back to files that were getting it indirectly.
e) adds less bloated headers to some files (asm/signal.h, jiffies.h) that were
getting them indirectly
Net result is:
a) mm.h users would get less code to open, read, preprocess, parse, ... if
they don't need sched.h
b) sched.h stops being dependency for significant number of files:
on x86_64 allmodconfig touching sched.h results in recompile of 4083 files,
after patch it's only 3744 (-8.3%).
Cross-compile tested on
all arm defconfigs, all mips defconfigs, all powerpc defconfigs,
alpha alpha-up
arm
i386 i386-up i386-defconfig i386-allnoconfig
ia64 ia64-up
m68k
mips
parisc parisc-up
powerpc powerpc-up
s390 s390-up
sparc sparc-up
sparc64 sparc64-up
um-x86_64
x86_64 x86_64-up x86_64-defconfig x86_64-allnoconfig
as well as my two usual configs.
Signed-off-by: Alexey Dobriyan <adobriyan@gmail.com>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
2007-05-21 01:22:52 +04:00
# include <linux/timer.h>
2014-07-17 01:05:03 +04:00
# include <linux/hrtimer.h>
2005-04-17 02:20:36 +04:00
2010-05-25 01:33:02 +04:00
# define VERSION_STR "0.9.1"
2005-04-17 02:20:36 +04:00
# define DEFAULT_IOFENCE_MARGIN 60 /* Default fudge factor, in seconds */
# define DEFAULT_IOFENCE_TICK 180 /* Default timer timeout, in seconds */
static int hangcheck_tick = DEFAULT_IOFENCE_TICK ;
static int hangcheck_margin = DEFAULT_IOFENCE_MARGIN ;
static int hangcheck_reboot ; /* Defaults to not reboot */
2005-05-01 19:59:08 +04:00
static int hangcheck_dump_tasks ; /* Defaults to not dumping SysRQ T */
2005-04-17 02:20:36 +04:00
2005-05-01 19:59:08 +04:00
/* options - modular */
2005-04-17 02:20:36 +04:00
module_param ( hangcheck_tick , int , 0 ) ;
MODULE_PARM_DESC ( hangcheck_tick , " Timer delay. " ) ;
module_param ( hangcheck_margin , int , 0 ) ;
MODULE_PARM_DESC ( hangcheck_margin , " If the hangcheck timer has been delayed more than hangcheck_margin seconds, the driver will fire. " ) ;
module_param ( hangcheck_reboot , int , 0 ) ;
MODULE_PARM_DESC ( hangcheck_reboot , " If nonzero, the machine will reboot when the timer margin is exceeded. " ) ;
2005-05-01 19:59:08 +04:00
module_param ( hangcheck_dump_tasks , int , 0 ) ;
MODULE_PARM_DESC ( hangcheck_dump_tasks , " If nonzero, the machine will dump the system task state when the timer margin is exceeded. " ) ;
2005-04-17 02:20:36 +04:00
2005-05-01 19:59:08 +04:00
MODULE_AUTHOR ( " Oracle " ) ;
2005-04-17 02:20:36 +04:00
MODULE_DESCRIPTION ( " Hangcheck-timer detects when the system has gone out to lunch past a certain margin. " ) ;
MODULE_LICENSE ( " GPL " ) ;
2005-05-01 19:59:08 +04:00
MODULE_VERSION ( VERSION_STR ) ;
/* options - nonmodular */
# ifndef MODULE
static int __init hangcheck_parse_tick ( char * str )
{
int par ;
if ( get_option ( & str , & par ) )
hangcheck_tick = par ;
return 1 ;
}
static int __init hangcheck_parse_margin ( char * str )
{
int par ;
if ( get_option ( & str , & par ) )
hangcheck_margin = par ;
return 1 ;
}
static int __init hangcheck_parse_reboot ( char * str )
{
int par ;
if ( get_option ( & str , & par ) )
hangcheck_reboot = par ;
return 1 ;
}
static int __init hangcheck_parse_dump_tasks ( char * str )
{
int par ;
if ( get_option ( & str , & par ) )
hangcheck_dump_tasks = par ;
return 1 ;
}
__setup ( " hcheck_tick " , hangcheck_parse_tick ) ;
__setup ( " hcheck_margin " , hangcheck_parse_margin ) ;
__setup ( " hcheck_reboot " , hangcheck_parse_reboot ) ;
__setup ( " hcheck_dump_tasks " , hangcheck_parse_dump_tasks ) ;
# endif /* not MODULE */
2014-07-17 01:05:03 +04:00
# define TIMER_FREQ 1000000000ULL
2005-04-17 02:20:36 +04:00
/* Last time scheduled */
static unsigned long long hangcheck_tsc , hangcheck_tsc_margin ;
2017-08-28 21:28:21 +03:00
static void hangcheck_fire ( struct timer_list * ) ;
2005-04-17 02:20:36 +04:00
2017-10-05 02:27:04 +03:00
static DEFINE_TIMER ( hangcheck_ticktock , hangcheck_fire ) ;
2005-04-17 02:20:36 +04:00
2017-08-28 21:28:21 +03:00
static void hangcheck_fire ( struct timer_list * unused )
2005-04-17 02:20:36 +04:00
{
unsigned long long cur_tsc , tsc_diff ;
2014-07-17 01:05:03 +04:00
cur_tsc = ktime_get_ns ( ) ;
2005-04-17 02:20:36 +04:00
if ( cur_tsc > hangcheck_tsc )
tsc_diff = cur_tsc - hangcheck_tsc ;
else
tsc_diff = ( cur_tsc + ( ~ 0ULL - hangcheck_tsc ) ) ; /* or something */
if ( tsc_diff > hangcheck_tsc_margin ) {
2005-05-01 19:59:08 +04:00
if ( hangcheck_dump_tasks ) {
printk ( KERN_CRIT " Hangcheck: Task state: \n " ) ;
# ifdef CONFIG_MAGIC_SYSRQ
2010-08-18 08:15:47 +04:00
handle_sysrq ( ' t ' ) ;
2005-05-01 19:59:08 +04:00
# endif /* CONFIG_MAGIC_SYSRQ */
}
2005-04-17 02:20:36 +04:00
if ( hangcheck_reboot ) {
printk ( KERN_CRIT " Hangcheck: hangcheck is restarting the machine. \n " ) ;
2005-07-26 21:55:59 +04:00
emergency_restart ( ) ;
2005-04-17 02:20:36 +04:00
} else {
printk ( KERN_CRIT " Hangcheck: hangcheck value past margin! \n " ) ;
}
}
2010-05-25 01:33:02 +04:00
#if 0
/*
* Enable to investigate delays in detail
*/
printk ( " Hangcheck: called %Ld ns since last time (%Ld ns overshoot) \n " ,
tsc_diff , tsc_diff - hangcheck_tick * TIMER_FREQ ) ;
# endif
2005-04-17 02:20:36 +04:00
mod_timer ( & hangcheck_ticktock , jiffies + ( hangcheck_tick * HZ ) ) ;
2014-07-17 01:05:03 +04:00
hangcheck_tsc = ktime_get_ns ( ) ;
2005-04-17 02:20:36 +04:00
}
static int __init hangcheck_init ( void )
{
printk ( " Hangcheck: starting hangcheck timer %s (tick is %d seconds, margin is %d seconds). \n " ,
VERSION_STR , hangcheck_tick , hangcheck_margin ) ;
2005-05-01 19:59:08 +04:00
hangcheck_tsc_margin =
2014-10-29 11:42:50 +03:00
( unsigned long long ) hangcheck_margin + hangcheck_tick ;
hangcheck_tsc_margin * = TIMER_FREQ ;
2005-04-17 02:20:36 +04:00
2014-07-17 01:05:03 +04:00
hangcheck_tsc = ktime_get_ns ( ) ;
2005-04-17 02:20:36 +04:00
mod_timer ( & hangcheck_ticktock , jiffies + ( hangcheck_tick * HZ ) ) ;
return 0 ;
}
static void __exit hangcheck_exit ( void )
{
del_timer_sync ( & hangcheck_ticktock ) ;
2005-05-01 19:59:08 +04:00
printk ( " Hangcheck: Stopped hangcheck timer. \n " ) ;
2005-04-17 02:20:36 +04:00
}
module_init ( hangcheck_init ) ;
module_exit ( hangcheck_exit ) ;