From: Peter Crosthwaite <peter.crosthwaite@xilinx.com>
To: Don Slutz <dslutz@verizon.com>
Cc: "qemu-devel@nongnu.org Developers" <qemu-devel@nongnu.org>
Subject: Re: [Qemu-devel] [PATCH 1/1] char/serial: Fix emptyness handling
Date: Tue, 18 Mar 2014 09:02:35 +1000 [thread overview]
Message-ID: <CAEgOgz6Tx_o1Mf5yOi3QzWuSU4yyCjvPZS3wcV0CA+APsb8x1Q@mail.gmail.com> (raw)
In-Reply-To: <1392834640-15488-1-git-send-email-dslutz@verizon.com>
On Thu, Feb 20, 2014 at 4:30 AM, Don Slutz <dslutz@verizon.com> wrote:
> The commit 88c1ee73d3231c74ff90bcfc084a7589670ec244
> char/serial: Fix emptyness check
>
> Still causes extra NULL byte(s) to be sent.
>
> So if the fifo is empty, do not send an extra NULL byte.
>
> Signed-off-by: Don Slutz <dslutz@verizon.com>
> ---
> hw/char/serial.c | 5 +++--
> 1 file changed, 3 insertions(+), 2 deletions(-)
>
> diff --git a/hw/char/serial.c b/hw/char/serial.c
> index 6d3b5af..6df5a53 100644
> --- a/hw/char/serial.c
> +++ b/hw/char/serial.c
> @@ -225,8 +225,9 @@ static gboolean serial_xmit(GIOChannel *chan, GIOCondition cond, void *opaque)
>
> if (s->tsr_retry <= 0) {
> if (s->fcr & UART_FCR_FE) {
> - s->tsr = fifo8_is_empty(&s->xmit_fifo) ?
> - 0 : fifo8_pop(&s->xmit_fifo);
> + if (fifo8_is_empty(&s->xmit_fifo))
> + return FALSE;
If should have braces. The file in ancient and has many violations,
but we are trying to update whenever we touch code as we go.
Regards,
Peter
> + s->tsr = fifo8_pop(&s->xmit_fifo);
> if (!s->xmit_fifo.num) {
> s->lsr |= UART_LSR_THRE;
> }
> --
> 1.8.4
>
>
next prev parent reply other threads:[~2014-03-17 23:02 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-02-19 18:30 [Qemu-devel] [PATCH 1/1] char/serial: Fix emptyness handling Don Slutz
2014-02-25 0:13 ` Don Slutz
2014-03-17 22:52 ` Peter Crosthwaite
2014-03-17 23:02 ` Peter Crosthwaite [this message]
2014-03-18 16:27 ` Don Slutz
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=CAEgOgz6Tx_o1Mf5yOi3QzWuSU4yyCjvPZS3wcV0CA+APsb8x1Q@mail.gmail.com \
--to=peter.crosthwaite@xilinx.com \
--cc=dslutz@verizon.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 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).