aboutsummaryrefslogtreecommitdiff
path: root/ubuntu
diff options
context:
space:
mode:
authorAndy Whitcroft <apw@canonical.com>2010-11-07 04:20:29 +0000
committerJohn Rigby <john.rigby@linaro.org>2011-10-17 02:33:30 -0600
commitd67070261e24fb501441a2ce3f5c8b9e4c8bca9b (patch)
tree8160c4cbec2313553041ebd50cf86bd76552bb36 /ubuntu
parent24ae680be486b18e102934f6a287eaeb23ad4a7d (diff)
UBUNTU: ubuntu: AUFS -- track changes to work queue initialisation
The commit below modified the static initialisers for work queues, track those changes in aufs2: commit ca1cab37d91cbe8a8333732540d43cabb54cfa85 Author: Andrew Morton <akpm@linux-foundation.org> Date: Tue Oct 26 14:22:34 2010 -0700 workqueues: s/ON_STACK/ONSTACK/ Signed-off-by: Andy Whitcroft <apw@canonical.com>
Diffstat (limited to 'ubuntu')
-rw-r--r--ubuntu/aufs/wkq.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ubuntu/aufs/wkq.c b/ubuntu/aufs/wkq.c
index 805b3b45ee7..b1ca42ecdc1 100644
--- a/ubuntu/aufs/wkq.c
+++ b/ubuntu/aufs/wkq.c
@@ -117,7 +117,7 @@ static void au_wkq_run(struct au_wkinfo *wkinfo, unsigned int flags)
au_dbg_verify_kthread();
if (flags & AuWkq_WAIT) {
- INIT_WORK_ON_STACK(&wkinfo->wk, wkq_func);
+ INIT_WORK_ONSTACK(&wkinfo->wk, wkq_func);
wkq = au_wkq[AuWkq_INORMAL].wkq;
if (flags & AuWkq_PRE)
wkq = au_wkq[AuWkq_IPRE].wkq;