The patch titled aio-dont-zero-out-the-pages-array-inside-struct-dio-fix has been removed from the -mm tree. Its filename was aio-dont-zero-out-the-pages-array-inside-struct-dio-fix.patch This patch was dropped because it was folded into aio-dont-zero-out-the-pages-array-inside-struct-dio.patch The current -mm tree may be found at http://userweb.kernel.org/~akpm/mmotm/ ------------------------------------------------------ Subject: aio-dont-zero-out-the-pages-array-inside-struct-dio-fix From: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> Cc: Jeff Moyer <jmoyer@xxxxxxxxxx> Cc: Zach Brown <zach.brown@xxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- diff -puN fs/direct-io.c~aio-dont-zero-out-the-pages-array-inside-struct-dio-fix fs/direct-io.c --- a/fs/direct-io.c~aio-dont-zero-out-the-pages-array-inside-struct-dio-fix +++ a/fs/direct-io.c @@ -130,6 +130,12 @@ struct dio { unsigned head; /* next page to process */ unsigned tail; /* last valid page + 1 */ int page_errors; /* errno from get_user_pages() */ + + /* + * pages[] (and any fields placed after it) are not zeroed out at + * allocation time. Don't add new fields after pages[] unless you + * wish that they not be zeroed. + */ struct page *pages[DIO_PAGES]; /* page buffer */ }; _ Patches currently in -mm which might be from akpm@xxxxxxxxxxxxxxxxxxxx are origin.patch oom-kill-fix-numa-consraint-check-with-nodemask-v42.patch mb862xxfb-add-acceleration-support-for-coral-p-coral-pa-imageblt-copyarea-fillrect.patch ext2-avoid-warn-messages-when-failing-to-write-to-the-superblock.patch memcg-coalesce-charging-via-percpu-storage.patch memcg-code-cleanrm-unused-variable-in-mem_cgroup_resize_limit.patch ipc-remove-unreachable-code-in-semc.patch fs-cache-avoid-maybe-used-uninitialised-warning-on-variable.patch aio-dont-zero-out-the-pages-array-inside-struct-dio.patch aio-dont-zero-out-the-pages-array-inside-struct-dio-fix.patch direct-io-cleanup-blockdev_direct_io-locking-checkpatch-fixes.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