From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:54034) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WGwUz-0008E7-Un for qemu-devel@nongnu.org; Fri, 21 Feb 2014 15:15:12 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1WGwUt-0004cQ-DN for qemu-devel@nongnu.org; Fri, 21 Feb 2014 15:15:05 -0500 Received: from e39.co.us.ibm.com ([32.97.110.160]:42381) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WGwUt-0004bu-62 for qemu-devel@nongnu.org; Fri, 21 Feb 2014 15:14:59 -0500 Received: from /spool/local by e39.co.us.ibm.com with IBM ESMTP SMTP Gateway: Authorized Use Only! Violators will be prosecuted for from ; Fri, 21 Feb 2014 13:14:58 -0700 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable From: Michael Roth In-Reply-To: <1234586918.41253.1392976718942.open-xchange@ox-webdesk.1and1.fr> References: <1392970647-21528-1-git-send-email-mdroth@linux.vnet.ibm.com> <1392970647-21528-30-git-send-email-mdroth@linux.vnet.ibm.com> <1234586918.41253.1392976718942.open-xchange@ox-webdesk.1and1.fr> Message-ID: <20140221201454.3593.24932@loki> Date: Fri, 21 Feb 2014 14:14:54 -0600 Subject: Re: [Qemu-devel] [PATCH 29/51] linux-user: pass correct parameter to do_shmctl() List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Laurent Vivier , qemu-devel@nongnu.org Cc: lersek@redhat.com, qemu-stable@nongnu.org, Petar.Jovanovic@imgtec.com Quoting Laurent Vivier (2014-02-21 03:58:38) >> Le 21 fevrier 2014 `a 09:17, Michael Roth a = ecrit : >> >> From: Petar Jovanovic >> >> Fix shmctl issue by passing correct parameter buf to do_shmctl(). >> >> Signed-off-by: Petar Jovanovic >> Signed-off-by: Riku Voipio >> (cherry picked from commit a29267846a52b4ca294ba3a962b74b67df7ce6d2) >> >> Signed-off-by: Michael Roth >> --- >> linux-user/syscall.c | 2 +- >> 1 file changed, 1 insertion(+), 1 deletion(-) >> >> diff --git a/linux-user/syscall.c b/linux-user/syscall.c >> index eaaf00d..a3575e7 100644 >> --- a/linux-user/syscall.c >> +++ b/linux-user/syscall.c >> @@ -3216,7 +3216,7 @@ static abi_long do_ipc(unsigned int call, int >first, >> >> /* IPC_* and SHM_* command values are the same on all linux platforms */ >> case IPCOP_shmctl: >> - ret =3D do_shmctl(first, second, third); >> + ret =3D do_shmctl(first, second, ptr); >> break; >> default: >> gemu_log("Unsupported ipc call: %d (version %d)\n", call, version); >> > = > I though this one was already applied : > = > http://patchwork.ozlabs.org/patch/225791/ Doesn't look like it, may want to rebase/repost > = > = > Regards, > Laurent