All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 0/6] cifs: Use iov_iters down to the network transport
@ 2022-05-09 16:36 David Howells
  2022-05-09 16:36 ` [PATCH 1/6] iov_iter: Add a function to extract an iter's buffers to a bvec iter David Howells
                   ` (6 more replies)
  0 siblings, 7 replies; 8+ messages in thread
From: David Howells @ 2022-05-09 16:36 UTC (permalink / raw)
  To: Steve French
  Cc: Steve French, linux-cifs, Shyam Prasad N, Rohith Surabattula,
	dhowells, Shyam Prasad N, Rohith Surabattula, Jeff Layton,
	Al Viro, linux-cifs, linux-fsdevel, linux-kernel


Hi Steve,

Here's a subset of my cifs-experimental branch.  It alters the cifs driver
to pass iov_iters down to the lowest layers where they can be passed to the
network transport.

I've fixed a couple of bugs in it also, including the RCU warning you were
seeing.  I'm seeing some slow calls, however, but I'm not sure how to debug
them.  RDMA also needs looking at, but I'm not sure how the RDMA API works.

I've pushed the patches here also:

	https://git.kernel.org/pub/scm/linux/kernel/git/dhowells/linux-fs.git/log/?h=cifs-for-sfrench

David
---
David Howells (6):
      iov_iter: Add a function to extract an iter's buffers to a bvec iter
      iov_iter: Add a general purpose iteration function
      cifs: Add some helper functions
      cifs: Add a function to read into an iter from a socket
      cifs: Change the I/O paths to use an iterator rather than a page list
      cifs: Remove unused code


 fs/cifs/cifsencrypt.c |   40 +-
 fs/cifs/cifsfs.h      |    3 +
 fs/cifs/cifsglob.h    |   28 +-
 fs/cifs/cifsproto.h   |   11 +-
 fs/cifs/cifssmb.c     |  225 +++++---
 fs/cifs/connect.c     |   16 +
 fs/cifs/file.c        | 1263 ++++++++++++++---------------------------
 fs/cifs/misc.c        |  109 ----
 fs/cifs/smb2ops.c     |  366 ++++++------
 fs/cifs/smb2pdu.c     |   12 +-
 fs/cifs/transport.c   |   37 +-
 include/linux/uio.h   |    8 +
 lib/iov_iter.c        |  133 +++++
 13 files changed, 935 insertions(+), 1316 deletions(-)



^ permalink raw reply	[flat|nested] 8+ messages in thread

end of thread, other threads:[~2022-05-13 15:59 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-05-09 16:36 [PATCH 0/6] cifs: Use iov_iters down to the network transport David Howells
2022-05-09 16:36 ` [PATCH 1/6] iov_iter: Add a function to extract an iter's buffers to a bvec iter David Howells
2022-05-09 16:36 ` [PATCH 2/6] iov_iter: Add a general purpose iteration function David Howells
2022-05-09 16:36 ` [PATCH 3/6] cifs: Add some helper functions David Howells
2022-05-09 16:36 ` [PATCH 4/6] cifs: Add a function to read into an iter from a socket David Howells
2022-05-09 16:36 ` [PATCH 5/6] cifs: Change the I/O paths to use an iterator rather than a page list David Howells
2022-05-09 16:36 ` [PATCH 6/6] cifs: Remove unused code David Howells
2022-05-13 15:59 ` [PATCH 7/6] cifs: Make the cifs RDMA code use iterators David Howells

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.