OSDN Git Service

Merge branch 'crypto-splice-net-make-af_alg-handle-sendmsg-msg_splice_pages'
authorPaolo Abeni <pabeni@redhat.com>
Thu, 8 Jun 2023 11:42:54 +0000 (13:42 +0200)
committerPaolo Abeni <pabeni@redhat.com>
Thu, 8 Jun 2023 11:42:54 +0000 (13:42 +0200)
commitbfd019d10fdabf70f9b01264aea6d6c7595f9226
treec9b24c0a2ad6e764faac98f2611687bdb5354c47
parentb62d9e20049209c3d4a15835a9473594d75641eb
parentc662b043cdca89bf0f03fc37251000ac69a3a548
Merge branch 'crypto-splice-net-make-af_alg-handle-sendmsg-msg_splice_pages'

David Howells says:

====================
crypto, splice, net: Make AF_ALG handle sendmsg(MSG_SPLICE_PAGES)

Here are patches to make AF_ALG handle the MSG_SPLICE_PAGES internal
sendmsg flag.  MSG_SPLICE_PAGES is an internal hint that tells the protocol
that it should splice the pages supplied if it can.  The sendpage functions
are then turned into wrappers around that.

This set consists of the following parts:

 (1) Move netfs_extract_iter_to_sg() to somewhere more general and rename
     it to drop the "netfs" prefix.  We use this to extract directly from
     an iterator into a scatterlist.

 (2) Make AF_ALG use iov_iter_extract_pages().  This has the additional
     effect of pinning pages obtained from userspace rather than taking
     refs on them.  Pages from kernel-backed iterators would not be pinned,
     but AF_ALG isn't really meant for use by kernel services.

 (3) Change AF_ALG still further to use extract_iter_to_sg().

 (4) Make af_alg_sendmsg() support MSG_SPLICE_PAGES support and make
     af_alg_sendpage() just a wrapper around sendmsg().  This has to take
     refs on the pages pinned for the moment.

 (5) Make hash_sendmsg() support MSG_SPLICE_PAGES by simply ignoring it.
     hash_sendpage() is left untouched to be removed later, after the
     splice core has been changed to call sendmsg().
====================

Link: https://lore.kernel.org/r/20230606130856.1970660-1-dhowells@redhat.com
Signed-off-by: Paolo Abeni <pabeni@redhat.com>