aboutsummaryrefslogtreecommitdiffstats
path: root/kernel
diff options
context:
space:
mode:
authorAl Viro <viro@zeniv.linux.org.uk>2014-05-07 05:23:41 -0400
committerAl Viro <viro@zeniv.linux.org.uk>2014-08-07 14:40:07 -0400
commit795a2f22a8eaf749e20a11271a8821bf04ac6d90 (patch)
treefdc8104fa5462298120f9c877a9625149ed78ed9 /kernel
parente25ff11ff16aba000dfe9e568d867e5142c31f16 (diff)
acct() should honour the limits from the very beginning
We need to check free space on the first write to freshly opened log. Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'kernel')
-rw-r--r--kernel/acct.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/kernel/acct.c b/kernel/acct.c
index 51188603b258..87773725a0dc 100644
--- a/kernel/acct.c
+++ b/kernel/acct.c
@@ -180,8 +180,8 @@ static void acct_file_reopen(struct bsd_acct_struct *acct, struct file *file,
180 if (file) { 180 if (file) {
181 acct->file = file; 181 acct->file = file;
182 acct->ns = ns; 182 acct->ns = ns;
183 acct->needcheck = jiffies + ACCT_TIMEOUT*HZ; 183 acct->needcheck = jiffies;
184 acct->active = 1; 184 acct->active = 0;
185 list_add(&acct->list, &acct_list); 185 list_add(&acct->list, &acct_list);
186 } 186 }
187 if (old_acct) { 187 if (old_acct) {