1 /* SPDX-License-Identifier: GPL-2.0
5 * Copyright (C) 2016 Red Hat, Inc.
8 #include <linux/types.h>
9 #include <linux/kernel.h>
10 #include <linux/slab.h>
11 #include <linux/device.h>
13 #include <net/page_pool.h>
14 #include <linux/dma-direction.h>
15 #include <linux/dma-mapping.h>
16 #include <linux/page-flags.h>
17 #include <linux/mm.h> /* for __put_page() */
19 #include <trace/events/page_pool.h>
21 static int page_pool_init(struct page_pool *pool,
22 const struct page_pool_params *params)
24 unsigned int ring_qsize = 1024; /* Default */
26 memcpy(&pool->p, params, sizeof(pool->p));
28 /* Validate only known flags were used */
29 if (pool->p.flags & ~(PP_FLAG_ALL))
32 if (pool->p.pool_size)
33 ring_qsize = pool->p.pool_size;
35 /* Sanity limit mem that can be pinned down */
36 if (ring_qsize > 32768)
39 /* DMA direction is either DMA_FROM_DEVICE or DMA_BIDIRECTIONAL.
40 * DMA_BIDIRECTIONAL is for allowing page used for DMA sending,
41 * which is the XDP_TX use-case.
43 if ((pool->p.dma_dir != DMA_FROM_DEVICE) &&
44 (pool->p.dma_dir != DMA_BIDIRECTIONAL))
47 if (ptr_ring_init(&pool->ring, ring_qsize, GFP_KERNEL) < 0)
50 atomic_set(&pool->pages_state_release_cnt, 0);
52 /* Driver calling page_pool_create() also call page_pool_destroy() */
53 refcount_set(&pool->user_cnt, 1);
55 if (pool->p.flags & PP_FLAG_DMA_MAP)
56 get_device(pool->p.dev);
61 struct page_pool *page_pool_create(const struct page_pool_params *params)
63 struct page_pool *pool;
66 pool = kzalloc_node(sizeof(*pool), GFP_KERNEL, params->nid);
68 return ERR_PTR(-ENOMEM);
70 err = page_pool_init(pool, params);
72 pr_warn("%s() gave up with errno %d\n", __func__, err);
79 EXPORT_SYMBOL(page_pool_create);
82 static struct page *__page_pool_get_cached(struct page_pool *pool)
84 struct ptr_ring *r = &pool->ring;
87 /* Quicker fallback, avoid locks when ring is empty */
88 if (__ptr_ring_empty(r))
91 /* Test for safe-context, caller should provide this guarantee */
92 if (likely(in_serving_softirq())) {
93 if (likely(pool->alloc.count)) {
95 page = pool->alloc.cache[--pool->alloc.count];
98 /* Slower-path: Alloc array empty, time to refill
100 * Open-coded bulk ptr_ring consumer.
102 * Discussion: the ring consumer lock is not really
103 * needed due to the softirq/NAPI protection, but
104 * later need the ability to reclaim pages on the
105 * ring. Thus, keeping the locks.
107 spin_lock(&r->consumer_lock);
108 while ((page = __ptr_ring_consume(r))) {
109 if (pool->alloc.count == PP_ALLOC_CACHE_REFILL)
111 pool->alloc.cache[pool->alloc.count++] = page;
113 spin_unlock(&r->consumer_lock);
117 /* Slow-path: Get page from locked ring queue */
118 page = ptr_ring_consume(&pool->ring);
124 static struct page *__page_pool_alloc_pages_slow(struct page_pool *pool,
131 /* We could always set __GFP_COMP, and avoid this branch, as
132 * prep_new_page() can handle order-0 with __GFP_COMP.
137 /* FUTURE development:
139 * Current slow-path essentially falls back to single page
140 * allocations, which doesn't improve performance. This code
141 * need bulk allocation support from the page allocator code.
144 /* Cache was empty, do real allocation */
145 page = alloc_pages_node(pool->p.nid, gfp, pool->p.order);
149 if (!(pool->p.flags & PP_FLAG_DMA_MAP))
152 /* Setup DMA mapping: use 'struct page' area for storing DMA-addr
153 * since dma_addr_t can be either 32 or 64 bits and does not always fit
154 * into page private data (i.e 32bit cpu with 64bit DMA caps)
155 * This mapping is kept for lifetime of page, until leaving pool.
157 dma = dma_map_page_attrs(pool->p.dev, page, 0,
158 (PAGE_SIZE << pool->p.order),
159 pool->p.dma_dir, DMA_ATTR_SKIP_CPU_SYNC);
160 if (dma_mapping_error(pool->p.dev, dma)) {
164 page->dma_addr = dma;
167 /* Track how many pages are held 'in-flight' */
168 pool->pages_state_hold_cnt++;
170 trace_page_pool_state_hold(pool, page, pool->pages_state_hold_cnt);
172 /* When page just alloc'ed is should/must have refcnt 1. */
176 /* For using page_pool replace: alloc_pages() API calls, but provide
177 * synchronization guarantee for allocation side.
179 struct page *page_pool_alloc_pages(struct page_pool *pool, gfp_t gfp)
183 /* Fast-path: Get a page from cache */
184 page = __page_pool_get_cached(pool);
188 /* Slow-path: cache empty, do real allocation */
189 page = __page_pool_alloc_pages_slow(pool, gfp);
192 EXPORT_SYMBOL(page_pool_alloc_pages);
194 /* Calculate distance between two u32 values, valid if distance is below 2^(31)
195 * https://en.wikipedia.org/wiki/Serial_number_arithmetic#General_Solution
197 #define _distance(a, b) (s32)((a) - (b))
199 static s32 page_pool_inflight(struct page_pool *pool)
201 u32 release_cnt = atomic_read(&pool->pages_state_release_cnt);
202 u32 hold_cnt = READ_ONCE(pool->pages_state_hold_cnt);
205 distance = _distance(hold_cnt, release_cnt);
207 trace_page_pool_inflight(pool, distance, hold_cnt, release_cnt);
211 static bool __page_pool_safe_to_destroy(struct page_pool *pool)
213 s32 inflight = page_pool_inflight(pool);
215 /* The distance should not be able to become negative */
216 WARN(inflight < 0, "Negative(%d) inflight packet-pages", inflight);
218 return (inflight == 0);
221 /* Cleanup page_pool state from page */
222 static void __page_pool_clean_page(struct page_pool *pool,
227 if (!(pool->p.flags & PP_FLAG_DMA_MAP))
230 dma = page->dma_addr;
232 dma_unmap_page_attrs(pool->p.dev, dma,
233 PAGE_SIZE << pool->p.order, pool->p.dma_dir,
234 DMA_ATTR_SKIP_CPU_SYNC);
237 atomic_inc(&pool->pages_state_release_cnt);
238 trace_page_pool_state_release(pool, page,
239 atomic_read(&pool->pages_state_release_cnt));
242 /* unmap the page and clean our state */
243 void page_pool_unmap_page(struct page_pool *pool, struct page *page)
245 /* When page is unmapped, this implies page will not be
246 * returned to page_pool.
248 __page_pool_clean_page(pool, page);
250 EXPORT_SYMBOL(page_pool_unmap_page);
252 /* Return a page to the page allocator, cleaning up our state */
253 static void __page_pool_return_page(struct page_pool *pool, struct page *page)
255 __page_pool_clean_page(pool, page);
258 /* An optimization would be to call __free_pages(page, pool->p.order)
259 * knowing page is not part of page-cache (thus avoiding a
260 * __page_cache_release() call).
264 static bool __page_pool_recycle_into_ring(struct page_pool *pool,
268 /* BH protection not needed if current is serving softirq */
269 if (in_serving_softirq())
270 ret = ptr_ring_produce(&pool->ring, page);
272 ret = ptr_ring_produce_bh(&pool->ring, page);
274 return (ret == 0) ? true : false;
277 /* Only allow direct recycling in special circumstances, into the
278 * alloc side cache. E.g. during RX-NAPI processing for XDP_DROP use-case.
280 * Caller must provide appropriate safe context.
282 static bool __page_pool_recycle_direct(struct page *page,
283 struct page_pool *pool)
285 if (unlikely(pool->alloc.count == PP_ALLOC_CACHE_SIZE))
288 /* Caller MUST have verified/know (page_ref_count(page) == 1) */
289 pool->alloc.cache[pool->alloc.count++] = page;
293 void __page_pool_put_page(struct page_pool *pool,
294 struct page *page, bool allow_direct)
296 /* This allocator is optimized for the XDP mode that uses
297 * one-frame-per-page, but have fallbacks that act like the
298 * regular page allocator APIs.
300 * refcnt == 1 means page_pool owns page, and can recycle it.
302 if (likely(page_ref_count(page) == 1)) {
303 /* Read barrier done in page_ref_count / READ_ONCE */
305 if (allow_direct && in_serving_softirq())
306 if (__page_pool_recycle_direct(page, pool))
309 if (!__page_pool_recycle_into_ring(pool, page)) {
310 /* Cache full, fallback to free pages */
311 __page_pool_return_page(pool, page);
315 /* Fallback/non-XDP mode: API user have elevated refcnt.
317 * Many drivers split up the page into fragments, and some
318 * want to keep doing this to save memory and do refcnt based
319 * recycling. Support this use case too, to ease drivers
320 * switching between XDP/non-XDP.
322 * In-case page_pool maintains the DMA mapping, API user must
323 * call page_pool_put_page once. In this elevated refcnt
324 * case, the DMA is unmapped/released, as driver is likely
325 * doing refcnt based recycle tricks, meaning another process
326 * will be invoking put_page.
328 __page_pool_clean_page(pool, page);
331 EXPORT_SYMBOL(__page_pool_put_page);
333 static void __page_pool_empty_ring(struct page_pool *pool)
337 /* Empty recycle ring */
338 while ((page = ptr_ring_consume_bh(&pool->ring))) {
339 /* Verify the refcnt invariant of cached pages */
340 if (!(page_ref_count(page) == 1))
341 pr_crit("%s() page_pool refcnt %d violation\n",
342 __func__, page_ref_count(page));
344 __page_pool_return_page(pool, page);
348 static void __warn_in_flight(struct page_pool *pool)
350 u32 release_cnt = atomic_read(&pool->pages_state_release_cnt);
351 u32 hold_cnt = READ_ONCE(pool->pages_state_hold_cnt);
354 distance = _distance(hold_cnt, release_cnt);
356 /* Drivers should fix this, but only problematic when DMA is used */
357 WARN(1, "Still in-flight pages:%d hold:%u released:%u",
358 distance, hold_cnt, release_cnt);
361 void __page_pool_free(struct page_pool *pool)
363 /* Only last user actually free/release resources */
364 if (!page_pool_put(pool))
367 WARN(pool->alloc.count, "API usage violation");
368 WARN(!ptr_ring_empty(&pool->ring), "ptr_ring is not empty");
370 /* Can happen due to forced shutdown */
371 if (!__page_pool_safe_to_destroy(pool))
372 __warn_in_flight(pool);
374 ptr_ring_cleanup(&pool->ring, NULL);
376 if (pool->p.flags & PP_FLAG_DMA_MAP)
377 put_device(pool->p.dev);
381 EXPORT_SYMBOL(__page_pool_free);
383 /* Request to shutdown: release pages cached by page_pool, and check
384 * for in-flight pages
386 bool __page_pool_request_shutdown(struct page_pool *pool)
390 /* Empty alloc cache, assume caller made sure this is
391 * no-longer in use, and page_pool_alloc_pages() cannot be
394 while (pool->alloc.count) {
395 page = pool->alloc.cache[--pool->alloc.count];
396 __page_pool_return_page(pool, page);
399 /* No more consumers should exist, but producers could still
402 __page_pool_empty_ring(pool);
404 return __page_pool_safe_to_destroy(pool);
406 EXPORT_SYMBOL(__page_pool_request_shutdown);