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 if (pool->p.flags & PP_FLAG_DMA_MAP)
53 get_device(pool->p.dev);
58 struct page_pool *page_pool_create(const struct page_pool_params *params)
60 struct page_pool *pool;
63 pool = kzalloc_node(sizeof(*pool), GFP_KERNEL, params->nid);
65 return ERR_PTR(-ENOMEM);
67 err = page_pool_init(pool, params);
69 pr_warn("%s() gave up with errno %d\n", __func__, err);
75 EXPORT_SYMBOL(page_pool_create);
78 static struct page *__page_pool_get_cached(struct page_pool *pool)
80 struct ptr_ring *r = &pool->ring;
83 /* Quicker fallback, avoid locks when ring is empty */
84 if (__ptr_ring_empty(r))
87 /* Test for safe-context, caller should provide this guarantee */
88 if (likely(in_serving_softirq())) {
89 if (likely(pool->alloc.count)) {
91 page = pool->alloc.cache[--pool->alloc.count];
94 /* Slower-path: Alloc array empty, time to refill
96 * Open-coded bulk ptr_ring consumer.
98 * Discussion: the ring consumer lock is not really
99 * needed due to the softirq/NAPI protection, but
100 * later need the ability to reclaim pages on the
101 * ring. Thus, keeping the locks.
103 spin_lock(&r->consumer_lock);
104 while ((page = __ptr_ring_consume(r))) {
105 if (pool->alloc.count == PP_ALLOC_CACHE_REFILL)
107 pool->alloc.cache[pool->alloc.count++] = page;
109 spin_unlock(&r->consumer_lock);
113 /* Slow-path: Get page from locked ring queue */
114 page = ptr_ring_consume(&pool->ring);
120 static struct page *__page_pool_alloc_pages_slow(struct page_pool *pool,
127 /* We could always set __GFP_COMP, and avoid this branch, as
128 * prep_new_page() can handle order-0 with __GFP_COMP.
133 /* FUTURE development:
135 * Current slow-path essentially falls back to single page
136 * allocations, which doesn't improve performance. This code
137 * need bulk allocation support from the page allocator code.
140 /* Cache was empty, do real allocation */
141 page = alloc_pages_node(pool->p.nid, gfp, pool->p.order);
145 if (!(pool->p.flags & PP_FLAG_DMA_MAP))
148 /* Setup DMA mapping: use 'struct page' area for storing DMA-addr
149 * since dma_addr_t can be either 32 or 64 bits and does not always fit
150 * into page private data (i.e 32bit cpu with 64bit DMA caps)
151 * This mapping is kept for lifetime of page, until leaving pool.
153 dma = dma_map_page_attrs(pool->p.dev, page, 0,
154 (PAGE_SIZE << pool->p.order),
155 pool->p.dma_dir, DMA_ATTR_SKIP_CPU_SYNC);
156 if (dma_mapping_error(pool->p.dev, dma)) {
160 page->dma_addr = dma;
163 /* Track how many pages are held 'in-flight' */
164 pool->pages_state_hold_cnt++;
166 trace_page_pool_state_hold(pool, page, pool->pages_state_hold_cnt);
168 /* When page just alloc'ed is should/must have refcnt 1. */
172 /* For using page_pool replace: alloc_pages() API calls, but provide
173 * synchronization guarantee for allocation side.
175 struct page *page_pool_alloc_pages(struct page_pool *pool, gfp_t gfp)
179 /* Fast-path: Get a page from cache */
180 page = __page_pool_get_cached(pool);
184 /* Slow-path: cache empty, do real allocation */
185 page = __page_pool_alloc_pages_slow(pool, gfp);
188 EXPORT_SYMBOL(page_pool_alloc_pages);
190 /* Calculate distance between two u32 values, valid if distance is below 2^(31)
191 * https://en.wikipedia.org/wiki/Serial_number_arithmetic#General_Solution
193 #define _distance(a, b) (s32)((a) - (b))
195 static s32 page_pool_inflight(struct page_pool *pool)
197 u32 release_cnt = atomic_read(&pool->pages_state_release_cnt);
198 u32 hold_cnt = READ_ONCE(pool->pages_state_hold_cnt);
201 distance = _distance(hold_cnt, release_cnt);
203 trace_page_pool_inflight(pool, distance, hold_cnt, release_cnt);
207 static bool __page_pool_safe_to_destroy(struct page_pool *pool)
209 s32 inflight = page_pool_inflight(pool);
211 /* The distance should not be able to become negative */
212 WARN(inflight < 0, "Negative(%d) inflight packet-pages", inflight);
214 return (inflight == 0);
217 /* Cleanup page_pool state from page */
218 static void __page_pool_clean_page(struct page_pool *pool,
223 if (!(pool->p.flags & PP_FLAG_DMA_MAP))
226 dma = page->dma_addr;
228 dma_unmap_page_attrs(pool->p.dev, dma,
229 PAGE_SIZE << pool->p.order, pool->p.dma_dir,
230 DMA_ATTR_SKIP_CPU_SYNC);
233 atomic_inc(&pool->pages_state_release_cnt);
234 trace_page_pool_state_release(pool, page,
235 atomic_read(&pool->pages_state_release_cnt));
238 /* unmap the page and clean our state */
239 void page_pool_unmap_page(struct page_pool *pool, struct page *page)
241 /* When page is unmapped, this implies page will not be
242 * returned to page_pool.
244 __page_pool_clean_page(pool, page);
246 EXPORT_SYMBOL(page_pool_unmap_page);
248 /* Return a page to the page allocator, cleaning up our state */
249 static void __page_pool_return_page(struct page_pool *pool, struct page *page)
251 __page_pool_clean_page(pool, page);
254 /* An optimization would be to call __free_pages(page, pool->p.order)
255 * knowing page is not part of page-cache (thus avoiding a
256 * __page_cache_release() call).
260 static bool __page_pool_recycle_into_ring(struct page_pool *pool,
264 /* BH protection not needed if current is serving softirq */
265 if (in_serving_softirq())
266 ret = ptr_ring_produce(&pool->ring, page);
268 ret = ptr_ring_produce_bh(&pool->ring, page);
270 return (ret == 0) ? true : false;
273 /* Only allow direct recycling in special circumstances, into the
274 * alloc side cache. E.g. during RX-NAPI processing for XDP_DROP use-case.
276 * Caller must provide appropriate safe context.
278 static bool __page_pool_recycle_direct(struct page *page,
279 struct page_pool *pool)
281 if (unlikely(pool->alloc.count == PP_ALLOC_CACHE_SIZE))
284 /* Caller MUST have verified/know (page_ref_count(page) == 1) */
285 pool->alloc.cache[pool->alloc.count++] = page;
289 void __page_pool_put_page(struct page_pool *pool,
290 struct page *page, bool allow_direct)
292 /* This allocator is optimized for the XDP mode that uses
293 * one-frame-per-page, but have fallbacks that act like the
294 * regular page allocator APIs.
296 * refcnt == 1 means page_pool owns page, and can recycle it.
298 if (likely(page_ref_count(page) == 1)) {
299 /* Read barrier done in page_ref_count / READ_ONCE */
301 if (allow_direct && in_serving_softirq())
302 if (__page_pool_recycle_direct(page, pool))
305 if (!__page_pool_recycle_into_ring(pool, page)) {
306 /* Cache full, fallback to free pages */
307 __page_pool_return_page(pool, page);
311 /* Fallback/non-XDP mode: API user have elevated refcnt.
313 * Many drivers split up the page into fragments, and some
314 * want to keep doing this to save memory and do refcnt based
315 * recycling. Support this use case too, to ease drivers
316 * switching between XDP/non-XDP.
318 * In-case page_pool maintains the DMA mapping, API user must
319 * call page_pool_put_page once. In this elevated refcnt
320 * case, the DMA is unmapped/released, as driver is likely
321 * doing refcnt based recycle tricks, meaning another process
322 * will be invoking put_page.
324 __page_pool_clean_page(pool, page);
327 EXPORT_SYMBOL(__page_pool_put_page);
329 static void __page_pool_empty_ring(struct page_pool *pool)
333 /* Empty recycle ring */
334 while ((page = ptr_ring_consume_bh(&pool->ring))) {
335 /* Verify the refcnt invariant of cached pages */
336 if (!(page_ref_count(page) == 1))
337 pr_crit("%s() page_pool refcnt %d violation\n",
338 __func__, page_ref_count(page));
340 __page_pool_return_page(pool, page);
344 static void __warn_in_flight(struct page_pool *pool)
346 u32 release_cnt = atomic_read(&pool->pages_state_release_cnt);
347 u32 hold_cnt = READ_ONCE(pool->pages_state_hold_cnt);
350 distance = _distance(hold_cnt, release_cnt);
352 /* Drivers should fix this, but only problematic when DMA is used */
353 WARN(1, "Still in-flight pages:%d hold:%u released:%u",
354 distance, hold_cnt, release_cnt);
357 void __page_pool_free(struct page_pool *pool)
359 WARN(pool->alloc.count, "API usage violation");
360 WARN(!ptr_ring_empty(&pool->ring), "ptr_ring is not empty");
362 /* Can happen due to forced shutdown */
363 if (!__page_pool_safe_to_destroy(pool))
364 __warn_in_flight(pool);
366 ptr_ring_cleanup(&pool->ring, NULL);
368 if (pool->p.flags & PP_FLAG_DMA_MAP)
369 put_device(pool->p.dev);
373 EXPORT_SYMBOL(__page_pool_free);
375 /* Request to shutdown: release pages cached by page_pool, and check
376 * for in-flight pages
378 bool __page_pool_request_shutdown(struct page_pool *pool)
382 /* Empty alloc cache, assume caller made sure this is
383 * no-longer in use, and page_pool_alloc_pages() cannot be
386 while (pool->alloc.count) {
387 page = pool->alloc.cache[--pool->alloc.count];
388 __page_pool_return_page(pool, page);
391 /* No more consumers should exist, but producers could still
394 __page_pool_empty_ring(pool);
396 return __page_pool_safe_to_destroy(pool);
398 EXPORT_SYMBOL(__page_pool_request_shutdown);