v9fs.lists.linux.dev archive mirror
 help / color / mirror / Atom feed
 messages from 2023-11-28 14:59:18 to 2023-12-21 13:25:48 UTC [more...]

[PATCH v5 00/40] netfs, afs, 9p: Delegate high-level I/O to netfslib
 2023-12-21 13:23 UTC  (26+ messages)
` [PATCH v5 01/40] afs: Remove whitespace before most ')' from the trace header
` [PATCH v5 02/40] afs: Automatically generate trace tag enums
` [PATCH v5 03/40] netfs, fscache: Move fs/fscache/* into fs/netfs/
` [PATCH v5 04/40] netfs, fscache: Combine fscache with netfs
` [PATCH v5 05/40] netfs, fscache: Remove ->begin_cache_operation
` [PATCH v5 06/40] netfs, fscache: Move /proc/fs/fscache to /proc/fs/netfs and put in a symlink
` [PATCH v5 07/40] netfs: Move pinning-for-writeback from fscache to netfs
` [PATCH v5 08/40] netfs: Add a procfile to list in-progress requests
` [PATCH v5 09/40] netfs: Allow the netfs to make the io (sub)request alloc larger
` [PATCH v5 10/40] netfs: Add a ->free_subrequest() op
` [PATCH v5 11/40] afs: Don't use folio->private to record partial modification
` [PATCH v5 12/40] netfs: Provide invalidate_folio and release_folio calls
` [PATCH v5 13/40] netfs: Implement unbuffered/DIO vs buffered I/O locking
` [PATCH v5 14/40] netfs: Add iov_iters to (sub)requests to describe various buffers
` [PATCH v5 15/40] netfs: Add support for DIO buffering
` [PATCH v5 16/40] netfs: Provide tools to create a buffer in an xarray
` [PATCH v5 17/40] netfs: Add func to calculate pagecount/size-limited span of an iterator
` [PATCH v5 18/40] netfs: Limit subrequest by size or number of segments
` [PATCH v5 19/40] netfs: Extend the netfs_io_*request structs to handle writes
` [PATCH v5 20/40] netfs: Add a hook to allow tell the netfs to update its i_size
` [PATCH v5 21/40] netfs: Make netfs_put_request() handle a NULL pointer
` [PATCH v5 22/40] netfs: Make the refcounting of netfs_begin_read() easier to use
` [PATCH v5 23/40] netfs: Prep to use folio->private for write grouping and streaming write
` [PATCH v5 24/40] netfs: Dispatch write requests to process a writeback slice
` [PATCH v5 25/40] netfs: Provide func to copy data to pagecache for buffered write

[PATCH 5.10 0/1] 9p/net: fix possible memory leak in p9_check_errors()
 2023-12-21 11:01 UTC  (2+ messages)
` [PATCH 5.10 1/1] "

[PATCH v4 00/39] netfs, afs, 9p: Delegate high-level I/O to netfslib
 2023-12-20 13:26 UTC  (64+ messages)
