diff options
author | Boris Ostrovsky <boris.ostrovsky@oracle.com> | 2015-04-29 17:10:15 -0400 |
---|---|---|
committer | David Vrabel <david.vrabel@citrix.com> | 2015-05-05 18:27:14 +0100 |
commit | 16e6bd5970c88a2ac018b84a5f1dd5c2ff1fdf2c (patch) | |
tree | c76291583e5a735324f45d0b197a1c989556cd84 /drivers/xen/events | |
parent | b9d934f27c91b878c4b2e64299d6e419a4022f8d (diff) | |
download | linux-16e6bd5970c88a2ac018b84a5f1dd5c2ff1fdf2c.tar.gz linux-16e6bd5970c88a2ac018b84a5f1dd5c2ff1fdf2c.tar.bz2 linux-16e6bd5970c88a2ac018b84a5f1dd5c2ff1fdf2c.zip |
xen/events: Set irq_info->evtchn before binding the channel to CPU in __startup_pirq()
.. because bind_evtchn_to_cpu(evtchn, cpu) will map evtchn to
'info' and pass 'info' down to xen_evtchn_port_bind_to_cpu().
Signed-off-by: Boris Ostrovsky <boris.ostrovsky@oracle.com>
Tested-by: Annie Li <annie.li@oracle.com>
Cc: <stable@vger.kernel.org>
Signed-off-by: David Vrabel <david.vrabel@citrix.com>
Diffstat (limited to 'drivers/xen/events')
-rw-r--r-- | drivers/xen/events/events_base.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/xen/events/events_base.c b/drivers/xen/events/events_base.c index a1ec564d791c..2b8553bd8715 100644 --- a/drivers/xen/events/events_base.c +++ b/drivers/xen/events/events_base.c @@ -529,8 +529,8 @@ static unsigned int __startup_pirq(unsigned int irq) if (rc) goto err; - bind_evtchn_to_cpu(evtchn, 0); info->evtchn = evtchn; + bind_evtchn_to_cpu(evtchn, 0); rc = xen_evtchn_port_setup(info); if (rc) |