The patch titled Subject: mm-sparse-abstract-sparse-buffer-allocations-fix has been removed from the -mm tree. Its filename was mm-sparse-abstract-sparse-buffer-allocations-fix.patch This patch was dropped because it was folded into mm-sparse-abstract-sparse-buffer-allocations.patch ------------------------------------------------------ From: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> Subject: mm-sparse-abstract-sparse-buffer-allocations-fix use PTR_ALIGN() Cc: Pavel Tatashin <pasha.tatashin@xxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- mm/sparse.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- a/mm/sparse.c~mm-sparse-abstract-sparse-buffer-allocations-fix +++ a/mm/sparse.c @@ -491,7 +491,7 @@ void * __meminit sparse_buffer_alloc(uns void *ptr = NULL; if (sparsemap_buf) { - ptr = (void *)ALIGN((unsigned long)sparsemap_buf, size); + ptr = PTR_ALIGN(sparsemap_buf, size); if (ptr + size > sparsemap_buf_end) ptr = NULL; else _ Patches currently in -mm which might be from akpm@xxxxxxxxxxxxxxxxxxxx are mm-list_lruc-fold-__list_lru_count_one-into-its-caller.patch mm-sparse-abstract-sparse-buffer-allocations.patch mm-sparse-abstract-sparse-buffer-allocations-fix-fix.patch