aboutsummaryrefslogtreecommitdiffstats
path: root/xen/common/tasklet.c
diff options
context:
space:
mode:
authorKeir Fraser <keir.fraser@citrix.com>2010-05-18 13:41:55 +0100
committerKeir Fraser <keir.fraser@citrix.com>2010-05-18 13:41:55 +0100
commit852ed0aaf07ad074ac111b1a432de5b816aad7fd (patch)
tree7292062b1738fb4bf3b95a7becd1a9b5a4f27c4a /xen/common/tasklet.c
parentc968906953332256adcdfa0bc8035713ca05e0d0 (diff)
downloadxen-852ed0aaf07ad074ac111b1a432de5b816aad7fd.tar.gz
xen-852ed0aaf07ad074ac111b1a432de5b816aad7fd.tar.bz2
xen-852ed0aaf07ad074ac111b1a432de5b816aad7fd.zip
cpu hotplug: tasklet and timer initialisation is high priority.
Signed-off-by: Keir Fraser <keir.fraser@citrix.com>
Diffstat (limited to 'xen/common/tasklet.c')
-rw-r--r--xen/common/tasklet.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/xen/common/tasklet.c b/xen/common/tasklet.c
index 2e23232c41..3dff65074e 100644
--- a/xen/common/tasklet.c
+++ b/xen/common/tasklet.c
@@ -188,7 +188,8 @@ static int cpu_callback(
}
static struct notifier_block cpu_nfb = {
- .notifier_call = cpu_callback
+ .notifier_call = cpu_callback,
+ .priority = 99
};
void __init tasklet_subsys_init(void)