Displaying 1 result from an estimated 1 matches for "a6047ea".
Did you mean:
a60467ea
2013 Oct 22
0
[PATCH] Btrfs-progs: add support for the no holes incompat flag
...ssing hole extents in files when this
flag is set.
Signed-off-by: Josef Bacik <jbacik@fusionio.com>
---
cmds-check.c | 14 ++++++++++++--
ctree.h | 5 +++--
mkfs.c | 2 ++
3 files changed, 17 insertions(+), 4 deletions(-)
diff --git a/cmds-check.c b/cmds-check.c
index 668af15..a6047ea 100644
--- a/cmds-check.c
+++ b/cmds-check.c
@@ -50,6 +50,7 @@ static u64 data_bytes_referenced = 0;
static int found_old_backref = 0;
static LIST_HEAD(duplicate_extents);
static int repair = 0;
+static int no_holes = 0;
struct extent_backref {
struct list_head list;
@@ -443,8 +444,9 @@ sta...