* [f2fs-dev] [PATCH v2] f2fs_io: support move_range command
@ 2023-05-06 11:45 Yangtao Li via Linux-f2fs-devel
2023-05-06 11:45 ` [f2fs-dev] [PATCH] f2fs_io: expend fallocate command Yangtao Li via Linux-f2fs-devel
2023-05-17 1:41 ` [f2fs-dev] [PATCH v2] f2fs_io: support move_range command Chao Yu
0 siblings, 2 replies; 4+ messages in thread
From: Yangtao Li via Linux-f2fs-devel @ 2023-05-06 11:45 UTC (permalink / raw)
To: jaegeuk, chao; +Cc: Yangtao Li, linux-f2fs-devel
This patch supports a new sub-command 'move_range' in f2fs_io
to move a range of data blocks from source file to destination
file via F2FS_IOC_MOVE_RANGE ioctl.
Signed-off-by: Yangtao Li <frank.li@vivo.com>
---
man/f2fs_io.8 | 4 ++++
tools/f2fs_io/f2fs_io.c | 36 ++++++++++++++++++++++++++++++++++++
2 files changed, 40 insertions(+)
diff --git a/man/f2fs_io.8 b/man/f2fs_io.8
index 13d4bf3..b25f807 100644
--- a/man/f2fs_io.8
+++ b/man/f2fs_io.8
@@ -138,8 +138,12 @@ Trigger filesystem GC
.TP
\fBcheckpoint\fR \fI[file]\fR
Trigger filesystem checkpoint
+.TP
\fBprecache_extents\fR \fI[file]\fR
Trigger precache extents
+.TP
+\fBmove_range\fR \fI[src_path] [dst_path] [src_start] [dst_start] [length]\fR
+Move a range of data blocks from source file to destination file
.SH AUTHOR
This version of
.B f2fs_io
diff --git a/tools/f2fs_io/f2fs_io.c b/tools/f2fs_io/f2fs_io.c
index ac7b588..126e1f9 100644
--- a/tools/f2fs_io/f2fs_io.c
+++ b/tools/f2fs_io/f2fs_io.c
@@ -1357,6 +1357,41 @@ static void do_precache_extents(int argc, char **argv, const struct cmd_desc *cm
exit(0);
}
+#define move_range_desc "moving a range of data blocks from source file to destination file"
+#define move_range_help \
+"f2fs_io move_range [src_path] [dst_path] [src_start] [dst_start] " \
+"[length]\n\n" \
+" src_path : path to source file\n" \
+" dst_path : path to destination file\n" \
+" src_start : start offset of src file move region, unit: bytes\n" \
+" dst_start : start offset of dst file move region, unit: bytes\n" \
+" length : size to move\n" \
+
+static void do_move_range(int argc, char **argv, const struct cmd_desc *cmd)
+{
+ struct f2fs_move_range range;
+ int ret, fd;
+
+ if (argc != 6) {
+ fputs("Excess arguments\n\n", stderr);
+ fputs(cmd->cmd_help, stderr);
+ exit(1);
+ }
+
+ fd = xopen(argv[1], O_RDWR, 0);
+ range.dst_fd = xopen(argv[2], O_RDWR | O_CREAT, 0644);
+ range.pos_in = atoi(argv[3]);
+ range.pos_out = atoi(argv[4]);
+ range.len = atoi(argv[5]);
+
+ ret = ioctl(fd, F2FS_IOC_MOVE_RANGE, &range);
+ if (ret < 0)
+ die_errno("F2FS_IOC_MOVE_RANGE failed");
+
+ printf("move range ret=%d\n", ret);
+ exit(0);
+}
+
#define CMD_HIDDEN 0x0001
#define CMD(name) { #name, do_##name, name##_desc, name##_help, 0 }
#define _CMD(name) { #name, do_##name, NULL, NULL, CMD_HIDDEN }
@@ -1391,6 +1426,7 @@ const struct cmd_desc cmd_list[] = {
CMD(gc),
CMD(checkpoint),
CMD(precache_extents),
+ CMD(move_range),
{ NULL, NULL, NULL, NULL, 0 }
};
--
2.39.0
_______________________________________________
Linux-f2fs-devel mailing list
Linux-f2fs-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/linux-f2fs-devel
^ permalink raw reply related [flat|nested] 4+ messages in thread
* [f2fs-dev] [PATCH] f2fs_io: expend fallocate command
2023-05-06 11:45 [f2fs-dev] [PATCH v2] f2fs_io: support move_range command Yangtao Li via Linux-f2fs-devel
@ 2023-05-06 11:45 ` Yangtao Li via Linux-f2fs-devel
2023-05-17 1:53 ` Chao Yu
2023-05-17 1:41 ` [f2fs-dev] [PATCH v2] f2fs_io: support move_range command Chao Yu
1 sibling, 1 reply; 4+ messages in thread
From: Yangtao Li via Linux-f2fs-devel @ 2023-05-06 11:45 UTC (permalink / raw)
To: jaegeuk, chao; +Cc: Yangtao Li, linux-f2fs-devel
Expend fallocate command to support more flags.
Signed-off-by: Yangtao Li <frank.li@vivo.com>
---
tools/f2fs_io/f2fs_io.c | 37 ++++++++++++++++++++++++++++++++-----
1 file changed, 32 insertions(+), 5 deletions(-)
diff --git a/tools/f2fs_io/f2fs_io.c b/tools/f2fs_io/f2fs_io.c
index 126e1f9..1be8c9e 100644
--- a/tools/f2fs_io/f2fs_io.c
+++ b/tools/f2fs_io/f2fs_io.c
@@ -416,6 +416,10 @@ static void do_pinfile(int argc, char **argv, const struct cmd_desc *cmd)
"f2fs_io fallocate [keep_size] [offset] [length] [file]\n\n" \
"fallocate given the file\n" \
" [keep_size] : 1 or 0\n" \
+" -p : punch hole\n" \
+" -c : collapse range\n" \
+" -z : zero range\n" \
+" -i : insert range\n" \
static void do_fallocate(int argc, char **argv, const struct cmd_desc *cmd)
{
@@ -423,20 +427,43 @@ static void do_fallocate(int argc, char **argv, const struct cmd_desc *cmd)
off_t offset, length;
struct stat sb;
int mode = 0;
+ int c;
- if (argc != 5) {
+ while ((c = getopt(argc, argv, "cipz")) != -1) {
+ switch (c) {
+ case 'c':
+ mode |= FALLOC_FL_COLLAPSE_RANGE;
+ break;
+ case 'i':
+ mode |= FALLOC_FL_INSERT_RANGE;
+ break;
+ case 'p':
+ mode |= FALLOC_FL_PUNCH_HOLE;
+ break;
+ case 'z':
+ mode |= FALLOC_FL_ZERO_RANGE;
+ break;
+ default:
+ fputs(cmd->cmd_help, stderr);
+ exit(2);
+ }
+ }
+ argc -= optind;
+ argv += optind;
+
+ if (argc != 4) {
fputs("Excess arguments\n\n", stderr);
fputs(cmd->cmd_help, stderr);
exit(1);
}
- if (!strcmp(argv[1], "1"))
+ if (!strcmp(argv[0], "1"))
mode |= FALLOC_FL_KEEP_SIZE;
- offset = atoi(argv[2]);
- length = atoll(argv[3]);
+ offset = atoi(argv[1]);
+ length = atoll(argv[2]);
- fd = xopen(argv[4], O_RDWR, 0);
+ fd = xopen(argv[3], O_RDWR, 0);
if (fallocate(fd, mode, offset, length) != 0)
die_errno("fallocate failed");
--
2.39.0
_______________________________________________
Linux-f2fs-devel mailing list
Linux-f2fs-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/linux-f2fs-devel
^ permalink raw reply related [flat|nested] 4+ messages in thread
* Re: [f2fs-dev] [PATCH] f2fs_io: expend fallocate command
2023-05-06 11:45 ` [f2fs-dev] [PATCH] f2fs_io: expend fallocate command Yangtao Li via Linux-f2fs-devel
@ 2023-05-17 1:53 ` Chao Yu
0 siblings, 0 replies; 4+ messages in thread
From: Chao Yu @ 2023-05-17 1:53 UTC (permalink / raw)
To: Yangtao Li, jaegeuk; +Cc: linux-f2fs-devel
On 2023/5/6 19:45, Yangtao Li wrote:
> Expend fallocate command to support more flags.
>
> Signed-off-by: Yangtao Li <frank.li@vivo.com>
> ---
> tools/f2fs_io/f2fs_io.c | 37 ++++++++++++++++++++++++++++++++-----
> 1 file changed, 32 insertions(+), 5 deletions(-)
>
> diff --git a/tools/f2fs_io/f2fs_io.c b/tools/f2fs_io/f2fs_io.c
> index 126e1f9..1be8c9e 100644
> --- a/tools/f2fs_io/f2fs_io.c
> +++ b/tools/f2fs_io/f2fs_io.c
> @@ -416,6 +416,10 @@ static void do_pinfile(int argc, char **argv, const struct cmd_desc *cmd)
> "f2fs_io fallocate [keep_size] [offset] [length] [file]\n\n" \
It needs to update above description, and manual as well?
f2fs_io fallocate [-cipz] [keep_size] [offset] [length] [file]
Thanks,
> "fallocate given the file\n" \
> " [keep_size] : 1 or 0\n" \
> +" -p : punch hole\n" \
> +" -c : collapse range\n" \
> +" -z : zero range\n" \
> +" -i : insert range\n" \
>
> static void do_fallocate(int argc, char **argv, const struct cmd_desc *cmd)
> {
> @@ -423,20 +427,43 @@ static void do_fallocate(int argc, char **argv, const struct cmd_desc *cmd)
> off_t offset, length;
> struct stat sb;
> int mode = 0;
> + int c;
>
> - if (argc != 5) {
> + while ((c = getopt(argc, argv, "cipz")) != -1) {
> + switch (c) {
> + case 'c':
> + mode |= FALLOC_FL_COLLAPSE_RANGE;
> + break;
> + case 'i':
> + mode |= FALLOC_FL_INSERT_RANGE;
> + break;
> + case 'p':
> + mode |= FALLOC_FL_PUNCH_HOLE;
> + break;
> + case 'z':
> + mode |= FALLOC_FL_ZERO_RANGE;
> + break;
> + default:
> + fputs(cmd->cmd_help, stderr);
> + exit(2);
> + }
> + }
> + argc -= optind;
> + argv += optind;
> +
> + if (argc != 4) {
> fputs("Excess arguments\n\n", stderr);
> fputs(cmd->cmd_help, stderr);
> exit(1);
> }
>
> - if (!strcmp(argv[1], "1"))
> + if (!strcmp(argv[0], "1"))
> mode |= FALLOC_FL_KEEP_SIZE;
>
> - offset = atoi(argv[2]);
> - length = atoll(argv[3]);
> + offset = atoi(argv[1]);
> + length = atoll(argv[2]);
>
> - fd = xopen(argv[4], O_RDWR, 0);
> + fd = xopen(argv[3], O_RDWR, 0);
>
> if (fallocate(fd, mode, offset, length) != 0)
> die_errno("fallocate failed");
_______________________________________________
Linux-f2fs-devel mailing list
Linux-f2fs-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/linux-f2fs-devel
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [f2fs-dev] [PATCH v2] f2fs_io: support move_range command
2023-05-06 11:45 [f2fs-dev] [PATCH v2] f2fs_io: support move_range command Yangtao Li via Linux-f2fs-devel
2023-05-06 11:45 ` [f2fs-dev] [PATCH] f2fs_io: expend fallocate command Yangtao Li via Linux-f2fs-devel
@ 2023-05-17 1:41 ` Chao Yu
1 sibling, 0 replies; 4+ messages in thread
From: Chao Yu @ 2023-05-17 1:41 UTC (permalink / raw)
To: Yangtao Li, jaegeuk; +Cc: linux-f2fs-devel
On 2023/5/6 19:45, Yangtao Li wrote:
> This patch supports a new sub-command 'move_range' in f2fs_io
> to move a range of data blocks from source file to destination
> file via F2FS_IOC_MOVE_RANGE ioctl.
>
> Signed-off-by: Yangtao Li <frank.li@vivo.com>
Reviewed-by: Chao Yu <chao@kernel.org>
Thanks,
_______________________________________________
Linux-f2fs-devel mailing list
Linux-f2fs-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/linux-f2fs-devel
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2023-05-17 1:53 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-05-06 11:45 [f2fs-dev] [PATCH v2] f2fs_io: support move_range command Yangtao Li via Linux-f2fs-devel
2023-05-06 11:45 ` [f2fs-dev] [PATCH] f2fs_io: expend fallocate command Yangtao Li via Linux-f2fs-devel
2023-05-17 1:53 ` Chao Yu
2023-05-17 1:41 ` [f2fs-dev] [PATCH v2] f2fs_io: support move_range command Chao Yu
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).