From: Cornelia Huck <cohuck@redhat.com>
To: Eric Farman <farman@linux.ibm.com>
Cc: Halil Pasic <pasic@linux.ibm.com>,
Farhan Ali <alifm@linux.ibm.com>,
Pierre Morel <pmorel@linux.ibm.com>,
linux-s390@vger.kernel.org, kvm@vger.kernel.org,
qemu-devel@nongnu.org, qemu-s390x@nongnu.org,
Alex Williamson <alex.williamson@redhat.com>
Subject: Re: [Qemu-devel] [PATCH v2 2/5] vfio-ccw: concurrent I/O handling
Date: Mon, 28 Jan 2019 18:24:24 +0100 [thread overview]
Message-ID: <20190128182424.3ad3d94d.cohuck@redhat.com> (raw)
In-Reply-To: <565393ea-e9dc-4455-a22b-16d4bd2cfbb8@linux.ibm.com>
On Fri, 25 Jan 2019 10:57:38 -0500
Eric Farman <farman@linux.ibm.com> wrote:
> On 01/25/2019 07:58 AM, Cornelia Huck wrote:
> > On Fri, 25 Jan 2019 11:24:37 +0100
> > Cornelia Huck <cohuck@redhat.com> wrote:
> >
> >> On Thu, 24 Jan 2019 21:37:44 -0500
> >> Eric Farman <farman@linux.ibm.com> wrote:
> >>
> >>> On 01/24/2019 09:25 PM, Eric Farman wrote:
> >>>>
> >>>>
> >>>> On 01/21/2019 06:03 AM, Cornelia Huck wrote:
> >>
> >>>> [1] I think these changes are cool. We end up going into (and staying
> >>>> in) state=BUSY if we get cc=0 on the SSCH, rather than in/out as we
> >>>> bumble along.
> >>>>
> >>>> But why can't these be separated out from this patch? It does change
> >>>> the behavior of the state machine, and seem distinct from the addition
> >>>> of the mutex you otherwise add here? At the very least, this behavior
> >>>> change should be documented in the commit since it's otherwise lost in
> >>>> the mutex/EAGAIN stuff.
> >>
> >> That's a very good idea. I'll factor them out into a separate patch.
> >
> > And now that I've factored it out, I noticed some more problems.
>
> That's good! Maybe it helps us with the circles we're on :)
:)
>
> >
> > What we basically need is the following, I think:
> >
> > - The code should not be interrupted while we process the channel
> > program, do the ssch etc. We want the caller to try again later (i.e.
> > return -EAGAIN)
> > - We currently do not want the user space to submit another channel
> > program while the first one is still in flight.
>
> These two seem to contradict one another. I think you're saying is that
> we don't _want_ userspace to issue another channel program, even though
> its _allowed_ to as far as vfio-ccw is concerned.
What I'm trying to say is that we want to distinguish two things:
- The code is currently doing translation etc. We probably want to keep
that atomic, in order not to make things too complicated.
- We have sent the ssch() to the hardware, but have not yet received
the final interrupt for that request (that's what I meant with "in
flight"). It's easier for the first shot to disallow a second ssch()
as that would need handling of more than one cp request, but we may
want to allow it in the future.
A hsch()/csch() (which does not generate a new cp) should be fine.
(see also my reply to Halil's mail)
>
> As submitting another
> > one is a valid request, however, we should allow this in the future
> > (once we have the code to handle that in place).
> > - With the async interface, we want user space to be able to submit a
> > halt/clear while a start request is still in flight, but not while
> > we're processing a start request with translation etc. We probably
> > want to do -EAGAIN in that case.
> >
> > My idea would be:
> >
> > - The BUSY state denotes "I'm busy processing a request right now, try
> > again". We hold it while processing the cp and doing the ssch and
> > leave it afterwards (i.e., while the start request is processed by
> > the hardware). I/O requests and async requests get -EAGAIN in that
> > state.
> > - A new state (CP_PENDING?) is entered after ssch returned with cc 0
> > (from the BUSY state). We stay in there as long as no final state for
> > that request has been received and delivered. (This may be final
> > interrupt for that request, a deferred cc, or successful halt/clear.)
> > I/O requests get -EBUSY
>
> I liked CP_PENDING, since it corresponds to the subchannel being marked
> "start pending" as described in POPS, but this statement suggests that
> the BUSY/PENDING state to be swapped, such that state=PENDING returns
> -EAGAIN and state=BUSY returns -EBUSY. Not super-concerned with the
> terminology though.
What about s/BUSY/CP_PROCESSING/ ?
>
> , async requests are processed. This state can
> > be removed again once we are able to handle more than one outstanding
> > cp.
> >
> > Does that make sense?
> >
>
> I think so, and I think I like it. So you want to distinguish between
> (I have swapped BUSY/PENDING in this example per my above comment):
>
> A) SSCH issued by userspace (IDLE->PENDING)
> B) SSCH issued (successfully) by kernel (PENDING->BUSY)
> B') SSCH issued (unsuccessfully) by kernel (PENDING->IDLE?)
I think so.
> C) Interrupt received by kernel (no change?)
> D) Interrupt given to userspace (BUSY->IDLE)
Only if that is the final interrupt for that cp.
>
> If we receive A and A, the second A gets EAGAIN
>
> If we do A+B and A, the second A gets EBUSY (unless async, which is
> processed)
Nod.
> Does the boundary of "in flight" in the interrupt side (C and D) need to
> be defined, such that we go BUSY->PENDING->IDLE instead of BUSY->IDLE ?
I don't think we can go BUSY->PENDING (in your terminology), at that
would imply a retry of the ssch()?
next prev parent reply other threads:[~2019-01-28 17:24 UTC|newest]
Thread overview: 67+ messages / expand[flat|nested] mbox.gz Atom feed top
2019-01-21 11:03 [Qemu-devel] [PATCH v2 0/5] vfio-ccw: support hsch/csch (kernel part) Cornelia Huck
2019-01-21 11:03 ` [Qemu-devel] [PATCH v2 1/5] vfio-ccw: make it safe to access channel programs Cornelia Huck
2019-01-22 14:56 ` Halil Pasic
2019-01-22 15:19 ` Cornelia Huck
2019-01-21 11:03 ` [Qemu-devel] [PATCH v2 2/5] vfio-ccw: concurrent I/O handling Cornelia Huck
2019-01-21 20:20 ` Halil Pasic
2019-01-22 10:29 ` Cornelia Huck
2019-01-22 11:17 ` Halil Pasic
2019-01-22 11:53 ` Cornelia Huck
2019-01-22 12:46 ` Halil Pasic
2019-01-22 17:26 ` Cornelia Huck
2019-01-22 19:03 ` Halil Pasic
2019-01-23 10:34 ` Cornelia Huck
2019-01-23 13:06 ` Halil Pasic
2019-01-23 13:34 ` Cornelia Huck
2019-01-24 19:16 ` Eric Farman
2019-01-25 10:13 ` Cornelia Huck
2019-01-22 18:33 ` Halil Pasic
2019-01-23 10:21 ` Cornelia Huck
2019-01-23 13:30 ` Halil Pasic
2019-01-24 10:05 ` Cornelia Huck
2019-01-24 10:08 ` Pierre Morel
2019-01-24 10:19 ` Cornelia Huck
2019-01-24 11:18 ` Pierre Morel
2019-01-24 11:45 ` Halil Pasic
2019-01-24 19:14 ` Eric Farman
2019-01-25 2:25 ` Eric Farman
2019-01-25 2:37 ` Eric Farman
2019-01-25 10:24 ` Cornelia Huck
2019-01-25 12:58 ` Cornelia Huck
2019-01-25 14:01 ` Halil Pasic
2019-01-25 14:21 ` Cornelia Huck
2019-01-25 16:04 ` Halil Pasic
2019-01-28 17:13 ` Cornelia Huck
2019-01-28 19:30 ` Halil Pasic
2019-01-29 9:58 ` Cornelia Huck
2019-01-29 19:39 ` Halil Pasic
2019-01-30 13:29 ` Cornelia Huck
2019-01-30 14:32 ` Farhan Ali
2019-01-28 17:09 ` Cornelia Huck
2019-01-28 19:15 ` Halil Pasic
2019-01-28 21:48 ` Eric Farman
2019-01-29 10:20 ` Cornelia Huck
2019-01-29 14:14 ` Eric Farman
2019-01-29 18:53 ` Cornelia Huck
2019-01-29 10:10 ` Cornelia Huck
2019-01-25 15:57 ` Eric Farman
2019-01-28 17:24 ` Cornelia Huck [this message]
2019-01-28 21:50 ` Eric Farman
2019-01-25 20:22 ` Eric Farman
2019-01-28 17:31 ` Cornelia Huck
2019-01-25 13:09 ` Halil Pasic
2019-01-25 12:58 ` Halil Pasic
2019-01-25 20:21 ` Eric Farman
2019-01-21 11:03 ` [Qemu-devel] [PATCH v2 3/5] vfio-ccw: add capabilities chain Cornelia Huck
2019-01-23 15:57 ` [Qemu-devel] [qemu-s390x] " Halil Pasic
2019-01-25 16:19 ` [Qemu-devel] " Eric Farman
2019-01-25 21:00 ` Eric Farman
2019-01-28 17:34 ` Cornelia Huck
2019-01-21 11:03 ` [Qemu-devel] [PATCH v2 4/5] s390/cio: export hsch to modules Cornelia Huck
2019-01-22 15:21 ` [Qemu-devel] [qemu-s390x] " Halil Pasic
2019-01-21 11:03 ` [Qemu-devel] [PATCH v2 5/5] vfio-ccw: add handling for async channel instructions Cornelia Huck
2019-01-23 15:51 ` Halil Pasic
2019-01-24 10:06 ` Cornelia Huck
2019-01-24 10:37 ` Halil Pasic
2019-01-25 21:00 ` Eric Farman
2019-01-28 17:40 ` Cornelia Huck
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=20190128182424.3ad3d94d.cohuck@redhat.com \
--to=cohuck@redhat.com \
--cc=alex.williamson@redhat.com \
--cc=alifm@linux.ibm.com \
--cc=farman@linux.ibm.com \
--cc=kvm@vger.kernel.org \
--cc=linux-s390@vger.kernel.org \
--cc=pasic@linux.ibm.com \
--cc=pmorel@linux.ibm.com \
--cc=qemu-devel@nongnu.org \
--cc=qemu-s390x@nongnu.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).