blob: b367430e611c7d493b478c3507ef4973fd63cc1e [file] [log] [blame]
Thomas Gleixner25763b32019-05-28 10:10:09 -07001// SPDX-License-Identifier: GPL-2.0-only
Alexei Starovoitove19494e2016-03-07 21:57:14 -08002/* Copyright (c) 2016 Facebook
Alexei Starovoitove19494e2016-03-07 21:57:14 -08003 */
4#include "percpu_freelist.h"
5
6int pcpu_freelist_init(struct pcpu_freelist *s)
7{
8 int cpu;
9
10 s->freelist = alloc_percpu(struct pcpu_freelist_head);
11 if (!s->freelist)
12 return -ENOMEM;
13
14 for_each_possible_cpu(cpu) {
15 struct pcpu_freelist_head *head = per_cpu_ptr(s->freelist, cpu);
16
17 raw_spin_lock_init(&head->lock);
18 head->first = NULL;
19 }
20 return 0;
21}
22
23void pcpu_freelist_destroy(struct pcpu_freelist *s)
24{
25 free_percpu(s->freelist);
26}
27
Thomas Gleixner569de9052020-02-24 15:01:40 +010028static inline void pcpu_freelist_push_node(struct pcpu_freelist_head *head,
29 struct pcpu_freelist_node *node)
30{
31 node->next = head->first;
32 head->first = node;
33}
34
Alexei Starovoitova89fac52019-01-30 18:12:43 -080035static inline void ___pcpu_freelist_push(struct pcpu_freelist_head *head,
36 struct pcpu_freelist_node *node)
Alexei Starovoitove19494e2016-03-07 21:57:14 -080037{
38 raw_spin_lock(&head->lock);
Thomas Gleixner569de9052020-02-24 15:01:40 +010039 pcpu_freelist_push_node(head, node);
Alexei Starovoitove19494e2016-03-07 21:57:14 -080040 raw_spin_unlock(&head->lock);
41}
42
Alexei Starovoitova89fac52019-01-30 18:12:43 -080043void __pcpu_freelist_push(struct pcpu_freelist *s,
Alexei Starovoitove19494e2016-03-07 21:57:14 -080044 struct pcpu_freelist_node *node)
45{
46 struct pcpu_freelist_head *head = this_cpu_ptr(s->freelist);
47
Alexei Starovoitova89fac52019-01-30 18:12:43 -080048 ___pcpu_freelist_push(head, node);
49}
50
51void pcpu_freelist_push(struct pcpu_freelist *s,
52 struct pcpu_freelist_node *node)
53{
54 unsigned long flags;
55
56 local_irq_save(flags);
57 __pcpu_freelist_push(s, node);
58 local_irq_restore(flags);
Alexei Starovoitove19494e2016-03-07 21:57:14 -080059}
60
61void pcpu_freelist_populate(struct pcpu_freelist *s, void *buf, u32 elem_size,
62 u32 nr_elems)
63{
64 struct pcpu_freelist_head *head;
Alexei Starovoitove19494e2016-03-07 21:57:14 -080065 int i, cpu, pcpu_entries;
66
67 pcpu_entries = nr_elems / num_possible_cpus() + 1;
68 i = 0;
69
Alexei Starovoitove19494e2016-03-07 21:57:14 -080070 for_each_possible_cpu(cpu) {
71again:
72 head = per_cpu_ptr(s->freelist, cpu);
Thomas Gleixner569de9052020-02-24 15:01:40 +010073 /* No locking required as this is not visible yet. */
74 pcpu_freelist_push_node(head, buf);
Alexei Starovoitove19494e2016-03-07 21:57:14 -080075 i++;
76 buf += elem_size;
77 if (i == nr_elems)
78 break;
79 if (i % pcpu_entries)
80 goto again;
81 }
Alexei Starovoitove19494e2016-03-07 21:57:14 -080082}
83
Alexei Starovoitova89fac52019-01-30 18:12:43 -080084struct pcpu_freelist_node *__pcpu_freelist_pop(struct pcpu_freelist *s)
Alexei Starovoitove19494e2016-03-07 21:57:14 -080085{
86 struct pcpu_freelist_head *head;
87 struct pcpu_freelist_node *node;
88 int orig_cpu, cpu;
89
90 orig_cpu = cpu = raw_smp_processor_id();
91 while (1) {
92 head = per_cpu_ptr(s->freelist, cpu);
93 raw_spin_lock(&head->lock);
94 node = head->first;
95 if (node) {
96 head->first = node->next;
Alexei Starovoitova89fac52019-01-30 18:12:43 -080097 raw_spin_unlock(&head->lock);
Alexei Starovoitove19494e2016-03-07 21:57:14 -080098 return node;
99 }
100 raw_spin_unlock(&head->lock);
101 cpu = cpumask_next(cpu, cpu_possible_mask);
102 if (cpu >= nr_cpu_ids)
103 cpu = 0;
Alexei Starovoitova89fac52019-01-30 18:12:43 -0800104 if (cpu == orig_cpu)
Alexei Starovoitove19494e2016-03-07 21:57:14 -0800105 return NULL;
Alexei Starovoitove19494e2016-03-07 21:57:14 -0800106 }
107}
Alexei Starovoitova89fac52019-01-30 18:12:43 -0800108
109struct pcpu_freelist_node *pcpu_freelist_pop(struct pcpu_freelist *s)
110{
111 struct pcpu_freelist_node *ret;
112 unsigned long flags;
113
114 local_irq_save(flags);
115 ret = __pcpu_freelist_pop(s);
116 local_irq_restore(flags);
117 return ret;
118}