Displaying 1 result from an estimated 1 matches for "c2cf8a3".
Did you mean:
c2cf8ac3
2013 Dec 17
9
[PATCH] Btrfs-progs: receive: fix the case that we can not find subvolume
...Miao Xie <miaox@cn.fujitsu.com>
---
cmds-receive.c | 51 +++++++++++++++++++++++++++++++++++++++++++++++----
utils.c | 28 ++++++++++++++++++++++++++++
utils.h | 1 +
3 files changed, 76 insertions(+), 4 deletions(-)
diff --git a/cmds-receive.c b/cmds-receive.c
index ed44107..c2cf8a3 100644
--- a/cmds-receive.c
+++ b/cmds-receive.c
@@ -40,6 +40,7 @@
#include <sys/types.h>
#include <sys/xattr.h>
#include <uuid/uuid.h>
+#include <sys/mount.h>
#include "ctree.h"
#include "ioctl.h"
@@ -199,6 +200,10 @@ static int process_snapshot(c...