lists.openwall.net | lists / announce owl-users owl-dev john-users john-dev passwdqc-users yescrypt popa3d-users / oss-security kernel-hardening musl sabotage tlsify passwords / crypt-dev xvendor / Bugtraq Full-Disclosure linux-kernel linux-netdev linux-ext4 linux-hardening linux-cve-announce PHC | |
Open Source and information security mailing list archives
| ||
|
Message-Id: <20230221115919.1918161-6-shikemeng@huaweicloud.com> Date: Tue, 21 Feb 2023 19:59:17 +0800 From: Kemeng Shi <shikemeng@...weicloud.com> To: tytso@....edu, adilger.kernel@...ger.ca Cc: linux-ext4@...r.kernel.org, linux-kernel@...r.kernel.org, shikemeng@...weicloud.com Subject: [PATCH 5/7] ext4: remove stale comment in ext4_init_block_bitmap Commit bdfb6ff4a255d ("ext4: mark group corrupt on group descriptor checksum") added flag to indicate corruption of group instead of marking all blocks used. Just remove stale comment. Signed-off-by: Kemeng Shi <shikemeng@...weicloud.com> --- fs/ext4/balloc.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/fs/ext4/balloc.c b/fs/ext4/balloc.c index 08f1692f7d2f..4de06d68e9e7 100644 --- a/fs/ext4/balloc.c +++ b/fs/ext4/balloc.c @@ -187,8 +187,6 @@ static int ext4_init_block_bitmap(struct super_block *sb, ASSERT(buffer_locked(bh)); - /* If checksum is bad mark all blocks used to prevent allocation - * essentially implementing a per-group read-only flag. */ if (!ext4_group_desc_csum_verify(sb, block_group, gdp)) { ext4_mark_group_bitmap_corrupted(sb, block_group, EXT4_GROUP_INFO_BBITMAP_CORRUPT | -- 2.30.0
Powered by blists - more mailing lists