summaryrefslogtreecommitdiff
path: root/fs/file.c
diff options
context:
space:
mode:
authorThomas Gleixner <tglx@linutronix.de>2011-06-14 17:05:09 +0200
committerClark Williams <williams@redhat.com>2012-02-15 10:32:57 -0600
commit28169bdde9dab7f2af4c888b1fa6928351520d7b (patch)
tree985cb53a2a34338ec92148ea51b7d4edbcca2320 /fs/file.c
parent2d7a449622477723dfe24c4e8825631c2efe76d9 (diff)
fs-block-rt-support.patch
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Diffstat (limited to 'fs/file.c')
-rw-r--r--fs/file.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/file.c b/fs/file.c
index 375472d36629..fd0325842717 100644
--- a/fs/file.c
+++ b/fs/file.c
@@ -105,14 +105,14 @@ void free_fdtable_rcu(struct rcu_head *rcu)
kfree(fdt->open_fds);
kfree(fdt);
} else {
- fddef = &get_cpu_var(fdtable_defer_list);
+ fddef = &per_cpu(fdtable_defer_list, get_cpu_light());
spin_lock(&fddef->lock);
fdt->next = fddef->next;
fddef->next = fdt;
/* vmallocs are handled from the workqueue context */
schedule_work(&fddef->wq);
spin_unlock(&fddef->lock);
- put_cpu_var(fdtable_defer_list);
+ put_cpu_light();
}
}