padata: remove cpumask change notifier
[linux-block.git] / Documentation / padata.txt
CommitLineData
7576b2b9 1=======================================
4047f8b1 2The padata parallel execution mechanism
7576b2b9
MCC
3=======================================
4
5:Last updated: for 2.6.36
4047f8b1
JC
6
7Padata is a mechanism by which the kernel can farm work out to be done in
8parallel on multiple CPUs while retaining the ordering of tasks. It was
9developed for use with the IPsec code, which needs to be able to perform
10encryption and decryption on large numbers of packets without reordering
11those packets. The crypto developers made a point of writing padata in a
12sufficiently general fashion that it could be put to other uses as well.
13
14The first step in using padata is to set up a padata_instance structure for
7576b2b9 15overall control of how tasks are to be run::
4047f8b1
JC
16
17 #include <linux/padata.h>
18
b128a304 19 struct padata_instance *padata_alloc(const char *name,
313910d3
SK
20 const struct cpumask *pcpumask,
21 const struct cpumask *cbcpumask);
4047f8b1 22
b128a304
DJ
23'name' simply identifies the instance.
24
313910d3
SK
25The pcpumask describes which processors will be used to execute work
26submitted to this instance in parallel. The cbcpumask defines which
2b24706a 27processors are allowed to be used as the serialization callback processor.
313910d3
SK
28The workqueue wq is where the work will actually be done; it should be
29a multithreaded queue, naturally.
30
31To allocate a padata instance with the cpu_possible_mask for both
7576b2b9 32cpumasks this helper function can be used::
313910d3
SK
33
34 struct padata_instance *padata_alloc_possible(struct workqueue_struct *wq);
35
36Note: Padata maintains two kinds of cpumasks internally. The user supplied
37cpumasks, submitted by padata_alloc/padata_alloc_possible and the 'usable'
2b24706a
RD
38cpumasks. The usable cpumasks are always a subset of active CPUs in the
39user supplied cpumasks; these are the cpumasks padata actually uses. So
40it is legal to supply a cpumask to padata that contains offline CPUs.
41Once an offline CPU in the user supplied cpumask comes online, padata
313910d3 42is going to use it.
4047f8b1 43
7576b2b9 44There are functions for enabling and disabling the instance::
4047f8b1 45
2197f9a1 46 int padata_start(struct padata_instance *pinst);
4047f8b1
JC
47 void padata_stop(struct padata_instance *pinst);
48
2197f9a1
SK
49These functions are setting or clearing the "PADATA_INIT" flag;
50if that flag is not set, other functions will refuse to work.
51padata_start returns zero on success (flag set) or -EINVAL if the
2b24706a 52padata cpumask contains no active CPU (flag not set).
2197f9a1
SK
53padata_stop clears the flag and blocks until the padata instance
54is unused.
4047f8b1 55
7576b2b9 56The list of CPUs to be used can be adjusted with these functions::
4047f8b1 57
313910d3
SK
58 int padata_set_cpumasks(struct padata_instance *pinst,
59 cpumask_var_t pcpumask,
60 cpumask_var_t cbcpumask);
61 int padata_set_cpumask(struct padata_instance *pinst, int cpumask_type,
4047f8b1 62 cpumask_var_t cpumask);
313910d3
SK
63 int padata_add_cpu(struct padata_instance *pinst, int cpu, int mask);
64 int padata_remove_cpu(struct padata_instance *pinst, int cpu, int mask);
65
66Changing the CPU masks are expensive operations, though, so it should not be
67done with great frequency.
68
69It's possible to change both cpumasks of a padata instance with
70padata_set_cpumasks by specifying the cpumasks for parallel execution (pcpumask)
2b24706a 71and for the serial callback function (cbcpumask). padata_set_cpumask is used to
313910d3
SK
72change just one of the cpumasks. Here cpumask_type is one of PADATA_CPU_SERIAL,
73PADATA_CPU_PARALLEL and cpumask specifies the new cpumask to use.
2b24706a
RD
74To simply add or remove one CPU from a certain cpumask the functions
75padata_add_cpu/padata_remove_cpu are used. cpu specifies the CPU to add or
313910d3
SK
76remove and mask is one of PADATA_CPU_SERIAL, PADATA_CPU_PARALLEL.
77
4047f8b1 78Actually submitting work to the padata instance requires the creation of a
7576b2b9 79padata_priv structure::
4047f8b1
JC
80
81 struct padata_priv {
82 /* Other stuff here... */
83 void (*parallel)(struct padata_priv *padata);
84 void (*serial)(struct padata_priv *padata);
85 };
86
87This structure will almost certainly be embedded within some larger
2b24706a 88structure specific to the work to be done. Most of its fields are private to
313910d3 89padata, but the structure should be zeroed at initialisation time, and the
4047f8b1
JC
90parallel() and serial() functions should be provided. Those functions will
91be called in the process of getting the work done as we will see
92momentarily.
93
7576b2b9 94The submission of work is done with::
4047f8b1
JC
95
96 int padata_do_parallel(struct padata_instance *pinst,
97 struct padata_priv *padata, int cb_cpu);
98
99The pinst and padata structures must be set up as described above; cb_cpu
100specifies which CPU will be used for the final callback when the work is
101done; it must be in the current instance's CPU mask. The return value from
2197f9a1
SK
102padata_do_parallel() is zero on success, indicating that the work is in
103progress. -EBUSY means that somebody, somewhere else is messing with the
104instance's CPU mask, while -EINVAL is a complaint about cb_cpu not being
105in that CPU mask or about a not running instance.
4047f8b1
JC
106
107Each task submitted to padata_do_parallel() will, in turn, be passed to
108exactly one call to the above-mentioned parallel() function, on one CPU, so
b128a304 109true parallelism is achieved by submitting multiple tasks. parallel() runs with
4047f8b1
JC
110software interrupts disabled and thus cannot sleep. The parallel()
111function gets the padata_priv structure pointer as its lone parameter;
112information about the actual work to be done is probably obtained by using
113container_of() to find the enclosing structure.
114
115Note that parallel() has no return value; the padata subsystem assumes that
116parallel() will take responsibility for the task from this point. The work
117need not be completed during this call, but, if parallel() leaves work
118outstanding, it should be prepared to be called again with a new job before
119the previous one completes. When a task does complete, parallel() (or
120whatever function actually finishes the job) should inform padata of the
7576b2b9 121fact with a call to::
4047f8b1
JC
122
123 void padata_do_serial(struct padata_priv *padata);
124
125At some point in the future, padata_do_serial() will trigger a call to the
126serial() function in the padata_priv structure. That call will happen on
127the CPU requested in the initial call to padata_do_parallel(); it, too, is
b128a304 128run with local software interrupts disabled.
4047f8b1
JC
129Note that this call may be deferred for a while since the padata code takes
130pains to ensure that tasks are completed in the order in which they were
131submitted.
132
133The one remaining function in the padata API should be called to clean up
7576b2b9 134when a padata instance is no longer needed::
4047f8b1
JC
135
136 void padata_free(struct padata_instance *pinst);
137
138This function will busy-wait while any remaining tasks are completed, so it
b128a304 139might be best not to call it while there is work outstanding.