From: "Michael S. Tsirkin" <mst@redhat.com>
To: Wei Wang <wei.w.wang@intel.com>
Cc: aarcange@redhat.com, virtio-dev@lists.oasis-open.org,
kvm@vger.kernel.org, mawilcox@microsoft.com,
qemu-devel@nongnu.org, amit.shah@redhat.com,
liliang.opensource@gmail.com, linux-kernel@vger.kernel.org,
willy@infradead.org, virtualization@lists.linux-foundation.org,
linux-mm@kvack.org, yang.zhang.wz@gmail.com, quan.xu@aliyun.com,
cornelia.huck@de.ibm.com, pbonzini@redhat.com,
akpm@linux-foundation.org, mhocko@kernel.org,
mgorman@techsingularity.net
Subject: Re: [PATCH v14 3/5] virtio-balloon: VIRTIO_BALLOON_F_SG
Date: Mon, 21 Aug 2017 23:22:17 +0300 [thread overview]
Message-ID: <20170821232052-mutt-send-email-mst__17525.6278984763$1503346945$gmane$org@kernel.org> (raw)
In-Reply-To: <599699AF.1090705@intel.com>
On Fri, Aug 18, 2017 at 03:39:27PM +0800, Wei Wang wrote:
> On 08/18/2017 10:22 AM, Michael S. Tsirkin wrote:
> > +static void send_balloon_page_sg(struct virtio_balloon *vb,
> > + struct virtqueue *vq,
> > + void *addr,
> > + uint32_t size)
> > +{
> > + unsigned int len;
> > + int ret;
> > +
> > + do {
> > + ret = add_one_sg(vq, addr, size);
> > + virtqueue_kick(vq);
> > + wait_event(vb->acked, virtqueue_get_buf(vq, &len));
> > + /*
> > + * It is uncommon to see the vq is full, because the sg is sent
> > + * one by one and the device is able to handle it in time. But
> > + * if that happens, we go back to retry after an entry gets
> > + * released.
> > + */
> > Why send one by one though? Why not batch some s/gs and wait for all
> > of them to be completed? If memory if fragmented, waiting every time is
> > worse than what we have now (VIRTIO_BALLOON_ARRAY_PFNS_MAX at a time).
> >
>
> OK, I'll do batching in some fashion.
>
>
> Best,
> Wei
>
>
btw you need to address the build errors that kbot has found.
--
MST
next prev parent reply other threads:[~2017-08-21 20:22 UTC|newest]
Thread overview: 22+ messages / expand[flat|nested] mbox.gz Atom feed top
[not found] <1502940416-42944-1-git-send-email-wei.w.wang@intel.com>
2017-08-17 3:26 ` [PATCH v14 1/5] lib/xbitmap: Introduce xbitmap Wei Wang
2017-08-17 3:26 ` [PATCH v14 2/5] lib/xbitmap: add xb_find_next_bit() and xb_zero() Wei Wang
2017-08-17 3:26 ` [PATCH v14 3/5] virtio-balloon: VIRTIO_BALLOON_F_SG Wei Wang
2017-08-17 3:26 ` [PATCH v14 4/5] mm: support reporting free page blocks Wei Wang
2017-08-17 3:26 ` [PATCH v14 5/5] virtio-balloon: VIRTIO_BALLOON_F_FREE_PAGE_VQ Wei Wang
[not found] ` <1502940416-42944-6-git-send-email-wei.w.wang@intel.com>
2017-08-18 2:13 ` Michael S. Tsirkin
2017-08-18 2:28 ` Michael S. Tsirkin
[not found] ` <20170818052301-mutt-send-email-mst@kernel.org>
2017-08-18 8:36 ` Wei Wang
[not found] ` <5996A6F6.2050405@intel.com>
2017-08-18 18:10 ` Michael S. Tsirkin
[not found] ` <20170818202337-mutt-send-email-mst@kernel.org>
2017-08-21 5:28 ` [virtio-dev] " Wei Wang
[not found] ` <20170818045519-mutt-send-email-mst@kernel.org>
2017-08-18 8:41 ` Wei Wang
[not found] ` <5996A845.4010405@intel.com>
2017-08-18 18:26 ` Michael S. Tsirkin
[not found] ` <20170818211119-mutt-send-email-mst@kernel.org>
2017-08-21 5:21 ` Wei Wang
[not found] ` <1502940416-42944-4-git-send-email-wei.w.wang@intel.com>
2017-08-18 2:22 ` [PATCH v14 3/5] virtio-balloon: VIRTIO_BALLOON_F_SG Michael S. Tsirkin
[not found] ` <20170818051451-mutt-send-email-mst@kernel.org>
2017-08-18 7:39 ` Wei Wang
[not found] ` <599699AF.1090705@intel.com>
2017-08-21 20:22 ` Michael S. Tsirkin [this message]
2017-08-19 21:37 ` kbuild test robot
[not found] ` <1502940416-42944-5-git-send-email-wei.w.wang@intel.com>
2017-08-18 13:46 ` [PATCH v14 4/5] mm: support reporting free page blocks Michal Hocko
2017-08-18 17:23 ` Michael S. Tsirkin
[not found] ` <20170818134650.GC18499@dhcp22.suse.cz>
2017-08-21 6:12 ` Wei Wang
[not found] ` <599A79DF.2000707@intel.com>
2017-08-21 6:14 ` Michal Hocko
[not found] ` <20170818201946-mutt-send-email-mst@kernel.org>
2017-08-21 6:18 ` Michal Hocko
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='20170821232052-mutt-send-email-mst__17525.6278984763$1503346945$gmane$org@kernel.org' \
--to=mst@redhat.com \
--cc=aarcange@redhat.com \
--cc=akpm@linux-foundation.org \
--cc=amit.shah@redhat.com \
--cc=cornelia.huck@de.ibm.com \
--cc=kvm@vger.kernel.org \
--cc=liliang.opensource@gmail.com \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-mm@kvack.org \
--cc=mawilcox@microsoft.com \
--cc=mgorman@techsingularity.net \
--cc=mhocko@kernel.org \
--cc=pbonzini@redhat.com \
--cc=qemu-devel@nongnu.org \
--cc=quan.xu@aliyun.com \
--cc=virtio-dev@lists.oasis-open.org \
--cc=virtualization@lists.linux-foundation.org \
--cc=wei.w.wang@intel.com \
--cc=willy@infradead.org \
--cc=yang.zhang.wz@gmail.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).