Skip to content

Commit

Permalink
fs: Remove aop flags parameter from block_write_begin()
Browse files Browse the repository at this point in the history
There are no more aop flags left, so remove the parameter.

Signed-off-by: Matthew Wilcox (Oracle) <[email protected]>
Reviewed-by: Christoph Hellwig <[email protected]>
  • Loading branch information
Matthew Wilcox (Oracle) committed May 8, 2022
1 parent de2a931 commit b3992d1
Show file tree
Hide file tree
Showing 13 changed files with 16 additions and 23 deletions.
3 changes: 1 addition & 2 deletions block/fops.c
Original file line number Diff line number Diff line change
Expand Up @@ -401,8 +401,7 @@ static int blkdev_write_begin(struct file *file, struct address_space *mapping,
loff_t pos, unsigned len, unsigned flags, struct page **pagep,
void **fsdata)
{
return block_write_begin(mapping, pos, len, flags, pagep,
blkdev_get_block);
return block_write_begin(mapping, pos, len, pagep, blkdev_get_block);
}

static int blkdev_write_end(struct file *file, struct address_space *mapping,
Expand Down
3 changes: 1 addition & 2 deletions fs/bfs/file.c
Original file line number Diff line number Diff line change
Expand Up @@ -174,8 +174,7 @@ static int bfs_write_begin(struct file *file, struct address_space *mapping,
{
int ret;

ret = block_write_begin(mapping, pos, len, flags, pagep,
bfs_get_block);
ret = block_write_begin(mapping, pos, len, pagep, bfs_get_block);
if (unlikely(ret))
bfs_write_failed(mapping, pos + len);

Expand Down
6 changes: 3 additions & 3 deletions fs/buffer.c
Original file line number Diff line number Diff line change
Expand Up @@ -2104,13 +2104,13 @@ static int __block_commit_write(struct inode *inode, struct page *page,
* The filesystem needs to handle block truncation upon failure.
*/
int block_write_begin(struct address_space *mapping, loff_t pos, unsigned len,
unsigned flags, struct page **pagep, get_block_t *get_block)
struct page **pagep, get_block_t *get_block)
{
pgoff_t index = pos >> PAGE_SHIFT;
struct page *page;
int status;

page = grab_cache_page_write_begin(mapping, index, flags);
page = grab_cache_page_write_begin(mapping, index, 0);
if (!page)
return -ENOMEM;

Expand Down Expand Up @@ -2460,7 +2460,7 @@ int cont_write_begin(struct file *file, struct address_space *mapping,
(*bytes)++;
}

return block_write_begin(mapping, pos, len, flags, pagep, get_block);
return block_write_begin(mapping, pos, len, pagep, get_block);
}
EXPORT_SYMBOL(cont_write_begin);

Expand Down
3 changes: 1 addition & 2 deletions fs/ext2/inode.c
Original file line number Diff line number Diff line change
Expand Up @@ -892,8 +892,7 @@ ext2_write_begin(struct file *file, struct address_space *mapping,
{
int ret;

ret = block_write_begin(mapping, pos, len, flags, pagep,
ext2_get_block);
ret = block_write_begin(mapping, pos, len, pagep, ext2_get_block);
if (ret < 0)
ext2_write_failed(mapping, pos + len);
return ret;
Expand Down
3 changes: 1 addition & 2 deletions fs/minix/inode.c
Original file line number Diff line number Diff line change
Expand Up @@ -428,8 +428,7 @@ static int minix_write_begin(struct file *file, struct address_space *mapping,
{
int ret;

ret = block_write_begin(mapping, pos, len, flags, pagep,
minix_get_block);
ret = block_write_begin(mapping, pos, len, pagep, minix_get_block);
if (unlikely(ret))
minix_write_failed(mapping, pos + len);

Expand Down
3 changes: 1 addition & 2 deletions fs/nilfs2/inode.c
Original file line number Diff line number Diff line change
Expand Up @@ -258,8 +258,7 @@ static int nilfs_write_begin(struct file *file, struct address_space *mapping,
if (unlikely(err))
return err;

err = block_write_begin(mapping, pos, len, flags, pagep,
nilfs_get_block);
err = block_write_begin(mapping, pos, len, pagep, nilfs_get_block);
if (unlikely(err)) {
nilfs_write_failed(mapping, pos + len);
nilfs_transaction_abort(inode->i_sb);
Expand Down
2 changes: 1 addition & 1 deletion fs/nilfs2/recovery.c
Original file line number Diff line number Diff line change
Expand Up @@ -511,7 +511,7 @@ static int nilfs_recover_dsync_blocks(struct the_nilfs *nilfs,

pos = rb->blkoff << inode->i_blkbits;
err = block_write_begin(inode->i_mapping, pos, blocksize,
0, &page, nilfs_get_block);
&page, nilfs_get_block);
if (unlikely(err)) {
loff_t isize = inode->i_size;

Expand Down
4 changes: 2 additions & 2 deletions fs/ntfs3/inode.c
Original file line number Diff line number Diff line change
Expand Up @@ -894,7 +894,7 @@ static int ntfs_write_begin(struct file *file, struct address_space *mapping,
goto out;
}

err = block_write_begin(mapping, pos, len, flags, pagep,
err = block_write_begin(mapping, pos, len, pagep,
ntfs_get_block_write_begin);

out:
Expand Down Expand Up @@ -975,7 +975,7 @@ int reset_log_file(struct inode *inode)

len = pos + PAGE_SIZE > log_size ? (log_size - pos) : PAGE_SIZE;

err = block_write_begin(mapping, pos, len, 0, &page,
err = block_write_begin(mapping, pos, len, &page,
ntfs_get_block_write_begin);
if (err)
goto out;
Expand Down
3 changes: 1 addition & 2 deletions fs/omfs/file.c
Original file line number Diff line number Diff line change
Expand Up @@ -321,8 +321,7 @@ static int omfs_write_begin(struct file *file, struct address_space *mapping,
{
int ret;

ret = block_write_begin(mapping, pos, len, flags, pagep,
omfs_get_block);
ret = block_write_begin(mapping, pos, len, pagep, omfs_get_block);
if (unlikely(ret))
omfs_write_failed(mapping, pos + len);

Expand Down
2 changes: 1 addition & 1 deletion fs/sysv/itree.c
Original file line number Diff line number Diff line change
Expand Up @@ -482,7 +482,7 @@ static int sysv_write_begin(struct file *file, struct address_space *mapping,
{
int ret;

ret = block_write_begin(mapping, pos, len, flags, pagep, get_block);
ret = block_write_begin(mapping, pos, len, pagep, get_block);
if (unlikely(ret))
sysv_write_failed(mapping, pos + len);

Expand Down
2 changes: 1 addition & 1 deletion fs/udf/inode.c
Original file line number Diff line number Diff line change
Expand Up @@ -209,7 +209,7 @@ static int udf_write_begin(struct file *file, struct address_space *mapping,
{
int ret;

ret = block_write_begin(mapping, pos, len, flags, pagep, udf_get_block);
ret = block_write_begin(mapping, pos, len, pagep, udf_get_block);
if (unlikely(ret))
udf_write_failed(mapping, pos + len);
return ret;
Expand Down
3 changes: 1 addition & 2 deletions fs/ufs/inode.c
Original file line number Diff line number Diff line change
Expand Up @@ -500,8 +500,7 @@ static int ufs_write_begin(struct file *file, struct address_space *mapping,
{
int ret;

ret = block_write_begin(mapping, pos, len, flags, pagep,
ufs_getfrag_block);
ret = block_write_begin(mapping, pos, len, pagep, ufs_getfrag_block);
if (unlikely(ret))
ufs_write_failed(mapping, pos + len);

Expand Down
2 changes: 1 addition & 1 deletion include/linux/buffer_head.h
Original file line number Diff line number Diff line change
Expand Up @@ -226,7 +226,7 @@ int __block_write_full_page(struct inode *inode, struct page *page,
int block_read_full_page(struct page*, get_block_t*);
bool block_is_partially_uptodate(struct folio *, size_t from, size_t count);
int block_write_begin(struct address_space *mapping, loff_t pos, unsigned len,
unsigned flags, struct page **pagep, get_block_t *get_block);
struct page **pagep, get_block_t *get_block);
int __block_write_begin(struct page *page, loff_t pos, unsigned len,
get_block_t *get_block);
int block_write_end(struct file *, struct address_space *,
Expand Down

0 comments on commit b3992d1

Please sign in to comment.