search for: block_write_begin

Displaying 4 results from an estimated 4 matches for "block_write_begin".

Did you mean: __block_write_begin
2023 Jun 19
0
[PATCH v1 1/5] fs/buffer: clean up block_commit_write
...cz> Honza > --- > fs/buffer.c | 15 +++------------ > 1 file changed, 3 insertions(+), 12 deletions(-) > > diff --git a/fs/buffer.c b/fs/buffer.c > index a7fc561758b1..b88bb7ec38be 100644 > --- a/fs/buffer.c > +++ b/fs/buffer.c > @@ -2116,8 +2116,7 @@ int __block_write_begin(struct page *page, loff_t pos, unsigned len, > } > EXPORT_SYMBOL(__block_write_begin); > > -static int __block_commit_write(struct inode *inode, struct page *page, > - unsigned from, unsigned to) > +int block_commit_write(struct page *page, unsigned int from, unsigned int to)...
2009 Jul 11
1
Samba freezes server when writing 50MB MS Word document (sometimes)
...0x28/0x30 [xfs] Jul 3 15:01:44 [..] [__block_prepare_write+0x228/0x400] __block_prepare_write+0x228/0x400 Jul 3 15:01:44 [..] [sg:__alloc_pages+0x5a/0x380] __alloc_pages+0x5a/0x380 Jul 3 15:01:44 [..] [ext3:__grab_cache_page+0x97/0x1a90] __grab_cache_page+0x97/0xc0 Jul 3 15:01:44 [..] [ext3:block_write_begin+0x4d/0x590] block_write_begin+0x4d/0xf0 Jul 3 15:01:44 [..] [<f98e8600>] xfs_get_blocks+0x0/0x30 [xfs] Jul 3 15:01:44 [..] [<f98e7da6>] xfs_vm_write_begin+0x46/0x50 [xfs] Jul 3 15:01:44 [..] [<f98e8600>] xfs_get_blocks+0x0/0x30 [xfs] Jul 3 15:01:44 [..] [xfs:generic_file_b...
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 +++++++-----------------