diff options
author | Miklos Szeredi <mszeredi@redhat.com> | 2019-09-10 15:04:11 +0200 |
---|---|---|
committer | Miklos Szeredi <mszeredi@redhat.com> | 2019-09-10 16:29:50 +0200 |
commit | 7213394c4e184b002d8011c13d916e7ac6d17520 (patch) | |
tree | ddca1030932fd2dab18e8c3299223077414449d2 /fs/fuse/file.c | |
parent | 66abc3599c3c8795861470f21ae149520a57153d (diff) | |
download | linux-7213394c4e184b002d8011c13d916e7ac6d17520.tar.bz2 |
fuse: simplify request allocation
Page arrays are not allocated together with the request anymore. Get rid
of the dead code
Signed-off-by: Miklos Szeredi <mszeredi@redhat.com>
Diffstat (limited to 'fs/fuse/file.c')
-rw-r--r-- | fs/fuse/file.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/fuse/file.c b/fs/fuse/file.c index 56ed45ef3058..a2ea347c4d2c 100644 --- a/fs/fuse/file.c +++ b/fs/fuse/file.c @@ -19,8 +19,8 @@ #include <linux/falloc.h> #include <linux/uio.h> -struct page **fuse_pages_alloc(unsigned int npages, gfp_t flags, - struct fuse_page_desc **desc) +static struct page **fuse_pages_alloc(unsigned int npages, gfp_t flags, + struct fuse_page_desc **desc) { struct page **pages; |