aboutsummaryrefslogtreecommitdiff
path: root/tools/virtiofsd/fuse_i.h
diff options
context:
space:
mode:
authorXiao Yang <yangx.jy@cn.fujitsu.com>2020-02-21 14:55:15 +0800
committerDr. David Alan Gilbert <dgilbert@redhat.com>2020-02-21 12:53:17 +0000
commit285eb7a704e6d26d687cdcd578dba74fbee77c61 (patch)
tree2ce02a1e148acf4ef2d0474c8e89174bb9f5851e /tools/virtiofsd/fuse_i.h
parent09c086b2a144324199f99a7d4de78c3276a486c1 (diff)
virtiofsd: Remove fuse.h and struct fuse_module
All code in fuse.h and struct fuse_module are not used by virtiofsd so removing them is safe. Signed-off-by: Xiao Yang <yangx.jy@cn.fujitsu.com> Reviewed-by: Stefan Hajnoczi <stefanha@redhat.com> Reviewed-by: Philippe Mathieu-Daudé <philmd@redhat.com> Signed-off-by: Dr. David Alan Gilbert <dgilbert@redhat.com>
Diffstat (limited to 'tools/virtiofsd/fuse_i.h')
-rw-r--r--tools/virtiofsd/fuse_i.h16
1 files changed, 0 insertions, 16 deletions
diff --git a/tools/virtiofsd/fuse_i.h b/tools/virtiofsd/fuse_i.h
index 4e47e5880d..1240828208 100644
--- a/tools/virtiofsd/fuse_i.h
+++ b/tools/virtiofsd/fuse_i.h
@@ -10,7 +10,6 @@
#define FUSE_I_H
#define FUSE_USE_VERSION 31
-#include "fuse.h"
#include "fuse_lowlevel.h"
struct fv_VuDev;
@@ -82,21 +81,6 @@ struct fuse_chan {
struct fv_QueueInfo *qi;
};
-/**
- * Filesystem module
- *
- * Filesystem modules are registered with the FUSE_REGISTER_MODULE()
- * macro.
- *
- */
-struct fuse_module {
- char *name;
- fuse_module_factory_t factory;
- struct fuse_module *next;
- struct fusemod_so *so;
- int ctr;
-};
-
int fuse_send_reply_iov_nofree(fuse_req_t req, int error, struct iovec *iov,
int count);
void fuse_free_req(fuse_req_t req);