All of lore.kernel.org
 help / color / mirror / Atom feed
From: "Marc-André Lureau" <marcandre.lureau@redhat.com>
To: qemu-devel@nongnu.org
Cc: pbonzini@redhat.com, eblake@redhat.com,
	"Marc-André Lureau" <marcandre.lureau@redhat.com>
Subject: [Qemu-devel] [PATCH v2 15/21] char-udp: flush as much buffer as possible
Date: Mon, 27 Feb 2017 17:41:56 +0400	[thread overview]
Message-ID: <20170227134202.2991-16-marcandre.lureau@redhat.com> (raw)
In-Reply-To: <20170227134202.2991-1-marcandre.lureau@redhat.com>

Instead of flushing the buffer byte by byte, call qemu_chr_be_write()
with as much byte possible accepted by the front-end.

Factor out buffer flushing in a common function udp_chr_flush_buffer().

Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com>
---
 chardev/char-udp.c | 26 +++++++++++++++-----------
 1 file changed, 15 insertions(+), 11 deletions(-)

diff --git a/chardev/char-udp.c b/chardev/char-udp.c
index 2c6c7ddd73..5364b5fc59 100644
--- a/chardev/char-udp.c
+++ b/chardev/char-udp.c
@@ -51,6 +51,18 @@ static int udp_chr_write(Chardev *chr, const uint8_t *buf, int len)
         s->ioc, (const char *)buf, len, NULL);
 }
 
+static void udp_chr_flush_buffer(UdpChardev *s)
+{
+    Chardev *chr = CHARDEV(s);
+
+    while (s->max_size > 0 && s->bufptr < s->bufcnt) {
+        int n = MIN(s->max_size, s->bufcnt - s->bufptr);
+        qemu_chr_be_write(chr, &s->buf[s->bufptr], n);
+        s->bufptr += n;
+        s->max_size = qemu_chr_be_can_write(chr);
+    }
+}
+
 static int udp_chr_read_poll(void *opaque)
 {
     Chardev *chr = CHARDEV(opaque);
@@ -61,11 +73,8 @@ static int udp_chr_read_poll(void *opaque)
     /* If there were any stray characters in the queue process them
      * first
      */
-    while (s->max_size > 0 && s->bufptr < s->bufcnt) {
-        qemu_chr_be_write(chr, &s->buf[s->bufptr], 1);
-        s->bufptr++;
-        s->max_size = qemu_chr_be_can_write(chr);
-    }
+    udp_chr_flush_buffer(s);
+
     return s->max_size;
 }
 
@@ -85,13 +94,8 @@ static gboolean udp_chr_read(QIOChannel *chan, GIOCondition cond, void *opaque)
         return FALSE;
     }
     s->bufcnt = ret;
-
     s->bufptr = 0;
-    while (s->max_size > 0 && s->bufptr < s->bufcnt) {
-        qemu_chr_be_write(chr, &s->buf[s->bufptr], 1);
-        s->bufptr++;
-        s->max_size = qemu_chr_be_can_write(chr);
-    }
+    udp_chr_flush_buffer(s);
 
     return TRUE;
 }
-- 
2.12.0.rc2.3.gc93709801

  parent reply	other threads:[~2017-02-27 13:43 UTC|newest]

Thread overview: 30+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2017-02-27 13:41 [Qemu-devel] [PATCH v2 00/21] chardev clean-ups & tests Marc-André Lureau
2017-02-27 13:41 ` [Qemu-devel] [PATCH v2 01/21] char: remove qemu_chr_be_generic_open Marc-André Lureau
2017-03-01  1:57   ` Eric Blake
2017-02-27 13:41 ` [Qemu-devel] [PATCH v2 02/21] mux: simplfy muxes_realize_done Marc-André Lureau
2017-03-01 19:51   ` Eric Blake
2017-02-27 13:41 ` [Qemu-devel] [PATCH v2 03/21] xen: use a better chardev type check Marc-André Lureau
2017-03-01 20:06   ` Eric Blake
2017-02-27 13:41 ` [Qemu-devel] [PATCH v2 04/21] container: don't leak container reference Marc-André Lureau
2017-02-27 13:41 ` [Qemu-devel] [PATCH v2 05/21] char: add a /chardevs container Marc-André Lureau
2017-02-27 15:39   ` Paolo Bonzini
2017-02-28 10:34     ` Marc-André Lureau
2017-02-27 13:41 ` [Qemu-devel] [PATCH v2 06/21] vl: add todo note about root container cleanup Marc-André Lureau
2017-02-27 13:41 ` [Qemu-devel] [PATCH v2 07/21] char: use /chardevs container instead of chardevs list Marc-André Lureau
2017-02-27 13:41 ` [Qemu-devel] [PATCH v2 08/21] char: remove qemu_chardev_add Marc-André Lureau
2017-02-27 13:41 ` [Qemu-devel] [PATCH v2 09/21] char: remove chardevs list Marc-André Lureau
2017-02-27 13:41 ` [Qemu-devel] [PATCH v2 10/21] char: useless NULL check Marc-André Lureau
2017-03-01  4:32   ` Philippe Mathieu-Daudé
2017-02-27 13:41 ` [Qemu-devel] [PATCH v2 11/21] char-socket: introduce update_disconnected_filename() Marc-André Lureau
2017-02-27 13:41 ` [Qemu-devel] [PATCH v2 12/21] char-socket: update local address after listen Marc-André Lureau
2017-02-27 13:41 ` [Qemu-devel] [PATCH v2 13/21] char-socket: add 'addr' property Marc-André Lureau
2017-02-27 13:41 ` [Qemu-devel] [PATCH v2 14/21] char-socket: add 'connected' property Marc-André Lureau
2017-02-27 13:41 ` Marc-André Lureau [this message]
2017-03-01  4:34   ` [Qemu-devel] [PATCH v2 15/21] char-udp: flush as much buffer as possible Philippe Mathieu-Daudé
2017-02-27 13:41 ` [Qemu-devel] [PATCH v2 16/21] tests: add alias check in /char/ringbuf Marc-André Lureau
2017-02-27 13:41 ` [Qemu-devel] [PATCH v2 17/21] tests: add /char/pipe test Marc-André Lureau
2017-02-27 13:41 ` [Qemu-devel] [PATCH v2 18/21] tests: add /char/file test Marc-André Lureau
2017-02-27 13:42 ` [Qemu-devel] [PATCH v2 19/21] tests: add /char/socket test Marc-André Lureau
2017-02-27 13:42 ` [Qemu-devel] [PATCH v2 20/21] tests: add /char/udp test Marc-André Lureau
2017-02-27 13:42 ` [Qemu-devel] [PATCH v2 21/21] tests: add /char/console test Marc-André Lureau
2017-05-03 12:36 ` [Qemu-devel] [PATCH v2 00/21] chardev clean-ups & tests Paolo Bonzini

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=20170227134202.2991-16-marcandre.lureau@redhat.com \
    --to=marcandre.lureau@redhat.com \
    --cc=eblake@redhat.com \
    --cc=pbonzini@redhat.com \
    --cc=qemu-devel@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 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.