The patch titled i2o: debug messages corrected has been removed from the -mm tree. Its filename was i2o-debug-messages-corrected.patch This patch was dropped because it was merged into mainline or a subsystem tree ------------------------------------------------------ Subject: i2o: debug messages corrected From: Vasily Averin <vvs@xxxxx> max_phys_segments and max_sectors were swapped Signed-off-by: Vasily Averin <vvs@xxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- drivers/message/i2o/i2o_block.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff -puN drivers/message/i2o/i2o_block.c~i2o-debug-messages-corrected drivers/message/i2o/i2o_block.c --- a/drivers/message/i2o/i2o_block.c~i2o-debug-messages-corrected +++ a/drivers/message/i2o/i2o_block.c @@ -1077,8 +1077,8 @@ static int i2o_block_probe(struct device blk_queue_max_sectors(queue, max_sectors); blk_queue_max_hw_segments(queue, i2o_sg_tablesize(c, body_size)); - osm_debug("max sectors = %d\n", queue->max_phys_segments); - osm_debug("phys segments = %d\n", queue->max_sectors); + osm_debug("max sectors = %d\n", queue->max_sectors); + osm_debug("phys segments = %d\n", queue->max_phys_segments); osm_debug("max hw segments = %d\n", queue->max_hw_segments); /* _ Patches currently in -mm which might be from vvs@xxxxx are origin.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