Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Documentation: ext4: Move inode table short docs into its own file

The short description of inode table is in bitmaps.rst alongside the
proper bitmpas documentation. The docs file is short enough that it fits
whole browser screen on desktop, which implies that when readers click
"Inode Table", they will essentially see bitmaps docs.

Move inode table short description.

Signed-off-by: Bagas Sanjaya <bagasdotme@gmail.com>
Acked-by: Theodore Ts'o <tytso@mit.edu>
Acked-by: Darrick J. Wong <djwong@kernel.org>
Signed-off-by: Jonathan Corbet <corbet@lwn.net>
Link: https://lore.kernel.org/r/20250620105643.25141-7-bagasdotme@gmail.com

authored by

Bagas Sanjaya and committed by
Jonathan Corbet
1ce50d4e 36dc5367

+10 -7
-7
Documentation/filesystems/ext4/bitmaps.rst
··· 19 19 the bitmaps and group descriptor live inside the group. Unfortunately, 20 20 ext2fs_test_block_bitmap2() will return '0' for those locations, 21 21 which produces confusing debugfs output. 22 - 23 - Inode Table 24 - ----------- 25 - Inode tables are statically allocated at mkfs time. Each block group 26 - descriptor points to the start of the table, and the superblock records 27 - the number of inodes per group. See the section on inodes for more 28 - information.
+1
Documentation/filesystems/ext4/globals.rst
··· 11 11 super 12 12 group_descr 13 13 bitmaps 14 + inode_table 14 15 mmp 15 16 journal 16 17 orphan
+9
Documentation/filesystems/ext4/inode_table.rst
··· 1 + .. SPDX-License-Identifier: GPL-2.0 2 + 3 + Inode Table 4 + ----------- 5 + 6 + Inode tables are statically allocated at mkfs time. Each block group 7 + descriptor points to the start of the table, and the superblock records 8 + the number of inodes per group. See :doc:`inode documentation <inodes>` 9 + for more information on inode table layout.