diff options
author | 2009-03-23 14:50:03 +0100 | |
---|---|---|
committer | 2009-03-23 21:20:20 +0100 | |
commit | 80c5520811d3805adcb15c570ea5e2d489fa5d0b (patch) | |
tree | ae797a7f4af39f80e77526533d06ac23b439f0ab /drivers/xen/manage.c | |
parent | Merge branches 'irq/sparseirq' and 'linus' into irq/core (diff) | |
parent | cpumask: remove cpumask allocation from idle_balance, fix (diff) | |
download | linux-dev-80c5520811d3805adcb15c570ea5e2d489fa5d0b.tar.xz linux-dev-80c5520811d3805adcb15c570ea5e2d489fa5d0b.zip |
Merge branch 'cpus4096' into irq/threaded
Conflicts:
arch/parisc/kernel/irq.c
kernel/irq/handle.c
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Diffstat (limited to 'drivers/xen/manage.c')
-rw-r--r-- | drivers/xen/manage.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/xen/manage.c b/drivers/xen/manage.c index 56892a142ee2..3ccd348d112d 100644 --- a/drivers/xen/manage.c +++ b/drivers/xen/manage.c @@ -108,7 +108,7 @@ static void do_suspend(void) /* XXX use normal device tree? */ xenbus_suspend(); - err = stop_machine(xen_suspend, &cancelled, &cpumask_of_cpu(0)); + err = stop_machine(xen_suspend, &cancelled, cpumask_of(0)); if (err) { printk(KERN_ERR "failed to start xen_suspend: %d\n", err); goto out; |