Displaying 2 results from an estimated 2 matches for "ed44107".
Did you mean:
d46107
2013 Dec 18
0
[PATCH v2] Btrfs-progs: receive: fix the case that we can not find the subvolume
...jitsu.com>
---
Changelog:
v1->v2:
addressed david''s comments and use the third approach to fix the problem
---
cmds-receive.c | 11 +++++++++--
man/btrfs.8.in | 15 ++++++++++-----
2 files changed, 19 insertions(+), 7 deletions(-)
diff --git a/cmds-receive.c b/cmds-receive.c
index ed44107..cce37a7 100644
--- a/cmds-receive.c
+++ b/cmds-receive.c
@@ -257,8 +257,15 @@ static int process_snapshot(const char *path, const u8 *uuid, u64 ctransid,
O_RDONLY | O_NOATIME);
if (args_v2.fd < 0) {
ret = -errno;
- fprintf(stderr, "ERROR: open %s failed. %s\n",
- parent_s...
2013 Dec 17
9
[PATCH] Btrfs-progs: receive: fix the case that we can not find subvolume
...-off-by: 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_s...