mirror of
https://gitee.com/openharmony/third_party_f2fs-tools
synced 2024-11-23 10:10:00 +00:00
603f8f9d36
This patch implements loading files into the existing partition. For example, # sload.f2fs -f ./ /dev/sdb1 Then, all the directories and files will be loaded into /dev/sdb1. By default, newly files should have inline_data and inline_xattr, if possible. Signed-off-by: Hou Pengyang <houpengyang@huawei.com> Signed-off-by: Liu Shuoran <liushuoran@huawei.com> Signed-off-by: Jaegeuk Kim <jaegeuk@kernel.org>
77 lines
1.6 KiB
Groff
77 lines
1.6 KiB
Groff
.\" Copyright (c) 2015 Jaegeuk Kim <jaegeuk@kernel.org>
|
|
.\"
|
|
.TH DEFRAG.F2FS 8
|
|
.SH NAME
|
|
defrag.f2fs \- relocate blocks in a given area to the specified region
|
|
.SH SYNOPSIS
|
|
.B defrag.f2fs
|
|
[
|
|
.B \-s
|
|
.I start block address
|
|
]
|
|
[
|
|
.B \-l
|
|
.I number of blocks
|
|
]
|
|
[
|
|
.B \-t
|
|
.I target block address
|
|
]
|
|
[
|
|
.B \-i
|
|
.I direction
|
|
]
|
|
[
|
|
.B \-d
|
|
.I debugging-level
|
|
]
|
|
.I device
|
|
.SH DESCRIPTION
|
|
.B defrag.f2fs
|
|
is used to move specified number of blocks starting from a given block address
|
|
to the target block address with a direction.
|
|
\fIdevice\fP is the special file corresponding to the device (e.g.
|
|
\fI/dev/sdXX\fP).
|
|
|
|
For example,
|
|
# defrag.f2fs -s 0x4000 -l 0x100 -t 0x10000 -i /dev/sdb1
|
|
|
|
This moves blocks between 0x4000 and 0x4100 to the left-hand area of 0x10000.
|
|
|
|
.PP
|
|
The exit code returned by
|
|
.B defrag.f2fs
|
|
is 0 on success and -1 on failure.
|
|
.SH OPTIONS
|
|
.TP
|
|
.BI \-s " start block address"
|
|
Specify the starting block address.
|
|
.TP
|
|
.BI \-l " number of blocks"
|
|
Specifiy the number of blocks to move.
|
|
.TP
|
|
.BI \-t " target block address"
|
|
Specify the destination block address.
|
|
.TP
|
|
.BI \-i " direction"
|
|
Set the direction to left. If it is not set, the direction becomes right
|
|
by default.
|
|
.TP
|
|
.BI \-d " debug-level"
|
|
Specify the level of debugging options.
|
|
The default number is 0, which shows basic debugging messages.
|
|
.TP
|
|
.SH AUTHOR
|
|
This version of
|
|
.B defrag.f2fs
|
|
has been written by Jaegeuk Kim <jaegeuk@kernel.org>.
|
|
.SH AVAILABILITY
|
|
.B defrag.f2fs
|
|
is available from git://git.kernel.org/pub/scm/linux/kernel/git/jaegeuk/f2fs-tools.git.
|
|
.SH SEE ALSO
|
|
.BR mkfs.f2fs(8),
|
|
.BR dump.f2fs(8),
|
|
.BR fsck.f2fs(8),
|
|
.BR resize.f2fs(8),
|
|
.BR sload.f2fs(8).
|