[Linux-cachefs] [PATCH net-next v3 03/10] Wrap lines at 80

David Howells dhowells at redhat.com
Tue Jun 6 13:08:49 UTC 2023


Wrap a line at 80 to stop checkpatch complaining.

Signed-off-by: David Howells <dhowells at redhat.com>
cc: Jeff Layton <jlayton at kernel.org>
cc: Steve French <sfrench at samba.org>
cc: Shyam Prasad N <nspmangalore at gmail.com>
cc: Rohith Surabattula <rohiths.msft at gmail.com>
cc: Jens Axboe <axboe at kernel.dk>
cc: Herbert Xu <herbert at gondor.apana.org.au>
cc: "David S. Miller" <davem at davemloft.net>
cc: Eric Dumazet <edumazet at google.com>
cc: Jakub Kicinski <kuba at kernel.org>
cc: Paolo Abeni <pabeni at redhat.com>
cc: Matthew Wilcox <willy at infradead.org>
cc: Simon Horman <simon.horman at corigine.com>
cc: linux-crypto at vger.kernel.org
cc: linux-cachefs at redhat.com
cc: linux-cifs at vger.kernel.org
cc: linux-fsdevel at vger.kernel.org
cc: netdev at 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 {


More information about the Linux-cachefs mailing list