mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-11 12:28:41 +08:00
[PATCH] Remove unecessary NULL check in kernel/acct.c
copy_process() appears to be the only caller of acct_clear_integrals() and does not pass in NULL task pointers. Remove the unecessary check. Signed-off-by: Matt Helsley <matthltc@us.ibm.com> Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
This commit is contained in:
parent
7c12d81134
commit
11e64757f9
@ -599,9 +599,7 @@ void acct_update_integrals(struct task_struct *tsk)
|
||||
*/
|
||||
void acct_clear_integrals(struct task_struct *tsk)
|
||||
{
|
||||
if (tsk) {
|
||||
tsk->acct_stimexpd = 0;
|
||||
tsk->acct_rss_mem1 = 0;
|
||||
tsk->acct_vm_mem1 = 0;
|
||||
}
|
||||
tsk->acct_stimexpd = 0;
|
||||
tsk->acct_rss_mem1 = 0;
|
||||
tsk->acct_vm_mem1 = 0;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user