Displaying 2 results from an estimated 2 matches for "osubvol".
Did you mean:
subvol
2008 Aug 19
0
[PATCH] Reinstate '-osubvol=.' option to mount entire tree
This disappeared when I removed the special case for ''.'' in btrfs_lookup()
Signed-off-by: David Woodhouse <David.Woodhouse@intel.com>
---
super.c | 34 +++++++++++++++++++---------------
1 files changed, 19 insertions(+), 15 deletions(-)
diff --git a/super.c b/super.c
index 55f4d00..f7b3eac 100644
--- a/super.c
+++ b/super.c
@@ -451,21 +451,25 @@ static int
2014 Oct 16
0
[PATCH] btrfs: list only subvolumes below path
...t to print <path> as absolute:
><rescue> btrfs subvolume list /sysroot/
ID 257 gen 135 top level 5 path @
ID 258 gen 124 top level 257 path boot/grub2/i386-pc
vs.
><rescue> btrfs subvolume list -o /sysroot/
ID 258 gen 124 top level 257 path @/boot/grub2/i386-pc
mount -osubvol=boot/grub2/i386-pc $dev /sysroot will fail, while
mount -osubvol=@/boot/grub2/i386-pc $dev /sysroot will succeed.
Signed-off-by: Olaf Hering <olaf@aepfle.de>
---
daemon/btrfs.c | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/daemon/btrfs.c b/daemon/btrfs.c
index 7a4d43...