The patch titled reiser4: fix incorrect assertions has been removed from the -mm tree. Its filename is reiser4-fix-incorrect-assertions.patch This patch was probably dropped from -mm because it has now been merged into a subsystem tree or into Linus's tree, or because it was folded into its parent patch in the -mm tree. ------------------------------------------------------ Subject: reiser4: fix incorrect assertions From: Vladimir Saveliev <vs@xxxxxxxxxxx> This fixes bugs in debugging code. Signed-off-by: Vladimir V. Saveliev <vs@xxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxx> --- fs/reiser4/plugin/space/bitmap.c | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff -puN fs/reiser4/plugin/space/bitmap.c~reiser4-fix-incorrect-assertions fs/reiser4/plugin/space/bitmap.c --- devel/fs/reiser4/plugin/space/bitmap.c~reiser4-fix-incorrect-assertions 2006-05-18 12:25:39.000000000 -0700 +++ devel-akpm/fs/reiser4/plugin/space/bitmap.c 2006-05-18 12:25:39.000000000 -0700 @@ -1113,7 +1113,7 @@ alloc_blocks_forward(reiser4_blocknr_hin assert("zam-398", super != NULL); assert("zam-412", hint != NULL); - assert("zam-397", hint->blk < reiser4_block_count(super)); + assert("zam-397", hint->blk <= reiser4_block_count(super)); if (hint->max_dist == 0) search_end = reiser4_block_count(super); @@ -1160,7 +1160,7 @@ static int alloc_blocks_backward(reiser4 assert("zam-969", super != NULL); assert("zam-970", hint != NULL); - assert("zam-971", hint->blk < reiser4_block_count(super)); + assert("zam-971", hint->blk <= reiser4_block_count(super)); search_start = hint->blk; if (hint->max_dist == 0 || search_start <= hint->max_dist) _ Patches currently in -mm which might be from vs@xxxxxxxxxxx are writeback-fix-range-handling.patch reiser4.patch - To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html