From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1HSESO-0002oZ-5v for qemu-devel@nongnu.org; Fri, 16 Mar 2007 11:35:04 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1HSESM-0002lq-FN for qemu-devel@nongnu.org; Fri, 16 Mar 2007 11:35:03 -0400 Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1HSESM-0002le-8p for qemu-devel@nongnu.org; Fri, 16 Mar 2007 10:35:02 -0500 Received: from partizan.velesys.com ([213.184.230.195]) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1HSERD-0000cC-Ul for qemu-devel@nongnu.org; Fri, 16 Mar 2007 11:33:52 -0400 Received: from localhost (partizan [10.0.0.24]) by partizan.velesys.com (paritzan.velesys.com) with ESMTP id BAE79D64CC5 for ; Fri, 16 Mar 2007 17:35:38 +0200 (EET) Received: from partizan.velesys.com ([10.0.0.24]) by localhost (partizan.velesys.com [10.0.0.24]) (amavisd-new, port 10024) with ESMTP id 8VSoTXwto9ng for ; Fri, 16 Mar 2007 17:35:38 +0200 (EET) Received: from localhost.localdomain (xps.velesys.com [10.0.0.92]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by partizan.velesys.com (paritzan.velesys.com) with ESMTP id EEC43D64CB4 for ; Fri, 16 Mar 2007 17:35:37 +0200 (EET) Date: Fri, 16 Mar 2007 17:23:56 +0200 From: "Kirill A. Shutemov" Subject: Re: [Qemu-devel] [PATCH] Typo : fix recv and recvfrom syscalls in user emulation Message-ID: <20070316152356.GA17421@localhost.localdomain> References: <45FA91A4.2040406@twilight-hall.net> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="mYCpIKhGyMATD0i+" Content-Disposition: inline In-Reply-To: <45FA91A4.2040406@twilight-hall.net> Reply-To: qemu-devel@nongnu.org List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org --mYCpIKhGyMATD0i+ Content-Type: text/plain; charset=iso-8859-1 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On [Fri, 16.03.2007 13:46], Rapha=EBl Rigo wrote: > Trivial patch following >=20 > Regards, > Rapha=EBl Rigo >=20 > =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D > 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 =3D do_recvfrom(arg1, arg1, arg3, arg4, 0, 0); > + ret =3D do_recvfrom(arg1, arg2, arg3, arg4, 0, 0); > break; > #endif > #ifdef TARGET_NR_recvfrom > case TARGET_NR_recvfrom: > - ret =3D do_recvfrom(arg1, arg1, arg3, arg4, arg5, arg6); > + ret =3D 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. --mYCpIKhGyMATD0i+ Content-Type: application/pgp-signature; name="signature.asc" Content-Description: Digital signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.6 (GNU/Linux) iD8DBQFF+rajbWYnhzC5v6oRAm0eAJ9DLbtLWQVLGdUQ2tazKVtfAOedeACbB8rC A8tsoX5NpQUoXFUTz8PR7SY= =da9c -----END PGP SIGNATURE----- --mYCpIKhGyMATD0i+--