Home
last modified time | relevance | path

Searched refs:s_err_report_sec (Results 1 – 3 of 3) sorted by relevance

/linux/fs/ext4/
H A Dsysfs.c148 if (sbi->s_err_report_sec == t) /*nothing to do*/ in err_report_sec_store()
150 else if (!sbi->s_err_report_sec && t) { in err_report_sec_store()
152 } else if (sbi->s_err_report_sec && !t) { in err_report_sec_store()
157 sbi->s_err_report_sec = t; in err_report_sec_store()
158 mod_timer(&sbi->s_err_report, jiffies + secs_to_jiffies(sbi->s_err_report_sec)); in err_report_sec_store()
251 EXT4_ATTR_OFFSET(err_report_sec, 0644, err_report_sec, ext4_sb_info, s_err_report_sec);
H A Dsuper.c3719 if (sbi->s_err_report_sec) in print_daily_error_info()
3720 mod_timer(&sbi->s_err_report, jiffies + secs_to_jiffies(sbi->s_err_report_sec)); in print_daily_error_info()
5717 sbi->s_err_report_sec = 5*60; /* first time 5 minutes */ in __ext4_fill_super()
5719 jiffies + secs_to_jiffies(sbi->s_err_report_sec)); in __ext4_fill_super()
5721 sbi->s_err_report_sec = 24*60*60; /* Once a day */ in __ext4_fill_super()
6269 if (!es->s_error_count && !sbi->s_err_report_sec) in ext4_update_super()
6271 jiffies + secs_to_jiffies(sbi->s_err_report_sec)); in ext4_update_super()
H A Dext4.h1684 unsigned long s_err_report_sec; member