rxrpc: Fix error check on ->alloc_txbuf()
authorDavid Howells <dhowells@redhat.com>
Tue, 12 Mar 2024 23:37:18 +0000 (23:37 +0000)
committerPaolo Abeni <pabeni@redhat.com>
Thu, 14 Mar 2024 12:09:53 +0000 (13:09 +0100)
commit89e4354110ca64bf4949cca83b55149bc80733bc
tree6a9e4f74e7e9eb3d454c285e7fcf4b0581159680
parent6b2536462fd48b49563aef0555517cb91047c5f5
rxrpc: Fix error check on ->alloc_txbuf()

rxrpc_alloc_*_txbuf() and ->alloc_txbuf() return NULL to indicate no
memory, but rxrpc_send_data() uses IS_ERR().

Fix rxrpc_send_data() to check for NULL only and set -ENOMEM if it sees
that.

Fixes: 49489bb03a50 ("rxrpc: Do zerocopy using MSG_SPLICE_PAGES and page frags")
Signed-off-by: David Howells <dhowells@redhat.com>
Reported-by: Marc Dionne <marc.dionne@auristor.com>
cc: "David S. Miller" <davem@davemloft.net>
cc: Eric Dumazet <edumazet@google.com>
cc: Jakub Kicinski <kuba@kernel.org>
cc: Paolo Abeni <pabeni@redhat.com>
cc: linux-afs@lists.infradead.org
cc: netdev@vger.kernel.org
Signed-off-by: Paolo Abeni <pabeni@redhat.com>
net/rxrpc/sendmsg.c