diff options
author | Matthew Wilcox (Oracle) <willy@infradead.org> | 2022-02-22 17:54:56 +0100 |
---|---|---|
committer | Matthew Wilcox (Oracle) <willy@infradead.org> | 2022-05-08 20:28:19 +0200 |
commit | 8371f30cf774a20fd627a0f7b1ecf00e8257f3bc (patch) | |
tree | cc78c60df29083f822669a48800d921948ba9883 /fs/ext2 | |
parent | fs: Remove aop flags parameter from grab_cache_page_write_begin() (diff) | |
download | linux-8371f30cf774a20fd627a0f7b1ecf00e8257f3bc.tar.xz linux-8371f30cf774a20fd627a0f7b1ecf00e8257f3bc.zip |
fs: Remove aop flags parameter from nobh_write_begin()
There are no more aop flags left, so remove the parameter.
Signed-off-by: Matthew Wilcox (Oracle) <willy@infradead.org>
Reviewed-by: Christoph Hellwig <hch@lst.de>
Diffstat (limited to 'fs/ext2')
-rw-r--r-- | fs/ext2/inode.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/ext2/inode.c b/fs/ext2/inode.c index 97192932ea56..bfa69c52ce2c 100644 --- a/fs/ext2/inode.c +++ b/fs/ext2/inode.c @@ -917,7 +917,7 @@ ext2_nobh_write_begin(struct file *file, struct address_space *mapping, { int ret; - ret = nobh_write_begin(mapping, pos, len, flags, pagep, fsdata, + ret = nobh_write_begin(mapping, pos, len, pagep, fsdata, ext2_get_block); if (ret < 0) ext2_write_failed(mapping, pos + len); |