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

ext4: fsmap: fix the block/inode bitmap comment

While debugging fstest ext4/027 failure, found below comment to be wrong and
confusing. Hence fix it while we are at it.

Signed-off-by: Ritesh Harjani <riteshh@linux.ibm.com>
Reviewed-by: Darrick J. Wong <djwong@kernel.org>
Link: https://lore.kernel.org/r/e79134132db7ea42f15747b5c669ee91cc1aacdf.1622432690.git.riteshh@linux.ibm.com
Signed-off-by: Theodore Ts'o <tytso@mit.edu>

authored by

Ritesh Harjani and committed by
Theodore Ts'o
ee00d6b3 6d2424a8

+2 -2
+2 -2
fs/ext4/fsmap.h
··· 50 50 #define EXT4_FMR_OWN_INODES FMR_OWNER('X', 5) /* inodes */ 51 51 #define EXT4_FMR_OWN_GDT FMR_OWNER('f', 1) /* group descriptors */ 52 52 #define EXT4_FMR_OWN_RESV_GDT FMR_OWNER('f', 2) /* reserved gdt blocks */ 53 - #define EXT4_FMR_OWN_BLKBM FMR_OWNER('f', 3) /* inode bitmap */ 54 - #define EXT4_FMR_OWN_INOBM FMR_OWNER('f', 4) /* block bitmap */ 53 + #define EXT4_FMR_OWN_BLKBM FMR_OWNER('f', 3) /* block bitmap */ 54 + #define EXT4_FMR_OWN_INOBM FMR_OWNER('f', 4) /* inode bitmap */ 55 55 56 56 #endif /* __EXT4_FSMAP_H__ */