diff mbox series

linux_user: fix TARGET_SOL_SOCKET for sparc

Message ID 20170920063558.89376-1-carenas@gmail.com
State New
Headers show
Series linux_user: fix TARGET_SOL_SOCKET for sparc | expand

Commit Message

Carlo Arenas Sept. 20, 2017, 6:35 a.m. UTC
Signed-off-by: Carlo Marcelo Arenas Belón <carenas@gmail.com>
---
 linux-user/socket.h | 9 +++++----
 1 file changed, 5 insertions(+), 4 deletions(-)
diff mbox series

Patch

diff --git a/linux-user/socket.h b/linux-user/socket.h
index 129f9b4713..1db1a184b9 100644
--- a/linux-user/socket.h
+++ b/linux-user/socket.h
@@ -229,7 +229,9 @@ 
      * @SOCK_NONBLOCK - sets the O_NONBLOCK file status flag.
      */
 
-    #define ARCH_HAS_SOCKET_TYPES          1
+    #define ARCH_HAS_SOCKET_TYPES    1
+
+    #define TARGET_SOL_SOCKET        0xffff
 
     enum sock_type {
            TARGET_SOCK_STREAM      = 1,
@@ -250,14 +252,13 @@ 
 
     #define TARGET_SO_PASSSEC        31
 #else
+    #define TARGET_SOL_SOCKET        1
+
     #define TARGET_SO_LINGER         13
 
     #define TARGET_SO_PASSSEC        34
 #endif
 
-    /* For setsockopt(2) */
-    #define TARGET_SOL_SOCKET      1
-
     #define TARGET_SO_DEBUG        1
     #define TARGET_SO_REUSEADDR    2
     #define TARGET_SO_TYPE         3