Steffen Klassert | 16295be | 2010-01-06 19:47:10 +1100 | [diff] [blame] | 1 | /* |
| 2 | * padata.c - generic interface to process data streams in parallel |
| 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 | #include <linux/module.h> |
| 22 | #include <linux/cpumask.h> |
| 23 | #include <linux/err.h> |
| 24 | #include <linux/cpu.h> |
| 25 | #include <linux/padata.h> |
| 26 | #include <linux/mutex.h> |
| 27 | #include <linux/sched.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 28 | #include <linux/slab.h> |
Steffen Klassert | 16295be | 2010-01-06 19:47:10 +1100 | [diff] [blame] | 29 | #include <linux/rcupdate.h> |
| 30 | |
| 31 | #define MAX_SEQ_NR INT_MAX - NR_CPUS |
Steffen Klassert | 97e3d94 | 2010-04-29 14:37:32 +0200 | [diff] [blame] | 32 | #define MAX_OBJ_NUM 1000 |
Steffen Klassert | 16295be | 2010-01-06 19:47:10 +1100 | [diff] [blame] | 33 | |
| 34 | static int padata_index_to_cpu(struct parallel_data *pd, int cpu_index) |
| 35 | { |
| 36 | int cpu, target_cpu; |
| 37 | |
| 38 | target_cpu = cpumask_first(pd->cpumask); |
| 39 | for (cpu = 0; cpu < cpu_index; cpu++) |
| 40 | target_cpu = cpumask_next(target_cpu, pd->cpumask); |
| 41 | |
| 42 | return target_cpu; |
| 43 | } |
| 44 | |
| 45 | static int padata_cpu_hash(struct padata_priv *padata) |
| 46 | { |
| 47 | int cpu_index; |
| 48 | struct parallel_data *pd; |
| 49 | |
| 50 | pd = padata->pd; |
| 51 | |
| 52 | /* |
| 53 | * Hash the sequence numbers to the cpus by taking |
| 54 | * seq_nr mod. number of cpus in use. |
| 55 | */ |
| 56 | cpu_index = padata->seq_nr % cpumask_weight(pd->cpumask); |
| 57 | |
| 58 | return padata_index_to_cpu(pd, cpu_index); |
| 59 | } |
| 60 | |
| 61 | static void padata_parallel_worker(struct work_struct *work) |
| 62 | { |
| 63 | struct padata_queue *queue; |
| 64 | struct parallel_data *pd; |
| 65 | struct padata_instance *pinst; |
| 66 | LIST_HEAD(local_list); |
| 67 | |
| 68 | local_bh_disable(); |
| 69 | queue = container_of(work, struct padata_queue, pwork); |
| 70 | pd = queue->pd; |
| 71 | pinst = pd->pinst; |
| 72 | |
| 73 | spin_lock(&queue->parallel.lock); |
| 74 | list_replace_init(&queue->parallel.list, &local_list); |
| 75 | spin_unlock(&queue->parallel.lock); |
| 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 | |
| 91 | /* |
| 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, |
| 97 | * must be in the cpumask of padata. |
| 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; |
| 107 | struct padata_queue *queue; |
| 108 | struct parallel_data *pd; |
| 109 | |
| 110 | rcu_read_lock_bh(); |
| 111 | |
| 112 | pd = rcu_dereference(pinst->pd); |
| 113 | |
| 114 | err = 0; |
| 115 | if (!(pinst->flags & PADATA_INIT)) |
| 116 | goto out; |
| 117 | |
| 118 | err = -EBUSY; |
| 119 | if ((pinst->flags & PADATA_RESET)) |
| 120 | goto out; |
| 121 | |
| 122 | if (atomic_read(&pd->refcnt) >= MAX_OBJ_NUM) |
| 123 | goto out; |
| 124 | |
| 125 | err = -EINVAL; |
| 126 | if (!cpumask_test_cpu(cb_cpu, pd->cpumask)) |
| 127 | goto out; |
| 128 | |
| 129 | err = -EINPROGRESS; |
| 130 | atomic_inc(&pd->refcnt); |
| 131 | padata->pd = pd; |
| 132 | padata->cb_cpu = cb_cpu; |
| 133 | |
| 134 | if (unlikely(atomic_read(&pd->seq_nr) == pd->max_seq_nr)) |
| 135 | atomic_set(&pd->seq_nr, -1); |
| 136 | |
| 137 | padata->seq_nr = atomic_inc_return(&pd->seq_nr); |
| 138 | |
| 139 | target_cpu = padata_cpu_hash(padata); |
| 140 | queue = per_cpu_ptr(pd->queue, target_cpu); |
| 141 | |
| 142 | spin_lock(&queue->parallel.lock); |
| 143 | list_add_tail(&padata->list, &queue->parallel.list); |
| 144 | spin_unlock(&queue->parallel.lock); |
| 145 | |
| 146 | queue_work_on(target_cpu, pinst->wq, &queue->pwork); |
| 147 | |
| 148 | out: |
| 149 | rcu_read_unlock_bh(); |
| 150 | |
| 151 | return err; |
| 152 | } |
| 153 | EXPORT_SYMBOL(padata_do_parallel); |
| 154 | |
| 155 | static struct padata_priv *padata_get_next(struct parallel_data *pd) |
| 156 | { |
| 157 | int cpu, num_cpus, empty, calc_seq_nr; |
| 158 | int seq_nr, next_nr, overrun, next_overrun; |
| 159 | struct padata_queue *queue, *next_queue; |
| 160 | struct padata_priv *padata; |
| 161 | struct padata_list *reorder; |
| 162 | |
| 163 | empty = 0; |
| 164 | next_nr = -1; |
| 165 | next_overrun = 0; |
| 166 | next_queue = NULL; |
| 167 | |
| 168 | num_cpus = cpumask_weight(pd->cpumask); |
| 169 | |
| 170 | for_each_cpu(cpu, pd->cpumask) { |
| 171 | queue = per_cpu_ptr(pd->queue, cpu); |
| 172 | reorder = &queue->reorder; |
| 173 | |
| 174 | /* |
| 175 | * Calculate the seq_nr of the object that should be |
| 176 | * next in this queue. |
| 177 | */ |
| 178 | overrun = 0; |
| 179 | calc_seq_nr = (atomic_read(&queue->num_obj) * num_cpus) |
| 180 | + queue->cpu_index; |
| 181 | |
| 182 | if (unlikely(calc_seq_nr > pd->max_seq_nr)) { |
| 183 | calc_seq_nr = calc_seq_nr - pd->max_seq_nr - 1; |
| 184 | overrun = 1; |
| 185 | } |
| 186 | |
| 187 | if (!list_empty(&reorder->list)) { |
| 188 | padata = list_entry(reorder->list.next, |
| 189 | struct padata_priv, list); |
| 190 | |
| 191 | seq_nr = padata->seq_nr; |
| 192 | BUG_ON(calc_seq_nr != seq_nr); |
| 193 | } else { |
| 194 | seq_nr = calc_seq_nr; |
| 195 | empty++; |
| 196 | } |
| 197 | |
| 198 | if (next_nr < 0 || seq_nr < next_nr |
| 199 | || (next_overrun && !overrun)) { |
| 200 | next_nr = seq_nr; |
| 201 | next_overrun = overrun; |
| 202 | next_queue = queue; |
| 203 | } |
| 204 | } |
| 205 | |
| 206 | padata = NULL; |
| 207 | |
| 208 | if (empty == num_cpus) |
| 209 | goto out; |
| 210 | |
| 211 | reorder = &next_queue->reorder; |
| 212 | |
| 213 | if (!list_empty(&reorder->list)) { |
| 214 | padata = list_entry(reorder->list.next, |
| 215 | struct padata_priv, list); |
| 216 | |
| 217 | if (unlikely(next_overrun)) { |
| 218 | for_each_cpu(cpu, pd->cpumask) { |
| 219 | queue = per_cpu_ptr(pd->queue, cpu); |
| 220 | atomic_set(&queue->num_obj, 0); |
| 221 | } |
| 222 | } |
| 223 | |
| 224 | spin_lock(&reorder->lock); |
| 225 | list_del_init(&padata->list); |
| 226 | atomic_dec(&pd->reorder_objects); |
| 227 | spin_unlock(&reorder->lock); |
| 228 | |
| 229 | atomic_inc(&next_queue->num_obj); |
| 230 | |
| 231 | goto out; |
| 232 | } |
| 233 | |
| 234 | if (next_nr % num_cpus == next_queue->cpu_index) { |
| 235 | padata = ERR_PTR(-ENODATA); |
| 236 | goto out; |
| 237 | } |
| 238 | |
| 239 | padata = ERR_PTR(-EINPROGRESS); |
| 240 | out: |
| 241 | return padata; |
| 242 | } |
| 243 | |
| 244 | static void padata_reorder(struct parallel_data *pd) |
| 245 | { |
| 246 | struct padata_priv *padata; |
| 247 | struct padata_queue *queue; |
| 248 | struct padata_instance *pinst = pd->pinst; |
| 249 | |
| 250 | try_again: |
| 251 | if (!spin_trylock_bh(&pd->lock)) |
| 252 | goto out; |
| 253 | |
| 254 | while (1) { |
| 255 | padata = padata_get_next(pd); |
| 256 | |
| 257 | if (!padata || PTR_ERR(padata) == -EINPROGRESS) |
| 258 | break; |
| 259 | |
| 260 | if (PTR_ERR(padata) == -ENODATA) { |
| 261 | spin_unlock_bh(&pd->lock); |
| 262 | goto out; |
| 263 | } |
| 264 | |
| 265 | queue = per_cpu_ptr(pd->queue, padata->cb_cpu); |
| 266 | |
| 267 | spin_lock(&queue->serial.lock); |
| 268 | list_add_tail(&padata->list, &queue->serial.list); |
| 269 | spin_unlock(&queue->serial.lock); |
| 270 | |
| 271 | queue_work_on(padata->cb_cpu, pinst->wq, &queue->swork); |
| 272 | } |
| 273 | |
| 274 | spin_unlock_bh(&pd->lock); |
| 275 | |
| 276 | if (atomic_read(&pd->reorder_objects)) |
| 277 | goto try_again; |
| 278 | |
| 279 | out: |
| 280 | return; |
| 281 | } |
| 282 | |
| 283 | static void padata_serial_worker(struct work_struct *work) |
| 284 | { |
| 285 | struct padata_queue *queue; |
| 286 | struct parallel_data *pd; |
| 287 | LIST_HEAD(local_list); |
| 288 | |
| 289 | local_bh_disable(); |
| 290 | queue = container_of(work, struct padata_queue, swork); |
| 291 | pd = queue->pd; |
| 292 | |
| 293 | spin_lock(&queue->serial.lock); |
| 294 | list_replace_init(&queue->serial.list, &local_list); |
| 295 | spin_unlock(&queue->serial.lock); |
| 296 | |
| 297 | while (!list_empty(&local_list)) { |
| 298 | struct padata_priv *padata; |
| 299 | |
| 300 | padata = list_entry(local_list.next, |
| 301 | struct padata_priv, list); |
| 302 | |
| 303 | list_del_init(&padata->list); |
| 304 | |
| 305 | padata->serial(padata); |
| 306 | atomic_dec(&pd->refcnt); |
| 307 | } |
| 308 | local_bh_enable(); |
| 309 | } |
| 310 | |
| 311 | /* |
| 312 | * padata_do_serial - padata serialization function |
| 313 | * |
| 314 | * @padata: object to be serialized. |
| 315 | * |
| 316 | * padata_do_serial must be called for every parallelized object. |
| 317 | * The serialization callback function will run with BHs off. |
| 318 | */ |
| 319 | void padata_do_serial(struct padata_priv *padata) |
| 320 | { |
| 321 | int cpu; |
| 322 | struct padata_queue *queue; |
| 323 | struct parallel_data *pd; |
| 324 | |
| 325 | pd = padata->pd; |
| 326 | |
| 327 | cpu = get_cpu(); |
| 328 | queue = per_cpu_ptr(pd->queue, cpu); |
| 329 | |
| 330 | spin_lock(&queue->reorder.lock); |
| 331 | atomic_inc(&pd->reorder_objects); |
| 332 | list_add_tail(&padata->list, &queue->reorder.list); |
| 333 | spin_unlock(&queue->reorder.lock); |
| 334 | |
| 335 | put_cpu(); |
| 336 | |
| 337 | padata_reorder(pd); |
| 338 | } |
| 339 | EXPORT_SYMBOL(padata_do_serial); |
| 340 | |
| 341 | static struct parallel_data *padata_alloc_pd(struct padata_instance *pinst, |
| 342 | const struct cpumask *cpumask) |
| 343 | { |
| 344 | int cpu, cpu_index, num_cpus; |
| 345 | struct padata_queue *queue; |
| 346 | struct parallel_data *pd; |
| 347 | |
| 348 | cpu_index = 0; |
| 349 | |
| 350 | pd = kzalloc(sizeof(struct parallel_data), GFP_KERNEL); |
| 351 | if (!pd) |
| 352 | goto err; |
| 353 | |
| 354 | pd->queue = alloc_percpu(struct padata_queue); |
| 355 | if (!pd->queue) |
| 356 | goto err_free_pd; |
| 357 | |
| 358 | if (!alloc_cpumask_var(&pd->cpumask, GFP_KERNEL)) |
| 359 | goto err_free_queue; |
| 360 | |
Steffen Klassert | 7b389b2 | 2010-04-29 14:41:36 +0200 | [diff] [blame^] | 361 | cpumask_and(pd->cpumask, cpumask, cpu_active_mask); |
| 362 | |
| 363 | for_each_cpu(cpu, pd->cpumask) { |
Steffen Klassert | 16295be | 2010-01-06 19:47:10 +1100 | [diff] [blame] | 364 | queue = per_cpu_ptr(pd->queue, cpu); |
| 365 | |
| 366 | queue->pd = pd; |
| 367 | |
Steffen Klassert | 7b389b2 | 2010-04-29 14:41:36 +0200 | [diff] [blame^] | 368 | queue->cpu_index = cpu_index; |
| 369 | cpu_index++; |
Steffen Klassert | 16295be | 2010-01-06 19:47:10 +1100 | [diff] [blame] | 370 | |
| 371 | INIT_LIST_HEAD(&queue->reorder.list); |
| 372 | INIT_LIST_HEAD(&queue->parallel.list); |
| 373 | INIT_LIST_HEAD(&queue->serial.list); |
| 374 | spin_lock_init(&queue->reorder.lock); |
| 375 | spin_lock_init(&queue->parallel.lock); |
| 376 | spin_lock_init(&queue->serial.lock); |
| 377 | |
| 378 | INIT_WORK(&queue->pwork, padata_parallel_worker); |
| 379 | INIT_WORK(&queue->swork, padata_serial_worker); |
| 380 | atomic_set(&queue->num_obj, 0); |
| 381 | } |
| 382 | |
Steffen Klassert | 16295be | 2010-01-06 19:47:10 +1100 | [diff] [blame] | 383 | num_cpus = cpumask_weight(pd->cpumask); |
| 384 | pd->max_seq_nr = (MAX_SEQ_NR / num_cpus) * num_cpus - 1; |
| 385 | |
| 386 | atomic_set(&pd->seq_nr, -1); |
| 387 | atomic_set(&pd->reorder_objects, 0); |
| 388 | atomic_set(&pd->refcnt, 0); |
| 389 | pd->pinst = pinst; |
| 390 | spin_lock_init(&pd->lock); |
| 391 | |
| 392 | return pd; |
| 393 | |
| 394 | err_free_queue: |
| 395 | free_percpu(pd->queue); |
| 396 | err_free_pd: |
| 397 | kfree(pd); |
| 398 | err: |
| 399 | return NULL; |
| 400 | } |
| 401 | |
| 402 | static void padata_free_pd(struct parallel_data *pd) |
| 403 | { |
| 404 | free_cpumask_var(pd->cpumask); |
| 405 | free_percpu(pd->queue); |
| 406 | kfree(pd); |
| 407 | } |
| 408 | |
| 409 | static void padata_replace(struct padata_instance *pinst, |
| 410 | struct parallel_data *pd_new) |
| 411 | { |
| 412 | struct parallel_data *pd_old = pinst->pd; |
| 413 | |
| 414 | pinst->flags |= PADATA_RESET; |
| 415 | |
| 416 | rcu_assign_pointer(pinst->pd, pd_new); |
| 417 | |
| 418 | synchronize_rcu(); |
| 419 | |
| 420 | while (atomic_read(&pd_old->refcnt) != 0) |
| 421 | yield(); |
| 422 | |
| 423 | flush_workqueue(pinst->wq); |
| 424 | |
| 425 | padata_free_pd(pd_old); |
| 426 | |
| 427 | pinst->flags &= ~PADATA_RESET; |
| 428 | } |
| 429 | |
| 430 | /* |
| 431 | * padata_set_cpumask - set the cpumask that padata should use |
| 432 | * |
| 433 | * @pinst: padata instance |
| 434 | * @cpumask: the cpumask to use |
| 435 | */ |
| 436 | int padata_set_cpumask(struct padata_instance *pinst, |
| 437 | cpumask_var_t cpumask) |
| 438 | { |
| 439 | struct parallel_data *pd; |
| 440 | int err = 0; |
| 441 | |
Steffen Klassert | 16295be | 2010-01-06 19:47:10 +1100 | [diff] [blame] | 442 | mutex_lock(&pinst->lock); |
| 443 | |
| 444 | pd = padata_alloc_pd(pinst, cpumask); |
| 445 | if (!pd) { |
| 446 | err = -ENOMEM; |
| 447 | goto out; |
| 448 | } |
| 449 | |
| 450 | cpumask_copy(pinst->cpumask, cpumask); |
| 451 | |
| 452 | padata_replace(pinst, pd); |
| 453 | |
| 454 | out: |
| 455 | mutex_unlock(&pinst->lock); |
| 456 | |
| 457 | return err; |
| 458 | } |
| 459 | EXPORT_SYMBOL(padata_set_cpumask); |
| 460 | |
| 461 | static int __padata_add_cpu(struct padata_instance *pinst, int cpu) |
| 462 | { |
| 463 | struct parallel_data *pd; |
| 464 | |
| 465 | if (cpumask_test_cpu(cpu, cpu_active_mask)) { |
| 466 | pd = padata_alloc_pd(pinst, pinst->cpumask); |
| 467 | if (!pd) |
| 468 | return -ENOMEM; |
| 469 | |
| 470 | padata_replace(pinst, pd); |
| 471 | } |
| 472 | |
| 473 | return 0; |
| 474 | } |
| 475 | |
| 476 | /* |
| 477 | * padata_add_cpu - add a cpu to the padata cpumask |
| 478 | * |
| 479 | * @pinst: padata instance |
| 480 | * @cpu: cpu to add |
| 481 | */ |
| 482 | int padata_add_cpu(struct padata_instance *pinst, int cpu) |
| 483 | { |
| 484 | int err; |
| 485 | |
Steffen Klassert | 16295be | 2010-01-06 19:47:10 +1100 | [diff] [blame] | 486 | mutex_lock(&pinst->lock); |
| 487 | |
| 488 | cpumask_set_cpu(cpu, pinst->cpumask); |
| 489 | err = __padata_add_cpu(pinst, cpu); |
| 490 | |
| 491 | mutex_unlock(&pinst->lock); |
| 492 | |
| 493 | return err; |
| 494 | } |
| 495 | EXPORT_SYMBOL(padata_add_cpu); |
| 496 | |
| 497 | static int __padata_remove_cpu(struct padata_instance *pinst, int cpu) |
| 498 | { |
| 499 | struct parallel_data *pd; |
| 500 | |
| 501 | if (cpumask_test_cpu(cpu, cpu_online_mask)) { |
| 502 | pd = padata_alloc_pd(pinst, pinst->cpumask); |
| 503 | if (!pd) |
| 504 | return -ENOMEM; |
| 505 | |
| 506 | padata_replace(pinst, pd); |
| 507 | } |
| 508 | |
| 509 | return 0; |
| 510 | } |
| 511 | |
| 512 | /* |
| 513 | * padata_remove_cpu - remove a cpu from the padata cpumask |
| 514 | * |
| 515 | * @pinst: padata instance |
| 516 | * @cpu: cpu to remove |
| 517 | */ |
| 518 | int padata_remove_cpu(struct padata_instance *pinst, int cpu) |
| 519 | { |
| 520 | int err; |
| 521 | |
Steffen Klassert | 16295be | 2010-01-06 19:47:10 +1100 | [diff] [blame] | 522 | mutex_lock(&pinst->lock); |
| 523 | |
| 524 | cpumask_clear_cpu(cpu, pinst->cpumask); |
| 525 | err = __padata_remove_cpu(pinst, cpu); |
| 526 | |
| 527 | mutex_unlock(&pinst->lock); |
| 528 | |
| 529 | return err; |
| 530 | } |
| 531 | EXPORT_SYMBOL(padata_remove_cpu); |
| 532 | |
| 533 | /* |
| 534 | * padata_start - start the parallel processing |
| 535 | * |
| 536 | * @pinst: padata instance to start |
| 537 | */ |
| 538 | void padata_start(struct padata_instance *pinst) |
| 539 | { |
Steffen Klassert | 16295be | 2010-01-06 19:47:10 +1100 | [diff] [blame] | 540 | mutex_lock(&pinst->lock); |
| 541 | pinst->flags |= PADATA_INIT; |
| 542 | mutex_unlock(&pinst->lock); |
| 543 | } |
| 544 | EXPORT_SYMBOL(padata_start); |
| 545 | |
| 546 | /* |
| 547 | * padata_stop - stop the parallel processing |
| 548 | * |
| 549 | * @pinst: padata instance to stop |
| 550 | */ |
| 551 | void padata_stop(struct padata_instance *pinst) |
| 552 | { |
Steffen Klassert | 16295be | 2010-01-06 19:47:10 +1100 | [diff] [blame] | 553 | mutex_lock(&pinst->lock); |
| 554 | pinst->flags &= ~PADATA_INIT; |
| 555 | mutex_unlock(&pinst->lock); |
| 556 | } |
| 557 | EXPORT_SYMBOL(padata_stop); |
| 558 | |
Steffen Klassert | e2cb2f1 | 2010-04-29 14:40:10 +0200 | [diff] [blame] | 559 | #ifdef CONFIG_HOTPLUG_CPU |
Henrik Kretzschmar | 975d260 | 2010-03-29 16:15:31 +0800 | [diff] [blame] | 560 | static int padata_cpu_callback(struct notifier_block *nfb, |
| 561 | unsigned long action, void *hcpu) |
Steffen Klassert | 16295be | 2010-01-06 19:47:10 +1100 | [diff] [blame] | 562 | { |
| 563 | int err; |
| 564 | struct padata_instance *pinst; |
| 565 | int cpu = (unsigned long)hcpu; |
| 566 | |
| 567 | pinst = container_of(nfb, struct padata_instance, cpu_notifier); |
| 568 | |
| 569 | switch (action) { |
| 570 | case CPU_ONLINE: |
| 571 | case CPU_ONLINE_FROZEN: |
| 572 | if (!cpumask_test_cpu(cpu, pinst->cpumask)) |
| 573 | break; |
| 574 | mutex_lock(&pinst->lock); |
| 575 | err = __padata_add_cpu(pinst, cpu); |
| 576 | mutex_unlock(&pinst->lock); |
| 577 | if (err) |
| 578 | return NOTIFY_BAD; |
| 579 | break; |
| 580 | |
| 581 | case CPU_DOWN_PREPARE: |
| 582 | case CPU_DOWN_PREPARE_FROZEN: |
| 583 | if (!cpumask_test_cpu(cpu, pinst->cpumask)) |
| 584 | break; |
| 585 | mutex_lock(&pinst->lock); |
| 586 | err = __padata_remove_cpu(pinst, cpu); |
| 587 | mutex_unlock(&pinst->lock); |
| 588 | if (err) |
| 589 | return NOTIFY_BAD; |
| 590 | break; |
| 591 | |
| 592 | case CPU_UP_CANCELED: |
| 593 | case CPU_UP_CANCELED_FROZEN: |
| 594 | if (!cpumask_test_cpu(cpu, pinst->cpumask)) |
| 595 | break; |
| 596 | mutex_lock(&pinst->lock); |
| 597 | __padata_remove_cpu(pinst, cpu); |
| 598 | mutex_unlock(&pinst->lock); |
| 599 | |
| 600 | case CPU_DOWN_FAILED: |
| 601 | case CPU_DOWN_FAILED_FROZEN: |
| 602 | if (!cpumask_test_cpu(cpu, pinst->cpumask)) |
| 603 | break; |
| 604 | mutex_lock(&pinst->lock); |
| 605 | __padata_add_cpu(pinst, cpu); |
| 606 | mutex_unlock(&pinst->lock); |
| 607 | } |
| 608 | |
| 609 | return NOTIFY_OK; |
| 610 | } |
Steffen Klassert | e2cb2f1 | 2010-04-29 14:40:10 +0200 | [diff] [blame] | 611 | #endif |
Steffen Klassert | 16295be | 2010-01-06 19:47:10 +1100 | [diff] [blame] | 612 | |
| 613 | /* |
| 614 | * padata_alloc - allocate and initialize a padata instance |
| 615 | * |
| 616 | * @cpumask: cpumask that padata uses for parallelization |
| 617 | * @wq: workqueue to use for the allocated padata instance |
| 618 | */ |
| 619 | struct padata_instance *padata_alloc(const struct cpumask *cpumask, |
| 620 | struct workqueue_struct *wq) |
| 621 | { |
Steffen Klassert | 16295be | 2010-01-06 19:47:10 +1100 | [diff] [blame] | 622 | struct padata_instance *pinst; |
| 623 | struct parallel_data *pd; |
| 624 | |
| 625 | pinst = kzalloc(sizeof(struct padata_instance), GFP_KERNEL); |
| 626 | if (!pinst) |
| 627 | goto err; |
| 628 | |
| 629 | pd = padata_alloc_pd(pinst, cpumask); |
| 630 | if (!pd) |
| 631 | goto err_free_inst; |
| 632 | |
Steffen Klassert | 7478138 | 2010-03-04 13:30:22 +0800 | [diff] [blame] | 633 | if (!alloc_cpumask_var(&pinst->cpumask, GFP_KERNEL)) |
| 634 | goto err_free_pd; |
| 635 | |
Steffen Klassert | 16295be | 2010-01-06 19:47:10 +1100 | [diff] [blame] | 636 | rcu_assign_pointer(pinst->pd, pd); |
| 637 | |
| 638 | pinst->wq = wq; |
| 639 | |
| 640 | cpumask_copy(pinst->cpumask, cpumask); |
| 641 | |
| 642 | pinst->flags = 0; |
| 643 | |
Steffen Klassert | e2cb2f1 | 2010-04-29 14:40:10 +0200 | [diff] [blame] | 644 | #ifdef CONFIG_HOTPLUG_CPU |
Steffen Klassert | 16295be | 2010-01-06 19:47:10 +1100 | [diff] [blame] | 645 | pinst->cpu_notifier.notifier_call = padata_cpu_callback; |
| 646 | pinst->cpu_notifier.priority = 0; |
Steffen Klassert | e2cb2f1 | 2010-04-29 14:40:10 +0200 | [diff] [blame] | 647 | register_hotcpu_notifier(&pinst->cpu_notifier); |
| 648 | #endif |
Steffen Klassert | 16295be | 2010-01-06 19:47:10 +1100 | [diff] [blame] | 649 | |
| 650 | mutex_init(&pinst->lock); |
| 651 | |
| 652 | return pinst; |
| 653 | |
| 654 | err_free_pd: |
| 655 | padata_free_pd(pd); |
| 656 | err_free_inst: |
| 657 | kfree(pinst); |
| 658 | err: |
| 659 | return NULL; |
| 660 | } |
| 661 | EXPORT_SYMBOL(padata_alloc); |
| 662 | |
| 663 | /* |
| 664 | * padata_free - free a padata instance |
| 665 | * |
| 666 | * @ padata_inst: padata instance to free |
| 667 | */ |
| 668 | void padata_free(struct padata_instance *pinst) |
| 669 | { |
| 670 | padata_stop(pinst); |
| 671 | |
| 672 | synchronize_rcu(); |
| 673 | |
| 674 | while (atomic_read(&pinst->pd->refcnt) != 0) |
| 675 | yield(); |
| 676 | |
Steffen Klassert | e2cb2f1 | 2010-04-29 14:40:10 +0200 | [diff] [blame] | 677 | #ifdef CONFIG_HOTPLUG_CPU |
Steffen Klassert | 16295be | 2010-01-06 19:47:10 +1100 | [diff] [blame] | 678 | unregister_hotcpu_notifier(&pinst->cpu_notifier); |
Steffen Klassert | e2cb2f1 | 2010-04-29 14:40:10 +0200 | [diff] [blame] | 679 | #endif |
Steffen Klassert | 16295be | 2010-01-06 19:47:10 +1100 | [diff] [blame] | 680 | padata_free_pd(pinst->pd); |
Steffen Klassert | 7478138 | 2010-03-04 13:30:22 +0800 | [diff] [blame] | 681 | free_cpumask_var(pinst->cpumask); |
Steffen Klassert | 16295be | 2010-01-06 19:47:10 +1100 | [diff] [blame] | 682 | kfree(pinst); |
| 683 | } |
| 684 | EXPORT_SYMBOL(padata_free); |