diff options
author | Miklos Szeredi <mszeredi@redhat.com> | 2019-09-10 16:04:11 +0300 |
---|---|---|
committer | Miklos Szeredi <mszeredi@redhat.com> | 2019-09-10 17:29:50 +0300 |
commit | 7213394c4e184b002d8011c13d916e7ac6d17520 (patch) | |
tree | ddca1030932fd2dab18e8c3299223077414449d2 /fs/fuse/fuse_i.h | |
parent | 66abc3599c3c8795861470f21ae149520a57153d (diff) | |
download | linux-7213394c4e184b002d8011c13d916e7ac6d17520.tar.xz |
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/fuse_i.h')
-rw-r--r-- | fs/fuse/fuse_i.h | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/fs/fuse/fuse_i.h b/fs/fuse/fuse_i.h index ffbc2cd649e3..90cb82d5d62d 100644 --- a/fs/fuse/fuse_i.h +++ b/fs/fuse/fuse_i.h @@ -362,7 +362,6 @@ enum fuse_req_flag { FR_SENT, FR_FINISHED, FR_PRIVATE, - FR_ALLOC_PAGES, }; /** @@ -922,12 +921,6 @@ int fuse_ctl_init(void); void __exit fuse_ctl_cleanup(void); /** - * Allocate a request - */ -struct page **fuse_pages_alloc(unsigned int npages, gfp_t flags, - struct fuse_page_desc **desc); - -/** * Simple request sending that does request allocation and freeing */ ssize_t fuse_simple_request(struct fuse_conn *fc, struct fuse_args *args); |