The patch titled Subject: mm-zonelist-enumerate-zonelists-array-index-fix has been removed from the -mm tree. Its filename was mm-zonelist-enumerate-zonelists-array-index-fix.patch This patch was dropped because it was folded into mm-zonelist-enumerate-zonelists-array-index.patch ------------------------------------------------------ From: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> Subject: mm-zonelist-enumerate-zonelists-array-index-fix Fix CONFIG_NUMA=n build include/linux/gfp.h: In function 'gfp_zonelist': include/linux/gfp.h:388: error: 'ZONELIST_NOFALLBACK' undeclared (first use in this function) Cc: David Rientjes <rientjes@xxxxxxxxxx> Cc: Michal Hocko <mhocko@xxxxxxxxxx> Cc: Yaowei Bai <baiyaowei@xxxxxxxxxxxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- include/linux/gfp.h | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff -puN include/linux/gfp.h~mm-zonelist-enumerate-zonelists-array-index-fix include/linux/gfp.h --- a/include/linux/gfp.h~mm-zonelist-enumerate-zonelists-array-index-fix +++ a/include/linux/gfp.h @@ -384,9 +384,10 @@ static inline enum zone_type gfp_zone(gf static inline int gfp_zonelist(gfp_t flags) { - if (IS_ENABLED(CONFIG_NUMA) && unlikely(flags & __GFP_THISNODE)) +#ifdef CONFIG_NUMA + if (unlikely(flags & __GFP_THISNODE)) return ZONELIST_NOFALLBACK; - +#endif return ZONELIST_FALLBACK; } _ Patches currently in -mm which might be from akpm@xxxxxxxxxxxxxxxxxxxx are include-linux-dcacheh-remove-semicolons-from-hash_len_declare.patch mm-zonelist-enumerate-zonelists-array-index.patch mm-get-rid-of-__alloc_pages_high_priority-checkpatch-fixes.patch mm-vmalloc-remove-vm_vpages-fix.patch fs-block_devc-bdev_write_page-use-blk_queue_enter-gfp_noio.patch arm64-mm-support-arch_mmap_rnd_bits-fix.patch page-flags-define-pg_locked-behavior-on-compound-pages-fix.patch mm-rework-mapcount-accounting-to-enable-4k-mapping-of-thps-fix.patch mm-hwpoison-adjust-for-new-thp-refcounting-fix.patch thp-reintroduce-split_huge_page-fix.patch mm-prepare-page_referenced-and-page_idle-to-new-thp-refcounting-checkpatch-fixes.patch thp-add-debugfs-handle-to-split-all-huge-pages-fix.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