` [PATCH v4 01/39] netfs, fscache: Move fs/fscache/* into fs/netfs/
` [PATCH v4 02/39] netfs, fscache: Combine fscache with netfs
` [PATCH v4 03/39] netfs, fscache: Remove ->begin_cache_operation
` [PATCH v4 04/39] netfs, fscache: Move /proc/fs/fscache to /proc/fs/netfs and put in a symlink
` [PATCH v4 05/39] netfs: Move pinning-for-writeback from fscache to netfs
` [PATCH v4 06/39] netfs: Add a procfile to list in-progress requests
` [PATCH v4 07/39] netfs: Allow the netfs to make the io (sub)request alloc larger
` [PATCH v4 08/39] netfs: Add a ->free_subrequest() op
` [PATCH v4 09/39] afs: Don't use folio->private to record partial modification
` [PATCH v4 10/39] netfs: Provide invalidate_folio and release_folio calls
` [PATCH v4 11/39] netfs: Implement unbuffered/DIO vs buffered I/O locking
` [PATCH v4 12/39] netfs: Add iov_iters to (sub)requests to describe various buffers
` [PATCH v4 13/39] netfs: Add support for DIO buffering
` [PATCH v4 14/39] netfs: Provide tools to create a buffer in an xarray
` [PATCH v4 15/39] netfs: Add bounce buffering support
` [PATCH v4 16/39] netfs: Add func to calculate pagecount/size-limited span of an iterator
` [PATCH v4 17/39] netfs: Limit subrequest by size or number of segments
` [PATCH v4 18/39] netfs: Export netfs_put_subrequest() and some tracepoints
` [PATCH v4 19/39] netfs: Extend the netfs_io_*request structs to handle writes
` [PATCH v4 20/39] netfs: Add a hook to allow tell the netfs to update its i_size
` [PATCH v4 21/39] netfs: Make netfs_put_request() handle a NULL pointer
` [PATCH v4 22/39] netfs: Make the refcounting of netfs_begin_read() easier to use
` [PATCH v4 23/39] netfs: Prep to use folio->private for write grouping and streaming write
` [PATCH v4 24/39] netfs: Dispatch write requests to process a writeback slice
` [PATCH v4 25/39] netfs: Provide func to copy data to pagecache for buffered write
` [PATCH v4 26/39] netfs: Make netfs_read_folio() handle streaming-write pages
` [PATCH v4 27/39] netfs: Allocate multipage folios in the writepath
` [PATCH v4 28/39] netfs: Implement support for unbuffered/DIO read
` [PATCH v4 29/39] netfs: Implement unbuffered/DIO write support
` [PATCH v4 30/39] netfs: Implement buffered write API
` [PATCH v4 31/39] netfs: Allow buffered shared-writeable mmap through netfs_page_mkwrite()
` [PATCH v4 32/39] netfs: Provide netfs_file_read_iter()
` [PATCH v4 33/39] netfs, cachefiles: Pass upper bound length to allow expansion
` [PATCH v4 34/39] netfs: Provide a writepages implementation
` [PATCH v4 35/39] netfs: Provide a launder_folio implementation
` [PATCH v4 36/39] netfs: Implement a write-through caching option
` [PATCH v4 37/39] netfs: Optimise away reads above the point at which there can be no data
` [PATCH v4 38/39] afs: Use the netfs write helpers
` [PATCH v4 39/39] 9p: Use netfslib read/write_iter

[PATCH v4 00/13] netfs, cifs: Delegate high-level I/O to netfslib
 2023-12-13 15:41 UTC  (14+ messages)
` [PATCH v4 01/13] netfs: Rearrange netfs_io_subrequest to put request pointer first
` [PATCH v4 02/13] cifs: Replace cifs_readdata with a wrapper around netfs_io_subrequest
` [PATCH v4 03/13] cifs: Share server EOF pos with netfslib
` [PATCH v4 04/13] cifs: Set zero_point in the copy_file_range() and remap_file_range()
` [PATCH v4 05/13] cifs: Replace cifs_writedata with a wrapper around netfs_io_subrequest
` [PATCH v4 06/13] cifs: Use more fields from netfs_io_subrequest
` [PATCH v4 07/13] cifs: Make wait_mtu_credits take size_t args
` [PATCH v4 08/13] cifs: Implement netfslib hooks
` [PATCH v4 09/13] cifs: Move cifs_loose_read_iter() and cifs_file_write_iter() to file.c
` [PATCH v4 10/13] cifs: Cut over to using netfslib
` [PATCH v4 11/13] cifs: Remove some code that's no longer used, part 1
` [PATCH v4 12/13] cifs: Remove some code that's no longer used, part 2
` [PATCH v4 13/13] cifs: Remove some code that's no longer used, part 3

[PATCH v3 00/59] netfs, afs, 9p, cifs: Delegate high-level I/O to netfslib
 2023-12-13 15:32 UTC  (65+ messages)
