[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-ID: <20230111184245.3784393-1-kbusch@meta.com>
Date: Wed, 11 Jan 2023 10:42:45 -0800
From: Keith Busch <kbusch@...a.com>
To: <netdev@...r.kernel.org>
CC: <davem@...emloft.net>, <edumazet@...gle.com>, <kuba@...nel.org>,
<pabeni@...hat.com>, <axboe@...nel.dk>, <io-uring@...r.kernel.org>,
<linux-kernel@...r.kernel.org>, Keith Busch <kbusch@...nel.org>
Subject: [PATCH] caif: don't assume iov_iter type
From: Keith Busch <kbusch@...nel.org>
The details of the iov_iter types are appropriately abstracted, so
there's no need to check for specific type fields. Just let the
abstractions handle it.
This is preparing for io_uring/net's io_send to utilize the more
efficient ITER_UBUF.
Signed-off-by: Keith Busch <kbusch@...nel.org>
---
net/caif/caif_socket.c | 4 ----
1 file changed, 4 deletions(-)
diff --git a/net/caif/caif_socket.c b/net/caif/caif_socket.c
index 748be72532485..1f2c1d7b90e23 100644
--- a/net/caif/caif_socket.c
+++ b/net/caif/caif_socket.c
@@ -533,10 +533,6 @@ static int caif_seqpkt_sendmsg(struct socket *sock, struct msghdr *msg,
if (msg->msg_namelen)
goto err;
- ret = -EINVAL;
- if (unlikely(msg->msg_iter.nr_segs == 0) ||
- unlikely(msg->msg_iter.iov->iov_base == NULL))
- goto err;
noblock = msg->msg_flags & MSG_DONTWAIT;
timeo = sock_sndtimeo(sk, noblock);
--
2.30.2
Powered by blists - more mailing lists