Skip to content

Commit

Permalink
xen/events: introduce test_and_set_mask()
Browse files Browse the repository at this point in the history
In preparation for adding event channel port ops, add
test_and_set_mask().

Signed-off-by: Wei Liu <wei.liu2@citrix.com>
Signed-off-by: David Vrabel <david.vrabel@citrix.com>
Reviewed-by: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
Reviewed-by: Boris Ostrovsky <boris.ostrovsky@oracle.com>
  • Loading branch information
Wei Liu authored and Konrad Rzeszutek Wilk committed Jan 6, 2014
1 parent fc087e1 commit 3f70fa8
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions drivers/xen/events.c
Original file line number Diff line number Diff line change
Expand Up @@ -352,6 +352,12 @@ static inline int test_evtchn(int port)
return sync_test_bit(port, BM(&s->evtchn_pending[0]));
}

static inline int test_and_set_mask(int port)
{
struct shared_info *s = HYPERVISOR_shared_info;
return sync_test_and_set_bit(port, BM(&s->evtchn_mask[0]));
}


/**
* notify_remote_via_irq - send event to remote end of event channel via irq
Expand Down Expand Up @@ -1493,7 +1499,6 @@ void rebind_evtchn_irq(int evtchn, int irq)
/* Rebind an evtchn so that it gets delivered to a specific cpu */
static int rebind_irq_to_cpu(unsigned irq, unsigned tcpu)
{
struct shared_info *s = HYPERVISOR_shared_info;
struct evtchn_bind_vcpu bind_vcpu;
int evtchn = evtchn_from_irq(irq);
int masked;
Expand All @@ -1516,7 +1521,7 @@ static int rebind_irq_to_cpu(unsigned irq, unsigned tcpu)
* Mask the event while changing the VCPU binding to prevent
* it being delivered on an unexpected VCPU.
*/
masked = sync_test_and_set_bit(evtchn, BM(s->evtchn_mask));
masked = test_and_set_mask(evtchn);

/*
* If this fails, it usually just indicates that we're dealing with a
Expand Down Expand Up @@ -1548,7 +1553,7 @@ static int retrigger_evtchn(int evtchn)
if (!VALID_EVTCHN(evtchn))
return 0;

masked = sync_test_and_set_bit(evtchn, BM(s->evtchn_mask));
masked = test_and_set_mask(evtchn);
sync_set_bit(evtchn, BM(s->evtchn_pending));
if (!masked)
unmask_evtchn(evtchn);
Expand Down

0 comments on commit 3f70fa8

Please sign in to comment.