diff options
author | Matthew Wilcox (Oracle) <willy@infradead.org> | 2022-02-22 11:54:56 -0500 |
---|---|---|
committer | Matthew Wilcox (Oracle) <willy@infradead.org> | 2022-05-08 14:28:19 -0400 |
commit | 8371f30cf774a20fd627a0f7b1ecf00e8257f3bc (patch) | |
tree | cc78c60df29083f822669a48800d921948ba9883 /include/linux/buffer_head.h | |
parent | b7446e7cf15f0926866c8e5de90ab278998bf8c8 (diff) | |
download | lwn-8371f30cf774a20fd627a0f7b1ecf00e8257f3bc.tar.gz lwn-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 'include/linux/buffer_head.h')
-rw-r--r-- | include/linux/buffer_head.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/buffer_head.h b/include/linux/buffer_head.h index 127b60fad77e..6e5a64005fef 100644 --- a/include/linux/buffer_head.h +++ b/include/linux/buffer_head.h @@ -258,7 +258,7 @@ static inline vm_fault_t block_page_mkwrite_return(int err) } sector_t generic_block_bmap(struct address_space *, sector_t, get_block_t *); int block_truncate_page(struct address_space *, loff_t, get_block_t *); -int nobh_write_begin(struct address_space *, loff_t, unsigned, unsigned, +int nobh_write_begin(struct address_space *, loff_t, unsigned len, struct page **, void **, get_block_t*); int nobh_write_end(struct file *, struct address_space *, loff_t, unsigned, unsigned, |