/external/f2fs-tools/man/ |
Makefile.am | 3 dist_man_MANS = mkfs.f2fs.8
|
mkfs.f2fs.8 | 5 .TH MKFS.F2FS 8 "January 2013" "f2fs-tools version 1.2.0" 7 mkfs.f2fs \- create an F2FS file system 9 .B mkfs.f2fs 40 .B mkfs.f2fs 41 is used to create a f2fs file system (usually in a disk partition). 46 .B mkfs.f2fs 57 Specify the volume label to the partition mounted as F2FS. 61 is hidden to users, and utilized by F2FS cleaner. The default percentage is 5% [all...] |
/external/f2fs-tools/scripts/ |
tracepoint.sh | 18 echo $G > $TRACE/events/f2fs/f2fs_get_victim/enable 22 echo $A > $TRACE/events/f2fs/f2fs_reserve_new_block/enable 26 echo $T > $TRACE/events/f2fs/f2fs_truncate/enable 27 echo $T > $TRACE/events/f2fs/f2fs_truncate_inode_blocks_enter/enable 28 echo $T > $TRACE/events/f2fs/f2fs_truncate_inode_blocks_exit/enable 29 echo $T > $TRACE/events/f2fs/f2fs_truncate_blocks_enter/enable 30 echo $T > $TRACE/events/f2fs/f2fs_truncate_blocks_exit/enable 31 echo $T > $TRACE/events/f2fs/f2fs_truncate_nodes_enter/enable 32 echo $T > $TRACE/events/f2fs/f2fs_truncate_nodes_exit/enable 33 echo $T > $TRACE/events/f2fs/f2fs_truncate_data_blocks_range/enabl [all...] |
spo_test.sh | 3 MNT=/mnt/f2fs 25 insmod $F2FS_DIR/src/fs/f2fs/f2fs.ko || exit 27 echo Start checking F2FS without fsync 29 fsck.f2fs $DEV -d 0 || exit 30 mount -t f2fs -o disable_roll_forward $DEV $MNT || exit 34 echo Start checking F2FS with fsync 36 fsck.f2fs $DEV -d 0 || exit 37 mount -t f2fs $DEV $MNT || exit 41 fsck.f2fs $DEV -d 0 || exi [all...] |
/external/f2fs-tools/ |
ChangeLog | 0 f2fs-tools-1.0.0 Tue Aug 14, 2012 KST 2 * The first release of f2fs-tools. 3 f2fs-tools-1.0.1 Tue Jun 04, 2013 KST 4 * Added fsck and dump for f2fs-tools.
|
configure.ac | 12 AC_INIT([F2FS tools], [f2fs_tools_version], 13 [linux-f2fs-devel@lists.sourceforge.net]) 15 AC_DEFINE([F2FS_TOOLS_VERSION], "f2fs_tools_version", [f2fs-tools version]) 18 [Major version for f2fs-tools]) 21 [Minor version for f2fs-tools]) 27 [f2fs-tools date based on Git commits]), 30 [f2fs-tools date based on Source releases]))
|
README | 0 F2FS format utilility 4 To use f2fs filesystem, you should format the storage partition 5 with this utilility. Otherwise, you cannot mount f2fs. 46 $ ./mkfs.f2fs -l [LABEL] $DEV
|
.gitignore | 47 /mkfs/mkfs.f2fs
|
Android.mk | 3 # f2fs-tools depends on Linux kernel headers being in the system include path. 62 LOCAL_MODULE := mkfs.f2fs 64 # mkfs.f2fs is used in recovery: must be static. 96 LOCAL_MODULE := fsck.f2fs 114 LOCAL_MODULE := fsck.f2fs
|
/external/f2fs-tools/tools/ |
Makefile.am | 5 sbin_PROGRAMS = f2fstat fibmap.f2fs parse.f2fs
|
/external/f2fs-tools/fsck/ |
Makefile.am | 5 sbin_PROGRAMS = fsck.f2fs 10 ln -sf fsck.f2fs $(DESTDIR)/$(sbindir)/dump.f2fs
|
main.c | 18 MSG(0, "\nUsage: fsck.f2fs [options] device\n"); 20 MSG(0, " -a check/fix potential corruption, reported by f2fs\n"); 29 MSG(0, "\nUsage: dump.f2fs [options] device\n"); 45 if (!strcmp("fsck.f2fs", prog)) { 73 } else if (!strcmp("dump.f2fs", prog)) {
|
/system/extras/f2fs_utils/ |
Android.mk | 13 LOCAL_C_INCLUDES := external/f2fs-tools/include external/f2fs-tools/mkfs 19 LOCAL_C_INCLUDES := external/f2fs-tools/include external/f2fs-tools/mkfs 31 LOCAL_C_INCLUDES := external/f2fs-tools/include external/f2fs-tools/mkfs 43 # and do not use code in external/f2fs-tools. 54 LOCAL_C_INCLUDES := external/f2fs-tools/include external/f2fs-tools/mkfs 61 LOCAL_C_INCLUDES := external/f2fs-tools/include external/f2fs-tools/mkf [all...] |
/system/vold/fs/ |
F2fs.cpp | 17 #include "F2fs.h" 32 namespace f2fs { namespace in namespace:android::vold 35 static const char* kFsckPath = "/system/bin/fsck.f2fs"; 40 && IsFilesystemSupported("f2fs"); 49 // f2fs devices are currently always trusted 58 int res = mount(c_source, c_target, "f2fs", flags, NULL); 62 res = mount(c_source, c_target, "f2fs", flags | MS_RDONLY, NULL); 80 } // namespace f2fs
|
F2fs.h | 26 namespace f2fs { namespace in namespace:android::vold 34 } // namespace f2fs
|
/external/f2fs-tools/mkfs/ |
Makefile.am | 5 sbin_PROGRAMS = mkfs.f2fs
|
f2fs_format_main.c | 29 MSG(0, "\nUsage: mkfs.f2fs [options] device [sectors]\n"); 118 MSG(0, "\n\tF2FS-tools: mkfs.f2fs Ver: %s (%s)\n\n",
|
/system/core/fastboot/ |
fs.cpp | 31 fprintf(stderr, "Unable to set initial directory on F2FS filesystem\n"); 47 { "f2fs", generate_f2fs_image},
|
/system/vold/ |
PrivateVolume.cpp | 18 #include "fs/F2fs.h" 121 } else if (mFsType == "f2fs") { 122 int res = f2fs::Check(mDmDevPath); 130 if (f2fs::Mount(mDmDevPath, mPath)) { 180 if ((major(mRawDevice) == kMajorBlockMmc) && f2fs::IsSupported()) { 181 resolvedFsType = "f2fs"; 194 } else if (resolvedFsType == "f2fs") { 195 if (f2fs::Format(mDmDevPath)) {
|
/external/toybox/tests/ |
blkid.test | 24 testing "blkid f2fs" 'bzcat "$BDIR"/f2fs.bz2 | blkid -' \ 25 '-: LABEL="" UUID="b53d3619-c204-4c0b-8504-36363578491c" TYPE="f2fs"\n' \
|
/system/core/fs_mgr/ |
fs_mgr_format.c | 70 args[0] = (char *)"/sbin/mkfs.f2fs"; 80 execv("/sbin/mkfs.f2fs", args); 110 if (!strncmp(fstab->fs_type, "f2fs", 4)) {
|
/external/chromium-trace/catapult/systrace/systrace/agents/ |
ftrace_agent.py | 75 "opt": ["f2fs/f2fs_sync_file_enter/", 76 "f2fs/f2fs_sync_file_exit/", 77 "f2fs/f2fs_write_begin/", 78 "f2fs/f2fs_write_end/",
|
/external/chromium-trace/catapult/tracing/tracing/extras/importer/linux_perf/ |
disk_parser_test.html | 66 case 'f2fs:Binder_A': 69 case 'f2fs:ContactsProvide': 103 assert.equal(slice.category, 'f2fs'); 112 assert.equal(slice.category, 'f2fs');
|
/system/sepolicy/ |
fs_use | 9 fs_use_xattr f2fs u:object_r:labeledfs:s0;
|
/build/target/product/ |
core_minimal.mk | 110 # Adoptable external storage supports both ext4 and f2fs 114 fsck.f2fs \
|