[PATCH] page_alloc.c: buddy handling cleanup
Fix up some whitespace damage. Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
This commit is contained in:
parent
013159227b
commit
6aa3001b23
|
@ -232,11 +232,13 @@ static inline void prep_zero_page(struct page *page, int order, gfp_t gfp_flags)
|
|||
* zone->lock is already acquired when we use these.
|
||||
* So, we don't need atomic page->flags operations here.
|
||||
*/
|
||||
static inline unsigned long page_order(struct page *page) {
|
||||
static inline unsigned long page_order(struct page *page)
|
||||
{
|
||||
return page_private(page);
|
||||
}
|
||||
|
||||
static inline void set_page_order(struct page *page, int order) {
|
||||
static inline void set_page_order(struct page *page, int order)
|
||||
{
|
||||
set_page_private(page, order);
|
||||
__SetPageBuddy(page);
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue