@@ -564,8 +564,6 @@ int cmd_send(int argc, char **argv)
}
/* use first send subvol to determine mount_root */
- subvol = argv[optind];
-
subvol = realpath(argv[optind], NULL);
if (!subvol) {
ret = -errno;
@@ -661,15 +659,6 @@ int cmd_send(int argc, char **argv)
}
}
- ret = is_subvol_ro(&send, subvol);
- if (ret < 0)
- goto out;
- if (!ret) {
- ret = -EINVAL;
- error("subvolume %s is not read-only", subvol);
- goto out;
- }
-
if (new_end_cmd_semantic) {
/* require new kernel */
is_first_subvol = (i == optind);
Some unnecessary codes is deleted. Signed-off-by: Tsutomu Itoh <t-itoh@jp.fujitsu.com> --- cmds-send.c | 11 ----------- 1 file changed, 11 deletions(-)