Home
last modified time | relevance | path

Searched refs:ext4 (Results 1 – 25 of 78) sorted by relevance

1234

/linux-6.1.9/fs/ext4/
DMakefile6 obj-$(CONFIG_EXT4_FS) += ext4.o
8 ext4-y := balloc.o bitmap.o block_validity.o dir.o ext4_jbd2.o extents.o \
15 ext4-$(CONFIG_EXT4_FS_POSIX_ACL) += acl.o
16 ext4-$(CONFIG_EXT4_FS_SECURITY) += xattr_security.o
17 ext4-inode-test-objs += inode-test.o
18 obj-$(CONFIG_EXT4_KUNIT_TESTS) += ext4-inode-test.o
19 ext4-$(CONFIG_FS_VERITY) += verity.o
20 ext4-$(CONFIG_FS_ENCRYPTION) += crypto.o
DKconfig10 filesystem is now handled by the ext4 driver.
19 filesystem is now handled by the ext4 driver.
27 filesystem is now handled by the ext4 driver.
30 tristate "The Extended 4 (ext4) filesystem"
41 the on-disk format of ext4 is not forwards compatible with
43 physical block numbers. The ext4 filesystem also supports delayed
47 http://ext4.wiki.kernel.org.
49 The ext4 filesystem supports mounting an ext3 filesystem; while there
51 table readahead, the best performance gains require enabling ext4
53 filesystem as an ext4 filesystem initially. Without explicit enabling
[all …]
/linux-6.1.9/Documentation/ABI/testing/
Dsysfs-fs-ext41 What: /sys/fs/ext4/<disk>/mb_stats
10 What: /sys/fs/ext4/<disk>/mb_group_prealloc
16 stripe size is not set in the ext4 superblock
18 What: /sys/fs/ext4/<disk>/mb_max_to_scan
25 What: /sys/fs/ext4/<disk>/mb_min_to_scan
32 What: /sys/fs/ext4/<disk>/mb_order2_req
40 What: /sys/fs/ext4/<disk>/mb_stream_req
51 What: /sys/fs/ext4/<disk>/inode_readahead_blks
56 inode table blocks that ext4's inode table readahead
59 What: /sys/fs/ext4/<disk>/delayed_allocation_blocks
[all …]
/linux-6.1.9/Documentation/admin-guide/
Dext4.rst4 ext4 General Information
12 Mailing list: linux-ext4@vger.kernel.org
13 Web site: http://ext4.wiki.kernel.org
19 Note: More extensive information for getting started with ext4 can be
20 found at the ext4 wiki site at the URL:
21 http://ext4.wiki.kernel.org/index.php/Ext4_Howto
35 - Create a new filesystem using the ext4 filesystem type:
37 # mke2fs -t ext4 /dev/hda1
50 # mount -t ext4 /dev/hda1 /wherever
56 note that ext4 enables write barriers by default, while ext3 does
[all …]
/linux-6.1.9/fs/jbd2/
DKconfig10 the ext4 and OCFS2 filesystems, but it could also be used to add
14 If you are using ext4 or OCFS2, you need to say Y here.
15 If you are not using ext4 or OCFS2 then you will
19 called jbd2. If you are compiling ext4 or OCFS2 into the kernel,
23 bool "JBD2 (ext4) debugging support"
26 If you are using the ext4 journaled file system (or
/linux-6.1.9/fs/freevxfs/
Dvxfs_inode.h109 struct vxfs_ext4 ext4; member
122 #define vdi_ext4 vdi_org.ext4
152 struct vxfs_ext4 ext4; member
161 #define vii_ext4 vii_org.ext4
/linux-6.1.9/Documentation/filesystems/
Dext3.rst12 filesystem is a subset of ext4 filesystem so use ext4 driver for accessing
Dfsverity.rst14 of read-only files. Currently, it is supported by the ext4, f2fs, and
489 ext4 section in Filesystem support
492 ext4 supports fs-verity since Linux v5.4 and e2fsprogs v1.45.2.
494 To create verity files on an ext4 filesystem, the filesystem must have
499 currently ext4 only supports mounting a filesystem with the "verity"
502 ext4 sets the EXT4_VERITY_FL on-disk inode flag on verity files. It
505 ext4 also supports encryption, which can be used simultaneously with
510 ext4 stores the verity metadata (Merkle tree and fsverity_descriptor)
514 be read/written internally by ext4 with only some relatively small
515 changes to ext4. This approach avoids having to depend on the
[all …]
/linux-6.1.9/Documentation/filesystems/ext4/
Dabout.rst6 This document attempts to describe the on-disk format for ext4
8 as well, though they do not support all the features that ext4 supports,
25 ext4 divides a storage device into an array of logical blocks both to
Dbigalloc.rst8 ext4 code is not prepared to handle the case where the block size
14 The bigalloc feature (EXT4_FEATURE_RO_COMPAT_BIGALLOC) changes ext4 to
15 use clustered allocation, so that each bit in the ext4 block allocation
Dblockgroup.rst14 - ext4 Super Block
37 The ext4 driver primarily works with the superblock and the group
65 Starting in ext4, there is a new feature called flexible block groups
85 128MiB(2^27 bytes) block group size and 64-byte group descriptors, ext4
91 META_BG feature, ext4 filesystems are partitioned into many metablock
93 descriptor structures can be stored in a single disk block. For ext4
122 A new feature for ext4 are three block group descriptor flags that
Doverview.rst6 An ext4 file system is split into a series of block groups. To reduce
15 All fields in ext4 are written to disk in little-endian order. HOWEVER,
Dallocators.rst6 ext4 recognizes (better than ext3, anyway) that data locality is
17 The first tool that ext4 uses to combat fragmentation is the multi-block
24 extent. A second related trick that ext4 uses is delayed allocation.
32 The third trick that ext4 (and ext3) uses is that it tries to keep a
Dverity.rst6 ext4 supports fs-verity, which is a filesystem feature that provides
11 metadata is filesystem-specific. On ext4, the verity metadata is
Dindex.rst4 ext4 Data Structures and Algorithms
Dinodes.rst11 that file. ext4 appears to cheat (for performance reasons) a little bit
15 links and is in general more seek-happy than ext4 due to its simpler
83 - Hard link count. Normally, ext4 does not permit an inode to have more
88 enabled, ext4 supports more than 64,998 subdirectories by setting this
270 - File tail should not be merged (EXT4_NOTAIL_FL). (not used by ext4)
301 - Reserved for ext4 library (EXT4_RESERVED_FL).
465 128 bytes. Starting with ext4, it is possible to allocate a larger
474 ``i_extra_isize``. By default, ext4 inode records are 256 bytes, and (as
Djournal.rst6 Introduced in ext3, the ext4 filesystem employs a journal to protect the
22 For performance reasons, ext4 by default only writes filesystem metadata
43 journal inode are replicated in the ext4 superblock. The journal itself
49 opposite of ext4.
51 NOTE: Both ext4 and ocfs2 use jbd2.
53 The maximum size of a journal embedded in an ext4 filesystem is 2^32
81 Optionally, an ext4 filesystem can be created with an external journal
85 will be an ext4 super block in the usual place, with a matching UUID.
94 - ext4 Superblock
160 The super block for the journal is much simpler as compared to ext4's.
[all …]
Dspecial_inodes.rst6 ext4 reserves some inode for special features, as follows:
Deainode.rst6 To enable ext4 to store extended attribute values that do not fit in the
/linux-6.1.9/tools/testing/selftests/zram/
DREADME26 zram01.sh: creates general purpose ram disks with ext4 filesystems
37 - mkfs/ mkfs.ext4
/linux-6.1.9/Documentation/devicetree/bindings/clock/
Dimx8m-clock.yaml65 - description: ext4 clock input
84 - description: ext4 clock input
/linux-6.1.9/fs/quota/
DKconfig13 ext2, ext3, ext4, jfs, ocfs2 and reiserfs file systems.
15 Ext3, ext4 and reiserfs also support journaled quotas for which
/linux-6.1.9/Documentation/livepatch/
Dmodule-elf-format.rst142 .klp.rela.ext4.text.ext4_attr_store
146 module that patches vmlinux and modules 9p, btrfs, ext4:**
156 …[34] .klp.rela.ext4.text.ext4.attr.store RELA 0000000000000000 002fd8 0000d8 18 AIo 6…
157 …[35] .klp.rela.ext4.text.ext4.attr.show RELA 0000000000000000 0030b0 000150 18 AIo 6…
/linux-6.1.9/Documentation/trace/
Dtracepoint-analysis.rst44 ext4:ext4_free_inode [Tracepoint event]
45 ext4:ext4_request_inode [Tracepoint event]
46 ext4:ext4_allocate_inode [Tracepoint event]
47 ext4:ext4_write_begin [Tracepoint event]
48 ext4:ext4_ordered_write_end [Tracepoint event]
/linux-6.1.9/arch/arm/boot/dts/
Dzynq-parallella.dts29 bootargs = "root=/dev/mmcblk0p2 rootfstype=ext4 rw rootwait";

1234