qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
From: "Kirill A. Shutemov" <k.shutemov@velesys.com>
To: qemu-devel@nongnu.org
Subject: Re: [Qemu-devel] [PATCH] Typo : fix recv and recvfrom syscalls in user emulation
Date: Fri, 16 Mar 2007 17:23:56 +0200	[thread overview]
Message-ID: <20070316152356.GA17421@localhost.localdomain> (raw)
In-Reply-To: <45FA91A4.2040406@twilight-hall.net>

[-- Attachment #1: Type: text/plain, Size: 1021 bytes --]

On [Fri, 16.03.2007 13:46], Raphaël Rigo wrote:
> Trivial patch following
> 
> Regards,
> Raphaël Rigo
> 
> ===================================================================
> RCS file: /sources/qemu/qemu/linux-user/syscall.c,v
> retrieving revision 1.89
> diff -u -r1.89 syscall.c
> --- linux-user/syscall.c        2 Mar 2007 20:47:59 -0000       1.89
> +++ linux-user/syscall.c        16 Mar 2007 12:43:15 -0000
> @@ -2914,12 +2914,12 @@
>  #endif
>  #ifdef TARGET_NR_recv
>      case TARGET_NR_recv:
> -        ret = do_recvfrom(arg1, arg1, arg3, arg4, 0, 0);
> +        ret = do_recvfrom(arg1, arg2, arg3, arg4, 0, 0);
>          break;
>  #endif
>  #ifdef TARGET_NR_recvfrom
>      case TARGET_NR_recvfrom:
> -        ret = do_recvfrom(arg1, arg1, arg3, arg4, arg5, arg6);
> +        ret = do_recvfrom(arg1, arg2, arg3, arg4, arg5, arg6);
>          break;
>  #endif
>  #ifdef TARGET_NR_recvmsg

I have posted same patch(and a few other) more then week ago, but it
hasn't commit yet.

[-- Attachment #2: Digital signature --]
[-- Type: application/pgp-signature, Size: 189 bytes --]

  reply	other threads:[~2007-03-16 15:35 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2007-03-16 12:46 [Qemu-devel] [PATCH] Typo : fix recv and recvfrom syscalls in user emulation Raphaël Rigo
2007-03-16 15:23 ` Kirill A. Shutemov [this message]
2007-03-16 15:25 ` Kirill A. Shutemov

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=20070316152356.GA17421@localhost.localdomain \
    --to=k.shutemov@velesys.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).