Commit e59a04a7 authored by Pavel Emelyanov's avatar Pavel Emelyanov Committed by Linus Torvalds

bsdacct: make check timer accept a bsd_acct_struct argument

We're going to have many bsd_acct_struct instances, not just one, so the
timer (currently working with a global one) has to know which one to work
with.

Use a handy setup_timer macro for it (thanks to Oleg for one).
Signed-off-by: default avatarPavel Emelyanov <xemul@openvz.org>
Cc: Balbir Singh <balbir@in.ibm.com>
Cc: "Eric W. Biederman" <ebiederm@xmission.com>
Signed-off-by: default avatarAndrew Morton <akpm@linux-foundation.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
parent 1c552858
...@@ -97,9 +97,10 @@ static struct bsd_acct_struct acct_globals __cacheline_aligned = ...@@ -97,9 +97,10 @@ static struct bsd_acct_struct acct_globals __cacheline_aligned =
/* /*
* Called whenever the timer says to check the free space. * Called whenever the timer says to check the free space.
*/ */
static void acct_timeout(unsigned long unused) static void acct_timeout(unsigned long x)
{ {
acct_globals.needcheck = 1; struct bsd_acct_struct *acct = (struct bsd_acct_struct *)x;
acct->needcheck = 1;
} }
/* /*
...@@ -193,8 +194,8 @@ static void acct_file_reopen(struct file *file) ...@@ -193,8 +194,8 @@ static void acct_file_reopen(struct file *file)
acct_globals.needcheck = 0; acct_globals.needcheck = 0;
acct_globals.active = 1; acct_globals.active = 1;
/* It's been deleted if it was used before so this is safe */ /* It's been deleted if it was used before so this is safe */
init_timer(&acct_globals.timer); setup_timer(&acct_globals.timer, acct_timeout,
acct_globals.timer.function = acct_timeout; (unsigned long)&acct_globals);
acct_globals.timer.expires = jiffies + ACCT_TIMEOUT*HZ; acct_globals.timer.expires = jiffies + ACCT_TIMEOUT*HZ;
add_timer(&acct_globals.timer); add_timer(&acct_globals.timer);
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment