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/buffer.c | |
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/buffer.c')
-rw-r--r-- | fs/buffer.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/fs/buffer.c b/fs/buffer.c index 01630218c75f..02b50e3e4fbb 100644 --- a/fs/buffer.c +++ b/fs/buffer.c @@ -2568,8 +2568,7 @@ static void attach_nobh_buffers(struct page *page, struct buffer_head *head) * On exit the page is fully uptodate in the areas outside (from,to) * The filesystem needs to handle block truncation upon failure. */ -int nobh_write_begin(struct address_space *mapping, - loff_t pos, unsigned len, unsigned flags, +int nobh_write_begin(struct address_space *mapping, loff_t pos, unsigned len, struct page **pagep, void **fsdata, get_block_t *get_block) { |