1 // SPDX-License-Identifier: GPL-2.0-only
2 /* Copyright (c) 2016 Facebook
4 #include "percpu_freelist.h"
6 int pcpu_freelist_init(struct pcpu_freelist
*s
)
10 s
->freelist
= alloc_percpu(struct pcpu_freelist_head
);
14 for_each_possible_cpu(cpu
) {
15 struct pcpu_freelist_head
*head
= per_cpu_ptr(s
->freelist
, cpu
);
17 raw_spin_lock_init(&head
->lock
);
20 raw_spin_lock_init(&s
->extralist
.lock
);
21 s
->extralist
.first
= NULL
;
25 void pcpu_freelist_destroy(struct pcpu_freelist
*s
)
27 free_percpu(s
->freelist
);
30 static inline void pcpu_freelist_push_node(struct pcpu_freelist_head
*head
,
31 struct pcpu_freelist_node
*node
)
33 node
->next
= head
->first
;
34 WRITE_ONCE(head
->first
, node
);
37 static inline void ___pcpu_freelist_push(struct pcpu_freelist_head
*head
,
38 struct pcpu_freelist_node
*node
)
40 raw_spin_lock(&head
->lock
);
41 pcpu_freelist_push_node(head
, node
);
42 raw_spin_unlock(&head
->lock
);
45 static inline bool pcpu_freelist_try_push_extra(struct pcpu_freelist
*s
,
46 struct pcpu_freelist_node
*node
)
48 if (!raw_spin_trylock(&s
->extralist
.lock
))
51 pcpu_freelist_push_node(&s
->extralist
, node
);
52 raw_spin_unlock(&s
->extralist
.lock
);
56 static inline void ___pcpu_freelist_push_nmi(struct pcpu_freelist
*s
,
57 struct pcpu_freelist_node
*node
)
61 orig_cpu
= raw_smp_processor_id();
63 for_each_cpu_wrap(cpu
, cpu_possible_mask
, orig_cpu
) {
64 struct pcpu_freelist_head
*head
;
66 head
= per_cpu_ptr(s
->freelist
, cpu
);
67 if (raw_spin_trylock(&head
->lock
)) {
68 pcpu_freelist_push_node(head
, node
);
69 raw_spin_unlock(&head
->lock
);
74 /* cannot lock any per cpu lock, try extralist */
75 if (pcpu_freelist_try_push_extra(s
, node
))
80 void __pcpu_freelist_push(struct pcpu_freelist
*s
,
81 struct pcpu_freelist_node
*node
)
84 ___pcpu_freelist_push_nmi(s
, node
);
86 ___pcpu_freelist_push(this_cpu_ptr(s
->freelist
), node
);
89 void pcpu_freelist_push(struct pcpu_freelist
*s
,
90 struct pcpu_freelist_node
*node
)
94 local_irq_save(flags
);
95 __pcpu_freelist_push(s
, node
);
96 local_irq_restore(flags
);
99 void pcpu_freelist_populate(struct pcpu_freelist
*s
, void *buf
, u32 elem_size
,
102 struct pcpu_freelist_head
*head
;
103 unsigned int cpu
, cpu_idx
, i
, j
, n
, m
;
105 n
= nr_elems
/ num_possible_cpus();
106 m
= nr_elems
% num_possible_cpus();
109 for_each_possible_cpu(cpu
) {
110 head
= per_cpu_ptr(s
->freelist
, cpu
);
111 j
= n
+ (cpu_idx
< m
? 1 : 0);
112 for (i
= 0; i
< j
; i
++) {
113 /* No locking required as this is not visible yet. */
114 pcpu_freelist_push_node(head
, buf
);
121 static struct pcpu_freelist_node
*___pcpu_freelist_pop(struct pcpu_freelist
*s
)
123 struct pcpu_freelist_head
*head
;
124 struct pcpu_freelist_node
*node
;
127 for_each_cpu_wrap(cpu
, cpu_possible_mask
, raw_smp_processor_id()) {
128 head
= per_cpu_ptr(s
->freelist
, cpu
);
129 if (!READ_ONCE(head
->first
))
131 raw_spin_lock(&head
->lock
);
134 WRITE_ONCE(head
->first
, node
->next
);
135 raw_spin_unlock(&head
->lock
);
138 raw_spin_unlock(&head
->lock
);
141 /* per cpu lists are all empty, try extralist */
142 if (!READ_ONCE(s
->extralist
.first
))
144 raw_spin_lock(&s
->extralist
.lock
);
145 node
= s
->extralist
.first
;
147 WRITE_ONCE(s
->extralist
.first
, node
->next
);
148 raw_spin_unlock(&s
->extralist
.lock
);
152 static struct pcpu_freelist_node
*
153 ___pcpu_freelist_pop_nmi(struct pcpu_freelist
*s
)
155 struct pcpu_freelist_head
*head
;
156 struct pcpu_freelist_node
*node
;
159 for_each_cpu_wrap(cpu
, cpu_possible_mask
, raw_smp_processor_id()) {
160 head
= per_cpu_ptr(s
->freelist
, cpu
);
161 if (!READ_ONCE(head
->first
))
163 if (raw_spin_trylock(&head
->lock
)) {
166 WRITE_ONCE(head
->first
, node
->next
);
167 raw_spin_unlock(&head
->lock
);
170 raw_spin_unlock(&head
->lock
);
174 /* cannot pop from per cpu lists, try extralist */
175 if (!READ_ONCE(s
->extralist
.first
) || !raw_spin_trylock(&s
->extralist
.lock
))
177 node
= s
->extralist
.first
;
179 WRITE_ONCE(s
->extralist
.first
, node
->next
);
180 raw_spin_unlock(&s
->extralist
.lock
);
184 struct pcpu_freelist_node
*__pcpu_freelist_pop(struct pcpu_freelist
*s
)
187 return ___pcpu_freelist_pop_nmi(s
);
188 return ___pcpu_freelist_pop(s
);
191 struct pcpu_freelist_node
*pcpu_freelist_pop(struct pcpu_freelist
*s
)
193 struct pcpu_freelist_node
*ret
;
196 local_irq_save(flags
);
197 ret
= __pcpu_freelist_pop(s
);
198 local_irq_restore(flags
);