Re: [PATCH v1 3/6] mm: Use zone and order instead of free area in free_list manipulators

2019-06-25 Thread Dave Hansen
On 6/19/19 3:33 PM, Alexander Duyck wrote: > - move_to_free_area(page, &zone->free_area[order], migratetype); > + move_to_free_area(page, zone, order, migratetype); This certainly looks nicer. But the naming is a bit goofy now because you're talking about free areas, but t

[PATCH v1 3/6] mm: Use zone and order instead of free area in free_list manipulators

2019-06-19 Thread Alexander Duyck
From: Alexander Duyck In order to enable the use of the zone from the list manipulator functions I will need access to the zone pointer. As it turns out most of the accessors were always just being directly passed &zone->free_area[order] anyway so it would make sense to just fold that into the fu