padata: inline single call of pd_setup_cpumasks()
[linux-block.git] / kernel / padata.c
CommitLineData
08b21fbf 1// SPDX-License-Identifier: GPL-2.0
16295bec
SK
2/*
3 * padata.c - generic interface to process data streams in parallel
4 *
bfcdcef8 5 * See Documentation/core-api/padata.rst for more information.
107f8bda 6 *
16295bec
SK
7 * Copyright (C) 2008, 2009 secunet Security Networks AG
8 * Copyright (C) 2008, 2009 Steffen Klassert <steffen.klassert@secunet.com>
9 *
004ed426
DJ
10 * Copyright (c) 2020 Oracle and/or its affiliates.
11 * Author: Daniel Jordan <daniel.m.jordan@oracle.com>
12 *
16295bec
SK
13 * This program is free software; you can redistribute it and/or modify it
14 * under the terms and conditions of the GNU General Public License,
15 * version 2, as published by the Free Software Foundation.
16 *
17 * This program is distributed in the hope it will be useful, but WITHOUT
18 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
19 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
20 * more details.
21 *
22 * You should have received a copy of the GNU General Public License along with
23 * this program; if not, write to the Free Software Foundation, Inc.,
24 * 51 Franklin St - Fifth Floor, Boston, MA 02110-1301 USA.
25 */
26
004ed426 27#include <linux/completion.h>
9984de1a 28#include <linux/export.h>
16295bec
SK
29#include <linux/cpumask.h>
30#include <linux/err.h>
31#include <linux/cpu.h>
32#include <linux/padata.h>
33#include <linux/mutex.h>
34#include <linux/sched.h>
5a0e3ad6 35#include <linux/slab.h>
5e017dc3 36#include <linux/sysfs.h>
16295bec
SK
37#include <linux/rcupdate.h>
38
004ed426
DJ
39#define PADATA_WORK_ONSTACK 1 /* Work's memory is on stack */
40
4611ce22
DJ
41struct padata_work {
42 struct work_struct pw_work;
43 struct list_head pw_list; /* padata_free_works linkage */
44 void *pw_data;
45};
46
47static DEFINE_SPINLOCK(padata_works_lock);
48static struct padata_work *padata_works;
49static LIST_HEAD(padata_free_works);
16295bec 50
004ed426
DJ
51struct padata_mt_job_state {
52 spinlock_t lock;
53 struct completion completion;
54 struct padata_mt_job *job;
55 int nworks;
56 int nworks_fini;
57 unsigned long chunk_size;
58};
59
07928d9b 60static void padata_free_pd(struct parallel_data *pd);
004ed426 61static void __init padata_mt_helper(struct work_struct *work);
07928d9b 62
16295bec
SK
63static int padata_index_to_cpu(struct parallel_data *pd, int cpu_index)
64{
65 int cpu, target_cpu;
66
e15bacbe 67 target_cpu = cpumask_first(pd->cpumask.pcpu);
16295bec 68 for (cpu = 0; cpu < cpu_index; cpu++)
e15bacbe 69 target_cpu = cpumask_next(target_cpu, pd->cpumask.pcpu);
16295bec
SK
70
71 return target_cpu;
72}
73
bfde23ce 74static int padata_cpu_hash(struct parallel_data *pd, unsigned int seq_nr)
16295bec 75{
16295bec
SK
76 /*
77 * Hash the sequence numbers to the cpus by taking
78 * seq_nr mod. number of cpus in use.
79 */
bfde23ce 80 int cpu_index = seq_nr % cpumask_weight(pd->cpumask.pcpu);
16295bec
SK
81
82 return padata_index_to_cpu(pd, cpu_index);
83}
84
4611ce22 85static struct padata_work *padata_work_alloc(void)
16295bec 86{
4611ce22 87 struct padata_work *pw;
16295bec 88
4611ce22 89 lockdep_assert_held(&padata_works_lock);
16295bec 90
4611ce22
DJ
91 if (list_empty(&padata_free_works))
92 return NULL; /* No more work items allowed to be queued. */
16295bec 93
4611ce22
DJ
94 pw = list_first_entry(&padata_free_works, struct padata_work, pw_list);
95 list_del(&pw->pw_list);
96 return pw;
97}
16295bec 98
4611ce22 99static void padata_work_init(struct padata_work *pw, work_func_t work_fn,
004ed426 100 void *data, int flags)
4611ce22 101{
004ed426
DJ
102 if (flags & PADATA_WORK_ONSTACK)
103 INIT_WORK_ONSTACK(&pw->pw_work, work_fn);
104 else
105 INIT_WORK(&pw->pw_work, work_fn);
4611ce22
DJ
106 pw->pw_data = data;
107}
16295bec 108
004ed426
DJ
109static int __init padata_work_alloc_mt(int nworks, void *data,
110 struct list_head *head)
111{
112 int i;
113
114 spin_lock(&padata_works_lock);
115 /* Start at 1 because the current task participates in the job. */
116 for (i = 1; i < nworks; ++i) {
117 struct padata_work *pw = padata_work_alloc();
118
119 if (!pw)
120 break;
121 padata_work_init(pw, padata_mt_helper, data, 0);
122 list_add(&pw->pw_list, head);
123 }
124 spin_unlock(&padata_works_lock);
125
126 return i;
127}
128
4611ce22
DJ
129static void padata_work_free(struct padata_work *pw)
130{
131 lockdep_assert_held(&padata_works_lock);
132 list_add(&pw->pw_list, &padata_free_works);
133}
16295bec 134
004ed426
DJ
135static void __init padata_works_free(struct list_head *works)
136{
137 struct padata_work *cur, *next;
138
139 if (list_empty(works))
140 return;
141
142 spin_lock(&padata_works_lock);
143 list_for_each_entry_safe(cur, next, works, pw_list) {
144 list_del(&cur->pw_list);
145 padata_work_free(cur);
146 }
147 spin_unlock(&padata_works_lock);
148}
149
4611ce22
DJ
150static void padata_parallel_worker(struct work_struct *parallel_work)
151{
152 struct padata_work *pw = container_of(parallel_work, struct padata_work,
153 pw_work);
154 struct padata_priv *padata = pw->pw_data;
16295bec 155
4611ce22
DJ
156 local_bh_disable();
157 padata->parallel(padata);
158 spin_lock(&padata_works_lock);
159 padata_work_free(pw);
160 spin_unlock(&padata_works_lock);
16295bec
SK
161 local_bh_enable();
162}
163
0198ffd1 164/**
16295bec
SK
165 * padata_do_parallel - padata parallelization function
166 *
bbefa1dd 167 * @ps: padatashell
16295bec 168 * @padata: object to be parallelized
e6ce0e08
DJ
169 * @cb_cpu: pointer to the CPU that the serialization callback function should
170 * run on. If it's not in the serial cpumask of @pinst
171 * (i.e. cpumask.cbcpu), this function selects a fallback CPU and if
172 * none found, returns -EINVAL.
16295bec
SK
173 *
174 * The parallelization callback function will run with BHs off.
175 * Note: Every object which is parallelized by padata_do_parallel
176 * must be seen by padata_do_serial.
bfcdcef8
DJ
177 *
178 * Return: 0 on success or else negative error code.
16295bec 179 */
bbefa1dd 180int padata_do_parallel(struct padata_shell *ps,
e6ce0e08 181 struct padata_priv *padata, int *cb_cpu)
16295bec 182{
bbefa1dd 183 struct padata_instance *pinst = ps->pinst;
4611ce22 184 int i, cpu, cpu_index, err;
16295bec 185 struct parallel_data *pd;
4611ce22 186 struct padata_work *pw;
16295bec
SK
187
188 rcu_read_lock_bh();
189
bbefa1dd 190 pd = rcu_dereference_bh(ps->pd);
16295bec 191
83f619f3 192 err = -EINVAL;
7424713b 193 if (!(pinst->flags & PADATA_INIT) || pinst->flags & PADATA_INVALID)
16295bec
SK
194 goto out;
195
e6ce0e08
DJ
196 if (!cpumask_test_cpu(*cb_cpu, pd->cpumask.cbcpu)) {
197 if (!cpumask_weight(pd->cpumask.cbcpu))
198 goto out;
199
200 /* Select an alternate fallback CPU and notify the caller. */
201 cpu_index = *cb_cpu % cpumask_weight(pd->cpumask.cbcpu);
202
203 cpu = cpumask_first(pd->cpumask.cbcpu);
204 for (i = 0; i < cpu_index; i++)
205 cpu = cpumask_next(cpu, pd->cpumask.cbcpu);
206
207 *cb_cpu = cpu;
208 }
16295bec
SK
209
210 err = -EBUSY;
211 if ((pinst->flags & PADATA_RESET))
212 goto out;
213
16295bec
SK
214 atomic_inc(&pd->refcnt);
215 padata->pd = pd;
e6ce0e08 216 padata->cb_cpu = *cb_cpu;
16295bec 217
4611ce22 218 rcu_read_unlock_bh();
16295bec 219
4611ce22
DJ
220 spin_lock(&padata_works_lock);
221 padata->seq_nr = ++pd->seq_nr;
222 pw = padata_work_alloc();
223 spin_unlock(&padata_works_lock);
224 if (pw) {
004ed426 225 padata_work_init(pw, padata_parallel_worker, padata, 0);
4611ce22
DJ
226 queue_work(pinst->parallel_wq, &pw->pw_work);
227 } else {
228 /* Maximum works limit exceeded, run in the current task. */
229 padata->parallel(padata);
230 }
16295bec 231
4611ce22 232 return 0;
16295bec
SK
233out:
234 rcu_read_unlock_bh();
235
236 return err;
237}
238EXPORT_SYMBOL(padata_do_parallel);
239
0198ffd1 240/*
bfde23ce 241 * padata_find_next - Find the next object that needs serialization.
0198ffd1 242 *
bfcdcef8
DJ
243 * Return:
244 * * A pointer to the control struct of the next object that needs
245 * serialization, if present in one of the percpu reorder queues.
246 * * NULL, if the next object that needs serialization will
247 * be parallel processed by another cpu and is not yet present in
248 * the cpu's reorder queue.
0198ffd1 249 */
bfde23ce
DJ
250static struct padata_priv *padata_find_next(struct parallel_data *pd,
251 bool remove_object)
16295bec 252{
f0fcf200 253 struct padata_parallel_queue *next_queue;
16295bec
SK
254 struct padata_priv *padata;
255 struct padata_list *reorder;
6fc4dbcf 256 int cpu = pd->cpu;
16295bec 257
e15bacbe 258 next_queue = per_cpu_ptr(pd->pqueue, cpu);
16295bec
SK
259 reorder = &next_queue->reorder;
260
de5540d0 261 spin_lock(&reorder->lock);
bfde23ce
DJ
262 if (list_empty(&reorder->list)) {
263 spin_unlock(&reorder->lock);
264 return NULL;
265 }
16295bec 266
bfde23ce 267 padata = list_entry(reorder->list.next, struct padata_priv, list);
16295bec 268
bfde23ce
DJ
269 /*
270 * Checks the rare case where two or more parallel jobs have hashed to
271 * the same CPU and one of the later ones finishes first.
272 */
273 if (padata->seq_nr != pd->processed) {
de5540d0 274 spin_unlock(&reorder->lock);
bfde23ce 275 return NULL;
16295bec
SK
276 }
277
bfde23ce
DJ
278 if (remove_object) {
279 list_del_init(&padata->list);
bfde23ce
DJ
280 ++pd->processed;
281 pd->cpu = cpumask_next_wrap(cpu, pd->cpumask.pcpu, -1, false);
16295bec
SK
282 }
283
bfde23ce 284 spin_unlock(&reorder->lock);
16295bec
SK
285 return padata;
286}
287
288static void padata_reorder(struct parallel_data *pd)
289{
bbefa1dd 290 struct padata_instance *pinst = pd->ps->pinst;
3047817b 291 int cb_cpu;
16295bec 292 struct padata_priv *padata;
e15bacbe 293 struct padata_serial_queue *squeue;
6fc4dbcf 294 struct padata_parallel_queue *next_queue;
16295bec 295
0198ffd1
SK
296 /*
297 * We need to ensure that only one cpu can work on dequeueing of
298 * the reorder queue the time. Calculating in which percpu reorder
299 * queue the next object will arrive takes some time. A spinlock
300 * would be highly contended. Also it is not clear in which order
301 * the objects arrive to the reorder queues. So a cpu could wait to
302 * get the lock just to notice that there is nothing to do at the
303 * moment. Therefore we use a trylock and let the holder of the lock
304 * care for all the objects enqueued during the holdtime of the lock.
305 */
16295bec 306 if (!spin_trylock_bh(&pd->lock))
d46a5ac7 307 return;
16295bec
SK
308
309 while (1) {
bfde23ce 310 padata = padata_find_next(pd, true);
16295bec 311
0198ffd1 312 /*
69b34844
JD
313 * If the next object that needs serialization is parallel
314 * processed by another cpu and is still on it's way to the
315 * cpu's reorder queue, nothing to do for now.
0198ffd1 316 */
bfde23ce 317 if (!padata)
16295bec
SK
318 break;
319
3047817b
SK
320 cb_cpu = padata->cb_cpu;
321 squeue = per_cpu_ptr(pd->squeue, cb_cpu);
16295bec 322
e15bacbe
DK
323 spin_lock(&squeue->serial.lock);
324 list_add_tail(&padata->list, &squeue->serial.list);
325 spin_unlock(&squeue->serial.lock);
16295bec 326
45d153c0 327 queue_work_on(cb_cpu, pinst->serial_wq, &squeue->work);
16295bec
SK
328 }
329
330 spin_unlock_bh(&pd->lock);
331
0198ffd1
SK
332 /*
333 * The next object that needs serialization might have arrived to
6fc4dbcf 334 * the reorder queues in the meantime.
cf144f81 335 *
6fc4dbcf
HX
336 * Ensure reorder queue is read after pd->lock is dropped so we see
337 * new objects from another task in padata_do_serial. Pairs with
e04ec0de 338 * smp_mb in padata_do_serial.
0198ffd1 339 */
cf144f81 340 smp_mb();
16295bec 341
6fc4dbcf 342 next_queue = per_cpu_ptr(pd->pqueue, pd->cpu);
bfde23ce
DJ
343 if (!list_empty(&next_queue->reorder.list) &&
344 padata_find_next(pd, false))
45d153c0 345 queue_work(pinst->serial_wq, &pd->reorder_work);
16295bec
SK
346}
347
cf5868c8
MK
348static void invoke_padata_reorder(struct work_struct *work)
349{
cf5868c8
MK
350 struct parallel_data *pd;
351
352 local_bh_disable();
6fc4dbcf 353 pd = container_of(work, struct parallel_data, reorder_work);
cf5868c8
MK
354 padata_reorder(pd);
355 local_bh_enable();
356}
357
e15bacbe 358static void padata_serial_worker(struct work_struct *serial_work)
16295bec 359{
e15bacbe 360 struct padata_serial_queue *squeue;
16295bec
SK
361 struct parallel_data *pd;
362 LIST_HEAD(local_list);
07928d9b 363 int cnt;
16295bec
SK
364
365 local_bh_disable();
e15bacbe
DK
366 squeue = container_of(serial_work, struct padata_serial_queue, work);
367 pd = squeue->pd;
16295bec 368
e15bacbe
DK
369 spin_lock(&squeue->serial.lock);
370 list_replace_init(&squeue->serial.list, &local_list);
371 spin_unlock(&squeue->serial.lock);
16295bec 372
07928d9b
HX
373 cnt = 0;
374
16295bec
SK
375 while (!list_empty(&local_list)) {
376 struct padata_priv *padata;
377
378 padata = list_entry(local_list.next,
379 struct padata_priv, list);
380
381 list_del_init(&padata->list);
382
383 padata->serial(padata);
07928d9b 384 cnt++;
16295bec
SK
385 }
386 local_bh_enable();
07928d9b
HX
387
388 if (atomic_sub_and_test(cnt, &pd->refcnt))
389 padata_free_pd(pd);
16295bec
SK
390}
391
0198ffd1 392/**
16295bec
SK
393 * padata_do_serial - padata serialization function
394 *
395 * @padata: object to be serialized.
396 *
397 * padata_do_serial must be called for every parallelized object.
398 * The serialization callback function will run with BHs off.
399 */
400void padata_do_serial(struct padata_priv *padata)
401{
065cf577 402 struct parallel_data *pd = padata->pd;
4611ce22 403 int hashed_cpu = padata_cpu_hash(pd, padata->seq_nr);
065cf577 404 struct padata_parallel_queue *pqueue = per_cpu_ptr(pd->pqueue,
4611ce22 405 hashed_cpu);
bfde23ce 406 struct padata_priv *cur;
16295bec 407
e15bacbe 408 spin_lock(&pqueue->reorder.lock);
bfde23ce
DJ
409 /* Sort in ascending order of sequence number. */
410 list_for_each_entry_reverse(cur, &pqueue->reorder.list, list)
411 if (cur->seq_nr < padata->seq_nr)
412 break;
413 list_add(&padata->list, &cur->list);
e15bacbe 414 spin_unlock(&pqueue->reorder.lock);
16295bec 415
cf144f81 416 /*
6fc4dbcf 417 * Ensure the addition to the reorder list is ordered correctly
cf144f81
DJ
418 * with the trylock of pd->lock in padata_reorder. Pairs with smp_mb
419 * in padata_reorder.
420 */
e04ec0de 421 smp_mb();
cf144f81 422
6fc4dbcf 423 padata_reorder(pd);
16295bec
SK
424}
425EXPORT_SYMBOL(padata_do_serial);
426
bbefa1dd 427static int padata_setup_cpumasks(struct padata_instance *pinst)
16295bec 428{
bfde23ce 429 struct workqueue_attrs *attrs;
bbefa1dd
HX
430 int err;
431
432 attrs = alloc_workqueue_attrs();
433 if (!attrs)
434 return -ENOMEM;
435
436 /* Restrict parallel_wq workers to pd->cpumask.pcpu. */
437 cpumask_copy(attrs->cpumask, pinst->cpumask.pcpu);
438 err = apply_workqueue_attrs(pinst->parallel_wq, attrs);
439 free_workqueue_attrs(attrs);
440
441 return err;
442}
443
004ed426
DJ
444static void __init padata_mt_helper(struct work_struct *w)
445{
446 struct padata_work *pw = container_of(w, struct padata_work, pw_work);
447 struct padata_mt_job_state *ps = pw->pw_data;
448 struct padata_mt_job *job = ps->job;
449 bool done;
450
451 spin_lock(&ps->lock);
452
453 while (job->size > 0) {
454 unsigned long start, size, end;
455
456 start = job->start;
457 /* So end is chunk size aligned if enough work remains. */
458 size = roundup(start + 1, ps->chunk_size) - start;
459 size = min(size, job->size);
460 end = start + size;
461
462 job->start = end;
463 job->size -= size;
464
465 spin_unlock(&ps->lock);
466 job->thread_fn(start, end, job->fn_arg);
467 spin_lock(&ps->lock);
468 }
469
470 ++ps->nworks_fini;
471 done = (ps->nworks_fini == ps->nworks);
472 spin_unlock(&ps->lock);
473
474 if (done)
475 complete(&ps->completion);
476}
477
478/**
479 * padata_do_multithreaded - run a multithreaded job
480 * @job: Description of the job.
481 *
482 * See the definition of struct padata_mt_job for more details.
483 */
484void __init padata_do_multithreaded(struct padata_mt_job *job)
485{
486 /* In case threads finish at different times. */
487 static const unsigned long load_balance_factor = 4;
488 struct padata_work my_work, *pw;
489 struct padata_mt_job_state ps;
490 LIST_HEAD(works);
491 int nworks;
492
493 if (job->size == 0)
494 return;
495
496 /* Ensure at least one thread when size < min_chunk. */
497 nworks = max(job->size / job->min_chunk, 1ul);
498 nworks = min(nworks, job->max_threads);
499
500 if (nworks == 1) {
501 /* Single thread, no coordination needed, cut to the chase. */
502 job->thread_fn(job->start, job->start + job->size, job->fn_arg);
503 return;
504 }
505
506 spin_lock_init(&ps.lock);
507 init_completion(&ps.completion);
508 ps.job = job;
509 ps.nworks = padata_work_alloc_mt(nworks, &ps, &works);
510 ps.nworks_fini = 0;
511
512 /*
513 * Chunk size is the amount of work a helper does per call to the
514 * thread function. Load balance large jobs between threads by
515 * increasing the number of chunks, guarantee at least the minimum
516 * chunk size from the caller, and honor the caller's alignment.
517 */
518 ps.chunk_size = job->size / (ps.nworks * load_balance_factor);
519 ps.chunk_size = max(ps.chunk_size, job->min_chunk);
520 ps.chunk_size = roundup(ps.chunk_size, job->align);
521
522 list_for_each_entry(pw, &works, pw_list)
523 queue_work(system_unbound_wq, &pw->pw_work);
524
525 /* Use the current thread, which saves starting a workqueue worker. */
526 padata_work_init(&my_work, padata_mt_helper, &ps, PADATA_WORK_ONSTACK);
527 padata_mt_helper(&my_work.pw_work);
528
529 /* Wait for all the helpers to finish. */
530 wait_for_completion(&ps.completion);
531
532 destroy_work_on_stack(&my_work.pw_work);
533 padata_works_free(&works);
534}
535
e15bacbe
DK
536static void __padata_list_init(struct padata_list *pd_list)
537{
538 INIT_LIST_HEAD(&pd_list->list);
539 spin_lock_init(&pd_list->lock);
540}
16295bec 541
e15bacbe
DK
542/* Initialize all percpu queues used by serial workers */
543static void padata_init_squeues(struct parallel_data *pd)
544{
545 int cpu;
546 struct padata_serial_queue *squeue;
7b389b2c 547
e15bacbe
DK
548 for_each_cpu(cpu, pd->cpumask.cbcpu) {
549 squeue = per_cpu_ptr(pd->squeue, cpu);
550 squeue->pd = pd;
551 __padata_list_init(&squeue->serial);
552 INIT_WORK(&squeue->work, padata_serial_worker);
553 }
554}
16295bec 555
e15bacbe
DK
556/* Initialize all percpu queues used by parallel workers */
557static void padata_init_pqueues(struct parallel_data *pd)
558{
c51636a3 559 int cpu;
e15bacbe 560 struct padata_parallel_queue *pqueue;
16295bec 561
c51636a3 562 for_each_cpu(cpu, pd->cpumask.pcpu) {
e15bacbe 563 pqueue = per_cpu_ptr(pd->pqueue, cpu);
1bd845bc 564
e15bacbe 565 __padata_list_init(&pqueue->reorder);
e15bacbe 566 atomic_set(&pqueue->num_obj, 0);
16295bec 567 }
e15bacbe 568}
16295bec 569
e15bacbe 570/* Allocate and initialize the internal cpumask dependend resources. */
bbefa1dd 571static struct parallel_data *padata_alloc_pd(struct padata_shell *ps)
e15bacbe 572{
bbefa1dd
HX
573 struct padata_instance *pinst = ps->pinst;
574 const struct cpumask *cbcpumask;
575 const struct cpumask *pcpumask;
e15bacbe 576 struct parallel_data *pd;
16295bec 577
bbefa1dd
HX
578 cbcpumask = pinst->rcpumask.cbcpu;
579 pcpumask = pinst->rcpumask.pcpu;
580
e15bacbe
DK
581 pd = kzalloc(sizeof(struct parallel_data), GFP_KERNEL);
582 if (!pd)
583 goto err;
16295bec 584
e15bacbe
DK
585 pd->pqueue = alloc_percpu(struct padata_parallel_queue);
586 if (!pd->pqueue)
587 goto err_free_pd;
588
589 pd->squeue = alloc_percpu(struct padata_serial_queue);
590 if (!pd->squeue)
591 goto err_free_pqueue;
bfde23ce 592
bbefa1dd 593 pd->ps = ps;
cec00e6e
DJ
594
595 if (!alloc_cpumask_var(&pd->cpumask.pcpu, GFP_KERNEL))
e15bacbe 596 goto err_free_squeue;
cec00e6e
DJ
597 if (!alloc_cpumask_var(&pd->cpumask.cbcpu, GFP_KERNEL))
598 goto err_free_pcpu;
599
600 cpumask_copy(pd->cpumask.pcpu, pcpumask);
601 cpumask_copy(pd->cpumask.cbcpu, cbcpumask);
16295bec 602
e15bacbe
DK
603 padata_init_pqueues(pd);
604 padata_init_squeues(pd);
4611ce22 605 pd->seq_nr = -1;
07928d9b 606 atomic_set(&pd->refcnt, 1);
16295bec 607 spin_lock_init(&pd->lock);
ec9c7d19 608 pd->cpu = cpumask_first(pd->cpumask.pcpu);
6fc4dbcf 609 INIT_WORK(&pd->reorder_work, invoke_padata_reorder);
16295bec
SK
610
611 return pd;
612
cec00e6e
DJ
613err_free_pcpu:
614 free_cpumask_var(pd->cpumask.pcpu);
e15bacbe
DK
615err_free_squeue:
616 free_percpu(pd->squeue);
617err_free_pqueue:
618 free_percpu(pd->pqueue);
16295bec
SK
619err_free_pd:
620 kfree(pd);
621err:
622 return NULL;
623}
624
625static void padata_free_pd(struct parallel_data *pd)
626{
e15bacbe
DK
627 free_cpumask_var(pd->cpumask.pcpu);
628 free_cpumask_var(pd->cpumask.cbcpu);
629 free_percpu(pd->pqueue);
630 free_percpu(pd->squeue);
16295bec
SK
631 kfree(pd);
632}
633
4c879170
SK
634static void __padata_start(struct padata_instance *pinst)
635{
636 pinst->flags |= PADATA_INIT;
637}
638
ee836555
SK
639static void __padata_stop(struct padata_instance *pinst)
640{
641 if (!(pinst->flags & PADATA_INIT))
642 return;
643
644 pinst->flags &= ~PADATA_INIT;
645
646 synchronize_rcu();
ee836555
SK
647}
648
25985edc 649/* Replace the internal control structure with a new one. */
bbefa1dd 650static int padata_replace_one(struct padata_shell *ps)
16295bec 651{
bbefa1dd 652 struct parallel_data *pd_new;
16295bec 653
bbefa1dd
HX
654 pd_new = padata_alloc_pd(ps);
655 if (!pd_new)
656 return -ENOMEM;
16295bec 657
bbefa1dd
HX
658 ps->opd = rcu_dereference_protected(ps->pd, 1);
659 rcu_assign_pointer(ps->pd, pd_new);
16295bec 660
bbefa1dd
HX
661 return 0;
662}
663
894c9ef9 664static int padata_replace(struct padata_instance *pinst)
bbefa1dd 665{
bbefa1dd 666 struct padata_shell *ps;
41ccdbfd 667 int err = 0;
bbefa1dd
HX
668
669 pinst->flags |= PADATA_RESET;
16295bec 670
bbefa1dd
HX
671 cpumask_and(pinst->rcpumask.pcpu, pinst->cpumask.pcpu,
672 cpu_online_mask);
bbefa1dd 673
bbefa1dd
HX
674 cpumask_and(pinst->rcpumask.cbcpu, pinst->cpumask.cbcpu,
675 cpu_online_mask);
e15bacbe 676
bbefa1dd
HX
677 list_for_each_entry(ps, &pinst->pslist, list) {
678 err = padata_replace_one(ps);
679 if (err)
680 break;
681 }
682
683 synchronize_rcu();
684
685 list_for_each_entry_continue_reverse(ps, &pinst->pslist, list)
686 if (atomic_dec_and_test(&ps->opd->refcnt))
687 padata_free_pd(ps->opd);
16295bec
SK
688
689 pinst->flags &= ~PADATA_RESET;
bbefa1dd
HX
690
691 return err;
16295bec
SK
692}
693
33e54450
SK
694/* If cpumask contains no active cpu, we mark the instance as invalid. */
695static bool padata_validate_cpumask(struct padata_instance *pinst,
696 const struct cpumask *cpumask)
697{
13614e0f 698 if (!cpumask_intersects(cpumask, cpu_online_mask)) {
33e54450
SK
699 pinst->flags |= PADATA_INVALID;
700 return false;
701 }
702
703 pinst->flags &= ~PADATA_INVALID;
704 return true;
705}
706
65ff577e
SK
707static int __padata_set_cpumasks(struct padata_instance *pinst,
708 cpumask_var_t pcpumask,
709 cpumask_var_t cbcpumask)
710{
711 int valid;
bbefa1dd 712 int err;
65ff577e
SK
713
714 valid = padata_validate_cpumask(pinst, pcpumask);
715 if (!valid) {
716 __padata_stop(pinst);
717 goto out_replace;
718 }
719
720 valid = padata_validate_cpumask(pinst, cbcpumask);
721 if (!valid)
722 __padata_stop(pinst);
723
724out_replace:
65ff577e
SK
725 cpumask_copy(pinst->cpumask.pcpu, pcpumask);
726 cpumask_copy(pinst->cpumask.cbcpu, cbcpumask);
727
894c9ef9 728 err = padata_setup_cpumasks(pinst) ?: padata_replace(pinst);
65ff577e
SK
729
730 if (valid)
731 __padata_start(pinst);
732
bbefa1dd 733 return err;
65ff577e
SK
734}
735
e15bacbe 736/**
bfcdcef8
DJ
737 * padata_set_cpumask - Sets specified by @cpumask_type cpumask to the value
738 * equivalent to @cpumask.
16295bec 739 * @pinst: padata instance
e15bacbe
DK
740 * @cpumask_type: PADATA_CPU_SERIAL or PADATA_CPU_PARALLEL corresponding
741 * to parallel and serial cpumasks respectively.
16295bec 742 * @cpumask: the cpumask to use
bfcdcef8
DJ
743 *
744 * Return: 0 on success or negative error code
16295bec 745 */
e15bacbe
DK
746int padata_set_cpumask(struct padata_instance *pinst, int cpumask_type,
747 cpumask_var_t cpumask)
748{
749 struct cpumask *serial_mask, *parallel_mask;
65ff577e
SK
750 int err = -EINVAL;
751
6751fb3c 752 get_online_cpus();
38228e88 753 mutex_lock(&pinst->lock);
6751fb3c 754
e15bacbe
DK
755 switch (cpumask_type) {
756 case PADATA_CPU_PARALLEL:
757 serial_mask = pinst->cpumask.cbcpu;
758 parallel_mask = cpumask;
759 break;
760 case PADATA_CPU_SERIAL:
761 parallel_mask = pinst->cpumask.pcpu;
762 serial_mask = cpumask;
763 break;
764 default:
65ff577e 765 goto out;
16295bec
SK
766 }
767
65ff577e 768 err = __padata_set_cpumasks(pinst, parallel_mask, serial_mask);
16295bec
SK
769
770out:
771 mutex_unlock(&pinst->lock);
38228e88 772 put_online_cpus();
16295bec
SK
773
774 return err;
775}
776EXPORT_SYMBOL(padata_set_cpumask);
777
19d795b6
AB
778#ifdef CONFIG_HOTPLUG_CPU
779
16295bec
SK
780static int __padata_add_cpu(struct padata_instance *pinst, int cpu)
781{
bbefa1dd 782 int err = 0;
16295bec 783
13614e0f 784 if (cpumask_test_cpu(cpu, cpu_online_mask)) {
894c9ef9 785 err = padata_replace(pinst);
33e54450 786
e15bacbe
DK
787 if (padata_validate_cpumask(pinst, pinst->cpumask.pcpu) &&
788 padata_validate_cpumask(pinst, pinst->cpumask.cbcpu))
33e54450 789 __padata_start(pinst);
16295bec
SK
790 }
791
bbefa1dd 792 return err;
16295bec
SK
793}
794
16295bec
SK
795static int __padata_remove_cpu(struct padata_instance *pinst, int cpu)
796{
bbefa1dd 797 int err = 0;
16295bec 798
894c9ef9 799 if (!cpumask_test_cpu(cpu, cpu_online_mask)) {
e15bacbe 800 if (!padata_validate_cpumask(pinst, pinst->cpumask.pcpu) ||
b89661df 801 !padata_validate_cpumask(pinst, pinst->cpumask.cbcpu))
33e54450 802 __padata_stop(pinst);
33e54450 803
894c9ef9 804 err = padata_replace(pinst);
16295bec
SK
805 }
806
bbefa1dd 807 return err;
16295bec
SK
808}
809
e15bacbe
DK
810static inline int pinst_has_cpu(struct padata_instance *pinst, int cpu)
811{
812 return cpumask_test_cpu(cpu, pinst->cpumask.pcpu) ||
813 cpumask_test_cpu(cpu, pinst->cpumask.cbcpu);
814}
815
30e92153 816static int padata_cpu_online(unsigned int cpu, struct hlist_node *node)
16295bec 817{
16295bec 818 struct padata_instance *pinst;
30e92153 819 int ret;
16295bec 820
3c2214b6 821 pinst = hlist_entry_safe(node, struct padata_instance, cpu_online_node);
30e92153
SAS
822 if (!pinst_has_cpu(pinst, cpu))
823 return 0;
16295bec 824
30e92153
SAS
825 mutex_lock(&pinst->lock);
826 ret = __padata_add_cpu(pinst, cpu);
827 mutex_unlock(&pinst->lock);
828 return ret;
829}
16295bec 830
894c9ef9 831static int padata_cpu_dead(unsigned int cpu, struct hlist_node *node)
30e92153
SAS
832{
833 struct padata_instance *pinst;
834 int ret;
835
3c2214b6 836 pinst = hlist_entry_safe(node, struct padata_instance, cpu_dead_node);
30e92153
SAS
837 if (!pinst_has_cpu(pinst, cpu))
838 return 0;
16295bec 839
30e92153
SAS
840 mutex_lock(&pinst->lock);
841 ret = __padata_remove_cpu(pinst, cpu);
842 mutex_unlock(&pinst->lock);
843 return ret;
16295bec 844}
30e92153
SAS
845
846static enum cpuhp_state hp_online;
e2cb2f1c 847#endif
16295bec 848
5e017dc3
DK
849static void __padata_free(struct padata_instance *pinst)
850{
851#ifdef CONFIG_HOTPLUG_CPU
3c2214b6
DJ
852 cpuhp_state_remove_instance_nocalls(CPUHP_PADATA_DEAD,
853 &pinst->cpu_dead_node);
854 cpuhp_state_remove_instance_nocalls(hp_online, &pinst->cpu_online_node);
5e017dc3
DK
855#endif
856
bbefa1dd
HX
857 WARN_ON(!list_empty(&pinst->pslist));
858
bbefa1dd
HX
859 free_cpumask_var(pinst->rcpumask.cbcpu);
860 free_cpumask_var(pinst->rcpumask.pcpu);
5e017dc3
DK
861 free_cpumask_var(pinst->cpumask.pcpu);
862 free_cpumask_var(pinst->cpumask.cbcpu);
45d153c0
DJ
863 destroy_workqueue(pinst->serial_wq);
864 destroy_workqueue(pinst->parallel_wq);
5e017dc3
DK
865 kfree(pinst);
866}
867
868#define kobj2pinst(_kobj) \
869 container_of(_kobj, struct padata_instance, kobj)
870#define attr2pentry(_attr) \
871 container_of(_attr, struct padata_sysfs_entry, attr)
872
873static void padata_sysfs_release(struct kobject *kobj)
874{
875 struct padata_instance *pinst = kobj2pinst(kobj);
876 __padata_free(pinst);
877}
878
879struct padata_sysfs_entry {
880 struct attribute attr;
881 ssize_t (*show)(struct padata_instance *, struct attribute *, char *);
882 ssize_t (*store)(struct padata_instance *, struct attribute *,
883 const char *, size_t);
884};
885
886static ssize_t show_cpumask(struct padata_instance *pinst,
887 struct attribute *attr, char *buf)
888{
889 struct cpumask *cpumask;
890 ssize_t len;
891
892 mutex_lock(&pinst->lock);
893 if (!strcmp(attr->name, "serial_cpumask"))
894 cpumask = pinst->cpumask.cbcpu;
895 else
896 cpumask = pinst->cpumask.pcpu;
897
4497da6f
TH
898 len = snprintf(buf, PAGE_SIZE, "%*pb\n",
899 nr_cpu_ids, cpumask_bits(cpumask));
5e017dc3 900 mutex_unlock(&pinst->lock);
4497da6f 901 return len < PAGE_SIZE ? len : -EINVAL;
5e017dc3
DK
902}
903
904static ssize_t store_cpumask(struct padata_instance *pinst,
905 struct attribute *attr,
906 const char *buf, size_t count)
907{
908 cpumask_var_t new_cpumask;
909 ssize_t ret;
910 int mask_type;
911
912 if (!alloc_cpumask_var(&new_cpumask, GFP_KERNEL))
913 return -ENOMEM;
914
915 ret = bitmap_parse(buf, count, cpumask_bits(new_cpumask),
916 nr_cpumask_bits);
917 if (ret < 0)
918 goto out;
919
920 mask_type = !strcmp(attr->name, "serial_cpumask") ?
921 PADATA_CPU_SERIAL : PADATA_CPU_PARALLEL;
922 ret = padata_set_cpumask(pinst, mask_type, new_cpumask);
923 if (!ret)
924 ret = count;
925
926out:
927 free_cpumask_var(new_cpumask);
928 return ret;
929}
930
931#define PADATA_ATTR_RW(_name, _show_name, _store_name) \
932 static struct padata_sysfs_entry _name##_attr = \
933 __ATTR(_name, 0644, _show_name, _store_name)
934#define PADATA_ATTR_RO(_name, _show_name) \
935 static struct padata_sysfs_entry _name##_attr = \
936 __ATTR(_name, 0400, _show_name, NULL)
937
938PADATA_ATTR_RW(serial_cpumask, show_cpumask, store_cpumask);
939PADATA_ATTR_RW(parallel_cpumask, show_cpumask, store_cpumask);
940
941/*
942 * Padata sysfs provides the following objects:
943 * serial_cpumask [RW] - cpumask for serial workers
944 * parallel_cpumask [RW] - cpumask for parallel workers
945 */
946static struct attribute *padata_default_attrs[] = {
947 &serial_cpumask_attr.attr,
948 &parallel_cpumask_attr.attr,
949 NULL,
950};
2064fbc7 951ATTRIBUTE_GROUPS(padata_default);
5e017dc3
DK
952
953static ssize_t padata_sysfs_show(struct kobject *kobj,
954 struct attribute *attr, char *buf)
955{
956 struct padata_instance *pinst;
957 struct padata_sysfs_entry *pentry;
958 ssize_t ret = -EIO;
959
960 pinst = kobj2pinst(kobj);
961 pentry = attr2pentry(attr);
962 if (pentry->show)
963 ret = pentry->show(pinst, attr, buf);
964
965 return ret;
966}
967
968static ssize_t padata_sysfs_store(struct kobject *kobj, struct attribute *attr,
969 const char *buf, size_t count)
970{
971 struct padata_instance *pinst;
972 struct padata_sysfs_entry *pentry;
973 ssize_t ret = -EIO;
974
975 pinst = kobj2pinst(kobj);
976 pentry = attr2pentry(attr);
977 if (pentry->show)
978 ret = pentry->store(pinst, attr, buf, count);
979
980 return ret;
981}
982
983static const struct sysfs_ops padata_sysfs_ops = {
984 .show = padata_sysfs_show,
985 .store = padata_sysfs_store,
986};
987
988static struct kobj_type padata_attr_type = {
989 .sysfs_ops = &padata_sysfs_ops,
2064fbc7 990 .default_groups = padata_default_groups,
5e017dc3
DK
991 .release = padata_sysfs_release,
992};
993
e15bacbe 994/**
e6cc1170
SK
995 * padata_alloc - allocate and initialize a padata instance and specify
996 * cpumasks for serial and parallel workers.
16295bec 997 *
b128a304 998 * @name: used to identify the instance
e15bacbe
DK
999 * @pcpumask: cpumask that will be used for padata parallelization
1000 * @cbcpumask: cpumask that will be used for padata serialization
bfcdcef8
DJ
1001 *
1002 * Return: new instance on success, NULL on error
16295bec 1003 */
b128a304 1004static struct padata_instance *padata_alloc(const char *name,
9596695e
TG
1005 const struct cpumask *pcpumask,
1006 const struct cpumask *cbcpumask)
16295bec 1007{
16295bec 1008 struct padata_instance *pinst;
16295bec
SK
1009
1010 pinst = kzalloc(sizeof(struct padata_instance), GFP_KERNEL);
1011 if (!pinst)
1012 goto err;
1013
bfde23ce
DJ
1014 pinst->parallel_wq = alloc_workqueue("%s_parallel", WQ_UNBOUND, 0,
1015 name);
45d153c0 1016 if (!pinst->parallel_wq)
16295bec 1017 goto err_free_inst;
b128a304 1018
cc491d8e
DJ
1019 get_online_cpus();
1020
45d153c0
DJ
1021 pinst->serial_wq = alloc_workqueue("%s_serial", WQ_MEM_RECLAIM |
1022 WQ_CPU_INTENSIVE, 1, name);
1023 if (!pinst->serial_wq)
cc491d8e 1024 goto err_put_cpus;
45d153c0
DJ
1025
1026 if (!alloc_cpumask_var(&pinst->cpumask.pcpu, GFP_KERNEL))
1027 goto err_free_serial_wq;
e15bacbe
DK
1028 if (!alloc_cpumask_var(&pinst->cpumask.cbcpu, GFP_KERNEL)) {
1029 free_cpumask_var(pinst->cpumask.pcpu);
45d153c0 1030 goto err_free_serial_wq;
33e54450 1031 }
e15bacbe
DK
1032 if (!padata_validate_cpumask(pinst, pcpumask) ||
1033 !padata_validate_cpumask(pinst, cbcpumask))
1034 goto err_free_masks;
16295bec 1035
bbefa1dd 1036 if (!alloc_cpumask_var(&pinst->rcpumask.pcpu, GFP_KERNEL))
e15bacbe 1037 goto err_free_masks;
bbefa1dd
HX
1038 if (!alloc_cpumask_var(&pinst->rcpumask.cbcpu, GFP_KERNEL))
1039 goto err_free_rcpumask_pcpu;
74781387 1040
bbefa1dd 1041 INIT_LIST_HEAD(&pinst->pslist);
16295bec 1042
e15bacbe
DK
1043 cpumask_copy(pinst->cpumask.pcpu, pcpumask);
1044 cpumask_copy(pinst->cpumask.cbcpu, cbcpumask);
bbefa1dd
HX
1045 cpumask_and(pinst->rcpumask.pcpu, pcpumask, cpu_online_mask);
1046 cpumask_and(pinst->rcpumask.cbcpu, cbcpumask, cpu_online_mask);
1047
1048 if (padata_setup_cpumasks(pinst))
91a71d61 1049 goto err_free_rcpumask_cbcpu;
16295bec 1050
bd25b488 1051 __padata_start(pinst);
16295bec 1052
5e017dc3 1053 kobject_init(&pinst->kobj, &padata_attr_type);
16295bec
SK
1054 mutex_init(&pinst->lock);
1055
b8b4a416 1056#ifdef CONFIG_HOTPLUG_CPU
3c2214b6
DJ
1057 cpuhp_state_add_instance_nocalls_cpuslocked(hp_online,
1058 &pinst->cpu_online_node);
894c9ef9 1059 cpuhp_state_add_instance_nocalls_cpuslocked(CPUHP_PADATA_DEAD,
3c2214b6 1060 &pinst->cpu_dead_node);
b8b4a416 1061#endif
cc491d8e
DJ
1062
1063 put_online_cpus();
1064
16295bec
SK
1065 return pinst;
1066
bbefa1dd
HX
1067err_free_rcpumask_cbcpu:
1068 free_cpumask_var(pinst->rcpumask.cbcpu);
1069err_free_rcpumask_pcpu:
1070 free_cpumask_var(pinst->rcpumask.pcpu);
e15bacbe
DK
1071err_free_masks:
1072 free_cpumask_var(pinst->cpumask.pcpu);
1073 free_cpumask_var(pinst->cpumask.cbcpu);
45d153c0
DJ
1074err_free_serial_wq:
1075 destroy_workqueue(pinst->serial_wq);
cc491d8e
DJ
1076err_put_cpus:
1077 put_online_cpus();
45d153c0 1078 destroy_workqueue(pinst->parallel_wq);
16295bec
SK
1079err_free_inst:
1080 kfree(pinst);
1081err:
1082 return NULL;
1083}
16295bec 1084
9596695e
TG
1085/**
1086 * padata_alloc_possible - Allocate and initialize padata instance.
1087 * Use the cpu_possible_mask for serial and
1088 * parallel workers.
1089 *
b128a304 1090 * @name: used to identify the instance
bfcdcef8
DJ
1091 *
1092 * Return: new instance on success, NULL on error
9596695e 1093 */
b128a304 1094struct padata_instance *padata_alloc_possible(const char *name)
9596695e 1095{
b128a304 1096 return padata_alloc(name, cpu_possible_mask, cpu_possible_mask);
9596695e
TG
1097}
1098EXPORT_SYMBOL(padata_alloc_possible);
1099
0198ffd1 1100/**
16295bec
SK
1101 * padata_free - free a padata instance
1102 *
bfcdcef8 1103 * @pinst: padata instance to free
16295bec
SK
1104 */
1105void padata_free(struct padata_instance *pinst)
1106{
5e017dc3 1107 kobject_put(&pinst->kobj);
16295bec
SK
1108}
1109EXPORT_SYMBOL(padata_free);
30e92153 1110
bbefa1dd
HX
1111/**
1112 * padata_alloc_shell - Allocate and initialize padata shell.
1113 *
1114 * @pinst: Parent padata_instance object.
bfcdcef8
DJ
1115 *
1116 * Return: new shell on success, NULL on error
bbefa1dd
HX
1117 */
1118struct padata_shell *padata_alloc_shell(struct padata_instance *pinst)
1119{
1120 struct parallel_data *pd;
1121 struct padata_shell *ps;
1122
1123 ps = kzalloc(sizeof(*ps), GFP_KERNEL);
1124 if (!ps)
1125 goto out;
1126
1127 ps->pinst = pinst;
1128
1129 get_online_cpus();
1130 pd = padata_alloc_pd(ps);
1131 put_online_cpus();
1132
1133 if (!pd)
1134 goto out_free_ps;
1135
1136 mutex_lock(&pinst->lock);
1137 RCU_INIT_POINTER(ps->pd, pd);
1138 list_add(&ps->list, &pinst->pslist);
1139 mutex_unlock(&pinst->lock);
1140
1141 return ps;
1142
1143out_free_ps:
1144 kfree(ps);
1145out:
1146 return NULL;
1147}
1148EXPORT_SYMBOL(padata_alloc_shell);
1149
1150/**
1151 * padata_free_shell - free a padata shell
1152 *
1153 * @ps: padata shell to free
1154 */
1155void padata_free_shell(struct padata_shell *ps)
1156{
07b24c7c
EB
1157 if (!ps)
1158 return;
bbefa1dd 1159
07b24c7c 1160 mutex_lock(&ps->pinst->lock);
bbefa1dd
HX
1161 list_del(&ps->list);
1162 padata_free_pd(rcu_dereference_protected(ps->pd, 1));
07b24c7c 1163 mutex_unlock(&ps->pinst->lock);
bbefa1dd
HX
1164
1165 kfree(ps);
1166}
1167EXPORT_SYMBOL(padata_free_shell);
1168
f1b192b1 1169void __init padata_init(void)
30e92153 1170{
4611ce22 1171 unsigned int i, possible_cpus;
f1b192b1 1172#ifdef CONFIG_HOTPLUG_CPU
30e92153
SAS
1173 int ret;
1174
1175 ret = cpuhp_setup_state_multi(CPUHP_AP_ONLINE_DYN, "padata:online",
894c9ef9 1176 padata_cpu_online, NULL);
30e92153 1177 if (ret < 0)
f1b192b1 1178 goto err;
30e92153 1179 hp_online = ret;
894c9ef9
DJ
1180
1181 ret = cpuhp_setup_state_multi(CPUHP_PADATA_DEAD, "padata:dead",
1182 NULL, padata_cpu_dead);
4611ce22
DJ
1183 if (ret < 0)
1184 goto remove_online_state;
1185#endif
1186
1187 possible_cpus = num_possible_cpus();
1188 padata_works = kmalloc_array(possible_cpus, sizeof(struct padata_work),
1189 GFP_KERNEL);
1190 if (!padata_works)
1191 goto remove_dead_state;
1192
1193 for (i = 0; i < possible_cpus; ++i)
1194 list_add(&padata_works[i].pw_list, &padata_free_works);
30e92153 1195
f1b192b1 1196 return;
4611ce22
DJ
1197
1198remove_dead_state:
1199#ifdef CONFIG_HOTPLUG_CPU
1200 cpuhp_remove_multi_state(CPUHP_PADATA_DEAD);
1201remove_online_state:
1202 cpuhp_remove_multi_state(hp_online);
f1b192b1 1203err:
30e92153 1204#endif
4611ce22 1205 pr_warn("padata: initialization failed\n");
f1b192b1 1206}