net: ethernet: Use swap() instead of open coding it
[linux-2.6-block.git] / net / core / page_pool.c
CommitLineData
ff7d6b27
JDB
1/* SPDX-License-Identifier: GPL-2.0
2 *
3 * page_pool.c
4 * Author: Jesper Dangaard Brouer <netoptimizer@brouer.com>
5 * Copyright (C) 2016 Red Hat, Inc.
6 */
32c28f7e 7
ff7d6b27
JDB
8#include <linux/types.h>
9#include <linux/kernel.h>
10#include <linux/slab.h>
f71fec47 11#include <linux/device.h>
ff7d6b27
JDB
12
13#include <net/page_pool.h>
78862447
LB
14#include <net/xdp.h>
15
ff7d6b27
JDB
16#include <linux/dma-direction.h>
17#include <linux/dma-mapping.h>
18#include <linux/page-flags.h>
19#include <linux/mm.h> /* for __put_page() */
c07aea3e 20#include <linux/poison.h>
f3c5264f 21#include <linux/ethtool.h>
ff7d6b27 22
32c28f7e
JDB
23#include <trace/events/page_pool.h>
24
c3f812ce
JL
25#define DEFER_TIME (msecs_to_jiffies(1000))
26#define DEFER_WARN_INTERVAL (60 * HZ)
27
53e0961d
YL
28#define BIAS_MAX LONG_MAX
29
8610037e
JD
30#ifdef CONFIG_PAGE_POOL_STATS
31/* alloc_stat_inc is intended to be used in softirq context */
32#define alloc_stat_inc(pool, __stat) (pool->alloc_stats.__stat++)
ad6fa1e1
JD
33/* recycle_stat_inc is safe to use when preemption is possible. */
34#define recycle_stat_inc(pool, __stat) \
35 do { \
36 struct page_pool_recycle_stats __percpu *s = pool->recycle_stats; \
37 this_cpu_inc(s->__stat); \
38 } while (0)
6b95e338 39
590032a4
LB
40#define recycle_stat_add(pool, __stat, val) \
41 do { \
42 struct page_pool_recycle_stats __percpu *s = pool->recycle_stats; \
43 this_cpu_add(s->__stat, val); \
44 } while (0)
45
f3c5264f
LB
46static const char pp_stats[][ETH_GSTRING_LEN] = {
47 "rx_pp_alloc_fast",
48 "rx_pp_alloc_slow",
49 "rx_pp_alloc_slow_ho",
50 "rx_pp_alloc_empty",
51 "rx_pp_alloc_refill",
52 "rx_pp_alloc_waive",
53 "rx_pp_recycle_cached",
54 "rx_pp_recycle_cache_full",
55 "rx_pp_recycle_ring",
56 "rx_pp_recycle_ring_full",
57 "rx_pp_recycle_released_ref",
58};
59
6b95e338
JD
60bool page_pool_get_stats(struct page_pool *pool,
61 struct page_pool_stats *stats)
62{
63 int cpu = 0;
64
65 if (!stats)
66 return false;
67
f3c5264f
LB
68 /* The caller is responsible to initialize stats. */
69 stats->alloc_stats.fast += pool->alloc_stats.fast;
70 stats->alloc_stats.slow += pool->alloc_stats.slow;
71 stats->alloc_stats.slow_high_order += pool->alloc_stats.slow_high_order;
72 stats->alloc_stats.empty += pool->alloc_stats.empty;
73 stats->alloc_stats.refill += pool->alloc_stats.refill;
74 stats->alloc_stats.waive += pool->alloc_stats.waive;
6b95e338
JD
75
76 for_each_possible_cpu(cpu) {
77 const struct page_pool_recycle_stats *pcpu =
78 per_cpu_ptr(pool->recycle_stats, cpu);
79
80 stats->recycle_stats.cached += pcpu->cached;
81 stats->recycle_stats.cache_full += pcpu->cache_full;
82 stats->recycle_stats.ring += pcpu->ring;
83 stats->recycle_stats.ring_full += pcpu->ring_full;
84 stats->recycle_stats.released_refcnt += pcpu->released_refcnt;
85 }
86
87 return true;
88}
89EXPORT_SYMBOL(page_pool_get_stats);
f3c5264f
LB
90
91u8 *page_pool_ethtool_stats_get_strings(u8 *data)
92{
93 int i;
94
95 for (i = 0; i < ARRAY_SIZE(pp_stats); i++) {
96 memcpy(data, pp_stats[i], ETH_GSTRING_LEN);
97 data += ETH_GSTRING_LEN;
98 }
99
100 return data;
101}
102EXPORT_SYMBOL(page_pool_ethtool_stats_get_strings);
103
104int page_pool_ethtool_stats_get_count(void)
105{
106 return ARRAY_SIZE(pp_stats);
107}
108EXPORT_SYMBOL(page_pool_ethtool_stats_get_count);
109
110u64 *page_pool_ethtool_stats_get(u64 *data, void *stats)
111{
112 struct page_pool_stats *pool_stats = stats;
113
114 *data++ = pool_stats->alloc_stats.fast;
115 *data++ = pool_stats->alloc_stats.slow;
116 *data++ = pool_stats->alloc_stats.slow_high_order;
117 *data++ = pool_stats->alloc_stats.empty;
118 *data++ = pool_stats->alloc_stats.refill;
119 *data++ = pool_stats->alloc_stats.waive;
120 *data++ = pool_stats->recycle_stats.cached;
121 *data++ = pool_stats->recycle_stats.cache_full;
122 *data++ = pool_stats->recycle_stats.ring;
123 *data++ = pool_stats->recycle_stats.ring_full;
124 *data++ = pool_stats->recycle_stats.released_refcnt;
125
126 return data;
127}
128EXPORT_SYMBOL(page_pool_ethtool_stats_get);
129
8610037e
JD
130#else
131#define alloc_stat_inc(pool, __stat)
ad6fa1e1 132#define recycle_stat_inc(pool, __stat)
590032a4 133#define recycle_stat_add(pool, __stat, val)
8610037e
JD
134#endif
135
ff7d6b27
JDB
136static int page_pool_init(struct page_pool *pool,
137 const struct page_pool_params *params)
138{
139 unsigned int ring_qsize = 1024; /* Default */
140
141 memcpy(&pool->p, params, sizeof(pool->p));
142
143 /* Validate only known flags were used */
144 if (pool->p.flags & ~(PP_FLAG_ALL))
145 return -EINVAL;
146
147 if (pool->p.pool_size)
148 ring_qsize = pool->p.pool_size;
149
150 /* Sanity limit mem that can be pinned down */
151 if (ring_qsize > 32768)
152 return -E2BIG;
153
154 /* DMA direction is either DMA_FROM_DEVICE or DMA_BIDIRECTIONAL.
155 * DMA_BIDIRECTIONAL is for allowing page used for DMA sending,
156 * which is the XDP_TX use-case.
157 */
798dda81
DK
158 if (pool->p.flags & PP_FLAG_DMA_MAP) {
159 if ((pool->p.dma_dir != DMA_FROM_DEVICE) &&
160 (pool->p.dma_dir != DMA_BIDIRECTIONAL))
161 return -EINVAL;
162 }
ff7d6b27 163
e68bc756
LB
164 if (pool->p.flags & PP_FLAG_DMA_SYNC_DEV) {
165 /* In order to request DMA-sync-for-device the page
166 * needs to be mapped
167 */
168 if (!(pool->p.flags & PP_FLAG_DMA_MAP))
169 return -EINVAL;
170
171 if (!pool->p.max_len)
172 return -EINVAL;
173
174 /* pool->p.offset has to be set according to the address
175 * offset used by the DMA engine to start copying rx data
176 */
177 }
178
f915b75b
YL
179 if (PAGE_POOL_DMA_USE_PP_FRAG_COUNT &&
180 pool->p.flags & PP_FLAG_PAGE_FRAG)
181 return -EINVAL;
182
ad6fa1e1
JD
183#ifdef CONFIG_PAGE_POOL_STATS
184 pool->recycle_stats = alloc_percpu(struct page_pool_recycle_stats);
185 if (!pool->recycle_stats)
186 return -ENOMEM;
187#endif
188
ff7d6b27
JDB
189 if (ptr_ring_init(&pool->ring, ring_qsize, GFP_KERNEL) < 0)
190 return -ENOMEM;
191
99c07c43
JDB
192 atomic_set(&pool->pages_state_release_cnt, 0);
193
1da4bbef
IK
194 /* Driver calling page_pool_create() also call page_pool_destroy() */
195 refcount_set(&pool->user_cnt, 1);
196
f71fec47
JDB
197 if (pool->p.flags & PP_FLAG_DMA_MAP)
198 get_device(pool->p.dev);
199
ff7d6b27
JDB
200 return 0;
201}
202
203struct page_pool *page_pool_create(const struct page_pool_params *params)
204{
205 struct page_pool *pool;
873343e7 206 int err;
ff7d6b27
JDB
207
208 pool = kzalloc_node(sizeof(*pool), GFP_KERNEL, params->nid);
209 if (!pool)
210 return ERR_PTR(-ENOMEM);
211
212 err = page_pool_init(pool, params);
213 if (err < 0) {
214 pr_warn("%s() gave up with errno %d\n", __func__, err);
215 kfree(pool);
216 return ERR_PTR(err);
217 }
1da4bbef 218
ff7d6b27
JDB
219 return pool;
220}
221EXPORT_SYMBOL(page_pool_create);
222
458de8a9 223static void page_pool_return_page(struct page_pool *pool, struct page *page);
44768dec
JDB
224
225noinline
304db6cb 226static struct page *page_pool_refill_alloc_cache(struct page_pool *pool)
44768dec
JDB
227{
228 struct ptr_ring *r = &pool->ring;
229 struct page *page;
230 int pref_nid; /* preferred NUMA node */
231
232 /* Quicker fallback, avoid locks when ring is empty */
8610037e
JD
233 if (__ptr_ring_empty(r)) {
234 alloc_stat_inc(pool, empty);
44768dec 235 return NULL;
8610037e 236 }
44768dec
JDB
237
238 /* Softirq guarantee CPU and thus NUMA node is stable. This,
239 * assumes CPU refilling driver RX-ring will also run RX-NAPI.
240 */
f13fc107 241#ifdef CONFIG_NUMA
44768dec 242 pref_nid = (pool->p.nid == NUMA_NO_NODE) ? numa_mem_id() : pool->p.nid;
f13fc107
JDB
243#else
244 /* Ignore pool->p.nid setting if !CONFIG_NUMA, helps compiler */
245 pref_nid = numa_mem_id(); /* will be zero like page_to_nid() */
246#endif
44768dec 247
44768dec
JDB
248 /* Refill alloc array, but only if NUMA match */
249 do {
250 page = __ptr_ring_consume(r);
251 if (unlikely(!page))
252 break;
253
254 if (likely(page_to_nid(page) == pref_nid)) {
255 pool->alloc.cache[pool->alloc.count++] = page;
256 } else {
257 /* NUMA mismatch;
258 * (1) release 1 page to page-allocator and
259 * (2) break out to fallthrough to alloc_pages_node.
260 * This limit stress on page buddy alloactor.
261 */
458de8a9 262 page_pool_return_page(pool, page);
8610037e 263 alloc_stat_inc(pool, waive);
44768dec
JDB
264 page = NULL;
265 break;
266 }
304db6cb 267 } while (pool->alloc.count < PP_ALLOC_CACHE_REFILL);
44768dec
JDB
268
269 /* Return last page */
8610037e 270 if (likely(pool->alloc.count > 0)) {
44768dec 271 page = pool->alloc.cache[--pool->alloc.count];
8610037e
JD
272 alloc_stat_inc(pool, refill);
273 }
44768dec 274
44768dec
JDB
275 return page;
276}
277
ff7d6b27
JDB
278/* fast path */
279static struct page *__page_pool_get_cached(struct page_pool *pool)
280{
ff7d6b27
JDB
281 struct page *page;
282
304db6cb
LR
283 /* Caller MUST guarantee safe non-concurrent access, e.g. softirq */
284 if (likely(pool->alloc.count)) {
285 /* Fast-path */
286 page = pool->alloc.cache[--pool->alloc.count];
8610037e 287 alloc_stat_inc(pool, fast);
304db6cb
LR
288 } else {
289 page = page_pool_refill_alloc_cache(pool);
ff7d6b27
JDB
290 }
291
ff7d6b27
JDB
292 return page;
293}
294
e68bc756
LB
295static void page_pool_dma_sync_for_device(struct page_pool *pool,
296 struct page *page,
297 unsigned int dma_sync_size)
298{
9ddb3c14
MWO
299 dma_addr_t dma_addr = page_pool_get_dma_addr(page);
300
e68bc756 301 dma_sync_size = min(dma_sync_size, pool->p.max_len);
9ddb3c14 302 dma_sync_single_range_for_device(pool->p.dev, dma_addr,
e68bc756
LB
303 pool->p.offset, dma_sync_size,
304 pool->p.dma_dir);
305}
306
dfa59717
JDB
307static bool page_pool_dma_map(struct page_pool *pool, struct page *page)
308{
309 dma_addr_t dma;
310
311 /* Setup DMA mapping: use 'struct page' area for storing DMA-addr
312 * since dma_addr_t can be either 32 or 64 bits and does not always fit
313 * into page private data (i.e 32bit cpu with 64bit DMA caps)
314 * This mapping is kept for lifetime of page, until leaving pool.
315 */
316 dma = dma_map_page_attrs(pool->p.dev, page, 0,
317 (PAGE_SIZE << pool->p.order),
318 pool->p.dma_dir, DMA_ATTR_SKIP_CPU_SYNC);
319 if (dma_mapping_error(pool->p.dev, dma))
320 return false;
321
9ddb3c14 322 page_pool_set_dma_addr(page, dma);
dfa59717
JDB
323
324 if (pool->p.flags & PP_FLAG_DMA_SYNC_DEV)
325 page_pool_dma_sync_for_device(pool, page, pool->p.max_len);
326
327 return true;
328}
329
57f05bc2
YL
330static void page_pool_set_pp_info(struct page_pool *pool,
331 struct page *page)
332{
333 page->pp = pool;
334 page->pp_magic |= PP_SIGNATURE;
35b2e549
THJ
335 if (pool->p.init_callback)
336 pool->p.init_callback(page, pool->p.init_arg);
57f05bc2
YL
337}
338
339static void page_pool_clear_pp_info(struct page *page)
340{
341 page->pp_magic = 0;
342 page->pp = NULL;
343}
344
be5dba25
JDB
345static struct page *__page_pool_alloc_page_order(struct page_pool *pool,
346 gfp_t gfp)
ff7d6b27
JDB
347{
348 struct page *page;
ff7d6b27 349
be5dba25 350 gfp |= __GFP_COMP;
ff7d6b27 351 page = alloc_pages_node(pool->p.nid, gfp, pool->p.order);
be5dba25 352 if (unlikely(!page))
ff7d6b27
JDB
353 return NULL;
354
be5dba25 355 if ((pool->p.flags & PP_FLAG_DMA_MAP) &&
dfa59717 356 unlikely(!page_pool_dma_map(pool, page))) {
ff7d6b27
JDB
357 put_page(page);
358 return NULL;
359 }
ff7d6b27 360
8610037e 361 alloc_stat_inc(pool, slow_high_order);
57f05bc2 362 page_pool_set_pp_info(pool, page);
c07aea3e 363
99c07c43
JDB
364 /* Track how many pages are held 'in-flight' */
365 pool->pages_state_hold_cnt++;
32c28f7e 366 trace_page_pool_state_hold(pool, page, pool->pages_state_hold_cnt);
be5dba25
JDB
367 return page;
368}
369
370/* slow path */
371noinline
372static struct page *__page_pool_alloc_pages_slow(struct page_pool *pool,
373 gfp_t gfp)
374{
375 const int bulk = PP_ALLOC_CACHE_REFILL;
376 unsigned int pp_flags = pool->p.flags;
377 unsigned int pp_order = pool->p.order;
378 struct page *page;
379 int i, nr_pages;
380
381 /* Don't support bulk alloc for high-order pages */
382 if (unlikely(pp_order))
383 return __page_pool_alloc_page_order(pool, gfp);
384
385 /* Unnecessary as alloc cache is empty, but guarantees zero count */
386 if (unlikely(pool->alloc.count > 0))
387 return pool->alloc.cache[--pool->alloc.count];
388
389 /* Mark empty alloc.cache slots "empty" for alloc_pages_bulk_array */
390 memset(&pool->alloc.cache, 0, sizeof(void *) * bulk);
391
392 nr_pages = alloc_pages_bulk_array(gfp, bulk, pool->alloc.cache);
393 if (unlikely(!nr_pages))
394 return NULL;
395
396 /* Pages have been filled into alloc.cache array, but count is zero and
397 * page element have not been (possibly) DMA mapped.
398 */
399 for (i = 0; i < nr_pages; i++) {
400 page = pool->alloc.cache[i];
401 if ((pp_flags & PP_FLAG_DMA_MAP) &&
402 unlikely(!page_pool_dma_map(pool, page))) {
403 put_page(page);
404 continue;
405 }
57f05bc2
YL
406
407 page_pool_set_pp_info(pool, page);
be5dba25
JDB
408 pool->alloc.cache[pool->alloc.count++] = page;
409 /* Track how many pages are held 'in-flight' */
410 pool->pages_state_hold_cnt++;
411 trace_page_pool_state_hold(pool, page,
412 pool->pages_state_hold_cnt);
413 }
414
415 /* Return last page */
8610037e 416 if (likely(pool->alloc.count > 0)) {
be5dba25 417 page = pool->alloc.cache[--pool->alloc.count];
8610037e
JD
418 alloc_stat_inc(pool, slow);
419 } else {
be5dba25 420 page = NULL;
8610037e 421 }
32c28f7e 422
ff7d6b27
JDB
423 /* When page just alloc'ed is should/must have refcnt 1. */
424 return page;
425}
426
427/* For using page_pool replace: alloc_pages() API calls, but provide
428 * synchronization guarantee for allocation side.
429 */
430struct page *page_pool_alloc_pages(struct page_pool *pool, gfp_t gfp)
431{
432 struct page *page;
433
434 /* Fast-path: Get a page from cache */
435 page = __page_pool_get_cached(pool);
436 if (page)
437 return page;
438
439 /* Slow-path: cache empty, do real allocation */
440 page = __page_pool_alloc_pages_slow(pool, gfp);
441 return page;
442}
443EXPORT_SYMBOL(page_pool_alloc_pages);
444
99c07c43
JDB
445/* Calculate distance between two u32 values, valid if distance is below 2^(31)
446 * https://en.wikipedia.org/wiki/Serial_number_arithmetic#General_Solution
447 */
448#define _distance(a, b) (s32)((a) - (b))
449
450static s32 page_pool_inflight(struct page_pool *pool)
451{
452 u32 release_cnt = atomic_read(&pool->pages_state_release_cnt);
453 u32 hold_cnt = READ_ONCE(pool->pages_state_hold_cnt);
c3f812ce 454 s32 inflight;
99c07c43 455
c3f812ce 456 inflight = _distance(hold_cnt, release_cnt);
99c07c43 457
7c9e6942 458 trace_page_pool_release(pool, inflight, hold_cnt, release_cnt);
99c07c43
JDB
459 WARN(inflight < 0, "Negative(%d) inflight packet-pages", inflight);
460
c3f812ce 461 return inflight;
99c07c43
JDB
462}
463
458de8a9
IA
464/* Disconnects a page (from a page_pool). API users can have a need
465 * to disconnect a page (from a page_pool), to allow it to be used as
466 * a regular page (that will eventually be returned to the normal
467 * page-allocator via put_page).
468 */
469void page_pool_release_page(struct page_pool *pool, struct page *page)
ff7d6b27 470{
1567b85e 471 dma_addr_t dma;
c3f812ce 472 int count;
1567b85e 473
ff7d6b27 474 if (!(pool->p.flags & PP_FLAG_DMA_MAP))
458de8a9
IA
475 /* Always account for inflight pages, even if we didn't
476 * map them
477 */
99c07c43 478 goto skip_dma_unmap;
ff7d6b27 479
9ddb3c14 480 dma = page_pool_get_dma_addr(page);
458de8a9 481
9ddb3c14 482 /* When page is unmapped, it cannot be returned to our pool */
13f16d9d
JDB
483 dma_unmap_page_attrs(pool->p.dev, dma,
484 PAGE_SIZE << pool->p.order, pool->p.dma_dir,
485 DMA_ATTR_SKIP_CPU_SYNC);
9ddb3c14 486 page_pool_set_dma_addr(page, 0);
99c07c43 487skip_dma_unmap:
57f05bc2 488 page_pool_clear_pp_info(page);
c07aea3e 489
c3f812ce
JL
490 /* This may be the last page returned, releasing the pool, so
491 * it is not safe to reference pool afterwards.
492 */
7fb9b66d 493 count = atomic_inc_return_relaxed(&pool->pages_state_release_cnt);
c3f812ce 494 trace_page_pool_state_release(pool, page, count);
ff7d6b27 495}
458de8a9 496EXPORT_SYMBOL(page_pool_release_page);
a25d50bf 497
ff7d6b27 498/* Return a page to the page allocator, cleaning up our state */
458de8a9 499static void page_pool_return_page(struct page_pool *pool, struct page *page)
ff7d6b27 500{
458de8a9 501 page_pool_release_page(pool, page);
99c07c43 502
ff7d6b27
JDB
503 put_page(page);
504 /* An optimization would be to call __free_pages(page, pool->p.order)
505 * knowing page is not part of page-cache (thus avoiding a
506 * __page_cache_release() call).
507 */
508}
509
458de8a9 510static bool page_pool_recycle_in_ring(struct page_pool *pool, struct page *page)
ff7d6b27
JDB
511{
512 int ret;
513 /* BH protection not needed if current is serving softirq */
514 if (in_serving_softirq())
515 ret = ptr_ring_produce(&pool->ring, page);
516 else
517 ret = ptr_ring_produce_bh(&pool->ring, page);
518
ad6fa1e1
JD
519 if (!ret) {
520 recycle_stat_inc(pool, ring);
521 return true;
522 }
523
524 return false;
ff7d6b27
JDB
525}
526
527/* Only allow direct recycling in special circumstances, into the
528 * alloc side cache. E.g. during RX-NAPI processing for XDP_DROP use-case.
529 *
530 * Caller must provide appropriate safe context.
531 */
458de8a9 532static bool page_pool_recycle_in_cache(struct page *page,
ff7d6b27
JDB
533 struct page_pool *pool)
534{
ad6fa1e1
JD
535 if (unlikely(pool->alloc.count == PP_ALLOC_CACHE_SIZE)) {
536 recycle_stat_inc(pool, cache_full);
ff7d6b27 537 return false;
ad6fa1e1 538 }
ff7d6b27
JDB
539
540 /* Caller MUST have verified/know (page_ref_count(page) == 1) */
541 pool->alloc.cache[pool->alloc.count++] = page;
ad6fa1e1 542 recycle_stat_inc(pool, cached);
ff7d6b27
JDB
543 return true;
544}
545
458de8a9
IA
546/* If the page refcnt == 1, this will try to recycle the page.
547 * if PP_FLAG_DMA_SYNC_DEV is set, we'll try to sync the DMA area for
548 * the configured size min(dma_sync_size, pool->max_len).
549 * If the page refcnt != 1, then the page will be returned to memory
550 * subsystem.
551 */
78862447
LB
552static __always_inline struct page *
553__page_pool_put_page(struct page_pool *pool, struct page *page,
554 unsigned int dma_sync_size, bool allow_direct)
ff7d6b27
JDB
555{
556 /* This allocator is optimized for the XDP mode that uses
557 * one-frame-per-page, but have fallbacks that act like the
558 * regular page allocator APIs.
559 *
560 * refcnt == 1 means page_pool owns page, and can recycle it.
05656132
AL
561 *
562 * page is NOT reusable when allocated when system is under
563 * some pressure. (page_is_pfmemalloc)
ff7d6b27 564 */
05656132 565 if (likely(page_ref_count(page) == 1 && !page_is_pfmemalloc(page))) {
ff7d6b27
JDB
566 /* Read barrier done in page_ref_count / READ_ONCE */
567
e68bc756
LB
568 if (pool->p.flags & PP_FLAG_DMA_SYNC_DEV)
569 page_pool_dma_sync_for_device(pool, page,
570 dma_sync_size);
571
78862447
LB
572 if (allow_direct && in_serving_softirq() &&
573 page_pool_recycle_in_cache(page, pool))
574 return NULL;
ff7d6b27 575
78862447
LB
576 /* Page found as candidate for recycling */
577 return page;
ff7d6b27
JDB
578 }
579 /* Fallback/non-XDP mode: API user have elevated refcnt.
580 *
581 * Many drivers split up the page into fragments, and some
582 * want to keep doing this to save memory and do refcnt based
583 * recycling. Support this use case too, to ease drivers
584 * switching between XDP/non-XDP.
585 *
586 * In-case page_pool maintains the DMA mapping, API user must
587 * call page_pool_put_page once. In this elevated refcnt
588 * case, the DMA is unmapped/released, as driver is likely
589 * doing refcnt based recycle tricks, meaning another process
590 * will be invoking put_page.
591 */
ad6fa1e1 592 recycle_stat_inc(pool, released_refcnt);
458de8a9
IA
593 /* Do not replace this with page_pool_return_page() */
594 page_pool_release_page(pool, page);
ff7d6b27 595 put_page(page);
78862447
LB
596
597 return NULL;
598}
599
52cc6ffc
AD
600void page_pool_put_defragged_page(struct page_pool *pool, struct page *page,
601 unsigned int dma_sync_size, bool allow_direct)
78862447
LB
602{
603 page = __page_pool_put_page(pool, page, dma_sync_size, allow_direct);
604 if (page && !page_pool_recycle_in_ring(pool, page)) {
605 /* Cache full, fallback to free pages */
ad6fa1e1 606 recycle_stat_inc(pool, ring_full);
78862447
LB
607 page_pool_return_page(pool, page);
608 }
ff7d6b27 609}
52cc6ffc 610EXPORT_SYMBOL(page_pool_put_defragged_page);
ff7d6b27 611
78862447
LB
612/* Caller must not use data area after call, as this function overwrites it */
613void page_pool_put_page_bulk(struct page_pool *pool, void **data,
614 int count)
615{
616 int i, bulk_len = 0;
617
618 for (i = 0; i < count; i++) {
619 struct page *page = virt_to_head_page(data[i]);
620
52cc6ffc
AD
621 /* It is not the last user for the page frag case */
622 if (!page_pool_is_last_frag(pool, page))
623 continue;
624
78862447
LB
625 page = __page_pool_put_page(pool, page, -1, false);
626 /* Approved for bulk recycling in ptr_ring cache */
627 if (page)
628 data[bulk_len++] = page;
629 }
630
631 if (unlikely(!bulk_len))
632 return;
633
634 /* Bulk producer into ptr_ring page_pool cache */
635 page_pool_ring_lock(pool);
636 for (i = 0; i < bulk_len; i++) {
590032a4
LB
637 if (__ptr_ring_produce(&pool->ring, data[i])) {
638 /* ring full */
639 recycle_stat_inc(pool, ring_full);
640 break;
641 }
78862447 642 }
590032a4 643 recycle_stat_add(pool, ring, i);
78862447
LB
644 page_pool_ring_unlock(pool);
645
646 /* Hopefully all pages was return into ptr_ring */
647 if (likely(i == bulk_len))
648 return;
649
650 /* ptr_ring cache full, free remaining pages outside producer lock
651 * since put_page() with refcnt == 1 can be an expensive operation
652 */
653 for (; i < bulk_len; i++)
654 page_pool_return_page(pool, data[i]);
655}
656EXPORT_SYMBOL(page_pool_put_page_bulk);
657
53e0961d
YL
658static struct page *page_pool_drain_frag(struct page_pool *pool,
659 struct page *page)
660{
661 long drain_count = BIAS_MAX - pool->frag_users;
662
663 /* Some user is still using the page frag */
52cc6ffc 664 if (likely(page_pool_defrag_page(page, drain_count)))
53e0961d
YL
665 return NULL;
666
667 if (page_ref_count(page) == 1 && !page_is_pfmemalloc(page)) {
668 if (pool->p.flags & PP_FLAG_DMA_SYNC_DEV)
669 page_pool_dma_sync_for_device(pool, page, -1);
670
671 return page;
672 }
673
674 page_pool_return_page(pool, page);
675 return NULL;
676}
677
678static void page_pool_free_frag(struct page_pool *pool)
679{
680 long drain_count = BIAS_MAX - pool->frag_users;
681 struct page *page = pool->frag_page;
682
683 pool->frag_page = NULL;
684
52cc6ffc 685 if (!page || page_pool_defrag_page(page, drain_count))
53e0961d
YL
686 return;
687
688 page_pool_return_page(pool, page);
689}
690
691struct page *page_pool_alloc_frag(struct page_pool *pool,
692 unsigned int *offset,
693 unsigned int size, gfp_t gfp)
694{
695 unsigned int max_size = PAGE_SIZE << pool->p.order;
696 struct page *page = pool->frag_page;
697
698 if (WARN_ON(!(pool->p.flags & PP_FLAG_PAGE_FRAG) ||
699 size > max_size))
700 return NULL;
701
702 size = ALIGN(size, dma_get_cache_alignment());
703 *offset = pool->frag_offset;
704
705 if (page && *offset + size > max_size) {
706 page = page_pool_drain_frag(pool, page);
707 if (page)
708 goto frag_reset;
709 }
710
711 if (!page) {
712 page = page_pool_alloc_pages(pool, gfp);
713 if (unlikely(!page)) {
714 pool->frag_page = NULL;
715 return NULL;
716 }
717
718 pool->frag_page = page;
719
720frag_reset:
721 pool->frag_users = 1;
722 *offset = 0;
723 pool->frag_offset = size;
52cc6ffc 724 page_pool_fragment_page(page, BIAS_MAX);
53e0961d
YL
725 return page;
726 }
727
728 pool->frag_users++;
729 pool->frag_offset = *offset + size;
730 return page;
731}
732EXPORT_SYMBOL(page_pool_alloc_frag);
733
458de8a9 734static void page_pool_empty_ring(struct page_pool *pool)
ff7d6b27
JDB
735{
736 struct page *page;
737
738 /* Empty recycle ring */
4905bd9a 739 while ((page = ptr_ring_consume_bh(&pool->ring))) {
ff7d6b27
JDB
740 /* Verify the refcnt invariant of cached pages */
741 if (!(page_ref_count(page) == 1))
742 pr_crit("%s() page_pool refcnt %d violation\n",
743 __func__, page_ref_count(page));
744
458de8a9 745 page_pool_return_page(pool, page);
ff7d6b27
JDB
746 }
747}
748
c3f812ce 749static void page_pool_free(struct page_pool *pool)
d956a048 750{
c3f812ce
JL
751 if (pool->disconnect)
752 pool->disconnect(pool);
e54cfd7e
JDB
753
754 ptr_ring_cleanup(&pool->ring, NULL);
f71fec47
JDB
755
756 if (pool->p.flags & PP_FLAG_DMA_MAP)
757 put_device(pool->p.dev);
758
ad6fa1e1
JD
759#ifdef CONFIG_PAGE_POOL_STATS
760 free_percpu(pool->recycle_stats);
761#endif
e54cfd7e
JDB
762 kfree(pool);
763}
e54cfd7e 764
7c9e6942 765static void page_pool_empty_alloc_cache_once(struct page_pool *pool)
ff7d6b27
JDB
766{
767 struct page *page;
768
7c9e6942
JDB
769 if (pool->destroy_cnt)
770 return;
771
ff7d6b27
JDB
772 /* Empty alloc cache, assume caller made sure this is
773 * no-longer in use, and page_pool_alloc_pages() cannot be
774 * call concurrently.
775 */
776 while (pool->alloc.count) {
777 page = pool->alloc.cache[--pool->alloc.count];
458de8a9 778 page_pool_return_page(pool, page);
ff7d6b27 779 }
7c9e6942
JDB
780}
781
782static void page_pool_scrub(struct page_pool *pool)
783{
784 page_pool_empty_alloc_cache_once(pool);
785 pool->destroy_cnt++;
ff7d6b27
JDB
786
787 /* No more consumers should exist, but producers could still
788 * be in-flight.
789 */
458de8a9 790 page_pool_empty_ring(pool);
c3f812ce
JL
791}
792
793static int page_pool_release(struct page_pool *pool)
794{
795 int inflight;
796
797 page_pool_scrub(pool);
798 inflight = page_pool_inflight(pool);
799 if (!inflight)
800 page_pool_free(pool);
801
802 return inflight;
803}
804
805static void page_pool_release_retry(struct work_struct *wq)
806{
807 struct delayed_work *dwq = to_delayed_work(wq);
808 struct page_pool *pool = container_of(dwq, typeof(*pool), release_dw);
809 int inflight;
810
811 inflight = page_pool_release(pool);
812 if (!inflight)
813 return;
814
815 /* Periodic warning */
816 if (time_after_eq(jiffies, pool->defer_warn)) {
817 int sec = (s32)((u32)jiffies - (u32)pool->defer_start) / HZ;
818
819 pr_warn("%s() stalled pool shutdown %d inflight %d sec\n",
820 __func__, inflight, sec);
821 pool->defer_warn = jiffies + DEFER_WARN_INTERVAL;
822 }
823
824 /* Still not ready to be disconnected, retry later */
825 schedule_delayed_work(&pool->release_dw, DEFER_TIME);
826}
827
64693ec7
THJ
828void page_pool_use_xdp_mem(struct page_pool *pool, void (*disconnect)(void *),
829 struct xdp_mem_info *mem)
c3f812ce
JL
830{
831 refcount_inc(&pool->user_cnt);
832 pool->disconnect = disconnect;
64693ec7 833 pool->xdp_mem_id = mem->id;
c3f812ce
JL
834}
835
836void page_pool_destroy(struct page_pool *pool)
837{
838 if (!pool)
839 return;
840
841 if (!page_pool_put(pool))
842 return;
843
53e0961d
YL
844 page_pool_free_frag(pool);
845
c3f812ce
JL
846 if (!page_pool_release(pool))
847 return;
848
849 pool->defer_start = jiffies;
850 pool->defer_warn = jiffies + DEFER_WARN_INTERVAL;
ff7d6b27 851
c3f812ce
JL
852 INIT_DELAYED_WORK(&pool->release_dw, page_pool_release_retry);
853 schedule_delayed_work(&pool->release_dw, DEFER_TIME);
ff7d6b27 854}
c3f812ce 855EXPORT_SYMBOL(page_pool_destroy);
bc836748
SM
856
857/* Caller must provide appropriate safe context, e.g. NAPI. */
858void page_pool_update_nid(struct page_pool *pool, int new_nid)
859{
44768dec
JDB
860 struct page *page;
861
bc836748
SM
862 trace_page_pool_update_nid(pool, new_nid);
863 pool->p.nid = new_nid;
44768dec
JDB
864
865 /* Flush pool alloc cache, as refill will check NUMA node */
866 while (pool->alloc.count) {
867 page = pool->alloc.cache[--pool->alloc.count];
458de8a9 868 page_pool_return_page(pool, page);
44768dec 869 }
bc836748
SM
870}
871EXPORT_SYMBOL(page_pool_update_nid);
6a5bcd84
IA
872
873bool page_pool_return_skb_page(struct page *page)
874{
875 struct page_pool *pp;
876
877 page = compound_head(page);
0fa32ca4
YL
878
879 /* page->pp_magic is OR'ed with PP_SIGNATURE after the allocation
880 * in order to preserve any existing bits, such as bit 0 for the
881 * head page of compound page and bit 1 for pfmemalloc page, so
882 * mask those bits for freeing side when doing below checking,
883 * and page_is_pfmemalloc() is checked in __page_pool_put_page()
884 * to avoid recycling the pfmemalloc page.
885 */
886 if (unlikely((page->pp_magic & ~0x3UL) != PP_SIGNATURE))
6a5bcd84
IA
887 return false;
888
889 pp = page->pp;
890
891 /* Driver set this to memory recycling info. Reset it on recycle.
892 * This will *not* work for NIC using a split-page memory model.
893 * The page will be returned to the pool here regardless of the
894 * 'flipped' fragment being in use or not.
895 */
6a5bcd84
IA
896 page_pool_put_full_page(pp, page, false);
897
898 return true;
899}
900EXPORT_SYMBOL(page_pool_return_skb_page);