Hi,
periodically I’ve this message in my kernel. Does someone know what is it ?
I found that:
/*
* Check the amount of free space and suspend/resume accordingly.
*/
static int [check_free_space](http://elixir.free-electrons.com/linux/latest/ident/check_free_space)(struct [bsd_acct_struct](http://elixir.free-electrons.com/linux/latest/ident/bsd_acct_struct) *[acct](http://elixir.free-electrons.com/linux/latest/ident/acct))
{
struct [kstatfs](http://elixir.free-electrons.com/linux/latest/ident/kstatfs) sbuf;
if ([time_is_before_jiffies](http://elixir.free-electrons.com/linux/latest/ident/time_is_before_jiffies)([acct](http://elixir.free-electrons.com/linux/latest/ident/acct)->needcheck))
goto out;
/* May block */
if ([vfs_statfs](http://elixir.free-electrons.com/linux/latest/ident/vfs_statfs)(&[acct](http://elixir.free-electrons.com/linux/latest/ident/acct)->file->f_path, &sbuf))
goto out;
if ([acct](http://elixir.free-electrons.com/linux/latest/ident/acct)->[active](http://elixir.free-electrons.com/linux/latest/ident/active)) {
u64 [suspend](http://elixir.free-electrons.com/linux/latest/ident/suspend) = sbuf.f_blocks * [SUSPEND](http://elixir.free-electrons.com/linux/latest/ident/SUSPEND);
[do_div](http://elixir.free-electrons.com/linux/latest/ident/do_div)([suspend](http://elixir.free-electrons.com/linux/latest/ident/suspend), 100);
if (sbuf.f_bavail <= [suspend](http://elixir.free-electrons.com/linux/latest/ident/suspend)) {
[acct](http://elixir.free-electrons.com/linux/latest/ident/acct)->[active](http://elixir.free-electrons.com/linux/latest/ident/active) = 0;
[pr_info](http://elixir.free-electrons.com/linux/latest/ident/pr_info)("Process accounting paused\n");
}
} else {
u64 [resume](http://elixir.free-electrons.com/linux/latest/ident/resume) = sbuf.f_blocks * [RESUME](http://elixir.free-electrons.com/linux/latest/ident/RESUME);
[do_div](http://elixir.free-electrons.com/linux/latest/ident/do_div)([resume](http://elixir.free-electrons.com/linux/latest/ident/resume), 100);
if (sbuf.f_bavail >= [resume](http://elixir.free-electrons.com/linux/latest/ident/resume)) {
[acct](http://elixir.free-electrons.com/linux/latest/ident/acct)->[active](http://elixir.free-electrons.com/linux/latest/ident/active) = 1;
[pr_info](http://elixir.free-electrons.com/linux/latest/ident/pr_info)("Process accounting resumed\n");
}
}
[acct](http://elixir.free-electrons.com/linux/latest/ident/acct)->needcheck = [jiffies](http://elixir.free-electrons.com/linux/latest/ident/jiffies) + [ACCT_TIMEOUT](http://elixir.free-electrons.com/linux/latest/ident/ACCT_TIMEOUT)*[HZ](http://elixir.free-electrons.com/linux/latest/ident/HZ);
out:
return [acct](http://elixir.free-electrons.com/linux/latest/ident/acct)->[active](http://elixir.free-electrons.com/linux/latest/ident/active);
}
does it mean I don’t have anymore space available in my linux ?