diff options
author | Gao Xiang <gaoxiang25@huawei.com> | 2019-11-21 16:59:54 +0300 |
---|---|---|
committer | Gao Xiang <gaoxiang25@huawei.com> | 2019-11-24 05:57:48 +0300 |
commit | 5ddcee1f3a1ccaccb31bc17080f75a0bb13b4906 (patch) | |
tree | 2588e73eefe6da892ba830d3a60a7c0afaa158cf /fs/erofs/internal.h | |
parent | bda17a4577da729d17b8f87bf3279b9db201d8ca (diff) | |
download | linux-5ddcee1f3a1ccaccb31bc17080f75a0bb13b4906.tar.xz |
erofs: get rid of __stagingpage_alloc helper
Now open code is much cleaner due to iterative development.
Link: https://lore.kernel.org/r/20191124025217.12345-1-hsiangkao@aol.com
Reviewed-by: Chao Yu <yuchao0@huawei.com>
Signed-off-by: Gao Xiang <gaoxiang25@huawei.com>
Diffstat (limited to 'fs/erofs/internal.h')
-rw-r--r-- | fs/erofs/internal.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/erofs/internal.h b/fs/erofs/internal.h index 544a453f3076..0c1175a08e54 100644 --- a/fs/erofs/internal.h +++ b/fs/erofs/internal.h @@ -382,7 +382,7 @@ int erofs_namei(struct inode *dir, struct qstr *name, extern const struct file_operations erofs_dir_fops; /* utils.c / zdata.c */ -struct page *erofs_allocpage(struct list_head *pool, gfp_t gfp, bool nofail); +struct page *erofs_allocpage(struct list_head *pool, gfp_t gfp); #if (EROFS_PCPUBUF_NR_PAGES > 0) void *erofs_get_pcpubuf(unsigned int pagenr); |