From: Ross Lagerwall <ross.lagerwall@citrix.com>
To: David Vrabel <david.vrabel@citrix.com>,
Boris Ostrovsky <boris.ostrovsky@oracle.com>,
xen-devel@lists.xenproject.org
Subject: Re: [PATCH] xen/events/fifo: Consume unprocessed events when a CPU dies
Date: Mon, 29 Jun 2015 11:19:33 +0100 [thread overview]
Message-ID: <55911BB5.5030901@citrix.com> (raw)
In-Reply-To: <55843DF9.5090704@citrix.com>
On 06/19/2015 05:06 PM, David Vrabel wrote:
> On 19/06/15 17:02, Boris Ostrovsky wrote:
>> On 06/19/2015 11:15 AM, Ross Lagerwall wrote:
>>> When a CPU is offlined, there may be unprocessed events on a port for
>>> that CPU. If the port is subsequently reused on a different CPU, it
>>> could be in an unexpected state with the link bit set, resulting in
>>> interrupts being missed. Fix this by consuming any unprocessed events
>>> for a particular CPU when that CPU dies.
>>>
>>> Signed-off-by: Ross Lagerwall <ross.lagerwall@citrix.com>
>>> ---
>>> drivers/xen/events/events_fifo.c | 23 ++++++++++++++++++-----
>>> 1 file changed, 18 insertions(+), 5 deletions(-)
>>>
>>> diff --git a/drivers/xen/events/events_fifo.c
>>> b/drivers/xen/events/events_fifo.c
>>> index 417415d..1dd0ba12 100644
>>> --- a/drivers/xen/events/events_fifo.c
>>> +++ b/drivers/xen/events/events_fifo.c
>>> @@ -281,7 +281,8 @@ static void handle_irq_for_port(unsigned port)
>>> static void consume_one_event(unsigned cpu,
>>> struct evtchn_fifo_control_block *control_block,
>>> - unsigned priority, unsigned long *ready)
>>> + unsigned priority, unsigned long *ready,
>>> + bool drop)
>>> {
>>> struct evtchn_fifo_queue *q = &per_cpu(cpu_queue, cpu);
>>> uint32_t head;
>>> @@ -313,13 +314,17 @@ static void consume_one_event(unsigned cpu,
>>> if (head == 0)
>>> clear_bit(priority, ready);
>>> - if (evtchn_fifo_is_pending(port) && !evtchn_fifo_is_masked(port))
>>> - handle_irq_for_port(port);
>>> + if (evtchn_fifo_is_pending(port) && !evtchn_fifo_is_masked(port)) {
>>> + if (unlikely(drop))
>>> + pr_warn("Dropping pending event for port %u\n", port);
>>
>> Maybe pr_info (or pr_notice)?
>
> We want a warning here because we think this shouldn't happen -- if it
> does we actually need to retrigger the event on its new CPU.
>
>> Also, why not do this (testing for unprocessed events) in
>> xen_evtchn_close()?
>
> We can't do anything about them when closing because they may be in the
> middle of a queue.
>
> David
>
Ping. Is this change OK?
--
Ross Lagerwall
next prev parent reply other threads:[~2015-06-29 10:19 UTC|newest]
Thread overview: 9+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-06-19 15:15 [PATCH] xen/events/fifo: Consume unprocessed events when a CPU dies Ross Lagerwall
2015-06-19 16:02 ` Boris Ostrovsky
2015-06-19 16:06 ` David Vrabel
2015-06-29 10:19 ` Ross Lagerwall [this message]
2015-06-29 13:32 ` Boris Ostrovsky
2015-06-30 9:51 ` Ross Lagerwall
2015-06-30 12:26 ` Boris Ostrovsky
2015-12-02 13:22 ` David Vrabel
2015-12-02 13:53 ` David Vrabel
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=55911BB5.5030901@citrix.com \
--to=ross.lagerwall@citrix.com \
--cc=boris.ostrovsky@oracle.com \
--cc=david.vrabel@citrix.com \
--cc=xen-devel@lists.xenproject.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.