aboutsummaryrefslogtreecommitdiffstats
path: root/fs/fuse/fuse_i.h
diff options
context:
space:
mode:
authorVivek Goyal <vgoyal@redhat.com>2019-05-06 15:35:43 -0400
committerMiklos Szeredi <mszeredi@redhat.com>2019-09-12 14:59:41 +0200
commit15c8e72e88e0b707ffefd524ca33f28cdb3db487 (patch)
tree4faada0a21a2f2a553660ac6a17817d6d05d2ad8 /fs/fuse/fuse_i.h
parent783863d6476ce9f27fa87227f76ae9134caf43fa (diff)
downloadkernel_replicant_linux-15c8e72e88e0b707ffefd524ca33f28cdb3db487.tar.gz
kernel_replicant_linux-15c8e72e88e0b707ffefd524ca33f28cdb3db487.tar.bz2
kernel_replicant_linux-15c8e72e88e0b707ffefd524ca33f28cdb3db487.zip
fuse: allow skipping control interface and forced unmount
virtio-fs does not support aborting requests which are being processed. That is requests which have been sent to fuse daemon on host. Signed-off-by: Vivek Goyal <vgoyal@redhat.com> Signed-off-by: Miklos Szeredi <mszeredi@redhat.com>
Diffstat (limited to 'fs/fuse/fuse_i.h')
-rw-r--r--fs/fuse/fuse_i.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/fs/fuse/fuse_i.h b/fs/fuse/fuse_i.h
index 48d214df9172..fc89cb40e874 100644
--- a/fs/fuse/fuse_i.h
+++ b/fs/fuse/fuse_i.h
@@ -468,6 +468,8 @@ struct fuse_fs_context {
bool default_permissions:1;
bool allow_other:1;
bool destroy:1;
+ bool no_control:1;
+ bool no_force_umount:1;
unsigned int max_read;
unsigned int blksize;
const char *subtype;
@@ -696,6 +698,12 @@ struct fuse_conn {
/* Delete dentries that have gone stale */
unsigned int delete_stale:1;
+ /** Do not create entry in fusectl fs */
+ unsigned int no_control:1;
+
+ /** Do not allow MNT_FORCE umount */
+ unsigned int no_force_umount:1;
+
/** The number of requests waiting for completion */
atomic_t num_waiting;