Displaying 1 result from an estimated 1 matches for "new_end_cmd_semantic".
2013 Apr 10
0
[PATCH] Btrfs-progs: add send option for using new end-cmd semantic
...first_subvol || !is_last_subvol))
+ fprintf(stderr,
+ "Try upgrading your kernel or don''t use -e.\n");
goto out;
}
if (g_verbose > 0)
@@ -435,15 +443,19 @@ int cmd_send_start(int argc, char **argv)
u64 root_id;
u64 parent_root_id = 0;
int full_send = 1;
+ int new_end_cmd_semantic = 0;
memset(&send, 0, sizeof(send));
send.dump_fd = fileno(stdout);
- while ((c = getopt(argc, argv, "vc:f:i:p:")) != -1) {
+ while ((c = getopt(argc, argv, "vec:f:i:p:")) != -1) {
switch (c) {
case ''v'':
g_verbose++;
break;
+ case ...