diff options
author | Matthew Wilcox (Oracle) <willy@infradead.org> | 2022-02-22 11:25:12 -0500 |
---|---|---|
committer | Matthew Wilcox (Oracle) <willy@infradead.org> | 2022-05-08 14:28:19 -0400 |
commit | b7446e7cf15f0926866c8e5de90ab278998bf8c8 (patch) | |
tree | 5f866124de19bd95d6db2cf06ae4dd10ba0156a0 /fs/udf | |
parent | be3bbbc588118bdc10e21fdd7bfa6ee6b8c2555d (diff) | |
download | linux-b7446e7cf15f0926866c8e5de90ab278998bf8c8.tar.gz linux-b7446e7cf15f0926866c8e5de90ab278998bf8c8.tar.bz2 linux-b7446e7cf15f0926866c8e5de90ab278998bf8c8.zip |
fs: Remove aop flags parameter from grab_cache_page_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/udf')
-rw-r--r-- | fs/udf/file.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/udf/file.c b/fs/udf/file.c index 0f6bf2504437..724bb3141fda 100644 --- a/fs/udf/file.c +++ b/fs/udf/file.c @@ -94,7 +94,7 @@ static int udf_adinicb_write_begin(struct file *file, if (WARN_ON_ONCE(pos >= PAGE_SIZE)) return -EIO; - page = grab_cache_page_write_begin(mapping, 0, flags); + page = grab_cache_page_write_begin(mapping, 0); if (!page) return -ENOMEM; *pagep = page; |