From: David Howells <dhowells@redhat•com>
To: netdev@vger•kernel.org
Cc: David Howells <dhowells@redhat•com>,
Herbert Xu <herbert@gondor•apana.org.au>,
"David S. Miller" <davem@davemloft•net>,
Eric Dumazet <edumazet@google•com>,
Jakub Kicinski <kuba@kernel•org>, Paolo Abeni <pabeni@redhat•com>,
Willem de Bruijn <willemdebruijn.kernel@gmail•com>,
David Ahern <dsahern@kernel•org>,
Matthew Wilcox <willy@infradead•org>,
Jens Axboe <axboe@kernel•dk>,
linux-crypto@vger•kernel.org, linux-mm@kvack•org,
linux-kernel@vger•kernel.org, Jeff Layton <jlayton@kernel•org>,
Steve French <sfrench@samba•org>,
Shyam Prasad N <nspmangalore@gmail•com>,
Rohith Surabattula <rohiths.msft@gmail•com>,
Simon Horman <simon.horman@corigine•com>,
linux-cachefs@redhat•com, linux-cifs@vger•kernel.org,
linux-fsdevel@vger•kernel.org
Subject: [PATCH net-next v3 03/10] Wrap lines at 80
Date: Tue, 6 Jun 2023 14:08:49 +0100 [thread overview]
Message-ID: <20230606130856.1970660-4-dhowells@redhat.com> (raw)
In-Reply-To: <20230606130856.1970660-1-dhowells@redhat.com>
Wrap a line at 80 to stop checkpatch complaining.
Signed-off-by: David Howells <dhowells@redhat•com>
cc: Jeff Layton <jlayton@kernel•org>
cc: Steve French <sfrench@samba•org>
cc: Shyam Prasad N <nspmangalore@gmail•com>
cc: Rohith Surabattula <rohiths.msft@gmail•com>
cc: Jens Axboe <axboe@kernel•dk>
cc: Herbert Xu <herbert@gondor•apana.org.au>
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: Matthew Wilcox <willy@infradead•org>
cc: Simon Horman <simon.horman@corigine•com>
cc: linux-crypto@vger•kernel.org
cc: linux-cachefs@redhat•com
cc: linux-cifs@vger•kernel.org
cc: linux-fsdevel@vger•kernel.org
cc: netdev@vger•kernel.org
---
fs/netfs/iterator.c | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/fs/netfs/iterator.c b/fs/netfs/iterator.c
index f41a37bca1e8..9f09dc30ceb6 100644
--- a/fs/netfs/iterator.c
+++ b/fs/netfs/iterator.c
@@ -119,7 +119,8 @@ static ssize_t extract_user_to_sg(struct iov_iter *iter,
size_t len, off;
/* We decant the page list into the tail of the scatterlist */
- pages = (void *)sgtable->sgl + array_size(sg_max, sizeof(struct scatterlist));
+ pages = (void *)sgtable->sgl +
+ array_size(sg_max, sizeof(struct scatterlist));
pages -= sg_max;
do {
next prev parent reply other threads:[~2023-06-06 13:10 UTC|newest]
Thread overview: 18+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-06-06 13:08 [PATCH net-next v3 00/10] crypto, splice, net: Make AF_ALG handle sendmsg(MSG_SPLICE_PAGES) David Howells
2023-06-06 13:08 ` [PATCH net-next v3 01/10] Drop the netfs_ prefix from netfs_extract_iter_to_sg() David Howells
2023-06-06 13:08 ` [PATCH net-next v3 02/10] Fix a couple of spelling mistakes David Howells
2023-06-06 13:08 ` David Howells [this message]
2023-06-06 13:08 ` [PATCH net-next v3 04/10] Move netfs_extract_iter_to_sg() to lib/scatterlist.c David Howells
2023-06-06 13:08 ` [PATCH net-next v3 05/10] crypto: af_alg: Pin pages rather than ref'ing if appropriate David Howells
2023-06-07 8:40 ` Herbert Xu
2023-06-06 13:08 ` [PATCH net-next v3 06/10] crypto: af_alg: Use extract_iter_to_sg() to create scatterlists David Howells
2023-06-07 8:41 ` Herbert Xu
2023-06-06 13:08 ` [PATCH net-next v3 07/10] crypto: af_alg: Indent the loop in af_alg_sendmsg() David Howells
2023-06-07 8:41 ` Herbert Xu
2023-06-06 13:08 ` [PATCH net-next v3 08/10] crypto: af_alg: Support MSG_SPLICE_PAGES David Howells
2023-06-07 8:41 ` Herbert Xu
2023-06-06 13:08 ` [PATCH net-next v3 09/10] crypto: af_alg: Convert af_alg_sendpage() to use MSG_SPLICE_PAGES David Howells
2023-06-07 8:41 ` Herbert Xu
2023-06-06 13:08 ` [PATCH net-next v3 10/10] crypto: af_alg/hash: Support MSG_SPLICE_PAGES David Howells
2023-06-07 8:48 ` Herbert Xu
2023-06-08 13:40 ` [PATCH net-next v3 00/10] crypto, splice, net: Make AF_ALG handle sendmsg(MSG_SPLICE_PAGES) patchwork-bot+netdevbpf
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=20230606130856.1970660-4-dhowells@redhat.com \
--to=dhowells@redhat$(echo .)com \
--cc=axboe@kernel$(echo .)dk \
--cc=davem@davemloft$(echo .)net \
--cc=dsahern@kernel$(echo .)org \
--cc=edumazet@google$(echo .)com \
--cc=herbert@gondor$(echo .)apana.org.au \
--cc=jlayton@kernel$(echo .)org \
--cc=kuba@kernel$(echo .)org \
--cc=linux-cachefs@redhat$(echo .)com \
--cc=linux-cifs@vger$(echo .)kernel.org \
--cc=linux-crypto@vger$(echo .)kernel.org \
--cc=linux-fsdevel@vger$(echo .)kernel.org \
--cc=linux-kernel@vger$(echo .)kernel.org \
--cc=linux-mm@kvack$(echo .)org \
--cc=netdev@vger$(echo .)kernel.org \
--cc=nspmangalore@gmail$(echo .)com \
--cc=pabeni@redhat$(echo .)com \
--cc=rohiths.msft@gmail$(echo .)com \
--cc=sfrench@samba$(echo .)org \
--cc=simon.horman@corigine$(echo .)com \
--cc=willemdebruijn.kernel@gmail$(echo .)com \
--cc=willy@infradead$(echo .)org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
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