qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [Qemu-devel] [PATCH] Typo : fix recv and recvfrom syscalls in user emulation
@ 2007-03-16 12:46 Raphaël Rigo
  2007-03-16 15:23 ` Kirill A. Shutemov
  2007-03-16 15:25 ` Kirill A. Shutemov
  0 siblings, 2 replies; 3+ messages in thread
From: Raphaël Rigo @ 2007-03-16 12:46 UTC (permalink / raw)
  To: qemu-devel

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

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [Qemu-devel] [PATCH] Typo : fix recv and recvfrom syscalls in user emulation
  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
  2007-03-16 15:25 ` Kirill A. Shutemov
  1 sibling, 0 replies; 3+ messages in thread
From: Kirill A. Shutemov @ 2007-03-16 15:23 UTC (permalink / raw)
  To: qemu-devel

[-- 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 --]

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [Qemu-devel] [PATCH] Typo : fix recv and recvfrom syscalls in user emulation
  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
@ 2007-03-16 15:25 ` Kirill A. Shutemov
  1 sibling, 0 replies; 3+ messages in thread
From: Kirill A. Shutemov @ 2007-03-16 15:25 UTC (permalink / raw)
  To: qemu-devel

[-- 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 --]

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2007-03-16 15:37 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
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
2007-03-16 15:25 ` Kirill A. Shutemov

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).