Skip to content

Commit ab8928b

Browse files
Matthew Wilcoxtorvalds
authored andcommitted
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@infradead.org Signed-off-by: Matthew Wilcox <mawilcox@microsoft.com> Acked-by: Kirill A. Shutemov <kirill.shutemov@linux.intel.com> Acked-by: Michal Hocko <mhocko@suse.com> Acked-by: Christoph Lameter <cl@linux.com> Cc: Randy Dunlap <rdunlap@infradead.org> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
1 parent be50015 commit ab8928b

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

include/linux/mm_types.h

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -175,13 +175,13 @@ struct page {
175175
};
176176

177177
union {
178-
unsigned long private; /* Mapping-private opaque data:
179-
* usually used for buffer_heads
180-
* if PagePrivate set; used for
181-
* swp_entry_t if PageSwapCache;
182-
* indicates order in the buddy
183-
* system if PG_buddy is set.
184-
*/
178+
/*
179+
* Mapping-private opaque data:
180+
* Usually used for buffer_heads if PagePrivate
181+
* Used for swp_entry_t if PageSwapCache
182+
* Indicates order in the buddy system if PageBuddy
183+
*/
184+
unsigned long private;
185185
#if USE_SPLIT_PTE_PTLOCKS
186186
#if ALLOC_SPLIT_PTLOCKS
187187
spinlock_t *ptl;

0 commit comments

Comments
 (0)