qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
From: Greg Kurz <groug@kaod.org>
To: Stefano Stabellini <sstabellini@kernel.org>
Cc: aneesh.kumar@linux.vnet.ibm.com, qemu-devel@nongnu.org,
	xen-devel@lists.xensource.com, anthony.perard@citrix.com
Subject: Re: [Qemu-devel] [PATCH v2 4/4] 9pfs: introduce init_out/in_iov_from_pdu
Date: Fri, 2 Dec 2016 12:05:20 +0100	[thread overview]
Message-ID: <20161202120520.3dc02dd7@bahia> (raw)
In-Reply-To: <1480368444-4310-4-git-send-email-sstabellini@kernel.org>

On Mon, 28 Nov 2016 13:27:24 -0800
Stefano Stabellini <sstabellini@kernel.org> wrote:

> Not all 9pfs transports share memory between request and response. For
> those who don't, it is necessary to know how much memory is required in
> the response.
> 
> Split the existing init_iov_from_pdu function in two:
> init_out_iov_from_pdu (for writes) and init_in_iov_from_pdu (for reads).
> init_in_iov_from_pdu takes an additional size parameter to specify the
> memory required for the response message.
> 
> Signed-off-by: Stefano Stabellini <sstabellini@kernel.org>
> ---

Reviewed-by: Greg Kurz <groug@kaod.org>

>  hw/9pfs/9p.c               |  6 +++++-
>  hw/9pfs/9p.h               |  6 ++++--
>  hw/9pfs/virtio-9p-device.c | 28 ++++++++++++++++++----------
>  3 files changed, 27 insertions(+), 13 deletions(-)
> 
> diff --git a/hw/9pfs/9p.c b/hw/9pfs/9p.c
> index 79d7201..ce1f9d9 100644
> --- a/hw/9pfs/9p.c
> +++ b/hw/9pfs/9p.c
> @@ -1652,7 +1652,11 @@ static void v9fs_init_qiov_from_pdu(QEMUIOVector *qiov, V9fsPDU *pdu,
>      struct iovec *iov;
>      unsigned int niov;
>  
> -    pdu->s->transport->init_iov_from_pdu(pdu, &iov, &niov, is_write);
> +    if (is_write) {
> +        pdu->s->transport->init_out_iov_from_pdu(pdu, &iov, &niov);
> +    } else {
> +        pdu->s->transport->init_in_iov_from_pdu(pdu, &iov, &niov, size);
> +    }
>  
>      qemu_iovec_init_external(&elem, iov, niov);
>      qemu_iovec_init(qiov, niov);
> diff --git a/hw/9pfs/9p.h b/hw/9pfs/9p.h
> index c8c9aa8..4c4feaf 100644
> --- a/hw/9pfs/9p.h
> +++ b/hw/9pfs/9p.h
> @@ -349,8 +349,10 @@ struct V9fsTransport {
>                                  va_list ap);
>      ssize_t     (*pdu_vunmarshal)(V9fsPDU *pdu, size_t offset, const char *fmt,
>                                    va_list ap);
> -    void        (*init_iov_from_pdu)(V9fsPDU *pdu, struct iovec **piov,
> -                                     unsigned int *pniov, bool is_write);
> +    void        (*init_in_iov_from_pdu)(V9fsPDU *pdu, struct iovec **piov,
> +                                        unsigned int *pniov, size_t size);
> +    void        (*init_out_iov_from_pdu)(V9fsPDU *pdu, struct iovec **piov,
> +                                         unsigned int *pniov);
>      void        (*push_and_notify)(V9fsPDU *pdu);
>  };
>  
> diff --git a/hw/9pfs/virtio-9p-device.c b/hw/9pfs/virtio-9p-device.c
> index 273425b..27a4a32 100644
> --- a/hw/9pfs/virtio-9p-device.c
> +++ b/hw/9pfs/virtio-9p-device.c
> @@ -171,26 +171,34 @@ static ssize_t virtio_pdu_vunmarshal(V9fsPDU *pdu, size_t offset,
>      return v9fs_iov_vunmarshal(elem->out_sg, elem->out_num, offset, 1, fmt, ap);
>  }
>  
> -static void virtio_init_iov_from_pdu(V9fsPDU *pdu, struct iovec **piov,
> -                                     unsigned int *pniov, bool is_write)
> +/* The size parameter is used by other transports. Do not drop it. */
> +static void virtio_init_in_iov_from_pdu(V9fsPDU *pdu, struct iovec **piov,
> +                                        unsigned int *pniov, size_t size)
>  {
>      V9fsState *s = pdu->s;
>      V9fsVirtioState *v = container_of(s, V9fsVirtioState, state);
>      VirtQueueElement *elem = v->elems[pdu->idx];
>  
> -    if (is_write) {
> -        *piov = elem->out_sg;
> -        *pniov = elem->out_num;
> -    } else {
> -        *piov = elem->in_sg;
> -        *pniov = elem->in_num;
> -    }
> +    *piov = elem->in_sg;
> +    *pniov = elem->in_num;
> +}
> +
> +static void virtio_init_out_iov_from_pdu(V9fsPDU *pdu, struct iovec **piov,
> +                                         unsigned int *pniov)
> +{
> +    V9fsState *s = pdu->s;
> +    V9fsVirtioState *v = container_of(s, V9fsVirtioState, state);
> +    VirtQueueElement *elem = v->elems[pdu->idx];
> +
> +    *piov = elem->out_sg;
> +    *pniov = elem->out_num;
>  }
>  
>  static const struct V9fsTransport virtio_9p_transport = {
>      .pdu_vmarshal = virtio_pdu_vmarshal,
>      .pdu_vunmarshal = virtio_pdu_vunmarshal,
> -    .init_iov_from_pdu = virtio_init_iov_from_pdu,
> +    .init_in_iov_from_pdu = virtio_init_in_iov_from_pdu,
> +    .init_out_iov_from_pdu = virtio_init_out_iov_from_pdu,
>      .push_and_notify = virtio_9p_push_and_notify,
>  };
>  

  reply	other threads:[~2016-12-02 11:05 UTC|newest]

Thread overview: 10+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-11-28 21:24 [Qemu-devel] [PATCH v2 0/4] 9pfs: clean-up for multiple transports Stefano Stabellini
2016-11-28 21:27 ` [Qemu-devel] [PATCH v2 1/4] 9pfs: move pdus to V9fsState Stefano Stabellini
2016-11-28 21:27   ` [Qemu-devel] [PATCH v2 2/4] 9pfs: introduce transport specific callbacks Stefano Stabellini
2016-12-02 11:03     ` Greg Kurz
2016-11-28 21:27   ` [Qemu-devel] [PATCH v2 3/4] 9pfs: call v9fs_init_qiov_from_pdu before v9fs_pack Stefano Stabellini
2016-12-02 11:04     ` Greg Kurz
2016-11-28 21:27   ` [Qemu-devel] [PATCH v2 4/4] 9pfs: introduce init_out/in_iov_from_pdu Stefano Stabellini
2016-12-02 11:05     ` Greg Kurz [this message]
2016-12-02 19:02       ` [Qemu-devel] [Xen-devel] " Stefano Stabellini
2016-12-03  8:57         ` Greg Kurz

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=20161202120520.3dc02dd7@bahia \
    --to=groug@kaod.org \
    --cc=aneesh.kumar@linux.vnet.ibm.com \
    --cc=anthony.perard@citrix.com \
    --cc=qemu-devel@nongnu.org \
    --cc=sstabellini@kernel.org \
    --cc=xen-devel@lists.xensource.com \
    /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).