fs: Remove AOP_FLAG_NOFS

With all users of this flag gone, we can stop testing whether it's set.
Signed-off-by: default avatarMatthew Wilcox (Oracle) <willy@infradead.org>
Reviewed-by: default avatarChristoph Hellwig <hch@lst.de>
parent 832ee62d
...@@ -302,7 +302,6 @@ static bool netfs_skip_folio_read(struct folio *folio, loff_t pos, size_t len, ...@@ -302,7 +302,6 @@ static bool netfs_skip_folio_read(struct folio *folio, loff_t pos, size_t len,
* @mapping: The mapping to read from * @mapping: The mapping to read from
* @pos: File position at which the write will begin * @pos: File position at which the write will begin
* @len: The length of the write (may extend beyond the end of the folio chosen) * @len: The length of the write (may extend beyond the end of the folio chosen)
* @aop_flags: AOP_* flags
* @_folio: Where to put the resultant folio * @_folio: Where to put the resultant folio
* @_fsdata: Place for the netfs to store a cookie * @_fsdata: Place for the netfs to store a cookie
* *
...@@ -335,16 +334,13 @@ int netfs_write_begin(struct file *file, struct address_space *mapping, ...@@ -335,16 +334,13 @@ int netfs_write_begin(struct file *file, struct address_space *mapping,
struct netfs_io_request *rreq; struct netfs_io_request *rreq;
struct netfs_i_context *ctx = netfs_i_context(file_inode(file )); struct netfs_i_context *ctx = netfs_i_context(file_inode(file ));
struct folio *folio; struct folio *folio;
unsigned int fgp_flags; unsigned int fgp_flags = FGP_LOCK | FGP_WRITE | FGP_CREAT | FGP_STABLE;
pgoff_t index = pos >> PAGE_SHIFT; pgoff_t index = pos >> PAGE_SHIFT;
int ret; int ret;
DEFINE_READAHEAD(ractl, file, NULL, mapping, index); DEFINE_READAHEAD(ractl, file, NULL, mapping, index);
retry: retry:
fgp_flags = FGP_LOCK | FGP_WRITE | FGP_CREAT | FGP_STABLE;
if (aop_flags & AOP_FLAG_NOFS)
fgp_flags |= FGP_NOFS;
folio = __filemap_get_folio(mapping, index, fgp_flags, folio = __filemap_get_folio(mapping, index, fgp_flags,
mapping_gfp_mask(mapping)); mapping_gfp_mask(mapping));
if (!folio) if (!folio)
......
...@@ -275,10 +275,6 @@ enum positive_aop_returns { ...@@ -275,10 +275,6 @@ enum positive_aop_returns {
AOP_TRUNCATED_PAGE = 0x80001, AOP_TRUNCATED_PAGE = 0x80001,
}; };
#define AOP_FLAG_NOFS 0x0002 /* used by filesystem to direct
* helper code (eg buffer layer)
* to clear GFP_FS from alloc */
/* /*
* oh the beauties of C type declarations. * oh the beauties of C type declarations.
*/ */
......
...@@ -135,8 +135,6 @@ struct page *grab_cache_page_write_begin(struct address_space *mapping, ...@@ -135,8 +135,6 @@ struct page *grab_cache_page_write_begin(struct address_space *mapping,
{ {
unsigned fgp_flags = FGP_LOCK | FGP_WRITE | FGP_CREAT | FGP_STABLE; unsigned fgp_flags = FGP_LOCK | FGP_WRITE | FGP_CREAT | FGP_STABLE;
if (flags & AOP_FLAG_NOFS)
fgp_flags |= FGP_NOFS;
return pagecache_get_page(mapping, index, fgp_flags, return pagecache_get_page(mapping, index, fgp_flags,
mapping_gfp_mask(mapping)); mapping_gfp_mask(mapping));
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment