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/[email protected] Signed-off-by: Matthew Wilcox <[email protected]> Acked-by: Kirill A. Shutemov <[email protected]> Acked-by: Michal Hocko <[email protected]> Acked-by: Christoph Lameter <[email protected]> Cc: Randy Dunlap <[email protected]> Signed-off-by: Andrew Morton <[email protected]> Signed-off-by: Linus Torvalds <[email protected]>
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)