The patch titled Subject: mm-page_alloc-add-a-bulk-page-allocator-fix has been removed from the -mm tree. Its filename was mm-page_alloc-add-a-bulk-page-allocator-fix.patch This patch was dropped because it was folded into mm-page_alloc-add-a-bulk-page-allocator.patch ------------------------------------------------------ From: Mel Gorman <mgorman@xxxxxxxxxxxxxxxxxxx> Subject: mm-page_alloc-add-a-bulk-page-allocator-fix Matthew Wilcox pointed out that the return type for alloc_pages_bulk() and __alloc_pages_bulk() is inconsistent. Fix it. Link: https://lkml.kernel.org/r/20210325123713.GQ3697@xxxxxxxxxxxxxxxxxxx Signed-off-by: Mel Gorman <mgorman@xxxxxxxxxxxxxxxxxxx> Reviewed-by: Alexander Lobakin <alobakin@xxxxx> Cc: Alexander Duyck <alexander.duyck@xxxxxxxxx> Cc: Christoph Hellwig <hch@xxxxxxxxxxxxx> Cc: Chuck Lever <chuck.lever@xxxxxxxxxx> Cc: David Miller <davem@xxxxxxxxxxxxx> Cc: Ilias Apalodimas <ilias.apalodimas@xxxxxxxxxx> Cc: Jesper Dangaard Brouer <brouer@xxxxxxxxxx> Cc: Matthew Wilcox (Oracle) <willy@xxxxxxxxxxxxx> Cc: Vlastimil Babka <vbabka@xxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- include/linux/gfp.h | 2 +- mm/page_alloc.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) --- a/include/linux/gfp.h~mm-page_alloc-add-a-bulk-page-allocator-fix +++ a/include/linux/gfp.h @@ -518,7 +518,7 @@ static inline int arch_make_page_accessi struct page *__alloc_pages(gfp_t gfp, unsigned int order, int preferred_nid, nodemask_t *nodemask); -int __alloc_pages_bulk(gfp_t gfp, int preferred_nid, +unsigned long __alloc_pages_bulk(gfp_t gfp, int preferred_nid, nodemask_t *nodemask, int nr_pages, struct list_head *list); --- a/mm/page_alloc.c~mm-page_alloc-add-a-bulk-page-allocator-fix +++ a/mm/page_alloc.c @@ -5019,7 +5019,7 @@ static inline bool prepare_alloc_pages(g * * Returns the number of pages on the list. */ -int __alloc_pages_bulk(gfp_t gfp, int preferred_nid, +unsigned long __alloc_pages_bulk(gfp_t gfp, int preferred_nid, nodemask_t *nodemask, int nr_pages, struct list_head *page_list) { _ Patches currently in -mm which might be from mgorman@xxxxxxxxxxxxxxxxxxx are mm-page_alloc-rename-alloced-to-allocated.patch mm-page_alloc-add-a-bulk-page-allocator.patch mm-page_alloc-add-a-bulk-page-allocator-fix-fix.patch mm-page_alloc-add-a-bulk-page-allocator-fix-fix-fix.patch mm-page_alloc-add-an-array-based-interface-to-the-bulk-page-allocator.patch mm-memory_hotplug-make-unpopulated-zones-pcp-structures-unreachable-during-hot-remove.patch