[PATCH] 2.5.6-pre3 Fix small race in BSD accounting [part 1]

Bob Miller (rem@osdl.org)
Mon, 11 Mar 2002 12:06:45 -0800


Linus,

Below is a patch to remove a small race in kernel/acct.c.

-- 
Bob Miller					Email: rem@osdl.org
Open Source Development Lab			Phone: 503.626.2455 Ext. 17

diff -ur linux-2.5.6-orig/kernel/acct.c linux-2.5.6/kernel/acct.c --- linux-2.5.6-orig/kernel/acct.c Thu Mar 7 18:18:05 2002 +++ linux-2.5.6/kernel/acct.c Mon Mar 11 10:52:10 2002 @@ -354,7 +354,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(); - To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/