2 * IBM eServer eHCA Infiniband device driver for Linux on POWER
4 * Functions for EQs, NEQs and interrupts
6 * Authors: Heiko J Schick <schickhj@de.ibm.com>
7 * Khadija Souissi <souissi@de.ibm.com>
8 * Hoang-Nam Nguyen <hnguyen@de.ibm.com>
9 * Joachim Fenkes <fenkes@de.ibm.com>
11 * Copyright (c) 2005 IBM Corporation
13 * All rights reserved.
15 * This source code is distributed under a dual license of GPL v2.0 and OpenIB
20 * Redistribution and use in source and binary forms, with or without
21 * modification, are permitted provided that the following conditions are met:
23 * Redistributions of source code must retain the above copyright notice, this
24 * list of conditions and the following disclaimer.
26 * Redistributions in binary form must reproduce the above copyright notice,
27 * this list of conditions and the following disclaimer in the documentation
28 * and/or other materials
29 * provided with the distribution.
31 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
32 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
33 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
34 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
35 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
36 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
37 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
38 * BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER
39 * IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
40 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
41 * POSSIBILITY OF SUCH DAMAGE.
44 #include "ehca_classes.h"
46 #include "ehca_iverbs.h"
47 #include "ehca_tools.h"
50 #include "ipz_pt_fn.h"
52 #define EQE_COMPLETION_EVENT EHCA_BMASK_IBM( 1, 1)
53 #define EQE_CQ_QP_NUMBER EHCA_BMASK_IBM( 8, 31)
54 #define EQE_EE_IDENTIFIER EHCA_BMASK_IBM( 2, 7)
55 #define EQE_CQ_NUMBER EHCA_BMASK_IBM( 8, 31)
56 #define EQE_QP_NUMBER EHCA_BMASK_IBM( 8, 31)
57 #define EQE_QP_TOKEN EHCA_BMASK_IBM(32, 63)
58 #define EQE_CQ_TOKEN EHCA_BMASK_IBM(32, 63)
60 #define NEQE_COMPLETION_EVENT EHCA_BMASK_IBM( 1, 1)
61 #define NEQE_EVENT_CODE EHCA_BMASK_IBM( 2, 7)
62 #define NEQE_PORT_NUMBER EHCA_BMASK_IBM( 8, 15)
63 #define NEQE_PORT_AVAILABILITY EHCA_BMASK_IBM(16, 16)
64 #define NEQE_DISRUPTIVE EHCA_BMASK_IBM(16, 16)
66 #define ERROR_DATA_LENGTH EHCA_BMASK_IBM(52, 63)
67 #define ERROR_DATA_TYPE EHCA_BMASK_IBM( 0, 7)
69 static void queue_comp_task(struct ehca_cq *__cq);
71 static struct ehca_comp_pool *pool;
72 #ifdef CONFIG_HOTPLUG_CPU
73 static struct notifier_block comp_pool_callback_nb;
76 static inline void comp_event_callback(struct ehca_cq *cq)
78 if (!cq->ib_cq.comp_handler)
81 spin_lock(&cq->cb_lock);
82 cq->ib_cq.comp_handler(&cq->ib_cq, cq->ib_cq.cq_context);
83 spin_unlock(&cq->cb_lock);
88 static void print_error_data(struct ehca_shca *shca, void *data,
89 u64 *rblock, int length)
91 u64 type = EHCA_BMASK_GET(ERROR_DATA_TYPE, rblock[2]);
92 u64 resource = rblock[1];
95 case 0x1: /* Queue Pair */
97 struct ehca_qp *qp = (struct ehca_qp *)data;
99 /* only print error data if AER is set */
103 ehca_err(&shca->ib_device,
104 "QP 0x%x (resource=%lx) has errors.",
105 qp->ib_qp.qp_num, resource);
108 case 0x4: /* Completion Queue */
110 struct ehca_cq *cq = (struct ehca_cq *)data;
112 ehca_err(&shca->ib_device,
113 "CQ 0x%x (resource=%lx) has errors.",
114 cq->cq_number, resource);
118 ehca_err(&shca->ib_device,
119 "Unknown errror type: %lx on %s.",
120 type, shca->ib_device.name);
124 ehca_err(&shca->ib_device, "Error data is available: %lx.", resource);
125 ehca_err(&shca->ib_device, "EHCA ----- error data begin "
126 "---------------------------------------------------");
127 ehca_dmp(rblock, length, "resource=%lx", resource);
128 ehca_err(&shca->ib_device, "EHCA ----- error data end "
129 "----------------------------------------------------");
134 int ehca_error_data(struct ehca_shca *shca, void *data,
140 unsigned long block_count;
142 rblock = ehca_alloc_fw_ctrlblock(GFP_ATOMIC);
144 ehca_err(&shca->ib_device, "Cannot allocate rblock memory.");
149 /* rblock must be 4K aligned and should be 4K large */
150 ret = hipz_h_error_data(shca->ipz_hca_handle,
155 if (ret == H_R_STATE)
156 ehca_err(&shca->ib_device,
157 "No error data is available: %lx.", resource);
158 else if (ret == H_SUCCESS) {
161 length = EHCA_BMASK_GET(ERROR_DATA_LENGTH, rblock[0]);
163 if (length > EHCA_PAGESIZE)
164 length = EHCA_PAGESIZE;
166 print_error_data(shca, data, rblock, length);
168 ehca_err(&shca->ib_device,
169 "Error data could not be fetched: %lx", resource);
171 ehca_free_fw_ctrlblock(rblock);
178 static void qp_event_callback(struct ehca_shca *shca,
180 enum ib_event_type event_type)
182 struct ib_event event;
184 u32 token = EHCA_BMASK_GET(EQE_QP_TOKEN, eqe);
186 read_lock(&ehca_qp_idr_lock);
187 qp = idr_find(&ehca_qp_idr, token);
188 read_unlock(&ehca_qp_idr_lock);
194 ehca_error_data(shca, qp, qp->ipz_qp_handle.handle);
196 if (!qp->ib_qp.event_handler)
199 event.device = &shca->ib_device;
200 event.event = event_type;
201 event.element.qp = &qp->ib_qp;
203 qp->ib_qp.event_handler(&event, qp->ib_qp.qp_context);
208 static void cq_event_callback(struct ehca_shca *shca,
212 u32 token = EHCA_BMASK_GET(EQE_CQ_TOKEN, eqe);
214 read_lock(&ehca_cq_idr_lock);
215 cq = idr_find(&ehca_cq_idr, token);
217 atomic_inc(&cq->nr_events);
218 read_unlock(&ehca_cq_idr_lock);
223 ehca_error_data(shca, cq, cq->ipz_cq_handle.handle);
225 if (atomic_dec_and_test(&cq->nr_events))
226 wake_up(&cq->wait_completion);
231 static void parse_identifier(struct ehca_shca *shca, u64 eqe)
233 u8 identifier = EHCA_BMASK_GET(EQE_EE_IDENTIFIER, eqe);
235 switch (identifier) {
236 case 0x02: /* path migrated */
237 qp_event_callback(shca, eqe, IB_EVENT_PATH_MIG);
239 case 0x03: /* communication established */
240 qp_event_callback(shca, eqe, IB_EVENT_COMM_EST);
242 case 0x04: /* send queue drained */
243 qp_event_callback(shca, eqe, IB_EVENT_SQ_DRAINED);
245 case 0x05: /* QP error */
246 case 0x06: /* QP error */
247 qp_event_callback(shca, eqe, IB_EVENT_QP_FATAL);
249 case 0x07: /* CQ error */
250 case 0x08: /* CQ error */
251 cq_event_callback(shca, eqe);
253 case 0x09: /* MRMWPTE error */
254 ehca_err(&shca->ib_device, "MRMWPTE error.");
256 case 0x0A: /* port event */
257 ehca_err(&shca->ib_device, "Port event.");
259 case 0x0B: /* MR access error */
260 ehca_err(&shca->ib_device, "MR access error.");
262 case 0x0C: /* EQ error */
263 ehca_err(&shca->ib_device, "EQ error.");
265 case 0x0D: /* P/Q_Key mismatch */
266 ehca_err(&shca->ib_device, "P/Q_Key mismatch.");
268 case 0x10: /* sampling complete */
269 ehca_err(&shca->ib_device, "Sampling complete.");
271 case 0x11: /* unaffiliated access error */
272 ehca_err(&shca->ib_device, "Unaffiliated access error.");
274 case 0x12: /* path migrating error */
275 ehca_err(&shca->ib_device, "Path migration error.");
277 case 0x13: /* interface trace stopped */
278 ehca_err(&shca->ib_device, "Interface trace stopped.");
280 case 0x14: /* first error capture info available */
282 ehca_err(&shca->ib_device, "Unknown identifier: %x on %s.",
283 identifier, shca->ib_device.name);
290 static void dispatch_port_event(struct ehca_shca *shca, int port_num,
291 enum ib_event_type type, const char *msg)
293 struct ib_event event;
295 ehca_info(&shca->ib_device, "port %d %s.", port_num, msg);
296 event.device = &shca->ib_device;
298 event.element.port_num = port_num;
299 ib_dispatch_event(&event);
302 static void notify_port_conf_change(struct ehca_shca *shca, int port_num)
304 struct ehca_sma_attr new_attr;
305 struct ehca_sma_attr *old_attr = &shca->sport[port_num - 1].saved_attr;
307 ehca_query_sma_attr(shca, port_num, &new_attr);
309 if (new_attr.sm_sl != old_attr->sm_sl ||
310 new_attr.sm_lid != old_attr->sm_lid)
311 dispatch_port_event(shca, port_num, IB_EVENT_SM_CHANGE,
314 if (new_attr.lid != old_attr->lid ||
315 new_attr.lmc != old_attr->lmc)
316 dispatch_port_event(shca, port_num, IB_EVENT_LID_CHANGE,
319 if (new_attr.pkey_tbl_len != old_attr->pkey_tbl_len ||
320 memcmp(new_attr.pkeys, old_attr->pkeys,
321 sizeof(u16) * new_attr.pkey_tbl_len))
322 dispatch_port_event(shca, port_num, IB_EVENT_PKEY_CHANGE,
325 *old_attr = new_attr;
328 static void parse_ec(struct ehca_shca *shca, u64 eqe)
330 u8 ec = EHCA_BMASK_GET(NEQE_EVENT_CODE, eqe);
331 u8 port = EHCA_BMASK_GET(NEQE_PORT_NUMBER, eqe);
334 case 0x30: /* port availability change */
335 if (EHCA_BMASK_GET(NEQE_PORT_AVAILABILITY, eqe)) {
336 shca->sport[port - 1].port_state = IB_PORT_ACTIVE;
337 dispatch_port_event(shca, port, IB_EVENT_PORT_ACTIVE,
339 ehca_query_sma_attr(shca, port,
340 &shca->sport[port - 1].saved_attr);
342 shca->sport[port - 1].port_state = IB_PORT_DOWN;
343 dispatch_port_event(shca, port, IB_EVENT_PORT_ERR,
348 /* port configuration change
349 * disruptive change is caused by
350 * LID, PKEY or SM change
352 if (EHCA_BMASK_GET(NEQE_DISRUPTIVE, eqe)) {
353 ehca_warn(&shca->ib_device, "disruptive port "
354 "%d configuration change", port);
356 shca->sport[port - 1].port_state = IB_PORT_DOWN;
357 dispatch_port_event(shca, port, IB_EVENT_PORT_ERR,
360 shca->sport[port - 1].port_state = IB_PORT_ACTIVE;
361 dispatch_port_event(shca, port, IB_EVENT_PORT_ACTIVE,
364 notify_port_conf_change(shca, port);
366 case 0x32: /* adapter malfunction */
367 ehca_err(&shca->ib_device, "Adapter malfunction.");
369 case 0x33: /* trace stopped */
370 ehca_err(&shca->ib_device, "Traced stopped.");
373 ehca_err(&shca->ib_device, "Unknown event code: %x on %s.",
374 ec, shca->ib_device.name);
381 static inline void reset_eq_pending(struct ehca_cq *cq)
384 struct h_galpa gal = cq->galpas.kernel;
386 hipz_galpa_store_cq(gal, cqx_ep, 0x0);
387 CQx_EP = hipz_galpa_load(gal, CQTEMM_OFFSET(cqx_ep));
392 irqreturn_t ehca_interrupt_neq(int irq, void *dev_id)
394 struct ehca_shca *shca = (struct ehca_shca*)dev_id;
396 tasklet_hi_schedule(&shca->neq.interrupt_task);
401 void ehca_tasklet_neq(unsigned long data)
403 struct ehca_shca *shca = (struct ehca_shca*)data;
404 struct ehca_eqe *eqe;
407 eqe = (struct ehca_eqe *)ehca_poll_eq(shca, &shca->neq);
410 if (!EHCA_BMASK_GET(NEQE_COMPLETION_EVENT, eqe->entry))
411 parse_ec(shca, eqe->entry);
413 eqe = (struct ehca_eqe *)ehca_poll_eq(shca, &shca->neq);
416 ret = hipz_h_reset_event(shca->ipz_hca_handle,
417 shca->neq.ipz_eq_handle, 0xFFFFFFFFFFFFFFFFL);
419 if (ret != H_SUCCESS)
420 ehca_err(&shca->ib_device, "Can't clear notification events.");
425 irqreturn_t ehca_interrupt_eq(int irq, void *dev_id)
427 struct ehca_shca *shca = (struct ehca_shca*)dev_id;
429 tasklet_hi_schedule(&shca->eq.interrupt_task);
435 static inline void process_eqe(struct ehca_shca *shca, struct ehca_eqe *eqe)
441 eqe_value = eqe->entry;
442 ehca_dbg(&shca->ib_device, "eqe_value=%lx", eqe_value);
443 if (EHCA_BMASK_GET(EQE_COMPLETION_EVENT, eqe_value)) {
444 ehca_dbg(&shca->ib_device, "Got completion event");
445 token = EHCA_BMASK_GET(EQE_CQ_TOKEN, eqe_value);
446 read_lock(&ehca_cq_idr_lock);
447 cq = idr_find(&ehca_cq_idr, token);
449 atomic_inc(&cq->nr_events);
450 read_unlock(&ehca_cq_idr_lock);
452 ehca_err(&shca->ib_device,
453 "Invalid eqe for non-existing cq token=%x",
457 reset_eq_pending(cq);
458 if (ehca_scaling_code)
461 comp_event_callback(cq);
462 if (atomic_dec_and_test(&cq->nr_events))
463 wake_up(&cq->wait_completion);
466 ehca_dbg(&shca->ib_device, "Got non completion event");
467 parse_identifier(shca, eqe_value);
471 void ehca_process_eq(struct ehca_shca *shca, int is_irq)
473 struct ehca_eq *eq = &shca->eq;
474 struct ehca_eqe_cache_entry *eqe_cache = eq->eqe_cache;
480 spin_lock_irqsave(&eq->irq_spinlock, flags);
482 const int max_query_cnt = 100;
486 int_state = hipz_h_query_int_state(
487 shca->ipz_hca_handle, eq->ist);
490 } while (int_state && query_cnt < max_query_cnt);
491 if (unlikely((query_cnt == max_query_cnt)))
492 ehca_dbg(&shca->ib_device, "int_state=%x query_cnt=%x",
493 int_state, query_cnt);
496 /* read out all eqes */
500 eqe_cache[eqe_cnt].eqe =
501 (struct ehca_eqe *)ehca_poll_eq(shca, eq);
502 if (!eqe_cache[eqe_cnt].eqe)
504 eqe_value = eqe_cache[eqe_cnt].eqe->entry;
505 if (EHCA_BMASK_GET(EQE_COMPLETION_EVENT, eqe_value)) {
506 token = EHCA_BMASK_GET(EQE_CQ_TOKEN, eqe_value);
507 read_lock(&ehca_cq_idr_lock);
508 eqe_cache[eqe_cnt].cq = idr_find(&ehca_cq_idr, token);
509 if (eqe_cache[eqe_cnt].cq)
510 atomic_inc(&eqe_cache[eqe_cnt].cq->nr_events);
511 read_unlock(&ehca_cq_idr_lock);
512 if (!eqe_cache[eqe_cnt].cq) {
513 ehca_err(&shca->ib_device,
514 "Invalid eqe for non-existing cq "
519 eqe_cache[eqe_cnt].cq = NULL;
521 } while (eqe_cnt < EHCA_EQE_CACHE_SIZE);
524 ehca_dbg(&shca->ib_device,
525 "No eqe found for irq event");
526 goto unlock_irq_spinlock;
528 ehca_dbg(&shca->ib_device, "deadman found %x eqe", eqe_cnt);
529 if (unlikely(eqe_cnt == EHCA_EQE_CACHE_SIZE))
530 ehca_dbg(&shca->ib_device, "too many eqes for one irq event");
531 /* enable irq for new packets */
532 for (i = 0; i < eqe_cnt; i++) {
533 if (eq->eqe_cache[i].cq)
534 reset_eq_pending(eq->eqe_cache[i].cq);
537 spin_lock(&eq->spinlock);
538 eq_empty = (!ipz_eqit_eq_peek_valid(&shca->eq.ipz_queue));
539 spin_unlock(&eq->spinlock);
540 /* call completion handler for cached eqes */
541 for (i = 0; i < eqe_cnt; i++)
542 if (eq->eqe_cache[i].cq) {
543 if (ehca_scaling_code)
544 queue_comp_task(eq->eqe_cache[i].cq);
546 struct ehca_cq *cq = eq->eqe_cache[i].cq;
547 comp_event_callback(cq);
548 if (atomic_dec_and_test(&cq->nr_events))
549 wake_up(&cq->wait_completion);
552 ehca_dbg(&shca->ib_device, "Got non completion event");
553 parse_identifier(shca, eq->eqe_cache[i].eqe->entry);
555 /* poll eq if not empty */
557 goto unlock_irq_spinlock;
559 struct ehca_eqe *eqe;
560 eqe = (struct ehca_eqe *)ehca_poll_eq(shca, &shca->eq);
563 process_eqe(shca, eqe);
567 spin_unlock_irqrestore(&eq->irq_spinlock, flags);
570 void ehca_tasklet_eq(unsigned long data)
572 ehca_process_eq((struct ehca_shca*)data, 1);
575 static inline int find_next_online_cpu(struct ehca_comp_pool *pool)
580 WARN_ON_ONCE(!in_interrupt());
581 if (ehca_debug_level)
582 ehca_dmp(&cpu_online_map, sizeof(cpumask_t), "");
584 spin_lock_irqsave(&pool->last_cpu_lock, flags);
585 cpu = next_cpu(pool->last_cpu, cpu_online_map);
587 cpu = first_cpu(cpu_online_map);
588 pool->last_cpu = cpu;
589 spin_unlock_irqrestore(&pool->last_cpu_lock, flags);
594 static void __queue_comp_task(struct ehca_cq *__cq,
595 struct ehca_cpu_comp_task *cct)
599 spin_lock_irqsave(&cct->task_lock, flags);
600 spin_lock(&__cq->task_lock);
602 if (__cq->nr_callbacks == 0) {
603 __cq->nr_callbacks++;
604 list_add_tail(&__cq->entry, &cct->cq_list);
606 wake_up(&cct->wait_queue);
608 __cq->nr_callbacks++;
610 spin_unlock(&__cq->task_lock);
611 spin_unlock_irqrestore(&cct->task_lock, flags);
614 static void queue_comp_task(struct ehca_cq *__cq)
617 struct ehca_cpu_comp_task *cct;
621 cpu_id = find_next_online_cpu(pool);
622 BUG_ON(!cpu_online(cpu_id));
624 cct = per_cpu_ptr(pool->cpu_comp_tasks, cpu_id);
627 spin_lock_irqsave(&cct->task_lock, flags);
628 cq_jobs = cct->cq_jobs;
629 spin_unlock_irqrestore(&cct->task_lock, flags);
631 cpu_id = find_next_online_cpu(pool);
632 cct = per_cpu_ptr(pool->cpu_comp_tasks, cpu_id);
636 __queue_comp_task(__cq, cct);
639 static void run_comp_task(struct ehca_cpu_comp_task *cct)
644 spin_lock_irqsave(&cct->task_lock, flags);
646 while (!list_empty(&cct->cq_list)) {
647 cq = list_entry(cct->cq_list.next, struct ehca_cq, entry);
648 spin_unlock_irqrestore(&cct->task_lock, flags);
650 comp_event_callback(cq);
651 if (atomic_dec_and_test(&cq->nr_events))
652 wake_up(&cq->wait_completion);
654 spin_lock_irqsave(&cct->task_lock, flags);
655 spin_lock(&cq->task_lock);
657 if (!cq->nr_callbacks) {
658 list_del_init(cct->cq_list.next);
661 spin_unlock(&cq->task_lock);
664 spin_unlock_irqrestore(&cct->task_lock, flags);
667 static int comp_task(void *__cct)
669 struct ehca_cpu_comp_task *cct = __cct;
671 DECLARE_WAITQUEUE(wait, current);
673 set_current_state(TASK_INTERRUPTIBLE);
674 while (!kthread_should_stop()) {
675 add_wait_queue(&cct->wait_queue, &wait);
677 spin_lock_irq(&cct->task_lock);
678 cql_empty = list_empty(&cct->cq_list);
679 spin_unlock_irq(&cct->task_lock);
683 __set_current_state(TASK_RUNNING);
685 remove_wait_queue(&cct->wait_queue, &wait);
687 spin_lock_irq(&cct->task_lock);
688 cql_empty = list_empty(&cct->cq_list);
689 spin_unlock_irq(&cct->task_lock);
691 run_comp_task(__cct);
693 set_current_state(TASK_INTERRUPTIBLE);
695 __set_current_state(TASK_RUNNING);
700 static struct task_struct *create_comp_task(struct ehca_comp_pool *pool,
703 struct ehca_cpu_comp_task *cct;
705 cct = per_cpu_ptr(pool->cpu_comp_tasks, cpu);
706 spin_lock_init(&cct->task_lock);
707 INIT_LIST_HEAD(&cct->cq_list);
708 init_waitqueue_head(&cct->wait_queue);
709 cct->task = kthread_create(comp_task, cct, "ehca_comp/%d", cpu);
714 static void destroy_comp_task(struct ehca_comp_pool *pool,
717 struct ehca_cpu_comp_task *cct;
718 struct task_struct *task;
719 unsigned long flags_cct;
721 cct = per_cpu_ptr(pool->cpu_comp_tasks, cpu);
723 spin_lock_irqsave(&cct->task_lock, flags_cct);
729 spin_unlock_irqrestore(&cct->task_lock, flags_cct);
735 #ifdef CONFIG_HOTPLUG_CPU
736 static void take_over_work(struct ehca_comp_pool *pool,
739 struct ehca_cpu_comp_task *cct = per_cpu_ptr(pool->cpu_comp_tasks, cpu);
742 unsigned long flags_cct;
744 spin_lock_irqsave(&cct->task_lock, flags_cct);
746 list_splice_init(&cct->cq_list, &list);
748 while (!list_empty(&list)) {
749 cq = list_entry(cct->cq_list.next, struct ehca_cq, entry);
751 list_del(&cq->entry);
752 __queue_comp_task(cq, per_cpu_ptr(pool->cpu_comp_tasks,
753 smp_processor_id()));
756 spin_unlock_irqrestore(&cct->task_lock, flags_cct);
760 static int comp_pool_callback(struct notifier_block *nfb,
761 unsigned long action,
764 unsigned int cpu = (unsigned long)hcpu;
765 struct ehca_cpu_comp_task *cct;
769 case CPU_UP_PREPARE_FROZEN:
770 ehca_gen_dbg("CPU: %x (CPU_PREPARE)", cpu);
771 if (!create_comp_task(pool, cpu)) {
772 ehca_gen_err("Can't create comp_task for cpu: %x", cpu);
776 case CPU_UP_CANCELED:
777 case CPU_UP_CANCELED_FROZEN:
778 ehca_gen_dbg("CPU: %x (CPU_CANCELED)", cpu);
779 cct = per_cpu_ptr(pool->cpu_comp_tasks, cpu);
780 kthread_bind(cct->task, any_online_cpu(cpu_online_map));
781 destroy_comp_task(pool, cpu);
784 case CPU_ONLINE_FROZEN:
785 ehca_gen_dbg("CPU: %x (CPU_ONLINE)", cpu);
786 cct = per_cpu_ptr(pool->cpu_comp_tasks, cpu);
787 kthread_bind(cct->task, cpu);
788 wake_up_process(cct->task);
790 case CPU_DOWN_PREPARE:
791 case CPU_DOWN_PREPARE_FROZEN:
792 ehca_gen_dbg("CPU: %x (CPU_DOWN_PREPARE)", cpu);
794 case CPU_DOWN_FAILED:
795 case CPU_DOWN_FAILED_FROZEN:
796 ehca_gen_dbg("CPU: %x (CPU_DOWN_FAILED)", cpu);
799 case CPU_DEAD_FROZEN:
800 ehca_gen_dbg("CPU: %x (CPU_DEAD)", cpu);
801 destroy_comp_task(pool, cpu);
802 take_over_work(pool, cpu);
810 int ehca_create_comp_pool(void)
813 struct task_struct *task;
815 if (!ehca_scaling_code)
818 pool = kzalloc(sizeof(struct ehca_comp_pool), GFP_KERNEL);
822 spin_lock_init(&pool->last_cpu_lock);
823 pool->last_cpu = any_online_cpu(cpu_online_map);
825 pool->cpu_comp_tasks = alloc_percpu(struct ehca_cpu_comp_task);
826 if (pool->cpu_comp_tasks == NULL) {
831 for_each_online_cpu(cpu) {
832 task = create_comp_task(pool, cpu);
834 kthread_bind(task, cpu);
835 wake_up_process(task);
839 #ifdef CONFIG_HOTPLUG_CPU
840 comp_pool_callback_nb.notifier_call = comp_pool_callback;
841 comp_pool_callback_nb.priority = 0;
842 register_cpu_notifier(&comp_pool_callback_nb);
845 printk(KERN_INFO "eHCA scaling code enabled\n");
850 void ehca_destroy_comp_pool(void)
854 if (!ehca_scaling_code)
857 #ifdef CONFIG_HOTPLUG_CPU
858 unregister_cpu_notifier(&comp_pool_callback_nb);
861 for (i = 0; i < NR_CPUS; i++) {
863 destroy_comp_task(pool, i);
865 free_percpu(pool->cpu_comp_tasks);