summaryrefslogtreecommitdiff
path: root/fs/ext2
diff options
context:
space:
mode:
authorMatthew Wilcox (Oracle) <willy@infradead.org>2022-02-22 19:54:56 +0300
committerMatthew Wilcox (Oracle) <willy@infradead.org>2022-05-08 21:28:19 +0300
commit8371f30cf774a20fd627a0f7b1ecf00e8257f3bc (patch)
treecc78c60df29083f822669a48800d921948ba9883 /fs/ext2
parentb7446e7cf15f0926866c8e5de90ab278998bf8c8 (diff)
downloadlinux-8371f30cf774a20fd627a0f7b1ecf00e8257f3bc.tar.xz
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.c2
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);