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: <ea11fea30805311156q7488714ftf8b0b8b8cea85b76@mail.gmail.com> Date: Sun, 1 Jun 2008 00:26:41 +0530 From: "Manish Katiyar" <mkatiyar@...il.com> To: linux-ext4@...r.kernel.org, linux-fsdevel@...r.kernel.org, kernel-janitors@...r.kernel.org Subject: [PATCH] ext3 : Remove redundant condition in ext3_free_blocks_sb() For two unsigned values the check "block+count < block" is always false. Thus the below patch removes that condition. ============================================================= Signed-off-by: Manish Katiyar <mkatiyar@...il.com> --- a/fs/ext3/balloc.c 2008-05-11 23:54:40.000000000 +0530 +++ b/fs/ext3/balloc.c 2008-06-01 00:05:25.000000000 +0530 @@ -493,7 +493,6 @@ sbi = EXT3_SB(sb); es = sbi->s_es; if (block < le32_to_cpu(es->s_first_data_block) || - block + count < block || block + count > le32_to_cpu(es->s_blocks_count)) { ext3_error (sb, "ext3_free_blocks", "Freeing blocks not in datazone - " ============================================================= -- Thanks & Regards, ******************************************** Manish Katiyar ( http://mkatiyar.googlepages.com ) 3rd Floor, Fair Winds Block EGL Software Park Off Intermediate Ring Road Bangalore 560071, India *********************************************** -- To unsubscribe from this list: send the line "unsubscribe linux-ext4" in the body of a message to majordomo@...r.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html
Powered by blists - more mailing lists