qemu-devel
[Top][All Lists]
Advanced

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

Re: [Qemu-devel] [PATCH v2 00/13] linux-user: __{get, put}_user return v


From: Riku Voipio
Subject: Re: [Qemu-devel] [PATCH v2 00/13] linux-user: __{get, put}_user return value cleanup
Date: Mon, 9 Jun 2014 15:25:58 +0300

On 8 June 2014 00:40, Peter Maydell <address@hidden> wrote:
> On 6 June 2014 10:46,  <address@hidden> wrote:
>> From: Riku Voipio <address@hidden>
>>
>> This series is a cleanup and gcc-4.9 buildfix:
>>
>> linux-user/syscall.c: In function ‘host_to_target_stat64’:
>> linux-user/qemu.h:301:19: error: right-hand operand of comma expression has 
>> no
>> effect [-Werror=unused-value]
>>       ((hptr), (x)), 0)
>>
>> removing the unused 0 moves the bar:
>>
>> linux-user/main.c: In function ‘arm_kernel_cmpxchg64_helper’:
>> linux-user/qemu.h:330:15: error: void value not ignored as it ought to be
>>          __ret = __put_user((x), __hptr);    \
>>
>> And after fixing that, we see there is a lot of reading the return
>> value of __put_user and __get_user in signal.c. A lot of this code
>> has been copied from kernel, where the accessor functions might fail
>> Qemu uses different model of accessing. Access is already checked in
>> lock_user(), and thus __put/__get user cannot fail.
>>
>> So this patchset clears signal.c from reading __get_user and
>> __put_user return values, and then fixes the definitions of the macros.
>
> Other than the issue about ARM valid_user_regs(),
> Reviewed-by: Peter Maydell <address@hidden>

Ok, I've updated the two mentioned patches and added your reviewed-by.
I think instead of sending v3 round of the patches to the list, I'll
just send them in the linux-user pull req[1] - people are already
itching got gcc-4.9 builds. Even in the pull request people can still
comment if there are other issues with the patches.

Riku

[1] 
https://git.linaro.org/people/riku.voipio/qemu.git/shortlog/refs/heads/linux-user-for-upstream



reply via email to

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