diff options
author | Ian Campbell <ian.campbell@citrix.com> | 2011-03-10 17:08:02 +0100 |
---|---|---|
committer | Konrad Rzeszutek Wilk <konrad.wilk@oracle.com> | 2011-03-10 20:48:32 +0100 |
commit | be49472f0460455e8e0d9e6593837e09cbcc9ad7 (patch) | |
tree | 84f1163260aff2766ba460de502ad29fab663948 /drivers/xen/events.c | |
parent | xen: events: remove dom0 specific xen_create_msi_irq (diff) | |
download | linux-be49472f0460455e8e0d9e6593837e09cbcc9ad7.tar.xz linux-be49472f0460455e8e0d9e6593837e09cbcc9ad7.zip |
xen: events: separate two unrelated halves of if condition
Clarifies which bit the comment applies to.
Signed-off-by: Ian Campbell <ian.campbell@citrix.com>
Signed-off-by: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
Diffstat (limited to 'drivers/xen/events.c')
-rw-r--r-- | drivers/xen/events.c | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/drivers/xen/events.c b/drivers/xen/events.c index 6befe6227159..684b0950538a 100644 --- a/drivers/xen/events.c +++ b/drivers/xen/events.c @@ -1143,10 +1143,14 @@ static int rebind_irq_to_cpu(unsigned irq, unsigned tcpu) struct evtchn_bind_vcpu bind_vcpu; int evtchn = evtchn_from_irq(irq); - /* events delivered via platform PCI interrupts are always - * routed to vcpu 0 */ - if (!VALID_EVTCHN(evtchn) || - (xen_hvm_domain() && !xen_have_vector_callback)) + if (!VALID_EVTCHN(evtchn)) + return -1; + + /* + * Events delivered via platform PCI interrupts are always + * routed to vcpu 0 and hence cannot be rebound. + */ + if (xen_hvm_domain() && !xen_have_vector_callback) return -1; /* Send future instances of this interrupt to other vcpu. */ |