| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475 |
- From: Alexander Duyck <[email protected]>
- Date: Wed, 14 Dec 2016 15:05:26 -0800
- Subject: [PATCH] mm: add support for releasing multiple instances of a page
- Add a function that allows us to batch free a page that has multiple
- references outstanding. Specifically this function can be used to drop
- a page being used in the page frag alloc cache. With this drivers can
- make use of functionality similar to the page frag alloc cache without
- having to do any workarounds for the fact that there is no function that
- frees multiple references.
- Link: http://lkml.kernel.org/r/[email protected]
- Signed-off-by: Alexander Duyck <[email protected]>
- Cc: "David S. Miller" <[email protected]>
- Cc: "James E.J. Bottomley" <[email protected]>
- Cc: Chris Metcalf <[email protected]>
- Cc: David Howells <[email protected]>
- Cc: Geert Uytterhoeven <[email protected]>
- Cc: Hans-Christian Noren Egtvedt <[email protected]>
- Cc: Helge Deller <[email protected]>
- Cc: James Hogan <[email protected]>
- Cc: Jeff Kirsher <[email protected]>
- Cc: Jonas Bonn <[email protected]>
- Cc: Keguang Zhang <[email protected]>
- Cc: Ley Foon Tan <[email protected]>
- Cc: Mark Salter <[email protected]>
- Cc: Max Filippov <[email protected]>
- Cc: Michael Ellerman <[email protected]>
- Cc: Michal Simek <[email protected]>
- Cc: Ralf Baechle <[email protected]>
- Cc: Rich Felker <[email protected]>
- Cc: Richard Kuo <[email protected]>
- Cc: Russell King <[email protected]>
- Cc: Steven Miao <[email protected]>
- Cc: Tobias Klauser <[email protected]>
- Cc: Vineet Gupta <[email protected]>
- Cc: Yoshinori Sato <[email protected]>
- Signed-off-by: Andrew Morton <[email protected]>
- Signed-off-by: Linus Torvalds <[email protected]>
- ---
- --- a/include/linux/gfp.h
- +++ b/include/linux/gfp.h
- @@ -506,6 +506,8 @@ extern void free_hot_cold_page(struct pa
- extern void free_hot_cold_page_list(struct list_head *list, bool cold);
-
- struct page_frag_cache;
- +extern void __page_frag_drain(struct page *page, unsigned int order,
- + unsigned int count);
- extern void *__alloc_page_frag(struct page_frag_cache *nc,
- unsigned int fragsz, gfp_t gfp_mask);
- extern void __free_page_frag(void *addr);
- --- a/mm/page_alloc.c
- +++ b/mm/page_alloc.c
- @@ -3945,6 +3945,20 @@ static struct page *__page_frag_refill(s
- return page;
- }
-
- +void __page_frag_drain(struct page *page, unsigned int order,
- + unsigned int count)
- +{
- + VM_BUG_ON_PAGE(page_ref_count(page) == 0, page);
- +
- + if (page_ref_sub_and_test(page, count)) {
- + if (order == 0)
- + free_hot_cold_page(page, false);
- + else
- + __free_pages_ok(page, order);
- + }
- +}
- +EXPORT_SYMBOL(__page_frag_drain);
- +
- void *__alloc_page_frag(struct page_frag_cache *nc,
- unsigned int fragsz, gfp_t gfp_mask)
- {
|