Home
last modified time | relevance | path

Searched refs:fsck (Results 1 – 25 of 143) sorted by relevance

123456

/third_party/f2fs-tools/fsck/
Dfsck.c21 struct f2fs_fsck *fsck = F2FS_FSCK(sbi); in f2fs_set_main_bitmap() local
37 return f2fs_set_bit(BLKOFF_FROM_MAIN(sbi, blk), fsck->main_area_bitmap); in f2fs_set_main_bitmap()
42 struct f2fs_fsck *fsck = F2FS_FSCK(sbi); in f2fs_test_main_bitmap() local
45 fsck->main_area_bitmap); in f2fs_test_main_bitmap()
50 struct f2fs_fsck *fsck = F2FS_FSCK(sbi); in f2fs_clear_main_bitmap() local
53 fsck->main_area_bitmap); in f2fs_clear_main_bitmap()
58 struct f2fs_fsck *fsck = F2FS_FSCK(sbi); in f2fs_test_sit_bitmap() local
60 return f2fs_test_bit(BLKOFF_FROM_MAIN(sbi, blk), fsck->sit_area_bitmap); in f2fs_test_sit_bitmap()
65 struct f2fs_fsck *fsck = F2FS_FSCK(sbi); in f2fs_set_sit_bitmap() local
67 return f2fs_set_bit(BLKOFF_FROM_MAIN(sbi, blk), fsck->sit_area_bitmap); in f2fs_set_sit_bitmap()
[all …]
DMakefile.am5 sbin_PROGRAMS = fsck.f2fs
6 noinst_HEADERS = common.h dict.h dqblk_v2.h f2fs.h fsck.h node.h quotaio.h quotaio_tree.h quotaio_v…
8 fsck_f2fs_SOURCES = main.c fsck.c dump.c mount.c defrag.c resize.c \
14 ln -sf fsck.f2fs $(DESTDIR)/$(sbindir)/dump.f2fs
15 ln -sf fsck.f2fs $(DESTDIR)/$(sbindir)/defrag.f2fs
16 ln -sf fsck.f2fs $(DESTDIR)/$(sbindir)/resize.f2fs
17 ln -sf fsck.f2fs $(DESTDIR)/$(sbindir)/sload.f2fs
DBUILD.gn21 ##Build fsck
22 ohos_executable("fsck.f2fs") {
29 "fsck.c",
Dmkquota.c68 struct f2fs_fsck *fsck = F2FS_FSCK(sbi); in quota_write_inode() local
70 quota_ctx_t qctx = fsck->qctx; in quota_write_inode()
148 struct f2fs_fsck *fsck = F2FS_FSCK(sbi); in quota_init_context() local
178 fsck->qctx = ctx; in quota_init_context()
366 struct f2fs_fsck *fsck = F2FS_FSCK(sbi); in quota_compare_and_update() local
367 quota_ctx_t qctx = fsck->qctx; in quota_compare_and_update()
Dmount.c2404 struct f2fs_fsck *fsck = F2FS_FSCK(sbi); in build_sit_area_bitmap() local
2412 fsck->sit_area_bitmap_sz = sm_i->main_segments * SIT_VBLOCK_MAP_SIZE; in build_sit_area_bitmap()
2413 fsck->sit_area_bitmap = calloc(1, fsck->sit_area_bitmap_sz); in build_sit_area_bitmap()
2414 ASSERT(fsck->sit_area_bitmap); in build_sit_area_bitmap()
2415 ptr = fsck->sit_area_bitmap; in build_sit_area_bitmap()
2417 ASSERT(fsck->sit_area_bitmap_sz == fsck->main_area_bitmap_sz); in build_sit_area_bitmap()
2440 fsck->chk.sit_valid_blocks = sum_vblocks; in build_sit_area_bitmap()
2441 fsck->chk.sit_free_segs = free_segs; in build_sit_area_bitmap()
2450 struct f2fs_fsck *fsck = F2FS_FSCK(sbi); in rewrite_sit_area_bitmap() local
2463 ptr = fsck->main_area_bitmap; in rewrite_sit_area_bitmap()
[all …]
Dquotaio.c108 struct f2fs_fsck *fsck = F2FS_FSCK(sbi); in quota_file_open() local
110 quota_ctx_t qctx = fsck->qctx; in quota_file_open()
199 struct f2fs_fsck *fsck = F2FS_FSCK(sbi); in quota_file_close() local
200 quota_ctx_t qctx = fsck->qctx; in quota_file_close()
Dsegment.c23 struct f2fs_fsck *fsck = F2FS_FSCK(sbi); in reserve_new_block() local
31 if (fsck->chk.valid_blk_cnt >= sbi->user_block_count) { in reserve_new_block()
35 if (is_node && fsck->chk.valid_node_cnt >= in reserve_new_block()
84 fsck->chk.valid_blk_cnt++; in reserve_new_block()
86 fsck->chk.valid_node_cnt++; in reserve_new_block()
88 fsck->chk.valid_inode_cnt++; in reserve_new_block()
/third_party/exfatprogs/
DBUILD.gn22 ":fsck.exfat",
37 "fsck",
80 ##Build fsck.exfat
81 ohos_executable("fsck.exfat") {
84 "fsck/de_iter.c",
85 "fsck/fsck.c",
86 "fsck/repair.c",
92 "./fsck",
111 "./fsck",
129 "./fsck",
[all …]
DMakefile.am5 SUBDIRS = lib mkfs fsck tune label dump subdir
9 manpages/fsck.exfat.8 \
22 fsck/Android.bp \
DNEWS12 * fsck.exfat: fix a double free memory error.
45 * fsck.exfat: recover corrupted boot region.
58 * fsck.exfat: display sector, cluster, and volume sizes in the human
60 * fsck.exfat: reduce the elapsed time using read-ahead.
66 * fsck.exfat: repair zero-byte files which have the NoFatChain attribute.
70 * fsck.exfat: fix the bug that cannot access space beyond 2TB.
117 * fsck.exfat: consistency check support
DREADME.md50 - fsck.exfat:
55 fsck.exfat /dev/sda1
94 Some fsck implementations were tested and compared for Samsung 64GB Pro
103 | **exfatprogs fsck** | 1.0.4 | 11.561 |
104 | Windows fsck | Windows 10 1809 | 11.449 |
105 | [exfat-fuse fsck] | 1.3.0 | 68.977 |
107 [exfat-fuse fsck]: https://github.com/relan/exfat
/third_party/ltp/testcases/kernel/mce-test/stress/
Dhwpoison.sh724 local dir=$g_logdir/fsck
725 local result=$dir/fsck.result
726 local log=$dir/fsck.log
734 local dir=$g_logdir/fsck
735 local result=$dir/fsck.result
736 local log=$dir/fsck.log
744 local dir=$g_logdir/fsck
745 local result=$dir/fsck.result
746 local log=$dir/fsck.log
747 local fsck=fsck.$g_fstype
[all …]
/third_party/f2fs-tools/
DBUILD.gn11 "//third_party/f2fs-tools/fsck:fsck.f2fs",
19 "//third_party/f2fs-tools/fsck:fsck.f2fs($host_toolchain)",
D.gitignore48 /fsck/fsck.f2fs
/third_party/e2fsprogs/
De2fsprogs.spec33 fsck tool that are included here.
122 %{_root_sbindir}/fsck
123 %{_root_sbindir}/fsck.ext2
124 %{_root_sbindir}/fsck.ext3
125 %{_root_sbindir}/fsck.ext4
126 %{_root_sbindir}/fsck.ext4dev
165 %{_mandir}/man8/fsck.ext2.8*
166 %{_mandir}/man8/fsck.ext3.8*
167 %{_mandir}/man8/fsck.ext4.8*
168 %{_mandir}/man8/fsck.ext4dev.8*
[all …]
/third_party/exfatprogs/fsck/
DMakefile.am4 sbin_PROGRAMS = fsck.exfat
6 fsck_exfat_SOURCES = fsck.c repair.c fsck.h de_iter.c repair.h
/third_party/e2fsprogs/doc/RelNotes/
Dv1.17.txt4 Fixed nasty typo in fsck which caused parallelized fsck's to go into an
7 Fixed a bug in fsck where it used strncmp to compare a binary UUID,
20 Added a debugging hook to test parallel fsck; if the environment
/third_party/e2fsprogs/tests/t_change_uuid_mcsum_seed_mounted/
Dexpect6 fsck returns 0
12 fsck returns 0
19 fsck returns 0
Dscript20 echo "fsck returns $?" >> $OUT
29 echo "fsck returns $?" >> $OUT
38 echo "fsck returns $?" >> $OUT
/third_party/f2fs-tools/scripts/
Dspo_test.sh29 fsck.f2fs $DEV -d 0 || exit
36 fsck.f2fs $DEV -d 0 || exit
41 fsck.f2fs $DEV -d 0 || exit
/third_party/e2fsprogs/tests/t_disable_meta_csum_and_seed/
Dexpect7 fsck returns 0
13 fsck returns 0
/third_party/e2fsprogs/tests/t_disable_csum_seed/
Dexpect7 fsck returns 0
13 fsck returns 0
/third_party/e2fsprogs/tests/t_disable_changed_csum_seed/
Dexpect10 fsck returns 0
16 fsck returns 0
/third_party/e2fsprogs/tests/t_disable_changed_csum_seed_mounted/
Dexpect10 fsck returns 0
17 fsck returns 0
/third_party/e2fsprogs/tests/t_uninit_bg_rm/
Dexpect4 fsck -yf -N test_filesys test.img
15 fsck -yf -N test_filesys test.img

123456