index
:
linux
master
linux
Fast-forward packages
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
fs
/
netfs
(
follow
)
Commit message (
Expand
)
Author
Age
Files
Lines
...
|
*
netfs: Implement unbuffered/DIO read support
David Howells
2023-12-28
7
-10
/
+210
|
*
netfs: Allocate multipage folios in the writepath
David Howells
2023-12-28
1
-2
/
+7
|
*
netfs: Make netfs_read_folio() handle streaming-write pages
David Howells
2023-12-28
1
-3
/
+58
|
*
netfs: Provide func to copy data to pagecache for buffered write
David Howells
2023-12-28
5
-0
/
+383
|
*
netfs: Dispatch write requests to process a writeback slice
David Howells
2023-12-28
3
-1
/
+371
|
*
netfs: Prep to use folio->private for write grouping and streaming write
David Howells
2023-12-28
2
-0
/
+74
|
*
netfs: Make the refcounting of netfs_begin_read() easier to use
David Howells
2023-12-28
2
-16
/
+18
|
*
netfs: Make netfs_put_request() handle a NULL pointer
David Howells
2023-12-28
1
-10
/
+13
|
*
netfs: Extend the netfs_io_*request structs to handle writes
David Howells
2023-12-28
4
-4
/
+27
|
*
netfs: Limit subrequest by size or number of segments
David Howells
2023-12-28
1
-0
/
+18
|
*
netfs: Add func to calculate pagecount/size-limited span of an iterator
David Howells
2023-12-28
1
-0
/
+97
|
*
netfs: Provide tools to create a buffer in an xarray
David Howells
2023-12-28
2
-0
/
+94
|
*
netfs: Add support for DIO buffering
David Howells
2023-12-28
1
-0
/
+10
|
*
netfs: Add iov_iters to (sub)requests to describe various buffers
David Howells
2023-12-24
2
-19
/
+63
|
*
netfs: Implement unbuffered/DIO vs buffered I/O locking
David Howells
2023-12-24
2
-0
/
+217
|
*
netfs: Provide invalidate_folio and release_folio calls
David Howells
2023-12-24
1
-0
/
+42
|
*
netfs: Add a ->free_subrequest() op
David Howells
2023-12-24
1
-0
/
+2
|
*
netfs: Allow the netfs to make the io (sub)request alloc larger
David Howells
2023-12-24
1
-2
/
+5
|
*
netfs: Add a procfile to list in-progress requests
David Howells
2023-12-24
3
-2
/
+93
|
*
netfs: Move pinning-for-writeback from fscache to netfs
David Howells
2023-12-24
3
-40
/
+87
|
*
netfs, fscache: Move /proc/fs/fscache to /proc/fs/netfs and put in a symlink
David Howells
2023-12-24
6
-31
/
+62
|
*
netfs, fscache: Remove ->begin_cache_operation
David Howells
2023-12-24
1
-15
/
+18
|
*
netfs, fscache: Combine fscache with netfs
David Howells
2023-12-24
6
-297
/
+211
|
*
netfs, fscache: Move fs/fscache/* into fs/netfs/
David Howells
2023-12-24
12
-3
/
+3069
|
/
*
netfs: Only call folio_start_fscache() one time for each folio
Dave Wysochanski
2023-09-18
1
-1
/
+5
*
Move netfs_extract_iter_to_sg() to lib/scatterlist.c
David Howells
2023-06-08
1
-267
/
+0
*
Wrap lines at 80
David Howells
2023-06-08
1
-1
/
+2
*
Fix a couple of spelling mistakes
David Howells
2023-06-08
1
-2
/
+2
*
Drop the netfs_ prefix from netfs_extract_iter_to_sg()
David Howells
2023-06-08
1
-33
/
+33
*
Merge tag 'mm-stable-2023-04-27-15-30' of git://git.kernel.org/pub/scm/linux/...
Linus Torvalds
2023-04-28
1
-2
/
+2
|
\
|
*
mm: return an ERR_PTR from __filemap_get_folio
Christoph Hellwig
2023-04-06
1
-2
/
+2
*
|
Merge tag 'ext4_for_linus' of git://git.kernel.org/pub/scm/linux/kernel/git/t...
Linus Torvalds
2023-04-26
1
-2
/
+1
|
\
\
|
*
|
fs: Add FGP_WRITEBEGIN
Matthew Wilcox
2023-04-06
1
-2
/
+1
|
|
/
*
/
netfs: Fix netfs_extract_iter_to_sg() for ITER_UBUF/IOVEC
David Howells
2023-04-12
1
-1
/
+1
|
/
*
iov: Fix netfs_extract_user_to_sg()
David Howells
2023-03-02
1
-1
/
+1
*
Merge tag '6.3-rc-smb3-client-fixes' of git://git.samba.org/sfrench/cifs-2.6
Linus Torvalds
2023-02-23
2
-0
/
+370
|
\
|
*
netfs: Add a function to extract an iterator into a scatterlist
David Howells
2023-02-21
1
-0
/
+268
|
*
netfs: Add a function to extract a UBUF or IOVEC into a BVEC iterator
David Howells
2023-02-21
2
-0
/
+104
|
/
*
use less confusing names for iov_iter direction initializers
Al Viro
2022-11-25
1
-3
/
+3
*
netfs: Fix dodgy maths
David Howells
2022-11-15
1
-8
/
+9
*
netfs: Fix missing xas_retry() calls in xarray iteration
David Howells
2022-11-15
2
-2
/
+10
*
netfs: do not unlock and put the folio twice
Xiubo Li
2022-07-14
1
-7
/
+10
*
netfs: Rename the netfs_io_request cleanup op and give it an op pointer
David Howells
2022-06-10
1
-3
/
+3
*
netfs: Further cleanups after struct netfs_inode wrapper introduced
Linus Torvalds
2022-06-10
1
-2
/
+3
*
netfs: Fix gcc-12 warning by embedding vfs inode in netfs_i_context
David Howells
2022-06-09
3
-5
/
+5
*
fs: Convert netfs_readpage to netfs_read_folio
Matthew Wilcox (Oracle)
2022-05-09
1
-8
/
+7
*
fs: Remove aop_flags parameter from netfs_write_begin()
Matthew Wilcox (Oracle)
2022-05-08
1
-2
/
+2
*
fs: Remove AOP_FLAG_NOFS
Matthew Wilcox (Oracle)
2022-05-08
1
-5
/
+1
*
netfs: Split some core bits out into their own file
David Howells
2022-03-18
4
-12
/
+26
*
netfs: Split fs/netfs/read_helper.c
David Howells
2022-03-18
3
-418
/
+429
[prev]
[next]