mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-03 18:54:42 +00:00
btrfs-progs: small patch to fix listing subvolumes on kernel 3.6+
The btrfs cleaner, introduced in 3.6 leaves some unresolvable entries, which the userspace utils don't know how to handle.
This commit is contained in:
parent
66a7fa30b8
commit
3d0b5b7a8f
@ -11,6 +11,8 @@ stdenv.mkDerivation {
|
|||||||
sha256 = "72d4cd4fb23d876a17146d6231ad40a2151fa47c648485c54cf7478239b43764";
|
sha256 = "72d4cd4fb23d876a17146d6231ad40a2151fa47c648485c54cf7478239b43764";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
patches = [ ./subvol-listing.patch ];
|
||||||
|
|
||||||
buildInputs = [ zlib libuuid acl attr e2fsprogs ];
|
buildInputs = [ zlib libuuid acl attr e2fsprogs ];
|
||||||
|
|
||||||
makeFlags = "prefix=$(out)";
|
makeFlags = "prefix=$(out)";
|
||||||
|
34
pkgs/tools/filesystems/btrfsprogs/subvol-listing.patch
Normal file
34
pkgs/tools/filesystems/btrfsprogs/subvol-listing.patch
Normal file
@ -0,0 +1,34 @@
|
|||||||
|
--- a/btrfs-list.c 2012-12-30 12:20:01.394137593 +0100
|
||||||
|
+++ b/btrfs-list.c 2012-12-30 12:22:47.242452906 +0100
|
||||||
|
@@ -1004,6 +1004,23 @@
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
+static void __drop_deleting_roots(struct root_lookup *root_lookup)
|
||||||
|
+{
|
||||||
|
+ struct rb_node *n;
|
||||||
|
+
|
||||||
|
+again:
|
||||||
|
+ n = rb_first(&root_lookup->root);
|
||||||
|
+ while (n) {
|
||||||
|
+ struct root_info *entry = rb_entry(n, struct root_info, rb_node);
|
||||||
|
+ if (!entry->ref_tree) {
|
||||||
|
+ rb_erase(n, &root_lookup->root);
|
||||||
|
+ free(entry);
|
||||||
|
+ goto again;
|
||||||
|
+ }
|
||||||
|
+ n = rb_next(n);
|
||||||
|
+ }
|
||||||
|
+}
|
||||||
|
+
|
||||||
|
static int __list_subvol_search(int fd, struct root_lookup *root_lookup)
|
||||||
|
{
|
||||||
|
int ret;
|
||||||
|
@@ -1123,6 +1140,8 @@
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
|
||||||
|
+ __drop_deleting_roots(root_lookup);
|
||||||
|
+
|
||||||
|
return 0;
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user