summaryrefslogtreecommitdiffstats
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 08:59:41 -0400
commit15c8e72e88e0b707ffefd524ca33f28cdb3db487 (patch)
tree4faada0a21a2f2a553660ac6a17817d6d05d2ad8
parent783863d6476ce9f27fa87227f76ae9134caf43fa (diff)
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>
-rw-r--r--fs/fuse/fuse_i.h8
-rw-r--r--fs/fuse/inode.c7
2 files changed, 14 insertions, 1 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 {
468 bool default_permissions:1; 468 bool default_permissions:1;
469 bool allow_other:1; 469 bool allow_other:1;
470 bool destroy:1; 470 bool destroy:1;
471 bool no_control:1;
472 bool no_force_umount:1;
471 unsigned int max_read; 473 unsigned int max_read;
472 unsigned int blksize; 474 unsigned int blksize;
473 const char *subtype; 475 const char *subtype;
@@ -696,6 +698,12 @@ struct fuse_conn {
696 /* Delete dentries that have gone stale */ 698 /* Delete dentries that have gone stale */
697 unsigned int delete_stale:1; 699 unsigned int delete_stale:1;
698 700
701 /** Do not create entry in fusectl fs */
702 unsigned int no_control:1;
703
704 /** Do not allow MNT_FORCE umount */
705 unsigned int no_force_umount:1;
706
699 /** The number of requests waiting for completion */ 707 /** The number of requests waiting for completion */
700 atomic_t num_waiting; 708 atomic_t num_waiting;
701 709
diff --git a/fs/fuse/inode.c b/fs/fuse/inode.c
index cd6ffb3fe69e..10d193b24fb8 100644
--- a/fs/fuse/inode.c
+++ b/fs/fuse/inode.c
@@ -364,7 +364,10 @@ void fuse_unlock_inode(struct inode *inode, bool locked)
364 364
365static void fuse_umount_begin(struct super_block *sb) 365static void fuse_umount_begin(struct super_block *sb)
366{ 366{
367 fuse_abort_conn(get_fuse_conn_super(sb)); 367 struct fuse_conn *fc = get_fuse_conn_super(sb);
368
369 if (!fc->no_force_umount)
370 fuse_abort_conn(fc);
368} 371}
369 372
370static void fuse_send_destroy(struct fuse_conn *fc) 373static void fuse_send_destroy(struct fuse_conn *fc)
@@ -1171,6 +1174,8 @@ int fuse_fill_super_common(struct super_block *sb, struct fuse_fs_context *ctx)
1171 fc->group_id = ctx->group_id; 1174 fc->group_id = ctx->group_id;
1172 fc->max_read = max_t(unsigned, 4096, ctx->max_read); 1175 fc->max_read = max_t(unsigned, 4096, ctx->max_read);
1173 fc->destroy = ctx->destroy; 1176 fc->destroy = ctx->destroy;
1177 fc->no_control = ctx->no_control;
1178 fc->no_force_umount = ctx->no_force_umount;
1174 1179
1175 err = -ENOMEM; 1180 err = -ENOMEM;
1176 root = fuse_get_root_inode(sb, ctx->rootmode); 1181 root = fuse_get_root_inode(sb, ctx->rootmode);