2 * padata.c - generic interface to process data streams in parallel
4 * See Documentation/padata.txt for an api documentation.
6 * Copyright (C) 2008, 2009 secunet Security Networks AG
7 * Copyright (C) 2008, 2009 Steffen Klassert <steffen.klassert@secunet.com>
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.
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
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.
23 #include <linux/export.h>
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>
30 #include <linux/slab.h>
31 #include <linux/sysfs.h>
32 #include <linux/rcupdate.h>
33 #include <linux/module.h>
35 #define MAX_OBJ_NUM 1000
37 static int padata_index_to_cpu(struct parallel_data
*pd
, int cpu_index
)
41 target_cpu
= cpumask_first(pd
->cpumask
.pcpu
);
42 for (cpu
= 0; cpu
< cpu_index
; cpu
++)
43 target_cpu
= cpumask_next(target_cpu
, pd
->cpumask
.pcpu
);
48 static int padata_cpu_hash(struct parallel_data
*pd
)
54 * Hash the sequence numbers to the cpus by taking
55 * seq_nr mod. number of cpus in use.
58 seq_nr
= atomic_inc_return(&pd
->seq_nr
);
59 cpu_index
= seq_nr
% cpumask_weight(pd
->cpumask
.pcpu
);
61 return padata_index_to_cpu(pd
, cpu_index
);
64 static void padata_parallel_worker(struct work_struct
*parallel_work
)
66 struct padata_parallel_queue
*pqueue
;
67 LIST_HEAD(local_list
);
70 pqueue
= container_of(parallel_work
,
71 struct padata_parallel_queue
, work
);
73 spin_lock(&pqueue
->parallel
.lock
);
74 list_replace_init(&pqueue
->parallel
.list
, &local_list
);
75 spin_unlock(&pqueue
->parallel
.lock
);
77 while (!list_empty(&local_list
)) {
78 struct padata_priv
*padata
;
80 padata
= list_entry(local_list
.next
,
81 struct padata_priv
, list
);
83 list_del_init(&padata
->list
);
85 padata
->parallel(padata
);
92 * padata_do_parallel - padata parallelization function
94 * @pinst: padata instance
95 * @padata: object to be parallelized
96 * @cb_cpu: cpu the serialization callback function will run on,
97 * must be in the serial cpumask of padata(i.e. cpumask.cbcpu).
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.
103 int padata_do_parallel(struct padata_instance
*pinst
,
104 struct padata_priv
*padata
, int cb_cpu
)
107 struct padata_parallel_queue
*queue
;
108 struct parallel_data
*pd
;
112 pd
= rcu_dereference_bh(pinst
->pd
);
115 if (!(pinst
->flags
& PADATA_INIT
) || pinst
->flags
& PADATA_INVALID
)
118 if (!cpumask_test_cpu(cb_cpu
, pd
->cpumask
.cbcpu
))
122 if ((pinst
->flags
& PADATA_RESET
))
125 if (atomic_read(&pd
->refcnt
) >= MAX_OBJ_NUM
)
129 atomic_inc(&pd
->refcnt
);
131 padata
->cb_cpu
= cb_cpu
;
133 target_cpu
= padata_cpu_hash(pd
);
134 queue
= per_cpu_ptr(pd
->pqueue
, target_cpu
);
136 spin_lock(&queue
->parallel
.lock
);
137 list_add_tail(&padata
->list
, &queue
->parallel
.list
);
138 spin_unlock(&queue
->parallel
.lock
);
140 queue_work_on(target_cpu
, pinst
->wq
, &queue
->work
);
143 rcu_read_unlock_bh();
147 EXPORT_SYMBOL(padata_do_parallel
);
150 * padata_get_next - Get the next object that needs serialization.
154 * A pointer to the control struct of the next object that needs
155 * serialization, if present in one of the percpu reorder queues.
157 * -EINPROGRESS, if the next object that needs serialization will
158 * be parallel processed by another cpu and is not yet present in
159 * the cpu's reorder queue.
161 * -ENODATA, if this cpu has to do the parallel processing for
164 static struct padata_priv
*padata_get_next(struct parallel_data
*pd
)
167 unsigned int next_nr
, next_index
;
168 struct padata_parallel_queue
*next_queue
;
169 struct padata_priv
*padata
;
170 struct padata_list
*reorder
;
172 num_cpus
= cpumask_weight(pd
->cpumask
.pcpu
);
175 * Calculate the percpu reorder queue and the sequence
176 * number of the next object.
178 next_nr
= pd
->processed
;
179 next_index
= next_nr
% num_cpus
;
180 cpu
= padata_index_to_cpu(pd
, next_index
);
181 next_queue
= per_cpu_ptr(pd
->pqueue
, cpu
);
183 reorder
= &next_queue
->reorder
;
185 spin_lock(&reorder
->lock
);
186 if (!list_empty(&reorder
->list
)) {
187 padata
= list_entry(reorder
->list
.next
,
188 struct padata_priv
, list
);
190 list_del_init(&padata
->list
);
191 atomic_dec(&pd
->reorder_objects
);
195 spin_unlock(&reorder
->lock
);
198 spin_unlock(&reorder
->lock
);
200 if (__this_cpu_read(pd
->pqueue
->cpu_index
) == next_queue
->cpu_index
) {
201 padata
= ERR_PTR(-ENODATA
);
205 padata
= ERR_PTR(-EINPROGRESS
);
210 static void padata_reorder(struct parallel_data
*pd
)
213 struct padata_priv
*padata
;
214 struct padata_serial_queue
*squeue
;
215 struct padata_instance
*pinst
= pd
->pinst
;
218 * We need to ensure that only one cpu can work on dequeueing of
219 * the reorder queue the time. Calculating in which percpu reorder
220 * queue the next object will arrive takes some time. A spinlock
221 * would be highly contended. Also it is not clear in which order
222 * the objects arrive to the reorder queues. So a cpu could wait to
223 * get the lock just to notice that there is nothing to do at the
224 * moment. Therefore we use a trylock and let the holder of the lock
225 * care for all the objects enqueued during the holdtime of the lock.
227 if (!spin_trylock_bh(&pd
->lock
))
231 padata
= padata_get_next(pd
);
234 * If the next object that needs serialization is parallel
235 * processed by another cpu and is still on it's way to the
236 * cpu's reorder queue, nothing to do for now.
238 if (PTR_ERR(padata
) == -EINPROGRESS
)
242 * This cpu has to do the parallel processing of the next
243 * object. It's waiting in the cpu's parallelization queue,
244 * so exit immediately.
246 if (PTR_ERR(padata
) == -ENODATA
) {
247 del_timer(&pd
->timer
);
248 spin_unlock_bh(&pd
->lock
);
252 cb_cpu
= padata
->cb_cpu
;
253 squeue
= per_cpu_ptr(pd
->squeue
, cb_cpu
);
255 spin_lock(&squeue
->serial
.lock
);
256 list_add_tail(&padata
->list
, &squeue
->serial
.list
);
257 spin_unlock(&squeue
->serial
.lock
);
259 queue_work_on(cb_cpu
, pinst
->wq
, &squeue
->work
);
262 spin_unlock_bh(&pd
->lock
);
265 * The next object that needs serialization might have arrived to
266 * the reorder queues in the meantime, we will be called again
267 * from the timer function if no one else cares for it.
269 if (atomic_read(&pd
->reorder_objects
)
270 && !(pinst
->flags
& PADATA_RESET
))
271 mod_timer(&pd
->timer
, jiffies
+ HZ
);
273 del_timer(&pd
->timer
);
278 static void padata_reorder_timer(unsigned long arg
)
280 struct parallel_data
*pd
= (struct parallel_data
*)arg
;
285 static void padata_serial_worker(struct work_struct
*serial_work
)
287 struct padata_serial_queue
*squeue
;
288 struct parallel_data
*pd
;
289 LIST_HEAD(local_list
);
292 squeue
= container_of(serial_work
, struct padata_serial_queue
, work
);
295 spin_lock(&squeue
->serial
.lock
);
296 list_replace_init(&squeue
->serial
.list
, &local_list
);
297 spin_unlock(&squeue
->serial
.lock
);
299 while (!list_empty(&local_list
)) {
300 struct padata_priv
*padata
;
302 padata
= list_entry(local_list
.next
,
303 struct padata_priv
, list
);
305 list_del_init(&padata
->list
);
307 padata
->serial(padata
);
308 atomic_dec(&pd
->refcnt
);
314 * padata_do_serial - padata serialization function
316 * @padata: object to be serialized.
318 * padata_do_serial must be called for every parallelized object.
319 * The serialization callback function will run with BHs off.
321 void padata_do_serial(struct padata_priv
*padata
)
324 struct padata_parallel_queue
*pqueue
;
325 struct parallel_data
*pd
;
330 pqueue
= per_cpu_ptr(pd
->pqueue
, cpu
);
332 spin_lock(&pqueue
->reorder
.lock
);
333 atomic_inc(&pd
->reorder_objects
);
334 list_add_tail(&padata
->list
, &pqueue
->reorder
.list
);
335 spin_unlock(&pqueue
->reorder
.lock
);
341 EXPORT_SYMBOL(padata_do_serial
);
343 static int padata_setup_cpumasks(struct parallel_data
*pd
,
344 const struct cpumask
*pcpumask
,
345 const struct cpumask
*cbcpumask
)
347 if (!alloc_cpumask_var(&pd
->cpumask
.pcpu
, GFP_KERNEL
))
350 cpumask_and(pd
->cpumask
.pcpu
, pcpumask
, cpu_online_mask
);
351 if (!alloc_cpumask_var(&pd
->cpumask
.cbcpu
, GFP_KERNEL
)) {
352 free_cpumask_var(pd
->cpumask
.pcpu
);
356 cpumask_and(pd
->cpumask
.cbcpu
, cbcpumask
, cpu_online_mask
);
360 static void __padata_list_init(struct padata_list
*pd_list
)
362 INIT_LIST_HEAD(&pd_list
->list
);
363 spin_lock_init(&pd_list
->lock
);
366 /* Initialize all percpu queues used by serial workers */
367 static void padata_init_squeues(struct parallel_data
*pd
)
370 struct padata_serial_queue
*squeue
;
372 for_each_cpu(cpu
, pd
->cpumask
.cbcpu
) {
373 squeue
= per_cpu_ptr(pd
->squeue
, cpu
);
375 __padata_list_init(&squeue
->serial
);
376 INIT_WORK(&squeue
->work
, padata_serial_worker
);
380 /* Initialize all percpu queues used by parallel workers */
381 static void padata_init_pqueues(struct parallel_data
*pd
)
384 struct padata_parallel_queue
*pqueue
;
387 for_each_cpu(cpu
, pd
->cpumask
.pcpu
) {
388 pqueue
= per_cpu_ptr(pd
->pqueue
, cpu
);
390 pqueue
->cpu_index
= cpu_index
;
393 __padata_list_init(&pqueue
->reorder
);
394 __padata_list_init(&pqueue
->parallel
);
395 INIT_WORK(&pqueue
->work
, padata_parallel_worker
);
396 atomic_set(&pqueue
->num_obj
, 0);
400 /* Allocate and initialize the internal cpumask dependend resources. */
401 static struct parallel_data
*padata_alloc_pd(struct padata_instance
*pinst
,
402 const struct cpumask
*pcpumask
,
403 const struct cpumask
*cbcpumask
)
405 struct parallel_data
*pd
;
407 pd
= kzalloc(sizeof(struct parallel_data
), GFP_KERNEL
);
411 pd
->pqueue
= alloc_percpu(struct padata_parallel_queue
);
415 pd
->squeue
= alloc_percpu(struct padata_serial_queue
);
417 goto err_free_pqueue
;
418 if (padata_setup_cpumasks(pd
, pcpumask
, cbcpumask
) < 0)
419 goto err_free_squeue
;
421 padata_init_pqueues(pd
);
422 padata_init_squeues(pd
);
423 setup_timer(&pd
->timer
, padata_reorder_timer
, (unsigned long)pd
);
424 atomic_set(&pd
->seq_nr
, -1);
425 atomic_set(&pd
->reorder_objects
, 0);
426 atomic_set(&pd
->refcnt
, 0);
428 spin_lock_init(&pd
->lock
);
433 free_percpu(pd
->squeue
);
435 free_percpu(pd
->pqueue
);
442 static void padata_free_pd(struct parallel_data
*pd
)
444 free_cpumask_var(pd
->cpumask
.pcpu
);
445 free_cpumask_var(pd
->cpumask
.cbcpu
);
446 free_percpu(pd
->pqueue
);
447 free_percpu(pd
->squeue
);
451 /* Flush all objects out of the padata queues. */
452 static void padata_flush_queues(struct parallel_data
*pd
)
455 struct padata_parallel_queue
*pqueue
;
456 struct padata_serial_queue
*squeue
;
458 for_each_cpu(cpu
, pd
->cpumask
.pcpu
) {
459 pqueue
= per_cpu_ptr(pd
->pqueue
, cpu
);
460 flush_work(&pqueue
->work
);
463 del_timer_sync(&pd
->timer
);
465 if (atomic_read(&pd
->reorder_objects
))
468 for_each_cpu(cpu
, pd
->cpumask
.cbcpu
) {
469 squeue
= per_cpu_ptr(pd
->squeue
, cpu
);
470 flush_work(&squeue
->work
);
473 BUG_ON(atomic_read(&pd
->refcnt
) != 0);
476 static void __padata_start(struct padata_instance
*pinst
)
478 pinst
->flags
|= PADATA_INIT
;
481 static void __padata_stop(struct padata_instance
*pinst
)
483 if (!(pinst
->flags
& PADATA_INIT
))
486 pinst
->flags
&= ~PADATA_INIT
;
491 padata_flush_queues(pinst
->pd
);
495 /* Replace the internal control structure with a new one. */
496 static void padata_replace(struct padata_instance
*pinst
,
497 struct parallel_data
*pd_new
)
499 struct parallel_data
*pd_old
= pinst
->pd
;
500 int notification_mask
= 0;
502 pinst
->flags
|= PADATA_RESET
;
504 rcu_assign_pointer(pinst
->pd
, pd_new
);
508 if (!cpumask_equal(pd_old
->cpumask
.pcpu
, pd_new
->cpumask
.pcpu
))
509 notification_mask
|= PADATA_CPU_PARALLEL
;
510 if (!cpumask_equal(pd_old
->cpumask
.cbcpu
, pd_new
->cpumask
.cbcpu
))
511 notification_mask
|= PADATA_CPU_SERIAL
;
513 padata_flush_queues(pd_old
);
514 padata_free_pd(pd_old
);
516 if (notification_mask
)
517 blocking_notifier_call_chain(&pinst
->cpumask_change_notifier
,
521 pinst
->flags
&= ~PADATA_RESET
;
525 * padata_register_cpumask_notifier - Registers a notifier that will be called
526 * if either pcpu or cbcpu or both cpumasks change.
528 * @pinst: A poineter to padata instance
529 * @nblock: A pointer to notifier block.
531 int padata_register_cpumask_notifier(struct padata_instance
*pinst
,
532 struct notifier_block
*nblock
)
534 return blocking_notifier_chain_register(&pinst
->cpumask_change_notifier
,
537 EXPORT_SYMBOL(padata_register_cpumask_notifier
);
540 * padata_unregister_cpumask_notifier - Unregisters cpumask notifier
541 * registered earlier using padata_register_cpumask_notifier
543 * @pinst: A pointer to data instance.
544 * @nlock: A pointer to notifier block.
546 int padata_unregister_cpumask_notifier(struct padata_instance
*pinst
,
547 struct notifier_block
*nblock
)
549 return blocking_notifier_chain_unregister(
550 &pinst
->cpumask_change_notifier
,
553 EXPORT_SYMBOL(padata_unregister_cpumask_notifier
);
556 /* If cpumask contains no active cpu, we mark the instance as invalid. */
557 static bool padata_validate_cpumask(struct padata_instance
*pinst
,
558 const struct cpumask
*cpumask
)
560 if (!cpumask_intersects(cpumask
, cpu_online_mask
)) {
561 pinst
->flags
|= PADATA_INVALID
;
565 pinst
->flags
&= ~PADATA_INVALID
;
569 static int __padata_set_cpumasks(struct padata_instance
*pinst
,
570 cpumask_var_t pcpumask
,
571 cpumask_var_t cbcpumask
)
574 struct parallel_data
*pd
;
576 valid
= padata_validate_cpumask(pinst
, pcpumask
);
578 __padata_stop(pinst
);
582 valid
= padata_validate_cpumask(pinst
, cbcpumask
);
584 __padata_stop(pinst
);
587 pd
= padata_alloc_pd(pinst
, pcpumask
, cbcpumask
);
591 cpumask_copy(pinst
->cpumask
.pcpu
, pcpumask
);
592 cpumask_copy(pinst
->cpumask
.cbcpu
, cbcpumask
);
594 padata_replace(pinst
, pd
);
597 __padata_start(pinst
);
603 * padata_set_cpumask: Sets specified by @cpumask_type cpumask to the value
604 * equivalent to @cpumask.
606 * @pinst: padata instance
607 * @cpumask_type: PADATA_CPU_SERIAL or PADATA_CPU_PARALLEL corresponding
608 * to parallel and serial cpumasks respectively.
609 * @cpumask: the cpumask to use
611 int padata_set_cpumask(struct padata_instance
*pinst
, int cpumask_type
,
612 cpumask_var_t cpumask
)
614 struct cpumask
*serial_mask
, *parallel_mask
;
617 mutex_lock(&pinst
->lock
);
620 switch (cpumask_type
) {
621 case PADATA_CPU_PARALLEL
:
622 serial_mask
= pinst
->cpumask
.cbcpu
;
623 parallel_mask
= cpumask
;
625 case PADATA_CPU_SERIAL
:
626 parallel_mask
= pinst
->cpumask
.pcpu
;
627 serial_mask
= cpumask
;
633 err
= __padata_set_cpumasks(pinst
, parallel_mask
, serial_mask
);
637 mutex_unlock(&pinst
->lock
);
641 EXPORT_SYMBOL(padata_set_cpumask
);
644 * padata_start - start the parallel processing
646 * @pinst: padata instance to start
648 int padata_start(struct padata_instance
*pinst
)
652 mutex_lock(&pinst
->lock
);
654 if (pinst
->flags
& PADATA_INVALID
)
657 __padata_start(pinst
);
659 mutex_unlock(&pinst
->lock
);
663 EXPORT_SYMBOL(padata_start
);
666 * padata_stop - stop the parallel processing
668 * @pinst: padata instance to stop
670 void padata_stop(struct padata_instance
*pinst
)
672 mutex_lock(&pinst
->lock
);
673 __padata_stop(pinst
);
674 mutex_unlock(&pinst
->lock
);
676 EXPORT_SYMBOL(padata_stop
);
678 #ifdef CONFIG_HOTPLUG_CPU
680 static int __padata_add_cpu(struct padata_instance
*pinst
, int cpu
)
682 struct parallel_data
*pd
;
684 if (cpumask_test_cpu(cpu
, cpu_online_mask
)) {
685 pd
= padata_alloc_pd(pinst
, pinst
->cpumask
.pcpu
,
686 pinst
->cpumask
.cbcpu
);
690 padata_replace(pinst
, pd
);
692 if (padata_validate_cpumask(pinst
, pinst
->cpumask
.pcpu
) &&
693 padata_validate_cpumask(pinst
, pinst
->cpumask
.cbcpu
))
694 __padata_start(pinst
);
700 static int __padata_remove_cpu(struct padata_instance
*pinst
, int cpu
)
702 struct parallel_data
*pd
= NULL
;
704 if (cpumask_test_cpu(cpu
, cpu_online_mask
)) {
706 if (!padata_validate_cpumask(pinst
, pinst
->cpumask
.pcpu
) ||
707 !padata_validate_cpumask(pinst
, pinst
->cpumask
.cbcpu
))
708 __padata_stop(pinst
);
710 pd
= padata_alloc_pd(pinst
, pinst
->cpumask
.pcpu
,
711 pinst
->cpumask
.cbcpu
);
715 padata_replace(pinst
, pd
);
717 cpumask_clear_cpu(cpu
, pd
->cpumask
.cbcpu
);
718 cpumask_clear_cpu(cpu
, pd
->cpumask
.pcpu
);
725 * padata_remove_cpu - remove a cpu from the one or both(serial and parallel)
728 * @pinst: padata instance
729 * @cpu: cpu to remove
730 * @mask: bitmask specifying from which cpumask @cpu should be removed
731 * The @mask may be any combination of the following flags:
732 * PADATA_CPU_SERIAL - serial cpumask
733 * PADATA_CPU_PARALLEL - parallel cpumask
735 int padata_remove_cpu(struct padata_instance
*pinst
, int cpu
, int mask
)
739 if (!(mask
& (PADATA_CPU_SERIAL
| PADATA_CPU_PARALLEL
)))
742 mutex_lock(&pinst
->lock
);
745 if (mask
& PADATA_CPU_SERIAL
)
746 cpumask_clear_cpu(cpu
, pinst
->cpumask
.cbcpu
);
747 if (mask
& PADATA_CPU_PARALLEL
)
748 cpumask_clear_cpu(cpu
, pinst
->cpumask
.pcpu
);
750 err
= __padata_remove_cpu(pinst
, cpu
);
753 mutex_unlock(&pinst
->lock
);
757 EXPORT_SYMBOL(padata_remove_cpu
);
759 static inline int pinst_has_cpu(struct padata_instance
*pinst
, int cpu
)
761 return cpumask_test_cpu(cpu
, pinst
->cpumask
.pcpu
) ||
762 cpumask_test_cpu(cpu
, pinst
->cpumask
.cbcpu
);
765 static int padata_cpu_online(unsigned int cpu
, struct hlist_node
*node
)
767 struct padata_instance
*pinst
;
770 pinst
= hlist_entry_safe(node
, struct padata_instance
, node
);
771 if (!pinst_has_cpu(pinst
, cpu
))
774 mutex_lock(&pinst
->lock
);
775 ret
= __padata_add_cpu(pinst
, cpu
);
776 mutex_unlock(&pinst
->lock
);
780 static int padata_cpu_prep_down(unsigned int cpu
, struct hlist_node
*node
)
782 struct padata_instance
*pinst
;
785 pinst
= hlist_entry_safe(node
, struct padata_instance
, node
);
786 if (!pinst_has_cpu(pinst
, cpu
))
789 mutex_lock(&pinst
->lock
);
790 ret
= __padata_remove_cpu(pinst
, cpu
);
791 mutex_unlock(&pinst
->lock
);
795 static enum cpuhp_state hp_online
;
798 static void __padata_free(struct padata_instance
*pinst
)
800 #ifdef CONFIG_HOTPLUG_CPU
801 cpuhp_state_remove_instance_nocalls(hp_online
, &pinst
->node
);
805 padata_free_pd(pinst
->pd
);
806 free_cpumask_var(pinst
->cpumask
.pcpu
);
807 free_cpumask_var(pinst
->cpumask
.cbcpu
);
811 #define kobj2pinst(_kobj) \
812 container_of(_kobj, struct padata_instance, kobj)
813 #define attr2pentry(_attr) \
814 container_of(_attr, struct padata_sysfs_entry, attr)
816 static void padata_sysfs_release(struct kobject
*kobj
)
818 struct padata_instance
*pinst
= kobj2pinst(kobj
);
819 __padata_free(pinst
);
822 struct padata_sysfs_entry
{
823 struct attribute attr
;
824 ssize_t (*show
)(struct padata_instance
*, struct attribute
*, char *);
825 ssize_t (*store
)(struct padata_instance
*, struct attribute
*,
826 const char *, size_t);
829 static ssize_t
show_cpumask(struct padata_instance
*pinst
,
830 struct attribute
*attr
, char *buf
)
832 struct cpumask
*cpumask
;
835 mutex_lock(&pinst
->lock
);
836 if (!strcmp(attr
->name
, "serial_cpumask"))
837 cpumask
= pinst
->cpumask
.cbcpu
;
839 cpumask
= pinst
->cpumask
.pcpu
;
841 len
= snprintf(buf
, PAGE_SIZE
, "%*pb\n",
842 nr_cpu_ids
, cpumask_bits(cpumask
));
843 mutex_unlock(&pinst
->lock
);
844 return len
< PAGE_SIZE
? len
: -EINVAL
;
847 static ssize_t
store_cpumask(struct padata_instance
*pinst
,
848 struct attribute
*attr
,
849 const char *buf
, size_t count
)
851 cpumask_var_t new_cpumask
;
855 if (!alloc_cpumask_var(&new_cpumask
, GFP_KERNEL
))
858 ret
= bitmap_parse(buf
, count
, cpumask_bits(new_cpumask
),
863 mask_type
= !strcmp(attr
->name
, "serial_cpumask") ?
864 PADATA_CPU_SERIAL
: PADATA_CPU_PARALLEL
;
865 ret
= padata_set_cpumask(pinst
, mask_type
, new_cpumask
);
870 free_cpumask_var(new_cpumask
);
874 #define PADATA_ATTR_RW(_name, _show_name, _store_name) \
875 static struct padata_sysfs_entry _name##_attr = \
876 __ATTR(_name, 0644, _show_name, _store_name)
877 #define PADATA_ATTR_RO(_name, _show_name) \
878 static struct padata_sysfs_entry _name##_attr = \
879 __ATTR(_name, 0400, _show_name, NULL)
881 PADATA_ATTR_RW(serial_cpumask
, show_cpumask
, store_cpumask
);
882 PADATA_ATTR_RW(parallel_cpumask
, show_cpumask
, store_cpumask
);
885 * Padata sysfs provides the following objects:
886 * serial_cpumask [RW] - cpumask for serial workers
887 * parallel_cpumask [RW] - cpumask for parallel workers
889 static struct attribute
*padata_default_attrs
[] = {
890 &serial_cpumask_attr
.attr
,
891 ¶llel_cpumask_attr
.attr
,
895 static ssize_t
padata_sysfs_show(struct kobject
*kobj
,
896 struct attribute
*attr
, char *buf
)
898 struct padata_instance
*pinst
;
899 struct padata_sysfs_entry
*pentry
;
902 pinst
= kobj2pinst(kobj
);
903 pentry
= attr2pentry(attr
);
905 ret
= pentry
->show(pinst
, attr
, buf
);
910 static ssize_t
padata_sysfs_store(struct kobject
*kobj
, struct attribute
*attr
,
911 const char *buf
, size_t count
)
913 struct padata_instance
*pinst
;
914 struct padata_sysfs_entry
*pentry
;
917 pinst
= kobj2pinst(kobj
);
918 pentry
= attr2pentry(attr
);
920 ret
= pentry
->store(pinst
, attr
, buf
, count
);
925 static const struct sysfs_ops padata_sysfs_ops
= {
926 .show
= padata_sysfs_show
,
927 .store
= padata_sysfs_store
,
930 static struct kobj_type padata_attr_type
= {
931 .sysfs_ops
= &padata_sysfs_ops
,
932 .default_attrs
= padata_default_attrs
,
933 .release
= padata_sysfs_release
,
937 * padata_alloc - allocate and initialize a padata instance and specify
938 * cpumasks for serial and parallel workers.
940 * @wq: workqueue to use for the allocated padata instance
941 * @pcpumask: cpumask that will be used for padata parallelization
942 * @cbcpumask: cpumask that will be used for padata serialization
944 * Must be called from a cpus_read_lock() protected region
946 static struct padata_instance
*padata_alloc(struct workqueue_struct
*wq
,
947 const struct cpumask
*pcpumask
,
948 const struct cpumask
*cbcpumask
)
950 struct padata_instance
*pinst
;
951 struct parallel_data
*pd
= NULL
;
953 pinst
= kzalloc(sizeof(struct padata_instance
), GFP_KERNEL
);
957 if (!alloc_cpumask_var(&pinst
->cpumask
.pcpu
, GFP_KERNEL
))
959 if (!alloc_cpumask_var(&pinst
->cpumask
.cbcpu
, GFP_KERNEL
)) {
960 free_cpumask_var(pinst
->cpumask
.pcpu
);
963 if (!padata_validate_cpumask(pinst
, pcpumask
) ||
964 !padata_validate_cpumask(pinst
, cbcpumask
))
967 pd
= padata_alloc_pd(pinst
, pcpumask
, cbcpumask
);
971 rcu_assign_pointer(pinst
->pd
, pd
);
975 cpumask_copy(pinst
->cpumask
.pcpu
, pcpumask
);
976 cpumask_copy(pinst
->cpumask
.cbcpu
, cbcpumask
);
980 BLOCKING_INIT_NOTIFIER_HEAD(&pinst
->cpumask_change_notifier
);
981 kobject_init(&pinst
->kobj
, &padata_attr_type
);
982 mutex_init(&pinst
->lock
);
984 #ifdef CONFIG_HOTPLUG_CPU
985 cpuhp_state_add_instance_nocalls_cpuslocked(hp_online
, &pinst
->node
);
990 free_cpumask_var(pinst
->cpumask
.pcpu
);
991 free_cpumask_var(pinst
->cpumask
.cbcpu
);
999 * padata_alloc_possible - Allocate and initialize padata instance.
1000 * Use the cpu_possible_mask for serial and
1003 * @wq: workqueue to use for the allocated padata instance
1005 * Must be called from a cpus_read_lock() protected region
1007 struct padata_instance
*padata_alloc_possible(struct workqueue_struct
*wq
)
1009 lockdep_assert_cpus_held();
1010 return padata_alloc(wq
, cpu_possible_mask
, cpu_possible_mask
);
1012 EXPORT_SYMBOL(padata_alloc_possible
);
1015 * padata_free - free a padata instance
1017 * @padata_inst: padata instance to free
1019 void padata_free(struct padata_instance
*pinst
)
1021 kobject_put(&pinst
->kobj
);
1023 EXPORT_SYMBOL(padata_free
);
1025 #ifdef CONFIG_HOTPLUG_CPU
1027 static __init
int padata_driver_init(void)
1031 ret
= cpuhp_setup_state_multi(CPUHP_AP_ONLINE_DYN
, "padata:online",
1033 padata_cpu_prep_down
);
1039 module_init(padata_driver_init
);
1041 static __exit
void padata_driver_exit(void)
1043 cpuhp_remove_multi_state(hp_online
);
1045 module_exit(padata_driver_exit
);