The patch titled Subject: mm: remove reference to PG_buddy has been added to the -mm tree. Its filename is mm-remove-reference-to-pg_buddy.patch This patch should soon appear at http://ozlabs.org/~akpm/mmots/broken-out/mm-remove-reference-to-pg_buddy.patch and later at http://ozlabs.org/~akpm/mmotm/broken-out/mm-remove-reference-to-pg_buddy.patch Before you just go and hit "reply", please: a) Consider who else should be cc'ed b) Prefer to cc a suitable mailing list as well c) Ideally: find the original patch on the mailing list and do a reply-to-all to that, adding suitable additional cc's *** Remember to use Documentation/SubmitChecklist when testing your code *** The -mm tree is included into linux-next and is updated there every 3-4 working days ------------------------------------------------------ From: Matthew Wilcox <mawilcox@xxxxxxxxxxxxx> Subject: mm: remove reference to PG_buddy PG_buddy doesn't exist any more. It's called PageBuddy now. Link: http://lkml.kernel.org/r/20171220155552.15884-9-willy@xxxxxxxxxxxxx Signed-off-by: Matthew Wilcox <mawilcox@xxxxxxxxxxxxx> Acked-by: Kirill A. Shutemov <kirill.shutemov@xxxxxxxxxxxxxxx> Acked-by: Michal Hocko <mhocko@xxxxxxxx> Acked-by: Christoph Lameter <cl@xxxxxxxxx> Cc: Randy Dunlap <rdunlap@xxxxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- include/linux/mm_types.h | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff -puN include/linux/mm_types.h~mm-remove-reference-to-pg_buddy include/linux/mm_types.h --- a/include/linux/mm_types.h~mm-remove-reference-to-pg_buddy +++ a/include/linux/mm_types.h @@ -174,13 +174,13 @@ struct page { }; union { - unsigned long private; /* Mapping-private opaque data: - * usually used for buffer_heads - * if PagePrivate set; used for - * swp_entry_t if PageSwapCache; - * indicates order in the buddy - * system if PG_buddy is set. - */ + /* + * Mapping-private opaque data: + * Usually used for buffer_heads if PagePrivate + * Used for swp_entry_t if PageSwapCache + * Indicates order in the buddy system if PageBuddy + */ + unsigned long private; #if USE_SPLIT_PTE_PTLOCKS #if ALLOC_SPLIT_PTLOCKS spinlock_t *ptl; _ Patches currently in -mm which might be from mawilcox@xxxxxxxxxxxxx are provide-useful-debugging-information-for-vm_bug.patch mm-align-struct-page-more-aesthetically.patch mm-de-indent-struct-page.patch mm-remove-misleading-alignment-claims.patch mm-improve-comment-on-page-mapping.patch mm-introduce-_slub_counter_t.patch mm-store-compound_dtor-compound_order-as-bytes.patch mm-document-how-to-use-struct-page.patch mm-remove-reference-to-pg_buddy.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