The patch titled AIO sparse fix (type of ki_flags) has been added to the -mm tree. Its filename is aio-sparse-fix-type-of-ki_flags.patch *** Remember to use Documentation/SubmitChecklist when testing your code *** See http://www.zip.com.au/~akpm/linux/patches/stuff/added-to-mm.txt to find out what to do about this ------------------------------------------------------ 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 files 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 gpio-calls-dont-need-i-o-barriers.patch dev_vdbg-available-with-dverbose_debug.patch dev_vdbg-available-with-dverbose_debug-docs.patch aio-sparse-fix-type-of-ki_flags.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