| 文件 | 最后提交记录 | 最后更新时间 |
|---|---|---|
Add pac config for f2fs-tools 🤖 AI[0%] 🔧 Human Fixed[0%] 🧑 Human[100%] 👌 AI Adopted[0%] Signed-off-by: jiangqianrong <jiangqianrong1@h-partners.com> | 16 天前 | |
code sync Signed-off-by: yangbo <yangbo258@h-partners.com> | 7 个月前 | |
fsck.f2fs: support quota This patch let fsck to check and fix quota file contents. Signed-off-by: Hyojun Kim <hyojun@google.com> Signed-off-by: Jaegeuk Kim <jaegeuk@google.com> | 8 年前 | |
f2fs-tools: fix build error on lz4-1.9.4 LZ4_STREAMSIZE_U64 is undefined in new lz4 lib. Signed-off-by: Jaegeuk Kim <jaegeuk@kernel.org> | 2 年前 | |
f2fs-tools:sload.f2fs compression support commit b585244e726c1024f7b842033689992a383808cc category: bugfix issue: #I6VAS0 CVE: NA Signed-off-by: DongSenhao <dongsenhao2@huawei.com> --------------------------------------- Add F2FS compression support for sload * Support file extension filter, either default-accept or default-deny policy * Support choice of compression algorithm, LZO (version 2) or LZ4 (default) * Support custom log of cluster size * Support minimum number of compressed blocks per cluster (default 1). A cluster will not be compressed if the number can not be met. * suuport -r (read-only) option This releases compressed blocks to secure free space in advance. Note that, all compressed files will have the immutable bit. * Added manpage update * Remove unecessary qbuf allocation (Jaegeuk, suggested by Satya) Signed-off-by: Robin Hsu <robinhsu@google.com> [Jaegeuk Kim: fix some bugs and refactor names] Signed-off-by: Jaegeuk Kim <jaegeuk@kernel.org> Signed-off-by: dongsenhao <dongsenhao2@huawei.com> create mode 100644 fsck/compress.c create mode 100644 fsck/compress.h Signed-off-by: dongsenhao <dongsenhao2@huawei.com> | 3 年前 | |
f2fs缩进修改 Signed-off-by: Y-joh <yandibao@huawei.com> | 1 个月前 | |
fsck: support dedup and verity file Signed-off-by: lvyongzhao <lvyongzhao1@huawei.com> | 5 个月前 | |
f2fs-tool: increase debug level from 0 to 1 in migrate_block commit 3bfcca8c81c6d8c03ad0e88c2414a790d82642ba category: bugfix issue: #I6VAS0 CVE: NA Signed-off-by: DongSenhao <dongsenhao2@huawei.com> --------------------------------------- Increase debug level from 0 to 1 in migrate_block. It seems that doesn't need to display debug message by default. Signed-off-by: Jaehoon Chung <jh80.chung@samsung.com> Reviewed-by: Chao Yu <yuchao0@huawei.com> Signed-off-by: Jaegeuk Kim <jaegeuk@kernel.org> Signed-off-by: dongsenhao <dongsenhao2@huawei.com> | 3 年前 | |
Remove unnecessary config.h Instead, we should use <config.h> generated by configure. Signed-off-by: Jaegeuk Kim <jaegeuk@kernel.org> | 2 年前 | |
fsck.f2fs: support quota This patch let fsck to check and fix quota file contents. Signed-off-by: Hyojun Kim <hyojun@google.com> Signed-off-by: Jaegeuk Kim <jaegeuk@google.com> | 8 年前 | |
Fix the MinGW build commit 1790203deed19a93c60813f75956f2788ac96c95 category: bugfix issue: #I6VAS0 CVE: NA Signed-off-by: DongSenhao <dongsenhao2@huawei.com> --------------------------------------- Fix multiple compiler warnings and build errors reported by the MinGW cross-compiler. Signed-off-by: Bart Van Assche <bvanassche@acm.org> Signed-off-by: Jaegeuk Kim <jaegeuk@kernel.org> Signed-off-by: dongsenhao <dongsenhao2@huawei.com> | 3 年前 | |
fsck.f2fs: support quota This patch let fsck to check and fix quota file contents. Signed-off-by: Hyojun Kim <hyojun@google.com> Signed-off-by: Jaegeuk Kim <jaegeuk@google.com> | 8 年前 | |
code sync Signed-off-by: yangbo <yangbo258@h-partners.com> | 7 个月前 | |
code sync Signed-off-by: yangbo <yangbo258@h-partners.com> | 7 个月前 | |
add fsck phase time Signed-off-by: lvyongzhao <lvyongzhao1@huawei.com> | 2 个月前 | |
add fsck phase time Signed-off-by: lvyongzhao <lvyongzhao1@huawei.com> | 2 个月前 | |
add fsck phase time Signed-off-by: lvyongzhao <lvyongzhao1@huawei.com> | 2 个月前 | |
add fsck phase time Signed-off-by: lvyongzhao <lvyongzhao1@huawei.com> | 2 个月前 | |
Return error when change f2fslabel failed Signed-off-by: jiangqianrong <jiangqianrong1@huawei.com> | 1 个月前 | |
code sync Signed-off-by: yangbo <yangbo258@h-partners.com> | 7 个月前 | |
add fsck phase time Signed-off-by: lvyongzhao <lvyongzhao1@huawei.com> | 2 个月前 | |
f2fs-tools: rebuild the quota inode if it is corrupted commit 1228009520d1d2cb392ae52f8aaf3c6ec42edccf category: bugfix issue: #I6VAS0 CVE: NA Signed-off-by: DongSenhao <dongsenhao2@huawei.com> --------------------------------------- If the following process returns an error, the quota inode, not the quota file, is damaged. (fsck_chk_quota_node-->fsck_chk_node_blk-->sanity_check_nid) The fsck does not have a process to rebuild the quota inode. Because sanity_check_nid is not passed, fsck->nat_area_bitmap can not be cleared, and then the NAT of quota will be nullify during fix_nat_entries. During the next fsck check, the quota inode check fails because the address of the quota inode changes to 0. In addition, in fsck_chk_quota_files-->f2fs_filesize_update, data is written to address 0. Therefore, when the quota inode is corrupted, we need to rebuild it. Signed-off-by: Wang Xiaojun <wangxiaojun11@huawei.com> Reviewed-by: Chao Yu <chao@kernel.org> Signed-off-by: Jaegeuk Kim <jaegeuk@kernel.org> Signed-off-by: dongsenhao <dongsenhao2@huawei.com> | 3 年前 | |
f2fs-tools: set cold flag for non-dir node Signed-off-by: Wuyun Zhao <zhaowuyun@wingtech.com> Signed-off-by: Jaegeuk Kim <jaegeuk@kernel.org> | 6 年前 | |
code sync Signed-off-by: yangbo <yangbo258@h-partners.com> | 7 个月前 | |
code sync Signed-off-by: yangbo <yangbo258@h-partners.com> | 7 个月前 | |
Remove unnecessary config.h Instead, we should use <config.h> generated by configure. Signed-off-by: Jaegeuk Kim <jaegeuk@kernel.org> | 2 年前 | |
Fix the MinGW build commit 1790203deed19a93c60813f75956f2788ac96c95 category: bugfix issue: #I6VAS0 CVE: NA Signed-off-by: DongSenhao <dongsenhao2@huawei.com> --------------------------------------- Fix multiple compiler warnings and build errors reported by the MinGW cross-compiler. Signed-off-by: Bart Van Assche <bvanassche@acm.org> Signed-off-by: Jaegeuk Kim <jaegeuk@kernel.org> Signed-off-by: dongsenhao <dongsenhao2@huawei.com> | 3 年前 | |
Remove unnecessary config.h Instead, we should use <config.h> generated by configure. Signed-off-by: Jaegeuk Kim <jaegeuk@kernel.org> | 2 年前 | |
Remove unnecessary __attribute__((packed)) annotations commit 1612bf99de322e2554a90dced7337ff2d8d1ded6 category: bugfix issue: #I6VAS0 CVE: NA Signed-off-by: DongSenhao <dongsenhao2@huawei.com> --------------------------------------- Applying the __attribute__((packed)) annotation to members that do not need it impacts performance negatively on architectures that do not support efficient unaligned accesses (e.g. ARMv7). Hence minimize the __attribute__((packed)) annotations. See also CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS in the Linux kernel. Signed-off-by: Bart Van Assche <bvanassche@acm.org> Signed-off-by: Jaegeuk Kim <jaegeuk@kernel.org> Signed-off-by: dongsenhao <dongsenhao2@huawei.com> | 3 年前 | |
Remove unnecessary config.h Instead, we should use <config.h> generated by configure. Signed-off-by: Jaegeuk Kim <jaegeuk@kernel.org> | 2 年前 | |
Remove unnecessary __attribute__((packed)) annotations commit 1612bf99de322e2554a90dced7337ff2d8d1ded6 category: bugfix issue: #I6VAS0 CVE: NA Signed-off-by: DongSenhao <dongsenhao2@huawei.com> --------------------------------------- Applying the __attribute__((packed)) annotation to members that do not need it impacts performance negatively on architectures that do not support efficient unaligned accesses (e.g. ARMv7). Hence minimize the __attribute__((packed)) annotations. See also CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS in the Linux kernel. Signed-off-by: Bart Van Assche <bvanassche@acm.org> Signed-off-by: Jaegeuk Kim <jaegeuk@kernel.org> Signed-off-by: dongsenhao <dongsenhao2@huawei.com> | 3 年前 | |
update: 更新文件 resize.c Signed-off-by: qinpangbo1 <qinpangbo1@huawei.com> | 3 个月前 | |
code sync Signed-off-by: yangbo <yangbo258@h-partners.com> | 7 个月前 | |
code sync Signed-off-by: yangbo <yangbo258@h-partners.com> | 7 个月前 | |
code sync Signed-off-by: yangbo <yangbo258@h-partners.com> | 7 个月前 | |
code sync Signed-off-by: yangbo <yangbo258@h-partners.com> | 7 个月前 |
| 文件 | 最后提交记录 | 最后更新时间 |
|---|---|---|
| 16 天前 | ||
| 7 个月前 | ||
| 8 年前 | ||
| 2 年前 | ||
| 3 年前 | ||
| 1 个月前 | ||
| 5 个月前 | ||
| 3 年前 | ||
| 2 年前 | ||
| 8 年前 | ||
| 3 年前 | ||
| 8 年前 | ||
| 7 个月前 | ||
| 7 个月前 | ||
| 2 个月前 | ||
| 2 个月前 | ||
| 2 个月前 | ||
| 2 个月前 | ||
| 1 个月前 | ||
| 7 个月前 | ||
| 2 个月前 | ||
| 3 年前 | ||
| 6 年前 | ||
| 7 个月前 | ||
| 7 个月前 | ||
| 2 年前 | ||
| 3 年前 | ||
| 2 年前 | ||
| 3 年前 | ||
| 2 年前 | ||
| 3 年前 | ||
| 3 个月前 | ||
| 7 个月前 | ||
| 7 个月前 | ||
| 7 个月前 | ||
| 7 个月前 |