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>
This commit is contained in:
Matthew Wilcox (Oracle)
2022-02-22 11:54:56 -05:00
parent b7446e7cf1
commit 8371f30cf7
4 changed files with 4 additions and 6 deletions
+1 -1
View File
@@ -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);