qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
From: "Daniel P. Berrange" <berrange@redhat.com>
To: Paolo Bonzini <pbonzini@redhat.com>
Cc: qemu-devel@nongnu.org
Subject: Re: [Qemu-devel] [PATCH] qemu-char, io: fix ordering of arguments for UDP socket creation
Date: Tue, 9 Feb 2016 11:02:33 +0000	[thread overview]
Message-ID: <20160209110233.GE24614@redhat.com> (raw)
In-Reply-To: <1455015557-15106-1-git-send-email-pbonzini@redhat.com>

On Tue, Feb 09, 2016 at 11:59:15AM +0100, Paolo Bonzini wrote:
> Two wrongs make a right, but they should be fixed anyway.
> 
> Cc: Daniel P. Berrange <berrange@redhat.com>
> Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
> ---
>  io/channel-socket.c | 2 +-
>  qemu-char.c         | 2 +-
>  2 files changed, 2 insertions(+), 2 deletions(-)

Signed-off-by: Daniel P. Berrange <berrange@redhat.com>

Looks like motivation for me to write another unit test :-)

> diff --git a/io/channel-socket.c b/io/channel-socket.c
> index 22d2fd6..bf66a78 100644
> --- a/io/channel-socket.c
> +++ b/io/channel-socket.c
> @@ -258,7 +258,7 @@ int qio_channel_socket_dgram_sync(QIOChannelSocket *ioc,
>      int fd;
>  
>      trace_qio_channel_socket_dgram_sync(ioc, localAddr, remoteAddr);
> -    fd = socket_dgram(localAddr, remoteAddr, errp);
> +    fd = socket_dgram(remoteAddr, localAddr, errp);
>      if (fd < 0) {
>          trace_qio_channel_socket_dgram_fail(ioc);
>          return -1;
> diff --git a/qemu-char.c b/qemu-char.c
> index 84eb8a1..2b2c56b 100644
> --- a/qemu-char.c
> +++ b/qemu-char.c
> @@ -4386,7 +4386,7 @@ static CharDriverState *qmp_chardev_open_udp(const char *id,
>      QIOChannelSocket *sioc = qio_channel_socket_new();
>  
>      if (qio_channel_socket_dgram_sync(sioc,
> -                                      udp->remote, udp->local,
> +                                      udp->local, udp->remote,
>                                        errp) < 0) {
>          object_unref(OBJECT(sioc));
>          return NULL;


Regards,
Daniel
-- 
|: http://berrange.com      -o-    http://www.flickr.com/photos/dberrange/ :|
|: http://libvirt.org              -o-             http://virt-manager.org :|
|: http://autobuild.org       -o-         http://search.cpan.org/~danberr/ :|
|: http://entangle-photo.org       -o-       http://live.gnome.org/gtk-vnc :|

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

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-02-09 10:59 [Qemu-devel] [PATCH] qemu-char, io: fix ordering of arguments for UDP socket creation Paolo Bonzini
2016-02-09 11:02 ` Daniel P. Berrange [this message]

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=20160209110233.GE24614@redhat.com \
    --to=berrange@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 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).