From: Laurent Vivier <laurent@vivier.eu>
To: Josh Kunz <jkz@google.com>, qemu-devel@nongnu.org
Cc: riku.voipio@iki.fi
Subject: Re: [PATCH] linux-user: Use EPROTONOSUPPORT for unimplemented netlink protocols
Date: Mon, 13 Jul 2020 20:49:26 +0200 [thread overview]
Message-ID: <cc54c9f9-d74a-3d67-261d-0e34d65ee1fd@vivier.eu> (raw)
In-Reply-To: <20200707001036.1671982-1-jkz@google.com>
Le 07/07/2020 à 02:10, Josh Kunz a écrit :
> 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>
> ---
> linux-user/syscall.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/linux-user/syscall.c b/linux-user/syscall.c
> index 97de9fb5c9..4ab9852600 100644
> --- a/linux-user/syscall.c
> +++ b/linux-user/syscall.c
> @@ -2987,7 +2987,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 ||
>
Applied to my linux-user-for-5.1 branch.
Thanks,
Laurent
prev parent reply other threads:[~2020-07-13 18:50 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2020-07-07 0:10 [PATCH] linux-user: Use EPROTONOSUPPORT for unimplemented netlink protocols Josh Kunz
2020-07-07 9:46 ` Laurent Vivier
2020-07-13 18:49 ` Laurent Vivier [this message]
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=cc54c9f9-d74a-3d67-261d-0e34d65ee1fd@vivier.eu \
--to=laurent@vivier.eu \
--cc=jkz@google.com \
--cc=qemu-devel@nongnu.org \
--cc=riku.voipio@iki.fi \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).