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-09-23 08:47:14 -0600
commitc9bc03da5540252cf87b2c32517f92b9c6a3138b (patch)
treee12f0d2332713dd6b475c96cb91d52def4ca9d58 /ubuntu
parent897210ae53dbe9d0b368ba9ca9663b89f932adc5 (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;