patch-2.4.19 linux-2.4.19/kernel/acct.c
Next file: linux-2.4.19/kernel/exit.c
Previous file: linux-2.4.19/ipc/shm.c
Back to the patch index
Back to the overall index
- Lines: 32
- Date:
Fri Aug 2 17:39:46 2002
- Orig file:
linux-2.4.18/kernel/acct.c
- Orig date:
Mon Mar 19 12:35:08 2001
diff -urN linux-2.4.18/kernel/acct.c linux-2.4.19/kernel/acct.c
@@ -277,6 +277,7 @@
struct acct ac;
mm_segment_t fs;
unsigned long vsize;
+ unsigned long flim;
/*
* First check to see if there is enough free_space to continue
@@ -338,8 +339,14 @@
*/
fs = get_fs();
set_fs(KERNEL_DS);
+ /*
+ * Accounting records are not subject to resource limits.
+ */
+ flim = current->rlim[RLIMIT_FSIZE].rlim_cur;
+ current->rlim[RLIMIT_FSIZE].rlim_cur = RLIM_INFINITY;
file->f_op->write(file, (char *)&ac,
sizeof(struct acct), &file->f_pos);
+ current->rlim[RLIMIT_FSIZE].rlim_cur = flim;
set_fs(fs);
}
@@ -354,7 +361,7 @@
file = acct_file;
get_file(file);
unlock_kernel();
- do_acct_process(exitcode, acct_file);
+ do_acct_process(exitcode, file);
fput(file);
} else
unlock_kernel();
FUNET's LINUX-ADM group, linux-adm@nic.funet.fi
TCL-scripts by Sam Shen (who was at: slshen@lbl.gov)