diff options
author | Matthew Wilcox (Oracle) <willy@infradead.org> | 2022-02-22 10:47:09 -0500 |
---|---|---|
committer | Matthew Wilcox (Oracle) <willy@infradead.org> | 2022-05-08 14:28:19 -0400 |
commit | de2a931150177957d37e9c975025604f4a1fe853 (patch) | |
tree | 968e24eb9f0d0f929458487d1b258436bae0b42b /fs/9p | |
parent | 236d93c4bf2d6da83241cc8e4625e89d9604cb43 (diff) | |
download | linux-stable-de2a931150177957d37e9c975025604f4a1fe853.tar.gz linux-stable-de2a931150177957d37e9c975025604f4a1fe853.tar.bz2 linux-stable-de2a931150177957d37e9c975025604f4a1fe853.zip |
fs: Remove aop_flags parameter from netfs_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/9p')
-rw-r--r-- | fs/9p/vfs_addr.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/9p/vfs_addr.c b/fs/9p/vfs_addr.c index 501128188343..d311e68e21fd 100644 --- a/fs/9p/vfs_addr.c +++ b/fs/9p/vfs_addr.c @@ -275,7 +275,7 @@ static int v9fs_write_begin(struct file *filp, struct address_space *mapping, * file. We need to do this before we get a lock on the page in case * there's more than one writer competing for the same cache block. */ - retval = netfs_write_begin(filp, mapping, pos, len, flags, &folio, fsdata); + retval = netfs_write_begin(filp, mapping, pos, len, &folio, fsdata); if (retval < 0) return retval; |