` [PATCH v3 01/59] netfs, fscache: Move fs/fscache/* into fs/netfs/
` [PATCH v3 02/59] netfs, fscache: Combine fscache with netfs
` [PATCH v3 03/59] netfs, fscache: Remove ->begin_cache_operation
` [PATCH v3 04/59] netfs, fscache: Move /proc/fs/fscache to /proc/fs/netfs and put in a symlink
` [PATCH v3 05/59] netfs: Move pinning-for-writeback from fscache to netfs
` [PATCH v3 06/59] netfs: Add a procfile to list in-progress requests
` [PATCH v3 07/59] netfs: Allow the netfs to make the io (sub)request alloc larger
` [PATCH v3 08/59] netfs: Add a ->free_subrequest() op
` [PATCH v3 09/59] afs: Don't use folio->private to record partial modification
` [PATCH v3 10/59] netfs: Provide invalidate_folio and release_folio calls
` [PATCH v3 11/59] netfs: Implement unbuffered/DIO vs buffered I/O locking
` [PATCH v3 12/59] netfs: Add iov_iters to (sub)requests to describe various buffers
` [PATCH v3 13/59] netfs: Add support for DIO buffering
` [PATCH v3 14/59] netfs: Provide tools to create a buffer in an xarray
` [PATCH v3 15/59] netfs: Add bounce buffering support
` [PATCH v3 16/59] netfs: Add func to calculate pagecount/size-limited span of an iterator
` [PATCH v3 17/59] netfs: Limit subrequest by size or number of segments
` [PATCH v3 18/59] netfs: Export netfs_put_subrequest() and some tracepoints
` [PATCH v3 19/59] netfs: Extend the netfs_io_*request structs to handle writes
` [PATCH v3 20/59] netfs: Add a hook to allow tell the netfs to update its i_size
` [PATCH v3 21/59] netfs: Make netfs_put_request() handle a NULL pointer
` [PATCH v3 22/59] netfs: Make the refcounting of netfs_begin_read() easier to use
` [PATCH v3 23/59] netfs: Prep to use folio->private for write grouping and streaming write
` [PATCH v3 24/59] netfs: Dispatch write requests to process a writeback slice
` [PATCH v3 25/59] netfs: Provide func to copy data to pagecache for buffered write
` [PATCH v3 26/59] netfs: Make netfs_read_folio() handle streaming-write pages
` [PATCH v3 27/59] netfs: Allocate multipage folios in the writepath
` [PATCH v3 28/59] netfs: Implement support for unbuffered/DIO read
` [PATCH v3 29/59] netfs: Implement unbuffered/DIO write support
` [PATCH v3 30/59] netfs: Implement buffered write API
` [PATCH v3 31/59] netfs: Allow buffered shared-writeable mmap through netfs_page_mkwrite()
` [PATCH v3 32/59] netfs: Provide netfs_file_read_iter()
` [PATCH v3 33/59] netfs, cachefiles: Pass upper bound length to allow expansion
` [PATCH v3 34/59] netfs: Provide a writepages implementation
` [PATCH v3 35/59] netfs: Provide minimum blocksize parameter
` [PATCH v3 36/59] netfs: Make netfs_skip_folio_read() take account of blocksize
` [PATCH v3 37/59] netfs: Perform content encryption
` [PATCH v3 38/59] netfs: Decrypt encrypted content
` [PATCH v3 39/59] netfs: Support decryption on ubuffered/DIO read
` [PATCH v3 40/59] netfs: Support encryption on Unbuffered/DIO write
` [PATCH v3 41/59] netfs: Provide a launder_folio implementation
` [PATCH v3 42/59] netfs: Implement a write-through caching option
` [PATCH v3 43/59] netfs: Rearrange netfs_io_subrequest to put request pointer first
` [PATCH v3 44/59] netfs: Optimise away reads above the point at which there can be no data
` [PATCH v3 45/59] afs: Use the netfs write helpers
` [PATCH v3 46/59] 9p: Use netfslib read/write_iter
` [PATCH v3 47/59] cifs: Replace cifs_readdata with a wrapper around netfs_io_subrequest
` [PATCH v3 48/59] cifs: Share server EOF pos with netfslib
` [PATCH v3 49/59] cifs: Set zero_point in the copy_file_range() and remap_file_range()
` [PATCH v3 50/59] cifs: Replace cifs_writedata with a wrapper around netfs_io_subrequest
` [PATCH v3 51/59] cifs: Use more fields from netfs_io_subrequest
` [PATCH v3 52/59] cifs: Make wait_mtu_credits take size_t args
` [PATCH v3 53/59] cifs: Implement netfslib hooks
` [PATCH v3 54/59] cifs: Move cifs_loose_read_iter() and cifs_file_write_iter() to file.c
` [PATCH v3 55/59] cifs: Cut over to using netfslib
` [PATCH v3 56/59] cifs: Remove some code that's no longer used, part 1
` [PATCH v3 57/59] cifs: Remove some code that's no longer used, part 2
` [PATCH v3 58/59] cifs: Remove some code that's no longer used, part 3
` [PATCH v3 59/59] netfs: Eliminate PG_fscache by setting folio->private and marking dirty

[PATCH] net: 9p: avoid freeing uninit memory in p9pdu_vreadf
 2023-12-11 23:21 UTC  (14+ messages)
  ` [PATCH v2] "
        ` [PATCH v3] "
            ` [PATCH v4] "

[PATCH v2] 9p: prevent read overrun in protocol dump tracepoint
 2023-12-05 11:41 UTC  (3+ messages)

[PATCH] 9p: prevent read overrun in protocol dump tracepoint
 2023-12-04 16:20 UTC  (9+ messages)

[PATCH net] MAINTAINERS: exclude 9p from networking
 2023-12-01 11:10 UTC  (3+ messages)


This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).