blob: 5c0175bbc179aa301571f3b0ee6821187a37d3e5 [file] [log] [blame]
Steffen Klassert16295be2010-01-06 19:47:10 +11001/*
2 * padata.h - header for the padata parallelization interface
3 *
4 * Copyright (C) 2008, 2009 secunet Security Networks AG
5 * Copyright (C) 2008, 2009 Steffen Klassert <steffen.klassert@secunet.com>
6 *
7 * This program is free software; you can redistribute it and/or modify it
8 * under the terms and conditions of the GNU General Public License,
9 * version 2, as published by the Free Software Foundation.
10 *
11 * This program is distributed in the hope it will be useful, but WITHOUT
12 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
13 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
14 * more details.
15 *
16 * You should have received a copy of the GNU General Public License along with
17 * this program; if not, write to the Free Software Foundation, Inc.,
18 * 51 Franklin St - Fifth Floor, Boston, MA 02110-1301 USA.
19 */
20
21#ifndef PADATA_H
22#define PADATA_H
23
24#include <linux/workqueue.h>
25#include <linux/spinlock.h>
26#include <linux/list.h>
Steffen Klassertd46a5ac2010-05-19 13:43:14 +100027#include <linux/timer.h>
Dan Kruchinine15bacb2010-07-14 14:31:57 +040028#include <linux/notifier.h>
Dan Kruchinin5e017dc2010-07-14 14:33:08 +040029#include <linux/kobject.h>
Dan Kruchinine15bacb2010-07-14 14:31:57 +040030
31#define PADATA_CPU_SERIAL 0x01
32#define PADATA_CPU_PARALLEL 0x02
Steffen Klassert16295be2010-01-06 19:47:10 +110033
Steffen Klassert0198ffd2010-05-19 13:44:27 +100034/**
35 * struct padata_priv - Embedded to the users data structure.
36 *
37 * @list: List entry, to attach to the padata lists.
38 * @pd: Pointer to the internal control structure.
39 * @cb_cpu: Callback cpu for serializatioon.
40 * @seq_nr: Sequence number of the parallelized data object.
41 * @info: Used to pass information from the parallel to the serial function.
42 * @parallel: Parallel execution function.
43 * @serial: Serial complete function.
44 */
Steffen Klassert16295be2010-01-06 19:47:10 +110045struct padata_priv {
46 struct list_head list;
47 struct parallel_data *pd;
48 int cb_cpu;
Steffen Klassert16295be2010-01-06 19:47:10 +110049 int info;
50 void (*parallel)(struct padata_priv *padata);
51 void (*serial)(struct padata_priv *padata);
52};
53
Steffen Klassert0198ffd2010-05-19 13:44:27 +100054/**
55 * struct padata_list
56 *
57 * @list: List head.
58 * @lock: List lock.
59 */
Steffen Klassert16295be2010-01-06 19:47:10 +110060struct padata_list {
61 struct list_head list;
62 spinlock_t lock;
63};
64
Steffen Klassert0198ffd2010-05-19 13:44:27 +100065/**
Dan Kruchinine15bacb2010-07-14 14:31:57 +040066* struct padata_serial_queue - The percpu padata serial queue
67*
68* @serial: List to wait for serialization after reordering.
69* @work: work struct for serialization.
70* @pd: Backpointer to the internal control structure.
71*/
72struct padata_serial_queue {
73 struct padata_list serial;
74 struct work_struct work;
75 struct parallel_data *pd;
76};
77
78/**
79 * struct padata_parallel_queue - The percpu padata parallel queue
Steffen Klassert0198ffd2010-05-19 13:44:27 +100080 *
81 * @parallel: List to wait for parallelization.
82 * @reorder: List to wait for reordering after parallel processing.
83 * @serial: List to wait for serialization after reordering.
84 * @pwork: work struct for parallelization.
85 * @swork: work struct for serialization.
86 * @pd: Backpointer to the internal control structure.
Dan Kruchinine15bacb2010-07-14 14:31:57 +040087 * @work: work struct for parallelization.
Mathias Krausecf5868c2017-09-08 20:57:10 +020088 * @reorder_work: work struct for reordering.
Dan Kruchinine15bacb2010-07-14 14:31:57 +040089 * @num_obj: Number of objects that are processed by this cpu.
Steffen Klassert0198ffd2010-05-19 13:44:27 +100090 * @cpu_index: Index of the cpu.
91 */
Dan Kruchinine15bacb2010-07-14 14:31:57 +040092struct padata_parallel_queue {
93 struct padata_list parallel;
94 struct padata_list reorder;
95 struct parallel_data *pd;
96 struct work_struct work;
Mathias Krausecf5868c2017-09-08 20:57:10 +020097 struct work_struct reorder_work;
Dan Kruchinine15bacb2010-07-14 14:31:57 +040098 atomic_t num_obj;
99 int cpu_index;
Steffen Klassert16295be2010-01-06 19:47:10 +1100100};
101
Steffen Klassertc6356962010-07-27 07:15:50 +0200102/**
103 * struct padata_cpumask - The cpumasks for the parallel/serial workers
104 *
105 * @pcpu: cpumask for the parallel workers.
106 * @cbcpu: cpumask for the serial (callback) workers.
107 */
108struct padata_cpumask {
109 cpumask_var_t pcpu;
110 cpumask_var_t cbcpu;
111};
Dan Kruchinine15bacb2010-07-14 14:31:57 +0400112
Steffen Klassert0198ffd2010-05-19 13:44:27 +1000113/**
114 * struct parallel_data - Internal control structure, covers everything
115 * that depends on the cpumask in use.
116 *
117 * @pinst: padata instance.
Dan Kruchinine15bacb2010-07-14 14:31:57 +0400118 * @pqueue: percpu padata queues used for parallelization.
119 * @squeue: percpu padata queues used for serialuzation.
Steffen Klassert0198ffd2010-05-19 13:44:27 +1000120 * @reorder_objects: Number of objects waiting in the reorder queues.
121 * @refcnt: Number of objects holding a reference on this parallel_data.
122 * @max_seq_nr: Maximal used sequence number.
Steffen Klassertc6356962010-07-27 07:15:50 +0200123 * @cpumask: The cpumasks in use for parallel and serial workers.
Steffen Klassert0198ffd2010-05-19 13:44:27 +1000124 * @lock: Reorder lock.
Steffen Klassert5f1a8c12010-07-07 15:32:39 +0200125 * @processed: Number of already processed objects.
Steffen Klassert0198ffd2010-05-19 13:44:27 +1000126 * @timer: Reorder timer.
127 */
Steffen Klassert16295be2010-01-06 19:47:10 +1100128struct parallel_data {
Dan Kruchinine15bacb2010-07-14 14:31:57 +0400129 struct padata_instance *pinst;
Namhyung Kim57a2ce52010-09-03 19:09:46 +0800130 struct padata_parallel_queue __percpu *pqueue;
131 struct padata_serial_queue __percpu *squeue;
Steffen Klassertc6356962010-07-27 07:15:50 +0200132 atomic_t reorder_objects;
133 atomic_t refcnt;
Mathias Krause0b6b0982013-10-25 12:14:15 +0200134 atomic_t seq_nr;
Steffen Klassertc6356962010-07-27 07:15:50 +0200135 struct padata_cpumask cpumask;
136 spinlock_t lock ____cacheline_aligned;
137 unsigned int processed;
138 struct timer_list timer;
Steffen Klassert16295be2010-01-06 19:47:10 +1100139};
140
Steffen Klassert0198ffd2010-05-19 13:44:27 +1000141/**
142 * struct padata_instance - The overall control structure.
143 *
144 * @cpu_notifier: cpu hotplug notifier.
145 * @wq: The workqueue in use.
146 * @pd: The internal control structure.
Steffen Klassertc6356962010-07-27 07:15:50 +0200147 * @cpumask: User supplied cpumasks for parallel and serial works.
Dan Kruchinine15bacb2010-07-14 14:31:57 +0400148 * @cpumask_change_notifier: Notifiers chain for user-defined notify
149 * callbacks that will be called when either @pcpu or @cbcpu
Dan Kruchinin5e017dc2010-07-14 14:33:08 +0400150 * or both cpumasks change.
151 * @kobj: padata instance kernel object.
Steffen Klassert0198ffd2010-05-19 13:44:27 +1000152 * @lock: padata instance lock.
153 * @flags: padata flags.
154 */
Steffen Klassert16295be2010-01-06 19:47:10 +1100155struct padata_instance {
Sebastian Andrzej Siewior30e92152016-09-06 19:04:49 +0200156 struct hlist_node node;
Dan Kruchinine15bacb2010-07-14 14:31:57 +0400157 struct workqueue_struct *wq;
158 struct parallel_data *pd;
Steffen Klassertc6356962010-07-27 07:15:50 +0200159 struct padata_cpumask cpumask;
Dan Kruchinine15bacb2010-07-14 14:31:57 +0400160 struct blocking_notifier_head cpumask_change_notifier;
Dan Kruchinin5e017dc2010-07-14 14:33:08 +0400161 struct kobject kobj;
Dan Kruchinine15bacb2010-07-14 14:31:57 +0400162 struct mutex lock;
163 u8 flags;
164#define PADATA_INIT 1
165#define PADATA_RESET 2
166#define PADATA_INVALID 4
Steffen Klassert16295be2010-01-06 19:47:10 +1100167};
168
Steffen Klasserte6cc1172010-07-27 07:14:28 +0200169extern struct padata_instance *padata_alloc_possible(
170 struct workqueue_struct *wq);
Steffen Klassert16295be2010-01-06 19:47:10 +1100171extern void padata_free(struct padata_instance *pinst);
172extern int padata_do_parallel(struct padata_instance *pinst,
173 struct padata_priv *padata, int cb_cpu);
174extern void padata_do_serial(struct padata_priv *padata);
Dan Kruchinine15bacb2010-07-14 14:31:57 +0400175extern int padata_set_cpumask(struct padata_instance *pinst, int cpumask_type,
Steffen Klassert16295be2010-01-06 19:47:10 +1100176 cpumask_var_t cpumask);
Steffen Klassert4c879172010-07-07 15:30:10 +0200177extern int padata_start(struct padata_instance *pinst);
Steffen Klassert16295be2010-01-06 19:47:10 +1100178extern void padata_stop(struct padata_instance *pinst);
Dan Kruchinine15bacb2010-07-14 14:31:57 +0400179extern int padata_register_cpumask_notifier(struct padata_instance *pinst,
180 struct notifier_block *nblock);
181extern int padata_unregister_cpumask_notifier(struct padata_instance *pinst,
182 struct notifier_block *nblock);
Steffen Klassert16295be2010-01-06 19:47:10 +1100183#endif