The patch titled AIO sparse fix (type of ki_flags) has been removed from the -mm tree. Its filename was aio-sparse-fix-type-of-ki_flags.patch This patch was dropped because it was merged into mainline or a subsystem tree ------------------------------------------------------ Subject: AIO sparse fix (type of ki_flags) From: David Brownell <dbrownell@xxxxxxxxxxxxxxxxxxxxx> Fix type issue reported by latest 'sparse': kiocb.ki_flags should be "unsigned long" (not "long"), to match bitop type signature. Signed-off-by: David Brownell <dbrownell@xxxxxxxxxxxxxxxxxxxxx> Signed-off-by: Benjamin LaHaise <bcrl@xxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- include/linux/aio.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff -puN include/linux/aio.h~aio-sparse-fix-type-of-ki_flags include/linux/aio.h --- a/include/linux/aio.h~aio-sparse-fix-type-of-ki_flags +++ a/include/linux/aio.h @@ -86,7 +86,7 @@ struct kioctx; */ struct kiocb { struct list_head ki_run_list; - long ki_flags; + unsigned long ki_flags; int ki_users; unsigned ki_key; /* id of this request */ _ Patches currently in -mm which might be from dbrownell@xxxxxxxxxxxxxxxxxxxxx are origin.patch git-input.patch git-leds.patch git-mtd.patch git-backlight.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