diff options
author | Jens Axboe <axboe@kernel.dk> | 2021-02-17 20:14:21 +0300 |
---|---|---|
committer | Jens Axboe <axboe@kernel.dk> | 2021-02-24 06:32:11 +0300 |
commit | e54937963fa249595824439dc839c948188dea83 (patch) | |
tree | 9425e2f1e18d4efec36a883ecdd61bb222b15148 /net/ipv6/af_inet6.c | |
parent | 2587890b5e2892dfecaa5e5126bdac8076a4e6f7 (diff) | |
download | linux-e54937963fa249595824439dc839c948188dea83.tar.xz |
net: remove cmsg restriction from io_uring based send/recvmsg calls
No need to restrict these anymore, as the worker threads are direct
clones of the original task. Hence we know for a fact that we can
support anything that the regular task can.
Since the only user of proto_ops->flags was to flag PROTO_CMSG_DATA_ONLY,
kill the member and the flag definition too.
Signed-off-by: Jens Axboe <axboe@kernel.dk>
Diffstat (limited to 'net/ipv6/af_inet6.c')
-rw-r--r-- | net/ipv6/af_inet6.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/net/ipv6/af_inet6.c b/net/ipv6/af_inet6.c index 1fb75f01756c..802f5111805a 100644 --- a/net/ipv6/af_inet6.c +++ b/net/ipv6/af_inet6.c @@ -665,7 +665,6 @@ int inet6_recvmsg(struct socket *sock, struct msghdr *msg, size_t size, const struct proto_ops inet6_stream_ops = { .family = PF_INET6, - .flags = PROTO_CMSG_DATA_ONLY, .owner = THIS_MODULE, .release = inet6_release, .bind = inet6_bind, |