diff options
author | Vivek Goyal <vgoyal@redhat.com> | 2019-03-06 16:51:39 -0500 |
---|---|---|
committer | Miklos Szeredi <mszeredi@redhat.com> | 2019-09-12 14:59:40 +0200 |
commit | 95a84cdb11c26315a6d34664846f82c438c961a1 (patch) | |
tree | c93a05ed64ac3fa44f5640ac529288cc728054f4 /fs/fuse/inode.c | |
parent | 14d46d7abc3973a47e8eb0eb5eb87ee8d910a505 (diff) |
fuse: export fuse_send_init_request()
This will be used by virtio-fs to send init request to fuse server after
initialization of virt queues.
Signed-off-by: Vivek Goyal <vgoyal@redhat.com>
Signed-off-by: Miklos Szeredi <mszeredi@redhat.com>
Diffstat (limited to 'fs/fuse/inode.c')
-rw-r--r-- | fs/fuse/inode.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/fs/fuse/inode.c b/fs/fuse/inode.c index 4404d21649ff..5d455f4d6195 100644 --- a/fs/fuse/inode.c +++ b/fs/fuse/inode.c @@ -972,7 +972,7 @@ static void process_init_reply(struct fuse_conn *fc, struct fuse_args *args, wake_up_all(&fc->blocked_waitq); } -static void fuse_send_init(struct fuse_conn *fc) +void fuse_send_init(struct fuse_conn *fc) { struct fuse_init_args *ia; @@ -1009,6 +1009,7 @@ static void fuse_send_init(struct fuse_conn *fc) if (fuse_simple_background(fc, &ia->args, GFP_KERNEL) != 0) process_init_reply(fc, &ia->args, -ENOTCONN); } +EXPORT_SYMBOL_GPL(fuse_send_init); static void fuse_free_conn(struct fuse_conn *fc) { |