[Qemu-devel] [PATCH v4 0/2] linux-user: fix incompatibility with latest glibc

Daniel P. Berrangé posted 2 patches 5 years, 1 month ago
Test docker-mingw@fedora passed
Test docker-clang@ubuntu passed
Test asan passed
Test checkpatch passed
Patches applied successfully (tree, apply log)
git fetch https://github.com/patchew-project/qemu tags/patchew/20190320161842.13908-1-berrange@redhat.com
Maintainers: Laurent Vivier <laurent@vivier.eu>, Riku Voipio <riku.voipio@iki.fi>
linux-user/syscall.c | 19 ++++++-------------
1 file changed, 6 insertions(+), 13 deletions(-)
[Qemu-devel] [PATCH v4 0/2] linux-user: fix incompatibility with latest glibc
Posted by Daniel P. Berrangé 5 years, 1 month ago
Changed in v4:

 - Drop support for systems without __NR_gettid
 - Keep using syscall0 macro

Changed in v3:
 - put { on separate line to please checkpatch

Changed in v2:
 - Rename to sys_gettid instead of using conditional compilation

Daniel P. Berrangé (2):
  linux-user: assume __NR_gettid always exists
  linux-user: rename gettid() to sys_gettid() to avoid clash with glibc

 linux-user/syscall.c | 19 ++++++-------------
 1 file changed, 6 insertions(+), 13 deletions(-)

-- 
2.20.1


Re: [Qemu-devel] [PATCH v4 0/2] linux-user: fix incompatibility with latest glibc
Posted by Richard Henderson 5 years, 1 month ago
On 3/20/19 9:18 AM, Daniel P. Berrangé wrote:
> Daniel P. Berrangé (2):
>   linux-user: assume __NR_gettid always exists
>   linux-user: rename gettid() to sys_gettid() to avoid clash with glibc

Reviewed-by: Richard Henderson <richard.henderson@linaro.org>


r~

Re: [Qemu-devel] [PATCH v4 0/2] linux-user: fix incompatibility with latest glibc
Posted by Laurent Vivier 5 years, 1 month ago
On 20/03/2019 17:18, Daniel P. Berrangé wrote:
> Changed in v4:
> 
>  - Drop support for systems without __NR_gettid
>  - Keep using syscall0 macro
> 
> Changed in v3:
>  - put { on separate line to please checkpatch
> 
> Changed in v2:
>  - Rename to sys_gettid instead of using conditional compilation
> 
> Daniel P. Berrangé (2):
>   linux-user: assume __NR_gettid always exists
>   linux-user: rename gettid() to sys_gettid() to avoid clash with glibc
> 
>  linux-user/syscall.c | 19 ++++++-------------
>  1 file changed, 6 insertions(+), 13 deletions(-)
> 
Reviewed-by: Laurent Vivier <laurent@vivier.eu>