From: Anthony PERARD <anthony.perard@citrix.com>
To: Paul Durrant <Paul.Durrant@citrix.com>
Cc: "xen-devel@lists.xenproject.org" <xen-devel@lists.xenproject.org>,
Stefano Stabellini <sstabellini@kernel.org>,
"qemu-devel@nongnu.org" <qemu-devel@nongnu.org>,
"qemu-stable@nongnu.org" <qemu-stable@nongnu.org>
Subject: Re: [Qemu-devel] [PATCH 1/2] xen-bus: Fix backend state transition on device reset
Date: Thu, 22 Aug 2019 10:50:43 +0100 [thread overview]
Message-ID: <20190822095043.GI1289@perard.uk.xensource.com> (raw)
In-Reply-To: <b3a6a2e0022c4785a4a04a809d948cef@AMSPEX02CL03.citrite.net>
On Wed, Aug 21, 2019 at 10:36:40AM +0100, Paul Durrant wrote:
> > diff --git a/hw/xen/xen-bus.c b/hw/xen/xen-bus.c
> > index e40500242d..982eca4533 100644
> > --- a/hw/xen/xen-bus.c
> > +++ b/hw/xen/xen-bus.c
> > @@ -540,9 +540,11 @@ static void xen_device_backend_changed(void *opaque)
> > /*
> > * If the toolstack (or unplug request callback) has set the backend
> > * state to Closing, but there is no active frontend (i.e. the
> > - * state is not Connected) then set the backend state to Closed.
> > + * state is not Connected or Closing) then set the backend state
> > + * to Closed.
> > */
> > if (xendev->backend_state == XenbusStateClosing &&
> > + xendev->frontend_state != XenbusStateClosing &&
> > xendev->frontend_state != XenbusStateConnected) {
> > xen_device_backend_set_state(xendev, XenbusStateClosed);
>
> Actually, I wonder whether it is better to 'whitelist' here? AFAIK the only valid frontend states whether the backend should set itself 'closed' are 'closed' (i.e. the frontend is finished) and 'initialising' (the frontend was never there).
Let's see, what are the reason backend=Closing?
- frontend changed to Closing (because it wants to disconnect)
- toolstack(libxl) or QEMU(unplug request) set the state to Closing,
but also online to 0.
What should the backend do in both case:
- frontend alive: backend should wait
frontend state might be InitWait, Initialised, Connected,
Closing.
- frontend not existing or disconnected: backend can skip waiting
and go to the next step, Closed.
frontend might be Initialising, Closed.
But there are also Unknown, Reconfiguring and Reconfigured which
are probably errors.
So, the whitelist with Closed and Initialising is a good start, but what
about the Unknown state? (QEMU doesn't have backends were the state
Reconfigur* is possible, so they can be mapped to Unknown for now).
Cheers,
--
Anthony PERARD
next prev parent reply other threads:[~2019-08-22 9:51 UTC|newest]
Thread overview: 15+ messages / expand[flat|nested] mbox.gz Atom feed top
2019-08-21 9:20 [Qemu-devel] [PATCH 0/2] Fix for the xen-bus driver Anthony PERARD
2019-08-21 9:20 ` [Qemu-devel] [PATCH 1/2] xen-bus: Fix backend state transition on device reset Anthony PERARD
2019-08-21 9:36 ` Paul Durrant
2019-08-22 9:50 ` Anthony PERARD [this message]
2019-08-22 9:59 ` Paul Durrant
2019-08-22 15:01 ` Anthony PERARD
2019-08-21 9:20 ` [Qemu-devel] [PATCH 2/2] xen-bus: Avoid rewriting identical values to xenstore Anthony PERARD
2019-08-21 15:40 ` Paul Durrant
2019-08-22 10:21 ` Anthony PERARD
2019-08-22 10:36 ` Paul Durrant
2019-08-22 11:17 ` Anthony PERARD
2019-08-22 11:25 ` Paul Durrant
2019-08-22 13:18 ` Anthony PERARD
2019-08-22 13:21 ` Paul Durrant
2019-08-21 9:35 ` [Qemu-devel] [PATCH 0/2] Fix for the xen-bus driver no-reply
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=20190822095043.GI1289@perard.uk.xensource.com \
--to=anthony.perard@citrix.com \
--cc=Paul.Durrant@citrix.com \
--cc=qemu-devel@nongnu.org \
--cc=qemu-stable@nongnu.org \
--cc=sstabellini@kernel.org \
--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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).