The patch titled Eliminate warnings in ide-tape.c has been removed from the -mm tree. Its filename was eliminate-warnings-in-ide-tapec.patch This patch was dropped because it was sent to Bart, then dropped ------------------------------------------------------ Subject: Eliminate warnings in ide-tape.c From: Stephen Rothwell <sfr@xxxxxxxxxxxxxxxx> drivers/ide/ide-tape.c: In function '__idetape_kmalloc_stage': drivers/ide/ide-tape.c:2588: warning: large integer implicitly truncated to unsigned type drivers/ide/ide-tape.c:2616: warning: large integer implicitly truncated to unsigned type b_size in struct idetape_bh is an unsigned short. We sometimes assign PAGE_SIZE to it and PAGE_SIZE can be 64K or larger, so make it a u32. Signed-off-by: Stephen Rothwell <sfr@xxxxxxxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- drivers/ide/ide-tape.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff -puN drivers/ide/ide-tape.c~eliminate-warnings-in-ide-tapec drivers/ide/ide-tape.c --- a/drivers/ide/ide-tape.c~eliminate-warnings-in-ide-tapec +++ a/drivers/ide/ide-tape.c @@ -640,7 +640,7 @@ typedef enum { } idetape_chrdev_direction_t; struct idetape_bh { - unsigned short b_size; + u32 b_size; atomic_t b_count; struct idetape_bh *b_reqnext; char *b_data; _ Patches currently in -mm which might be from sfr@xxxxxxxxxxxxxxxx are git-alsa.patch eliminate-warnings-in-ide-tapec.patch clean-up-duplicate-includes-in-drivers-block.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