Lines Matching +full:qemu +full:- +full:user
6 [here]: https://gitlab.com/qemu-project/qemu/-/issues/885
8 ---
9 linux-user/generic/sockbits.h | 2 ++
10 linux-user/mips/sockbits.h | 2 ++
11 linux-user/sparc/sockbits.h | 2 ++
12 linux-user/syscall.c | 6 ++++++
15 diff --git a/linux-user/generic/sockbits.h b/linux-user/generic/sockbits.h
17 --- a/linux-user/generic/sockbits.h
18 +++ b/linux-user/generic/sockbits.h
19 @@ -36,6 +36,8 @@
26 /* Security levels - as per NRL IPv6 - don't actually do anything */
28 diff --git a/linux-user/mips/sockbits.h b/linux-user/mips/sockbits.h
30 --- a/linux-user/mips/sockbits.h
31 +++ b/linux-user/mips/sockbits.h
32 @@ -39,6 +39,8 @@
33 #define TARGET_SO_RCVLOWAT 0x1004 /* receive low-water mark */
41 diff --git a/linux-user/sparc/sockbits.h b/linux-user/sparc/sockbits.h
43 --- a/linux-user/sparc/sockbits.h
44 +++ b/linux-user/sparc/sockbits.h
45 @@ -26,6 +26,8 @@
54 diff --git a/linux-user/syscall.c b/linux-user/syscall.c
56 --- a/linux-user/syscall.c
57 +++ b/linux-user/syscall.c
58 @@ -2348,6 +2348,9 @@ set_timeout:
64 + return -TARGET_ENOPROTOOPT;
68 @@ -2595,6 +2598,9 @@ get_timeout:
74 + return -TARGET_ENOPROTOOPT;
78 --