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 | b3992d1e2ebcd478e0614494a6abd95e902a029b (patch) | |
tree | aab9224a8591241e7e20cc1e7855ea67ca8d041e /block/fops.c | |
parent | de2a931150177957d37e9c975025604f4a1fe853 (diff) | |
download | linux-stable-b3992d1e2ebcd478e0614494a6abd95e902a029b.tar.gz linux-stable-b3992d1e2ebcd478e0614494a6abd95e902a029b.tar.bz2 linux-stable-b3992d1e2ebcd478e0614494a6abd95e902a029b.zip |
fs: Remove aop flags parameter from block_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 'block/fops.c')
-rw-r--r-- | block/fops.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/block/fops.c b/block/fops.c index 9f2ecec406b0..b432756570c6 100644 --- a/block/fops.c +++ b/block/fops.c @@ -401,8 +401,7 @@ static int blkdev_write_begin(struct file *file, struct address_space *mapping, loff_t pos, unsigned len, unsigned flags, struct page **pagep, void **fsdata) { - return block_write_begin(mapping, pos, len, flags, pagep, - blkdev_get_block); + return block_write_begin(mapping, pos, len, pagep, blkdev_get_block); } static int blkdev_write_end(struct file *file, struct address_space *mapping, |