]>
Commit | Line | Data |
---|---|---|
16295bec SK |
1 | /* |
2 | * padata.c - generic interface to process data streams in parallel | |
3 | * | |
107f8bda SK |
4 | * See Documentation/padata.txt for an api documentation. |
5 | * | |
16295bec SK |
6 | * Copyright (C) 2008, 2009 secunet Security Networks AG |
7 | * Copyright (C) 2008, 2009 Steffen Klassert <steffen.klassert@secunet.com> | |
8 | * | |
9 | * This program is free software; you can redistribute it and/or modify it | |
10 | * under the terms and conditions of the GNU General Public License, | |
11 | * version 2, as published by the Free Software Foundation. | |
12 | * | |
13 | * This program is distributed in the hope it will be useful, but WITHOUT | |
14 | * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or | |
15 | * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for | |
16 | * more details. | |
17 | * | |
18 | * You should have received a copy of the GNU General Public License along with | |
19 | * this program; if not, write to the Free Software Foundation, Inc., | |
20 | * 51 Franklin St - Fifth Floor, Boston, MA 02110-1301 USA. | |
21 | */ | |
22 | ||
9984de1a | 23 | #include <linux/export.h> |
16295bec SK |
24 | #include <linux/cpumask.h> |
25 | #include <linux/err.h> | |
26 | #include <linux/cpu.h> | |
27 | #include <linux/padata.h> | |
28 | #include <linux/mutex.h> | |
29 | #include <linux/sched.h> | |
5a0e3ad6 | 30 | #include <linux/slab.h> |
5e017dc3 | 31 | #include <linux/sysfs.h> |
16295bec | 32 | #include <linux/rcupdate.h> |
30e92153 | 33 | #include <linux/module.h> |
16295bec | 34 | |
97e3d94a | 35 | #define MAX_OBJ_NUM 1000 |
16295bec SK |
36 | |
37 | static int padata_index_to_cpu(struct parallel_data *pd, int cpu_index) | |
38 | { | |
39 | int cpu, target_cpu; | |
40 | ||
e15bacbe | 41 | target_cpu = cpumask_first(pd->cpumask.pcpu); |
16295bec | 42 | for (cpu = 0; cpu < cpu_index; cpu++) |
e15bacbe | 43 | target_cpu = cpumask_next(target_cpu, pd->cpumask.pcpu); |
16295bec SK |
44 | |
45 | return target_cpu; | |
46 | } | |
47 | ||
2dc9b5db | 48 | static int padata_cpu_hash(struct parallel_data *pd) |
16295bec | 49 | { |
0b6b098e | 50 | unsigned int seq_nr; |
16295bec | 51 | int cpu_index; |
16295bec SK |
52 | |
53 | /* | |
54 | * Hash the sequence numbers to the cpus by taking | |
55 | * seq_nr mod. number of cpus in use. | |
56 | */ | |
2dc9b5db | 57 | |
0b6b098e MK |
58 | seq_nr = atomic_inc_return(&pd->seq_nr); |
59 | cpu_index = seq_nr % cpumask_weight(pd->cpumask.pcpu); | |
16295bec SK |
60 | |
61 | return padata_index_to_cpu(pd, cpu_index); | |
62 | } | |
63 | ||
e15bacbe | 64 | static void padata_parallel_worker(struct work_struct *parallel_work) |
16295bec | 65 | { |
e15bacbe | 66 | struct padata_parallel_queue *pqueue; |
16295bec SK |
67 | LIST_HEAD(local_list); |
68 | ||
69 | local_bh_disable(); | |
e15bacbe DK |
70 | pqueue = container_of(parallel_work, |
71 | struct padata_parallel_queue, work); | |
16295bec | 72 | |
e15bacbe DK |
73 | spin_lock(&pqueue->parallel.lock); |
74 | list_replace_init(&pqueue->parallel.list, &local_list); | |
75 | spin_unlock(&pqueue->parallel.lock); | |
16295bec SK |
76 | |
77 | while (!list_empty(&local_list)) { | |
78 | struct padata_priv *padata; | |
79 | ||
80 | padata = list_entry(local_list.next, | |
81 | struct padata_priv, list); | |
82 | ||
83 | list_del_init(&padata->list); | |
84 | ||
85 | padata->parallel(padata); | |
86 | } | |
87 | ||
88 | local_bh_enable(); | |
89 | } | |
90 | ||
0198ffd1 | 91 | /** |
16295bec SK |
92 | * padata_do_parallel - padata parallelization function |
93 | * | |
94 | * @pinst: padata instance | |
95 | * @padata: object to be parallelized | |
96 | * @cb_cpu: cpu the serialization callback function will run on, | |
e15bacbe | 97 | * must be in the serial cpumask of padata(i.e. cpumask.cbcpu). |
16295bec SK |
98 | * |
99 | * The parallelization callback function will run with BHs off. | |
100 | * Note: Every object which is parallelized by padata_do_parallel | |
101 | * must be seen by padata_do_serial. | |
102 | */ | |
103 | int padata_do_parallel(struct padata_instance *pinst, | |
104 | struct padata_priv *padata, int cb_cpu) | |
105 | { | |
106 | int target_cpu, err; | |
e15bacbe | 107 | struct padata_parallel_queue *queue; |
16295bec SK |
108 | struct parallel_data *pd; |
109 | ||
110 | rcu_read_lock_bh(); | |
111 | ||
c0e656b7 | 112 | pd = rcu_dereference_bh(pinst->pd); |
16295bec | 113 | |
83f619f3 | 114 | err = -EINVAL; |
7424713b | 115 | if (!(pinst->flags & PADATA_INIT) || pinst->flags & PADATA_INVALID) |
16295bec SK |
116 | goto out; |
117 | ||
e15bacbe | 118 | if (!cpumask_test_cpu(cb_cpu, pd->cpumask.cbcpu)) |
16295bec SK |
119 | goto out; |
120 | ||
121 | err = -EBUSY; | |
122 | if ((pinst->flags & PADATA_RESET)) | |
123 | goto out; | |
124 | ||
125 | if (atomic_read(&pd->refcnt) >= MAX_OBJ_NUM) | |
126 | goto out; | |
127 | ||
83f619f3 | 128 | err = 0; |
16295bec SK |
129 | atomic_inc(&pd->refcnt); |
130 | padata->pd = pd; | |
131 | padata->cb_cpu = cb_cpu; | |
132 | ||
2dc9b5db | 133 | target_cpu = padata_cpu_hash(pd); |
350ef88e | 134 | padata->cpu = target_cpu; |
e15bacbe | 135 | queue = per_cpu_ptr(pd->pqueue, target_cpu); |
16295bec SK |
136 | |
137 | spin_lock(&queue->parallel.lock); | |
138 | list_add_tail(&padata->list, &queue->parallel.list); | |
139 | spin_unlock(&queue->parallel.lock); | |
140 | ||
e15bacbe | 141 | queue_work_on(target_cpu, pinst->wq, &queue->work); |
16295bec SK |
142 | |
143 | out: | |
144 | rcu_read_unlock_bh(); | |
145 | ||
146 | return err; | |
147 | } | |
148 | EXPORT_SYMBOL(padata_do_parallel); | |
149 | ||
0198ffd1 SK |
150 | /* |
151 | * padata_get_next - Get the next object that needs serialization. | |
152 | * | |
153 | * Return values are: | |
154 | * | |
155 | * A pointer to the control struct of the next object that needs | |
156 | * serialization, if present in one of the percpu reorder queues. | |
157 | * | |
0198ffd1 SK |
158 | * -EINPROGRESS, if the next object that needs serialization will |
159 | * be parallel processed by another cpu and is not yet present in | |
160 | * the cpu's reorder queue. | |
161 | * | |
162 | * -ENODATA, if this cpu has to do the parallel processing for | |
163 | * the next object. | |
164 | */ | |
16295bec SK |
165 | static struct padata_priv *padata_get_next(struct parallel_data *pd) |
166 | { | |
5f1a8c1b | 167 | int cpu, num_cpus; |
2dc9b5db | 168 | unsigned int next_nr, next_index; |
f0fcf200 | 169 | struct padata_parallel_queue *next_queue; |
16295bec SK |
170 | struct padata_priv *padata; |
171 | struct padata_list *reorder; | |
172 | ||
e15bacbe | 173 | num_cpus = cpumask_weight(pd->cpumask.pcpu); |
16295bec | 174 | |
5f1a8c1b SK |
175 | /* |
176 | * Calculate the percpu reorder queue and the sequence | |
177 | * number of the next object. | |
178 | */ | |
179 | next_nr = pd->processed; | |
180 | next_index = next_nr % num_cpus; | |
181 | cpu = padata_index_to_cpu(pd, next_index); | |
e15bacbe | 182 | next_queue = per_cpu_ptr(pd->pqueue, cpu); |
5f1a8c1b | 183 | |
16295bec SK |
184 | reorder = &next_queue->reorder; |
185 | ||
de5540d0 | 186 | spin_lock(&reorder->lock); |
16295bec SK |
187 | if (!list_empty(&reorder->list)) { |
188 | padata = list_entry(reorder->list.next, | |
189 | struct padata_priv, list); | |
190 | ||
16295bec SK |
191 | list_del_init(&padata->list); |
192 | atomic_dec(&pd->reorder_objects); | |
16295bec | 193 | |
5f1a8c1b | 194 | pd->processed++; |
16295bec | 195 | |
de5540d0 | 196 | spin_unlock(&reorder->lock); |
16295bec SK |
197 | goto out; |
198 | } | |
de5540d0 | 199 | spin_unlock(&reorder->lock); |
16295bec | 200 | |
f0fcf200 | 201 | if (__this_cpu_read(pd->pqueue->cpu_index) == next_queue->cpu_index) { |
16295bec SK |
202 | padata = ERR_PTR(-ENODATA); |
203 | goto out; | |
204 | } | |
205 | ||
206 | padata = ERR_PTR(-EINPROGRESS); | |
207 | out: | |
208 | return padata; | |
209 | } | |
210 | ||
211 | static void padata_reorder(struct parallel_data *pd) | |
212 | { | |
3047817b | 213 | int cb_cpu; |
16295bec | 214 | struct padata_priv *padata; |
e15bacbe | 215 | struct padata_serial_queue *squeue; |
16295bec SK |
216 | struct padata_instance *pinst = pd->pinst; |
217 | ||
0198ffd1 SK |
218 | /* |
219 | * We need to ensure that only one cpu can work on dequeueing of | |
220 | * the reorder queue the time. Calculating in which percpu reorder | |
221 | * queue the next object will arrive takes some time. A spinlock | |
222 | * would be highly contended. Also it is not clear in which order | |
223 | * the objects arrive to the reorder queues. So a cpu could wait to | |
224 | * get the lock just to notice that there is nothing to do at the | |
225 | * moment. Therefore we use a trylock and let the holder of the lock | |
226 | * care for all the objects enqueued during the holdtime of the lock. | |
227 | */ | |
16295bec | 228 | if (!spin_trylock_bh(&pd->lock)) |
d46a5ac7 | 229 | return; |
16295bec SK |
230 | |
231 | while (1) { | |
232 | padata = padata_get_next(pd); | |
233 | ||
0198ffd1 | 234 | /* |
69b34844 JD |
235 | * If the next object that needs serialization is parallel |
236 | * processed by another cpu and is still on it's way to the | |
237 | * cpu's reorder queue, nothing to do for now. | |
0198ffd1 | 238 | */ |
69b34844 | 239 | if (PTR_ERR(padata) == -EINPROGRESS) |
16295bec SK |
240 | break; |
241 | ||
0198ffd1 SK |
242 | /* |
243 | * This cpu has to do the parallel processing of the next | |
244 | * object. It's waiting in the cpu's parallelization queue, | |
25985edc | 245 | * so exit immediately. |
0198ffd1 | 246 | */ |
16295bec | 247 | if (PTR_ERR(padata) == -ENODATA) { |
d46a5ac7 | 248 | del_timer(&pd->timer); |
16295bec | 249 | spin_unlock_bh(&pd->lock); |
d46a5ac7 | 250 | return; |
16295bec SK |
251 | } |
252 | ||
3047817b SK |
253 | cb_cpu = padata->cb_cpu; |
254 | squeue = per_cpu_ptr(pd->squeue, cb_cpu); | |
16295bec | 255 | |
e15bacbe DK |
256 | spin_lock(&squeue->serial.lock); |
257 | list_add_tail(&padata->list, &squeue->serial.list); | |
258 | spin_unlock(&squeue->serial.lock); | |
16295bec | 259 | |
3047817b | 260 | queue_work_on(cb_cpu, pinst->wq, &squeue->work); |
16295bec SK |
261 | } |
262 | ||
263 | spin_unlock_bh(&pd->lock); | |
264 | ||
0198ffd1 SK |
265 | /* |
266 | * The next object that needs serialization might have arrived to | |
267 | * the reorder queues in the meantime, we will be called again | |
25985edc | 268 | * from the timer function if no one else cares for it. |
0198ffd1 | 269 | */ |
d46a5ac7 SK |
270 | if (atomic_read(&pd->reorder_objects) |
271 | && !(pinst->flags & PADATA_RESET)) | |
272 | mod_timer(&pd->timer, jiffies + HZ); | |
273 | else | |
274 | del_timer(&pd->timer); | |
16295bec | 275 | |
16295bec SK |
276 | return; |
277 | } | |
278 | ||
cf5868c8 MK |
279 | static void invoke_padata_reorder(struct work_struct *work) |
280 | { | |
281 | struct padata_parallel_queue *pqueue; | |
282 | struct parallel_data *pd; | |
283 | ||
284 | local_bh_disable(); | |
285 | pqueue = container_of(work, struct padata_parallel_queue, reorder_work); | |
286 | pd = pqueue->pd; | |
287 | padata_reorder(pd); | |
288 | local_bh_enable(); | |
289 | } | |
290 | ||
e99e88a9 | 291 | static void padata_reorder_timer(struct timer_list *t) |
d46a5ac7 | 292 | { |
e99e88a9 | 293 | struct parallel_data *pd = from_timer(pd, t, timer); |
cf5868c8 MK |
294 | unsigned int weight; |
295 | int target_cpu, cpu; | |
d46a5ac7 | 296 | |
cf5868c8 MK |
297 | cpu = get_cpu(); |
298 | ||
299 | /* We don't lock pd here to not interfere with parallel processing | |
300 | * padata_reorder() calls on other CPUs. We just need any CPU out of | |
301 | * the cpumask.pcpu set. It would be nice if it's the right one but | |
302 | * it doesn't matter if we're off to the next one by using an outdated | |
303 | * pd->processed value. | |
304 | */ | |
305 | weight = cpumask_weight(pd->cpumask.pcpu); | |
306 | target_cpu = padata_index_to_cpu(pd, pd->processed % weight); | |
307 | ||
308 | /* ensure to call the reorder callback on the correct CPU */ | |
309 | if (cpu != target_cpu) { | |
310 | struct padata_parallel_queue *pqueue; | |
311 | struct padata_instance *pinst; | |
312 | ||
313 | /* The timer function is serialized wrt itself -- no locking | |
314 | * needed. | |
315 | */ | |
316 | pinst = pd->pinst; | |
317 | pqueue = per_cpu_ptr(pd->pqueue, target_cpu); | |
318 | queue_work_on(target_cpu, pinst->wq, &pqueue->reorder_work); | |
319 | } else { | |
320 | padata_reorder(pd); | |
321 | } | |
322 | ||
323 | put_cpu(); | |
d46a5ac7 SK |
324 | } |
325 | ||
e15bacbe | 326 | static void padata_serial_worker(struct work_struct *serial_work) |
16295bec | 327 | { |
e15bacbe | 328 | struct padata_serial_queue *squeue; |
16295bec SK |
329 | struct parallel_data *pd; |
330 | LIST_HEAD(local_list); | |
331 | ||
332 | local_bh_disable(); | |
e15bacbe DK |
333 | squeue = container_of(serial_work, struct padata_serial_queue, work); |
334 | pd = squeue->pd; | |
16295bec | 335 | |
e15bacbe DK |
336 | spin_lock(&squeue->serial.lock); |
337 | list_replace_init(&squeue->serial.list, &local_list); | |
338 | spin_unlock(&squeue->serial.lock); | |
16295bec SK |
339 | |
340 | while (!list_empty(&local_list)) { | |
341 | struct padata_priv *padata; | |
342 | ||
343 | padata = list_entry(local_list.next, | |
344 | struct padata_priv, list); | |
345 | ||
346 | list_del_init(&padata->list); | |
347 | ||
348 | padata->serial(padata); | |
349 | atomic_dec(&pd->refcnt); | |
350 | } | |
351 | local_bh_enable(); | |
352 | } | |
353 | ||
0198ffd1 | 354 | /** |
16295bec SK |
355 | * padata_do_serial - padata serialization function |
356 | * | |
357 | * @padata: object to be serialized. | |
358 | * | |
359 | * padata_do_serial must be called for every parallelized object. | |
360 | * The serialization callback function will run with BHs off. | |
361 | */ | |
362 | void padata_do_serial(struct padata_priv *padata) | |
363 | { | |
364 | int cpu; | |
e15bacbe | 365 | struct padata_parallel_queue *pqueue; |
16295bec | 366 | struct parallel_data *pd; |
350ef88e | 367 | int reorder_via_wq = 0; |
16295bec SK |
368 | |
369 | pd = padata->pd; | |
370 | ||
371 | cpu = get_cpu(); | |
350ef88e MK |
372 | |
373 | /* We need to run on the same CPU padata_do_parallel(.., padata, ..) | |
374 | * was called on -- or, at least, enqueue the padata object into the | |
375 | * correct per-cpu queue. | |
376 | */ | |
377 | if (cpu != padata->cpu) { | |
378 | reorder_via_wq = 1; | |
379 | cpu = padata->cpu; | |
380 | } | |
381 | ||
e15bacbe | 382 | pqueue = per_cpu_ptr(pd->pqueue, cpu); |
16295bec | 383 | |
e15bacbe | 384 | spin_lock(&pqueue->reorder.lock); |
16295bec | 385 | atomic_inc(&pd->reorder_objects); |
e15bacbe DK |
386 | list_add_tail(&padata->list, &pqueue->reorder.list); |
387 | spin_unlock(&pqueue->reorder.lock); | |
16295bec SK |
388 | |
389 | put_cpu(); | |
390 | ||
350ef88e MK |
391 | /* If we're running on the wrong CPU, call padata_reorder() via a |
392 | * kernel worker. | |
393 | */ | |
394 | if (reorder_via_wq) | |
395 | queue_work_on(cpu, pd->pinst->wq, &pqueue->reorder_work); | |
396 | else | |
397 | padata_reorder(pd); | |
16295bec SK |
398 | } |
399 | EXPORT_SYMBOL(padata_do_serial); | |
400 | ||
e15bacbe DK |
401 | static int padata_setup_cpumasks(struct parallel_data *pd, |
402 | const struct cpumask *pcpumask, | |
403 | const struct cpumask *cbcpumask) | |
16295bec | 404 | { |
e15bacbe DK |
405 | if (!alloc_cpumask_var(&pd->cpumask.pcpu, GFP_KERNEL)) |
406 | return -ENOMEM; | |
16295bec | 407 | |
13614e0f | 408 | cpumask_and(pd->cpumask.pcpu, pcpumask, cpu_online_mask); |
e15bacbe | 409 | if (!alloc_cpumask_var(&pd->cpumask.cbcpu, GFP_KERNEL)) { |
07a77929 | 410 | free_cpumask_var(pd->cpumask.pcpu); |
e15bacbe DK |
411 | return -ENOMEM; |
412 | } | |
16295bec | 413 | |
13614e0f | 414 | cpumask_and(pd->cpumask.cbcpu, cbcpumask, cpu_online_mask); |
e15bacbe DK |
415 | return 0; |
416 | } | |
16295bec | 417 | |
e15bacbe DK |
418 | static void __padata_list_init(struct padata_list *pd_list) |
419 | { | |
420 | INIT_LIST_HEAD(&pd_list->list); | |
421 | spin_lock_init(&pd_list->lock); | |
422 | } | |
16295bec | 423 | |
e15bacbe DK |
424 | /* Initialize all percpu queues used by serial workers */ |
425 | static void padata_init_squeues(struct parallel_data *pd) | |
426 | { | |
427 | int cpu; | |
428 | struct padata_serial_queue *squeue; | |
7b389b2c | 429 | |
e15bacbe DK |
430 | for_each_cpu(cpu, pd->cpumask.cbcpu) { |
431 | squeue = per_cpu_ptr(pd->squeue, cpu); | |
432 | squeue->pd = pd; | |
433 | __padata_list_init(&squeue->serial); | |
434 | INIT_WORK(&squeue->work, padata_serial_worker); | |
435 | } | |
436 | } | |
16295bec | 437 | |
e15bacbe DK |
438 | /* Initialize all percpu queues used by parallel workers */ |
439 | static void padata_init_pqueues(struct parallel_data *pd) | |
440 | { | |
2dc9b5db | 441 | int cpu_index, cpu; |
e15bacbe | 442 | struct padata_parallel_queue *pqueue; |
16295bec | 443 | |
e15bacbe | 444 | cpu_index = 0; |
1bd845bc | 445 | for_each_possible_cpu(cpu) { |
e15bacbe | 446 | pqueue = per_cpu_ptr(pd->pqueue, cpu); |
1bd845bc MK |
447 | |
448 | if (!cpumask_test_cpu(cpu, pd->cpumask.pcpu)) { | |
449 | pqueue->cpu_index = -1; | |
450 | continue; | |
451 | } | |
452 | ||
e15bacbe DK |
453 | pqueue->pd = pd; |
454 | pqueue->cpu_index = cpu_index; | |
7b389b2c | 455 | cpu_index++; |
16295bec | 456 | |
e15bacbe DK |
457 | __padata_list_init(&pqueue->reorder); |
458 | __padata_list_init(&pqueue->parallel); | |
459 | INIT_WORK(&pqueue->work, padata_parallel_worker); | |
cf5868c8 | 460 | INIT_WORK(&pqueue->reorder_work, invoke_padata_reorder); |
e15bacbe | 461 | atomic_set(&pqueue->num_obj, 0); |
16295bec | 462 | } |
e15bacbe | 463 | } |
16295bec | 464 | |
e15bacbe DK |
465 | /* Allocate and initialize the internal cpumask dependend resources. */ |
466 | static struct parallel_data *padata_alloc_pd(struct padata_instance *pinst, | |
467 | const struct cpumask *pcpumask, | |
468 | const struct cpumask *cbcpumask) | |
469 | { | |
470 | struct parallel_data *pd; | |
16295bec | 471 | |
e15bacbe DK |
472 | pd = kzalloc(sizeof(struct parallel_data), GFP_KERNEL); |
473 | if (!pd) | |
474 | goto err; | |
16295bec | 475 | |
e15bacbe DK |
476 | pd->pqueue = alloc_percpu(struct padata_parallel_queue); |
477 | if (!pd->pqueue) | |
478 | goto err_free_pd; | |
479 | ||
480 | pd->squeue = alloc_percpu(struct padata_serial_queue); | |
481 | if (!pd->squeue) | |
482 | goto err_free_pqueue; | |
483 | if (padata_setup_cpumasks(pd, pcpumask, cbcpumask) < 0) | |
484 | goto err_free_squeue; | |
16295bec | 485 | |
e15bacbe DK |
486 | padata_init_pqueues(pd); |
487 | padata_init_squeues(pd); | |
e99e88a9 | 488 | timer_setup(&pd->timer, padata_reorder_timer, 0); |
0b6b098e | 489 | atomic_set(&pd->seq_nr, -1); |
16295bec SK |
490 | atomic_set(&pd->reorder_objects, 0); |
491 | atomic_set(&pd->refcnt, 0); | |
492 | pd->pinst = pinst; | |
493 | spin_lock_init(&pd->lock); | |
494 | ||
495 | return pd; | |
496 | ||
e15bacbe DK |
497 | err_free_squeue: |
498 | free_percpu(pd->squeue); | |
499 | err_free_pqueue: | |
500 | free_percpu(pd->pqueue); | |
16295bec SK |
501 | err_free_pd: |
502 | kfree(pd); | |
503 | err: | |
504 | return NULL; | |
505 | } | |
506 | ||
507 | static void padata_free_pd(struct parallel_data *pd) | |
508 | { | |
e15bacbe DK |
509 | free_cpumask_var(pd->cpumask.pcpu); |
510 | free_cpumask_var(pd->cpumask.cbcpu); | |
511 | free_percpu(pd->pqueue); | |
512 | free_percpu(pd->squeue); | |
16295bec SK |
513 | kfree(pd); |
514 | } | |
515 | ||
0198ffd1 | 516 | /* Flush all objects out of the padata queues. */ |
2b73b07a SK |
517 | static void padata_flush_queues(struct parallel_data *pd) |
518 | { | |
519 | int cpu; | |
e15bacbe DK |
520 | struct padata_parallel_queue *pqueue; |
521 | struct padata_serial_queue *squeue; | |
2b73b07a | 522 | |
e15bacbe DK |
523 | for_each_cpu(cpu, pd->cpumask.pcpu) { |
524 | pqueue = per_cpu_ptr(pd->pqueue, cpu); | |
525 | flush_work(&pqueue->work); | |
2b73b07a SK |
526 | } |
527 | ||
528 | del_timer_sync(&pd->timer); | |
529 | ||
530 | if (atomic_read(&pd->reorder_objects)) | |
531 | padata_reorder(pd); | |
532 | ||
e15bacbe DK |
533 | for_each_cpu(cpu, pd->cpumask.cbcpu) { |
534 | squeue = per_cpu_ptr(pd->squeue, cpu); | |
535 | flush_work(&squeue->work); | |
2b73b07a SK |
536 | } |
537 | ||
538 | BUG_ON(atomic_read(&pd->refcnt) != 0); | |
539 | } | |
540 | ||
4c879170 SK |
541 | static void __padata_start(struct padata_instance *pinst) |
542 | { | |
543 | pinst->flags |= PADATA_INIT; | |
544 | } | |
545 | ||
ee836555 SK |
546 | static void __padata_stop(struct padata_instance *pinst) |
547 | { | |
548 | if (!(pinst->flags & PADATA_INIT)) | |
549 | return; | |
550 | ||
551 | pinst->flags &= ~PADATA_INIT; | |
552 | ||
553 | synchronize_rcu(); | |
554 | ||
555 | get_online_cpus(); | |
556 | padata_flush_queues(pinst->pd); | |
557 | put_online_cpus(); | |
558 | } | |
559 | ||
25985edc | 560 | /* Replace the internal control structure with a new one. */ |
16295bec SK |
561 | static void padata_replace(struct padata_instance *pinst, |
562 | struct parallel_data *pd_new) | |
563 | { | |
564 | struct parallel_data *pd_old = pinst->pd; | |
e15bacbe | 565 | int notification_mask = 0; |
16295bec SK |
566 | |
567 | pinst->flags |= PADATA_RESET; | |
568 | ||
569 | rcu_assign_pointer(pinst->pd, pd_new); | |
570 | ||
571 | synchronize_rcu(); | |
572 | ||
e15bacbe DK |
573 | if (!cpumask_equal(pd_old->cpumask.pcpu, pd_new->cpumask.pcpu)) |
574 | notification_mask |= PADATA_CPU_PARALLEL; | |
575 | if (!cpumask_equal(pd_old->cpumask.cbcpu, pd_new->cpumask.cbcpu)) | |
576 | notification_mask |= PADATA_CPU_SERIAL; | |
577 | ||
2b73b07a | 578 | padata_flush_queues(pd_old); |
16295bec SK |
579 | padata_free_pd(pd_old); |
580 | ||
e15bacbe DK |
581 | if (notification_mask) |
582 | blocking_notifier_call_chain(&pinst->cpumask_change_notifier, | |
c635696c SK |
583 | notification_mask, |
584 | &pd_new->cpumask); | |
16295bec SK |
585 | |
586 | pinst->flags &= ~PADATA_RESET; | |
587 | } | |
588 | ||
0198ffd1 | 589 | /** |
e15bacbe DK |
590 | * padata_register_cpumask_notifier - Registers a notifier that will be called |
591 | * if either pcpu or cbcpu or both cpumasks change. | |
16295bec | 592 | * |
e15bacbe DK |
593 | * @pinst: A poineter to padata instance |
594 | * @nblock: A pointer to notifier block. | |
16295bec | 595 | */ |
e15bacbe DK |
596 | int padata_register_cpumask_notifier(struct padata_instance *pinst, |
597 | struct notifier_block *nblock) | |
16295bec | 598 | { |
e15bacbe DK |
599 | return blocking_notifier_chain_register(&pinst->cpumask_change_notifier, |
600 | nblock); | |
601 | } | |
602 | EXPORT_SYMBOL(padata_register_cpumask_notifier); | |
603 | ||
604 | /** | |
605 | * padata_unregister_cpumask_notifier - Unregisters cpumask notifier | |
606 | * registered earlier using padata_register_cpumask_notifier | |
607 | * | |
608 | * @pinst: A pointer to data instance. | |
609 | * @nlock: A pointer to notifier block. | |
610 | */ | |
611 | int padata_unregister_cpumask_notifier(struct padata_instance *pinst, | |
612 | struct notifier_block *nblock) | |
613 | { | |
614 | return blocking_notifier_chain_unregister( | |
615 | &pinst->cpumask_change_notifier, | |
616 | nblock); | |
617 | } | |
618 | EXPORT_SYMBOL(padata_unregister_cpumask_notifier); | |
619 | ||
620 | ||
33e54450 SK |
621 | /* If cpumask contains no active cpu, we mark the instance as invalid. */ |
622 | static bool padata_validate_cpumask(struct padata_instance *pinst, | |
623 | const struct cpumask *cpumask) | |
624 | { | |
13614e0f | 625 | if (!cpumask_intersects(cpumask, cpu_online_mask)) { |
33e54450 SK |
626 | pinst->flags |= PADATA_INVALID; |
627 | return false; | |
628 | } | |
629 | ||
630 | pinst->flags &= ~PADATA_INVALID; | |
631 | return true; | |
632 | } | |
633 | ||
65ff577e SK |
634 | static int __padata_set_cpumasks(struct padata_instance *pinst, |
635 | cpumask_var_t pcpumask, | |
636 | cpumask_var_t cbcpumask) | |
637 | { | |
638 | int valid; | |
16295bec | 639 | struct parallel_data *pd; |
65ff577e SK |
640 | |
641 | valid = padata_validate_cpumask(pinst, pcpumask); | |
642 | if (!valid) { | |
643 | __padata_stop(pinst); | |
644 | goto out_replace; | |
645 | } | |
646 | ||
647 | valid = padata_validate_cpumask(pinst, cbcpumask); | |
648 | if (!valid) | |
649 | __padata_stop(pinst); | |
650 | ||
651 | out_replace: | |
652 | pd = padata_alloc_pd(pinst, pcpumask, cbcpumask); | |
653 | if (!pd) | |
654 | return -ENOMEM; | |
655 | ||
656 | cpumask_copy(pinst->cpumask.pcpu, pcpumask); | |
657 | cpumask_copy(pinst->cpumask.cbcpu, cbcpumask); | |
658 | ||
659 | padata_replace(pinst, pd); | |
660 | ||
661 | if (valid) | |
662 | __padata_start(pinst); | |
663 | ||
664 | return 0; | |
665 | } | |
666 | ||
e15bacbe DK |
667 | /** |
668 | * padata_set_cpumask: Sets specified by @cpumask_type cpumask to the value | |
669 | * equivalent to @cpumask. | |
16295bec SK |
670 | * |
671 | * @pinst: padata instance | |
e15bacbe DK |
672 | * @cpumask_type: PADATA_CPU_SERIAL or PADATA_CPU_PARALLEL corresponding |
673 | * to parallel and serial cpumasks respectively. | |
16295bec SK |
674 | * @cpumask: the cpumask to use |
675 | */ | |
e15bacbe DK |
676 | int padata_set_cpumask(struct padata_instance *pinst, int cpumask_type, |
677 | cpumask_var_t cpumask) | |
678 | { | |
679 | struct cpumask *serial_mask, *parallel_mask; | |
65ff577e SK |
680 | int err = -EINVAL; |
681 | ||
682 | mutex_lock(&pinst->lock); | |
6751fb3c SK |
683 | get_online_cpus(); |
684 | ||
e15bacbe DK |
685 | switch (cpumask_type) { |
686 | case PADATA_CPU_PARALLEL: | |
687 | serial_mask = pinst->cpumask.cbcpu; | |
688 | parallel_mask = cpumask; | |
689 | break; | |
690 | case PADATA_CPU_SERIAL: | |
691 | parallel_mask = pinst->cpumask.pcpu; | |
692 | serial_mask = cpumask; | |
693 | break; | |
694 | default: | |
65ff577e | 695 | goto out; |
16295bec SK |
696 | } |
697 | ||
65ff577e | 698 | err = __padata_set_cpumasks(pinst, parallel_mask, serial_mask); |
16295bec SK |
699 | |
700 | out: | |
6751fb3c | 701 | put_online_cpus(); |
16295bec SK |
702 | mutex_unlock(&pinst->lock); |
703 | ||
704 | return err; | |
705 | } | |
706 | EXPORT_SYMBOL(padata_set_cpumask); | |
707 | ||
19d795b6 AB |
708 | /** |
709 | * padata_start - start the parallel processing | |
710 | * | |
711 | * @pinst: padata instance to start | |
712 | */ | |
713 | int padata_start(struct padata_instance *pinst) | |
714 | { | |
715 | int err = 0; | |
716 | ||
717 | mutex_lock(&pinst->lock); | |
718 | ||
719 | if (pinst->flags & PADATA_INVALID) | |
720 | err = -EINVAL; | |
721 | ||
722 | __padata_start(pinst); | |
723 | ||
724 | mutex_unlock(&pinst->lock); | |
725 | ||
726 | return err; | |
727 | } | |
728 | EXPORT_SYMBOL(padata_start); | |
729 | ||
730 | /** | |
731 | * padata_stop - stop the parallel processing | |
732 | * | |
733 | * @pinst: padata instance to stop | |
734 | */ | |
735 | void padata_stop(struct padata_instance *pinst) | |
736 | { | |
737 | mutex_lock(&pinst->lock); | |
738 | __padata_stop(pinst); | |
739 | mutex_unlock(&pinst->lock); | |
740 | } | |
741 | EXPORT_SYMBOL(padata_stop); | |
742 | ||
743 | #ifdef CONFIG_HOTPLUG_CPU | |
744 | ||
16295bec SK |
745 | static int __padata_add_cpu(struct padata_instance *pinst, int cpu) |
746 | { | |
747 | struct parallel_data *pd; | |
748 | ||
13614e0f | 749 | if (cpumask_test_cpu(cpu, cpu_online_mask)) { |
e15bacbe DK |
750 | pd = padata_alloc_pd(pinst, pinst->cpumask.pcpu, |
751 | pinst->cpumask.cbcpu); | |
16295bec SK |
752 | if (!pd) |
753 | return -ENOMEM; | |
754 | ||
755 | padata_replace(pinst, pd); | |
33e54450 | 756 | |
e15bacbe DK |
757 | if (padata_validate_cpumask(pinst, pinst->cpumask.pcpu) && |
758 | padata_validate_cpumask(pinst, pinst->cpumask.cbcpu)) | |
33e54450 | 759 | __padata_start(pinst); |
16295bec SK |
760 | } |
761 | ||
762 | return 0; | |
763 | } | |
764 | ||
16295bec SK |
765 | static int __padata_remove_cpu(struct padata_instance *pinst, int cpu) |
766 | { | |
33e54450 | 767 | struct parallel_data *pd = NULL; |
16295bec SK |
768 | |
769 | if (cpumask_test_cpu(cpu, cpu_online_mask)) { | |
33e54450 | 770 | |
e15bacbe | 771 | if (!padata_validate_cpumask(pinst, pinst->cpumask.pcpu) || |
b89661df | 772 | !padata_validate_cpumask(pinst, pinst->cpumask.cbcpu)) |
33e54450 | 773 | __padata_stop(pinst); |
33e54450 | 774 | |
e15bacbe DK |
775 | pd = padata_alloc_pd(pinst, pinst->cpumask.pcpu, |
776 | pinst->cpumask.cbcpu); | |
16295bec SK |
777 | if (!pd) |
778 | return -ENOMEM; | |
779 | ||
780 | padata_replace(pinst, pd); | |
96120905 SK |
781 | |
782 | cpumask_clear_cpu(cpu, pd->cpumask.cbcpu); | |
783 | cpumask_clear_cpu(cpu, pd->cpumask.pcpu); | |
16295bec SK |
784 | } |
785 | ||
786 | return 0; | |
787 | } | |
788 | ||
e15bacbe | 789 | /** |
25985edc | 790 | * padata_remove_cpu - remove a cpu from the one or both(serial and parallel) |
e15bacbe | 791 | * padata cpumasks. |
16295bec SK |
792 | * |
793 | * @pinst: padata instance | |
794 | * @cpu: cpu to remove | |
e15bacbe DK |
795 | * @mask: bitmask specifying from which cpumask @cpu should be removed |
796 | * The @mask may be any combination of the following flags: | |
797 | * PADATA_CPU_SERIAL - serial cpumask | |
798 | * PADATA_CPU_PARALLEL - parallel cpumask | |
16295bec | 799 | */ |
e15bacbe | 800 | int padata_remove_cpu(struct padata_instance *pinst, int cpu, int mask) |
16295bec SK |
801 | { |
802 | int err; | |
803 | ||
e15bacbe DK |
804 | if (!(mask & (PADATA_CPU_SERIAL | PADATA_CPU_PARALLEL))) |
805 | return -EINVAL; | |
806 | ||
16295bec SK |
807 | mutex_lock(&pinst->lock); |
808 | ||
6751fb3c | 809 | get_online_cpus(); |
e15bacbe DK |
810 | if (mask & PADATA_CPU_SERIAL) |
811 | cpumask_clear_cpu(cpu, pinst->cpumask.cbcpu); | |
812 | if (mask & PADATA_CPU_PARALLEL) | |
813 | cpumask_clear_cpu(cpu, pinst->cpumask.pcpu); | |
814 | ||
16295bec | 815 | err = __padata_remove_cpu(pinst, cpu); |
6751fb3c | 816 | put_online_cpus(); |
16295bec SK |
817 | |
818 | mutex_unlock(&pinst->lock); | |
819 | ||
820 | return err; | |
821 | } | |
822 | EXPORT_SYMBOL(padata_remove_cpu); | |
823 | ||
e15bacbe DK |
824 | static inline int pinst_has_cpu(struct padata_instance *pinst, int cpu) |
825 | { | |
826 | return cpumask_test_cpu(cpu, pinst->cpumask.pcpu) || | |
827 | cpumask_test_cpu(cpu, pinst->cpumask.cbcpu); | |
828 | } | |
829 | ||
30e92153 | 830 | static int padata_cpu_online(unsigned int cpu, struct hlist_node *node) |
16295bec | 831 | { |
16295bec | 832 | struct padata_instance *pinst; |
30e92153 | 833 | int ret; |
16295bec | 834 | |
30e92153 SAS |
835 | pinst = hlist_entry_safe(node, struct padata_instance, node); |
836 | if (!pinst_has_cpu(pinst, cpu)) | |
837 | return 0; | |
16295bec | 838 | |
30e92153 SAS |
839 | mutex_lock(&pinst->lock); |
840 | ret = __padata_add_cpu(pinst, cpu); | |
841 | mutex_unlock(&pinst->lock); | |
842 | return ret; | |
843 | } | |
16295bec | 844 | |
30e92153 SAS |
845 | static int padata_cpu_prep_down(unsigned int cpu, struct hlist_node *node) |
846 | { | |
847 | struct padata_instance *pinst; | |
848 | int ret; | |
849 | ||
850 | pinst = hlist_entry_safe(node, struct padata_instance, node); | |
851 | if (!pinst_has_cpu(pinst, cpu)) | |
852 | return 0; | |
16295bec | 853 | |
30e92153 SAS |
854 | mutex_lock(&pinst->lock); |
855 | ret = __padata_remove_cpu(pinst, cpu); | |
856 | mutex_unlock(&pinst->lock); | |
857 | return ret; | |
16295bec | 858 | } |
30e92153 SAS |
859 | |
860 | static enum cpuhp_state hp_online; | |
e2cb2f1c | 861 | #endif |
16295bec | 862 | |
5e017dc3 DK |
863 | static void __padata_free(struct padata_instance *pinst) |
864 | { | |
865 | #ifdef CONFIG_HOTPLUG_CPU | |
30e92153 | 866 | cpuhp_state_remove_instance_nocalls(hp_online, &pinst->node); |
5e017dc3 DK |
867 | #endif |
868 | ||
869 | padata_stop(pinst); | |
870 | padata_free_pd(pinst->pd); | |
871 | free_cpumask_var(pinst->cpumask.pcpu); | |
872 | free_cpumask_var(pinst->cpumask.cbcpu); | |
873 | kfree(pinst); | |
874 | } | |
875 | ||
876 | #define kobj2pinst(_kobj) \ | |
877 | container_of(_kobj, struct padata_instance, kobj) | |
878 | #define attr2pentry(_attr) \ | |
879 | container_of(_attr, struct padata_sysfs_entry, attr) | |
880 | ||
881 | static void padata_sysfs_release(struct kobject *kobj) | |
882 | { | |
883 | struct padata_instance *pinst = kobj2pinst(kobj); | |
884 | __padata_free(pinst); | |
885 | } | |
886 | ||
887 | struct padata_sysfs_entry { | |
888 | struct attribute attr; | |
889 | ssize_t (*show)(struct padata_instance *, struct attribute *, char *); | |
890 | ssize_t (*store)(struct padata_instance *, struct attribute *, | |
891 | const char *, size_t); | |
892 | }; | |
893 | ||
894 | static ssize_t show_cpumask(struct padata_instance *pinst, | |
895 | struct attribute *attr, char *buf) | |
896 | { | |
897 | struct cpumask *cpumask; | |
898 | ssize_t len; | |
899 | ||
900 | mutex_lock(&pinst->lock); | |
901 | if (!strcmp(attr->name, "serial_cpumask")) | |
902 | cpumask = pinst->cpumask.cbcpu; | |
903 | else | |
904 | cpumask = pinst->cpumask.pcpu; | |
905 | ||
4497da6f TH |
906 | len = snprintf(buf, PAGE_SIZE, "%*pb\n", |
907 | nr_cpu_ids, cpumask_bits(cpumask)); | |
5e017dc3 | 908 | mutex_unlock(&pinst->lock); |
4497da6f | 909 | return len < PAGE_SIZE ? len : -EINVAL; |
5e017dc3 DK |
910 | } |
911 | ||
912 | static ssize_t store_cpumask(struct padata_instance *pinst, | |
913 | struct attribute *attr, | |
914 | const char *buf, size_t count) | |
915 | { | |
916 | cpumask_var_t new_cpumask; | |
917 | ssize_t ret; | |
918 | int mask_type; | |
919 | ||
920 | if (!alloc_cpumask_var(&new_cpumask, GFP_KERNEL)) | |
921 | return -ENOMEM; | |
922 | ||
923 | ret = bitmap_parse(buf, count, cpumask_bits(new_cpumask), | |
924 | nr_cpumask_bits); | |
925 | if (ret < 0) | |
926 | goto out; | |
927 | ||
928 | mask_type = !strcmp(attr->name, "serial_cpumask") ? | |
929 | PADATA_CPU_SERIAL : PADATA_CPU_PARALLEL; | |
930 | ret = padata_set_cpumask(pinst, mask_type, new_cpumask); | |
931 | if (!ret) | |
932 | ret = count; | |
933 | ||
934 | out: | |
935 | free_cpumask_var(new_cpumask); | |
936 | return ret; | |
937 | } | |
938 | ||
939 | #define PADATA_ATTR_RW(_name, _show_name, _store_name) \ | |
940 | static struct padata_sysfs_entry _name##_attr = \ | |
941 | __ATTR(_name, 0644, _show_name, _store_name) | |
942 | #define PADATA_ATTR_RO(_name, _show_name) \ | |
943 | static struct padata_sysfs_entry _name##_attr = \ | |
944 | __ATTR(_name, 0400, _show_name, NULL) | |
945 | ||
946 | PADATA_ATTR_RW(serial_cpumask, show_cpumask, store_cpumask); | |
947 | PADATA_ATTR_RW(parallel_cpumask, show_cpumask, store_cpumask); | |
948 | ||
949 | /* | |
950 | * Padata sysfs provides the following objects: | |
951 | * serial_cpumask [RW] - cpumask for serial workers | |
952 | * parallel_cpumask [RW] - cpumask for parallel workers | |
953 | */ | |
954 | static struct attribute *padata_default_attrs[] = { | |
955 | &serial_cpumask_attr.attr, | |
956 | ¶llel_cpumask_attr.attr, | |
957 | NULL, | |
958 | }; | |
959 | ||
960 | static ssize_t padata_sysfs_show(struct kobject *kobj, | |
961 | struct attribute *attr, char *buf) | |
962 | { | |
963 | struct padata_instance *pinst; | |
964 | struct padata_sysfs_entry *pentry; | |
965 | ssize_t ret = -EIO; | |
966 | ||
967 | pinst = kobj2pinst(kobj); | |
968 | pentry = attr2pentry(attr); | |
969 | if (pentry->show) | |
970 | ret = pentry->show(pinst, attr, buf); | |
971 | ||
972 | return ret; | |
973 | } | |
974 | ||
975 | static ssize_t padata_sysfs_store(struct kobject *kobj, struct attribute *attr, | |
976 | const char *buf, size_t count) | |
977 | { | |
978 | struct padata_instance *pinst; | |
979 | struct padata_sysfs_entry *pentry; | |
980 | ssize_t ret = -EIO; | |
981 | ||
982 | pinst = kobj2pinst(kobj); | |
983 | pentry = attr2pentry(attr); | |
984 | if (pentry->show) | |
985 | ret = pentry->store(pinst, attr, buf, count); | |
986 | ||
987 | return ret; | |
988 | } | |
989 | ||
990 | static const struct sysfs_ops padata_sysfs_ops = { | |
991 | .show = padata_sysfs_show, | |
992 | .store = padata_sysfs_store, | |
993 | }; | |
994 | ||
995 | static struct kobj_type padata_attr_type = { | |
996 | .sysfs_ops = &padata_sysfs_ops, | |
997 | .default_attrs = padata_default_attrs, | |
998 | .release = padata_sysfs_release, | |
999 | }; | |
1000 | ||
e15bacbe | 1001 | /** |
e6cc1170 SK |
1002 | * padata_alloc - allocate and initialize a padata instance and specify |
1003 | * cpumasks for serial and parallel workers. | |
16295bec | 1004 | * |
16295bec | 1005 | * @wq: workqueue to use for the allocated padata instance |
e15bacbe DK |
1006 | * @pcpumask: cpumask that will be used for padata parallelization |
1007 | * @cbcpumask: cpumask that will be used for padata serialization | |
c5a81c8f SAS |
1008 | * |
1009 | * Must be called from a cpus_read_lock() protected region | |
16295bec | 1010 | */ |
9596695e TG |
1011 | static struct padata_instance *padata_alloc(struct workqueue_struct *wq, |
1012 | const struct cpumask *pcpumask, | |
1013 | const struct cpumask *cbcpumask) | |
16295bec | 1014 | { |
16295bec | 1015 | struct padata_instance *pinst; |
33e54450 | 1016 | struct parallel_data *pd = NULL; |
16295bec SK |
1017 | |
1018 | pinst = kzalloc(sizeof(struct padata_instance), GFP_KERNEL); | |
1019 | if (!pinst) | |
1020 | goto err; | |
1021 | ||
e15bacbe | 1022 | if (!alloc_cpumask_var(&pinst->cpumask.pcpu, GFP_KERNEL)) |
16295bec | 1023 | goto err_free_inst; |
e15bacbe DK |
1024 | if (!alloc_cpumask_var(&pinst->cpumask.cbcpu, GFP_KERNEL)) { |
1025 | free_cpumask_var(pinst->cpumask.pcpu); | |
16295bec | 1026 | goto err_free_inst; |
33e54450 | 1027 | } |
e15bacbe DK |
1028 | if (!padata_validate_cpumask(pinst, pcpumask) || |
1029 | !padata_validate_cpumask(pinst, cbcpumask)) | |
1030 | goto err_free_masks; | |
16295bec | 1031 | |
e15bacbe DK |
1032 | pd = padata_alloc_pd(pinst, pcpumask, cbcpumask); |
1033 | if (!pd) | |
1034 | goto err_free_masks; | |
74781387 | 1035 | |
16295bec SK |
1036 | rcu_assign_pointer(pinst->pd, pd); |
1037 | ||
1038 | pinst->wq = wq; | |
1039 | ||
e15bacbe DK |
1040 | cpumask_copy(pinst->cpumask.pcpu, pcpumask); |
1041 | cpumask_copy(pinst->cpumask.cbcpu, cbcpumask); | |
16295bec SK |
1042 | |
1043 | pinst->flags = 0; | |
1044 | ||
e15bacbe | 1045 | BLOCKING_INIT_NOTIFIER_HEAD(&pinst->cpumask_change_notifier); |
5e017dc3 | 1046 | kobject_init(&pinst->kobj, &padata_attr_type); |
16295bec SK |
1047 | mutex_init(&pinst->lock); |
1048 | ||
b8b4a416 | 1049 | #ifdef CONFIG_HOTPLUG_CPU |
c5a81c8f | 1050 | cpuhp_state_add_instance_nocalls_cpuslocked(hp_online, &pinst->node); |
b8b4a416 | 1051 | #endif |
16295bec SK |
1052 | return pinst; |
1053 | ||
e15bacbe DK |
1054 | err_free_masks: |
1055 | free_cpumask_var(pinst->cpumask.pcpu); | |
1056 | free_cpumask_var(pinst->cpumask.cbcpu); | |
16295bec SK |
1057 | err_free_inst: |
1058 | kfree(pinst); | |
1059 | err: | |
1060 | return NULL; | |
1061 | } | |
16295bec | 1062 | |
9596695e TG |
1063 | /** |
1064 | * padata_alloc_possible - Allocate and initialize padata instance. | |
1065 | * Use the cpu_possible_mask for serial and | |
1066 | * parallel workers. | |
1067 | * | |
1068 | * @wq: workqueue to use for the allocated padata instance | |
c5a81c8f SAS |
1069 | * |
1070 | * Must be called from a cpus_read_lock() protected region | |
9596695e TG |
1071 | */ |
1072 | struct padata_instance *padata_alloc_possible(struct workqueue_struct *wq) | |
1073 | { | |
c5a81c8f | 1074 | lockdep_assert_cpus_held(); |
9596695e TG |
1075 | return padata_alloc(wq, cpu_possible_mask, cpu_possible_mask); |
1076 | } | |
1077 | EXPORT_SYMBOL(padata_alloc_possible); | |
1078 | ||
0198ffd1 | 1079 | /** |
16295bec SK |
1080 | * padata_free - free a padata instance |
1081 | * | |
0198ffd1 | 1082 | * @padata_inst: padata instance to free |
16295bec SK |
1083 | */ |
1084 | void padata_free(struct padata_instance *pinst) | |
1085 | { | |
5e017dc3 | 1086 | kobject_put(&pinst->kobj); |
16295bec SK |
1087 | } |
1088 | EXPORT_SYMBOL(padata_free); | |
30e92153 SAS |
1089 | |
1090 | #ifdef CONFIG_HOTPLUG_CPU | |
1091 | ||
1092 | static __init int padata_driver_init(void) | |
1093 | { | |
1094 | int ret; | |
1095 | ||
1096 | ret = cpuhp_setup_state_multi(CPUHP_AP_ONLINE_DYN, "padata:online", | |
1097 | padata_cpu_online, | |
1098 | padata_cpu_prep_down); | |
1099 | if (ret < 0) | |
1100 | return ret; | |
1101 | hp_online = ret; | |
1102 | return 0; | |
1103 | } | |
1104 | module_init(padata_driver_init); | |
1105 | ||
1106 | static __exit void padata_driver_exit(void) | |
1107 | { | |
1108 | cpuhp_remove_multi_state(hp_online); | |
1109 | } | |
1110 | module_exit(padata_driver_exit); | |
1111 | #endif |