aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJuergen Gross <[email protected]>2020-10-22 11:49:06 +0200
committerBoris Ostrovsky <[email protected]>2020-10-23 05:41:25 -0500
commiteabe741782d5a52ce884dba4bab8825f977ab1eb (patch)
tree9caef07843681e1d53942f7ca1c813a9671eea33
parentd04b1ae5a9b0c868dda8b4b34175ef08f3cb9e93 (diff)
xen/events: unmask a fifo event channel only if it was masked
Unmasking an event channel with fifo events channels being used can require a hypercall to be made, so try to avoid that by checking whether the event channel was really masked. Suggested-by: Jan Beulich <[email protected]> Signed-off-by: Juergen Gross <[email protected]> Reviewed-by: Jan Beulich <[email protected]> Link: https://lore.kernel.org/r/[email protected] Signed-off-by: Boris Ostrovsky <[email protected]>
-rw-r--r--drivers/xen/events/events_fifo.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/drivers/xen/events/events_fifo.c b/drivers/xen/events/events_fifo.c
index 243e7b6d7b96..b234f1766810 100644
--- a/drivers/xen/events/events_fifo.c
+++ b/drivers/xen/events/events_fifo.c
@@ -237,6 +237,9 @@ static bool clear_masked_cond(volatile event_word_t *word)
w = *word;
do {
+ if (!(w & (1 << EVTCHN_FIFO_MASKED)))
+ return true;
+
if (w & (1 << EVTCHN_FIFO_PENDING))
return false;