qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] virtiofsd: Show submounts
@ 2020-04-24 13:35 Max Reitz
  2020-04-27 17:59 ` Dr. David Alan Gilbert
  2020-05-01 17:53 ` Dr. David Alan Gilbert
  0 siblings, 2 replies; 32+ messages in thread
From: Max Reitz @ 2020-04-24 13:35 UTC (permalink / raw)
  To: qemu-devel; +Cc: virtio-fs, Dr . David Alan Gilbert, Stefan Hajnoczi, Max Reitz

Currently, setup_mounts() bind-mounts the shared directory without
MS_REC.  This makes all submounts disappear.

Pass MS_REC so that the guest can see submounts again.

Fixes: 3ca8a2b1c83eb185c232a4e87abbb65495263756
Signed-off-by: Max Reitz <mreitz@redhat.com>
---
 tools/virtiofsd/passthrough_ll.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tools/virtiofsd/passthrough_ll.c b/tools/virtiofsd/passthrough_ll.c
index 4c35c95b25..9d7f863e66 100644
--- a/tools/virtiofsd/passthrough_ll.c
+++ b/tools/virtiofsd/passthrough_ll.c
@@ -2643,7 +2643,7 @@ static void setup_mounts(const char *source)
     int oldroot;
     int newroot;
 
-    if (mount(source, source, NULL, MS_BIND, NULL) < 0) {
+    if (mount(source, source, NULL, MS_BIND | MS_REC, NULL) < 0) {
         fuse_log(FUSE_LOG_ERR, "mount(%s, %s, MS_BIND): %m\n", source, source);
         exit(1);
     }
-- 
2.25.3



^ permalink raw reply related	[flat|nested] 32+ messages in thread

end of thread, other threads:[~2020-05-01 17:55 UTC | newest]

Thread overview: 32+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2020-04-24 13:35 [PATCH] virtiofsd: Show submounts Max Reitz
2020-04-27 17:59 ` Dr. David Alan Gilbert
2020-04-28  6:06   ` Max Reitz
2020-04-28  9:59     ` Dr. David Alan Gilbert
2020-04-28 10:13       ` Max Reitz
2020-04-28 10:19         ` Dr. David Alan Gilbert
2020-04-28  8:46   ` Daniel P. Berrangé
2020-04-28 14:51   ` Stefan Hajnoczi
2020-04-28 14:58     ` Daniel P. Berrangé
2020-04-28 19:07     ` [Virtio-fs] " Miklos Szeredi
2020-04-28 19:15       ` Dr. David Alan Gilbert
2020-04-29  7:59         ` Miklos Szeredi
2020-04-29  9:26           ` Miklos Szeredi
2020-04-29 12:34             ` Vivek Goyal
2020-04-29 12:41               ` Vivek Goyal
2020-04-29  8:31         ` Max Reitz
2020-04-29  8:52           ` Miklos Szeredi
2020-04-29  9:31             ` Max Reitz
2020-04-29 14:57   ` Dr. David Alan Gilbert
2020-04-29 15:35     ` Vivek Goyal
2020-04-30  8:06     ` Max Reitz
2020-04-30  8:58       ` Dr. David Alan Gilbert
2020-04-30  9:21         ` Max Reitz
2020-04-30 11:38           ` Max Reitz
2020-04-30 13:56         ` Vivek Goyal
2020-04-30 14:20           ` Dr. David Alan Gilbert
2020-04-30 14:24             ` Vivek Goyal
2020-04-30 14:34             ` Daniel P. Berrangé
2020-04-30 14:41               ` Vivek Goyal
2020-04-30 14:47                 ` Daniel P. Berrangé
2020-04-30 15:41                   ` Vivek Goyal
2020-05-01 17:53 ` Dr. David Alan Gilbert

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).