qemu-stable
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [Qemu-stable] [Qemu-devel] [PATCH 29/51] linux-user: pass correct pa


From: Michael Roth
Subject: Re: [Qemu-stable] [Qemu-devel] [PATCH 29/51] linux-user: pass correct parameter to do_shmctl()
Date: Fri, 21 Feb 2014 14:14:54 -0600
User-agent: alot/0.3.4

Quoting Laurent Vivier (2014-02-21 03:58:38)
>> Le 21 fevrier 2014 `a 09:17, Michael Roth <address@hidden> a ecrit :
>>
>> From: Petar Jovanovic <address@hidden>
>>
>> Fix shmctl issue by passing correct parameter buf to do_shmctl().
>>
>> Signed-off-by: Petar Jovanovic <address@hidden>
>> Signed-off-by: Riku Voipio <address@hidden>
>> (cherry picked from commit a29267846a52b4ca294ba3a962b74b67df7ce6d2)
>>
>> Signed-off-by: Michael Roth <address@hidden>
>> ---
>> 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 = do_shmctl(first, second, third);
>> + ret = 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




reply via email to

[Prev in Thread] Current Thread [Next in Thread]