]> git.proxmox.com Git - mirror_qemu.git/commitdiff
linux-user: Use EPROTONOSUPPORT for unimplemented netlink protocols
authorJosh Kunz <jkz@google.com>
Tue, 7 Jul 2020 00:10:36 +0000 (17:10 -0700)
committerLaurent Vivier <laurent@vivier.eu>
Mon, 13 Jul 2020 18:47:57 +0000 (20:47 +0200)
Linux uses the EPROTONOSUPPORT error code[1] if the users requests a
netlink socket with an unsupported netlink protocol. This change
switches linux-user to use the same code as Linux, instead of
EPFNOSUPPORT (which AFAIK is just an anachronistic version of
EAFNOSUPPORT).

Tested by compiling all linux-user targets on x86.

[1]:
https://github.com/torvalds/linux/blob/bfe91da29bfad9941d5d703d45e29f0812a20724/net/netlink/af_netlink.c#L683

Signed-off-by: Josh Kunz <jkz@google.com>
Reviewed-by: Laurent Vivier <laurent@vivier.eu>
Message-Id: <20200707001036.1671982-1-jkz@google.com>
Signed-off-by: Laurent Vivier <laurent@vivier.eu>
linux-user/syscall.c

index 98ea86ca81fbb8e1f31f7066785a9c2a1c8386c7..e9f53340cd65d92b1a3f5f2a48696e848ce36cb8 100644 (file)
@@ -2990,7 +2990,7 @@ static abi_long do_socket(int domain, int type, int protocol)
 #endif
          protocol == NETLINK_KOBJECT_UEVENT ||
          protocol == NETLINK_AUDIT)) {
-        return -TARGET_EPFNOSUPPORT;
+        return -TARGET_EPROTONOSUPPORT;
     }
 
     if (domain == AF_PACKET ||