search for: __block_commit_write

Displaying 6 results from an estimated 6 matches for "__block_commit_write".

2023 Jul 02
0
+ fs-buffer-clean-up-block_commit_write.patch added to mm-unstable branch
...------------- From: Bean Huo <beanhuo at micron.com> Subject: fs/buffer: clean up block_commit_write Date: Mon, 26 Jun 2023 07:55:17 +0200 Originally inode is used to get blksize, after commit 45bce8f3e343 ("fs/buffer.c: make block-size be per-page and protected by the page lock"), __block_commit_write no longer uses this parameter inode. Link: https://lkml.kernel.org/r/20230626055518.842392-2-beanhuo at iokpp.de Signed-off-by: Bean Huo <beanhuo at micron.com> Reviewed-by: Christoph Hellwig <hch at lst.de> Reviewed-by: Matthew Wilcox (Oracle) <willy at infradead.org> Reviewed-b...
2023 Jun 19
0
[PATCH v1 1/5] fs/buffer: clean up block_commit_write
On Sun 18-06-23 23:32:46, Bean Huo wrote: > From: Bean Huo <beanhuo at micron.com> > > Originally inode is used to get blksize, after commit 45bce8f3e343 > ("fs/buffer.c: make block-size be per-page and protected by the page lock"), > __block_commit_write no longer uses this parameter inode, this patch is to > remove inode and clean up block_commit_write. > > Signed-off-by: Bean Huo <beanhuo at micron.com> Nice! Feel free to add: Reviewed-by: Jan Kara <jack at suse.cz> Honza > --- > fs/buffer.c | 15 +++------...
2023 Jul 02
0
+ fs-convert-block_commit_write-to-return-void.patch added to mm-unstable branch
...6 +++--- include/linux/buffer_head.h | 2 +- 5 files changed, 13 insertions(+), 23 deletions(-) --- a/fs/buffer.c~fs-convert-block_commit_write-to-return-void +++ a/fs/buffer.c @@ -2180,7 +2180,7 @@ int __block_write_begin(struct page *pag } EXPORT_SYMBOL(__block_write_begin); -static int __block_commit_write(struct folio *folio, size_t from, size_t to) +static void __block_commit_write(struct folio *folio, size_t from, size_t to) { size_t block_start, block_end; bool partial = false; @@ -2215,7 +2215,6 @@ static int __block_commit_write(struct f */ if (!partial) folio_mark_uptodate(folio);...
2023 Jun 19
9
[PATCH v2 0/5] clean up block_commit_write
Changelog: v1--v2: 1. Re-order patches to avoid breaking compilation. Bean Huo (5): fs/buffer: clean up block_commit_write ext4: No need to check return value of block_commit_write() fs/ocfs2: No need to check return value of block_commit_write() udf: No need to check return value of block_commit_write() fs/buffer.c: convert block_commit_write to return void fs/buffer.c
2023 Jun 18
11
[PATCH v1 0/5] clean up block_commit_write
*** BLURB HERE *** Bean Huo (5): fs/buffer: clean up block_commit_write fs/buffer.c: convert block_commit_write to return void ext4: No need to check return value of block_commit_write() fs/ocfs2: No need to check return value of block_commit_write() udf: No need to check return value of block_commit_write() fs/buffer.c | 24 +++++++-----------------
2002 Feb 26
5
Specifications for ext3 FS
Hi, Can anyone tell me the ext3/ext2/vfs FS specifications: max number of files: ? max number files a dir can have: ? max number sub-dirs in a dir: ? max file size: ? max filesystem size: ? Dongsheng Song