2 * Copyright (c) 2006 Intel Corporation. All rights reserved.
4 * This software is available to you under a choice of one of two
5 * licenses. You may choose to be licensed under the terms of the GNU
6 * General Public License (GPL) Version 2, available from the file
7 * COPYING in the main directory of this source tree, or the
8 * OpenIB.org BSD license below:
10 * Redistribution and use in source and binary forms, with or
11 * without modification, are permitted provided that the following
14 * - Redistributions of source code must retain the above
15 * copyright notice, this list of conditions and the following
18 * - Redistributions in binary form must reproduce the above
19 * copyright notice, this list of conditions and the following
20 * disclaimer in the documentation and/or other materials
21 * provided with the distribution.
23 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
24 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
25 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
26 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
27 * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
28 * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
29 * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
33 #include <linux/completion.h>
34 #include <linux/dma-mapping.h>
35 #include <linux/err.h>
36 #include <linux/interrupt.h>
37 #include <linux/bitops.h>
38 #include <linux/random.h>
40 #include <rdma/ib_cache.h>
43 static void mcast_add_one(struct ib_device
*device
);
44 static void mcast_remove_one(struct ib_device
*device
);
46 static struct ib_client mcast_client
= {
47 .name
= "ib_multicast",
49 .remove
= mcast_remove_one
52 static struct ib_sa_client sa_client
;
53 static struct workqueue_struct
*mcast_wq
;
54 static union ib_gid mgid0
;
59 struct mcast_device
*dev
;
63 struct completion comp
;
68 struct ib_device
*device
;
69 struct ib_event_handler event_handler
;
72 struct mcast_port port
[0];
81 enum mcast_group_state
{
89 MCAST_INVALID_PKEY_INDEX
= 0xFFFF
95 struct ib_sa_mcmember_rec rec
;
97 struct mcast_port
*port
;
99 struct work_struct work
;
100 struct list_head pending_list
;
101 struct list_head active_list
;
102 struct mcast_member
*last_join
;
105 enum mcast_group_state state
;
106 struct ib_sa_query
*query
;
111 struct mcast_member
{
112 struct ib_sa_multicast multicast
;
113 struct ib_sa_client
*client
;
114 struct mcast_group
*group
;
115 struct list_head list
;
116 enum mcast_state state
;
118 struct completion comp
;
121 static void join_handler(int status
, struct ib_sa_mcmember_rec
*rec
,
123 static void leave_handler(int status
, struct ib_sa_mcmember_rec
*rec
,
126 static struct mcast_group
*mcast_find(struct mcast_port
*port
,
129 struct rb_node
*node
= port
->table
.rb_node
;
130 struct mcast_group
*group
;
134 group
= rb_entry(node
, struct mcast_group
, node
);
135 ret
= memcmp(mgid
->raw
, group
->rec
.mgid
.raw
, sizeof *mgid
);
140 node
= node
->rb_left
;
142 node
= node
->rb_right
;
147 static struct mcast_group
*mcast_insert(struct mcast_port
*port
,
148 struct mcast_group
*group
,
149 int allow_duplicates
)
151 struct rb_node
**link
= &port
->table
.rb_node
;
152 struct rb_node
*parent
= NULL
;
153 struct mcast_group
*cur_group
;
158 cur_group
= rb_entry(parent
, struct mcast_group
, node
);
160 ret
= memcmp(group
->rec
.mgid
.raw
, cur_group
->rec
.mgid
.raw
,
161 sizeof group
->rec
.mgid
);
163 link
= &(*link
)->rb_left
;
165 link
= &(*link
)->rb_right
;
166 else if (allow_duplicates
)
167 link
= &(*link
)->rb_left
;
171 rb_link_node(&group
->node
, parent
, link
);
172 rb_insert_color(&group
->node
, &port
->table
);
176 static void deref_port(struct mcast_port
*port
)
178 if (atomic_dec_and_test(&port
->refcount
))
179 complete(&port
->comp
);
182 static void release_group(struct mcast_group
*group
)
184 struct mcast_port
*port
= group
->port
;
187 spin_lock_irqsave(&port
->lock
, flags
);
188 if (atomic_dec_and_test(&group
->refcount
)) {
189 rb_erase(&group
->node
, &port
->table
);
190 spin_unlock_irqrestore(&port
->lock
, flags
);
194 spin_unlock_irqrestore(&port
->lock
, flags
);
197 static void deref_member(struct mcast_member
*member
)
199 if (atomic_dec_and_test(&member
->refcount
))
200 complete(&member
->comp
);
203 static void queue_join(struct mcast_member
*member
)
205 struct mcast_group
*group
= member
->group
;
208 spin_lock_irqsave(&group
->lock
, flags
);
209 list_add_tail(&member
->list
, &group
->pending_list
);
210 if (group
->state
== MCAST_IDLE
) {
211 group
->state
= MCAST_BUSY
;
212 atomic_inc(&group
->refcount
);
213 queue_work(mcast_wq
, &group
->work
);
215 spin_unlock_irqrestore(&group
->lock
, flags
);
219 * A multicast group has three types of members: full member, non member, and
220 * send only member. We need to keep track of the number of members of each
221 * type based on their join state. Adjust the number of members the belong to
222 * the specified join states.
224 static void adjust_membership(struct mcast_group
*group
, u8 join_state
, int inc
)
228 for (i
= 0; i
< 3; i
++, join_state
>>= 1)
229 if (join_state
& 0x1)
230 group
->members
[i
] += inc
;
234 * If a multicast group has zero members left for a particular join state, but
235 * the group is still a member with the SA, we need to leave that join state.
236 * Determine which join states we still belong to, but that do not have any
239 static u8
get_leave_state(struct mcast_group
*group
)
244 for (i
= 0; i
< 3; i
++)
245 if (!group
->members
[i
])
246 leave_state
|= (0x1 << i
);
248 return leave_state
& group
->rec
.join_state
;
251 static int check_selector(ib_sa_comp_mask comp_mask
,
252 ib_sa_comp_mask selector_mask
,
253 ib_sa_comp_mask value_mask
,
254 u8 selector
, u8 src_value
, u8 dst_value
)
258 if (!(comp_mask
& selector_mask
) || !(comp_mask
& value_mask
))
263 err
= (src_value
<= dst_value
);
266 err
= (src_value
>= dst_value
);
269 err
= (src_value
!= dst_value
);
279 static int cmp_rec(struct ib_sa_mcmember_rec
*src
,
280 struct ib_sa_mcmember_rec
*dst
, ib_sa_comp_mask comp_mask
)
282 /* MGID must already match */
284 if (comp_mask
& IB_SA_MCMEMBER_REC_PORT_GID
&&
285 memcmp(&src
->port_gid
, &dst
->port_gid
, sizeof src
->port_gid
))
287 if (comp_mask
& IB_SA_MCMEMBER_REC_QKEY
&& src
->qkey
!= dst
->qkey
)
289 if (comp_mask
& IB_SA_MCMEMBER_REC_MLID
&& src
->mlid
!= dst
->mlid
)
291 if (check_selector(comp_mask
, IB_SA_MCMEMBER_REC_MTU_SELECTOR
,
292 IB_SA_MCMEMBER_REC_MTU
, dst
->mtu_selector
,
295 if (comp_mask
& IB_SA_MCMEMBER_REC_TRAFFIC_CLASS
&&
296 src
->traffic_class
!= dst
->traffic_class
)
298 if (comp_mask
& IB_SA_MCMEMBER_REC_PKEY
&& src
->pkey
!= dst
->pkey
)
300 if (check_selector(comp_mask
, IB_SA_MCMEMBER_REC_RATE_SELECTOR
,
301 IB_SA_MCMEMBER_REC_RATE
, dst
->rate_selector
,
302 src
->rate
, dst
->rate
))
304 if (check_selector(comp_mask
,
305 IB_SA_MCMEMBER_REC_PACKET_LIFE_TIME_SELECTOR
,
306 IB_SA_MCMEMBER_REC_PACKET_LIFE_TIME
,
307 dst
->packet_life_time_selector
,
308 src
->packet_life_time
, dst
->packet_life_time
))
310 if (comp_mask
& IB_SA_MCMEMBER_REC_SL
&& src
->sl
!= dst
->sl
)
312 if (comp_mask
& IB_SA_MCMEMBER_REC_FLOW_LABEL
&&
313 src
->flow_label
!= dst
->flow_label
)
315 if (comp_mask
& IB_SA_MCMEMBER_REC_HOP_LIMIT
&&
316 src
->hop_limit
!= dst
->hop_limit
)
318 if (comp_mask
& IB_SA_MCMEMBER_REC_SCOPE
&& src
->scope
!= dst
->scope
)
321 /* join_state checked separately, proxy_join ignored */
326 static int send_join(struct mcast_group
*group
, struct mcast_member
*member
)
328 struct mcast_port
*port
= group
->port
;
331 group
->last_join
= member
;
332 ret
= ib_sa_mcmember_rec_query(&sa_client
, port
->dev
->device
,
333 port
->port_num
, IB_MGMT_METHOD_SET
,
334 &member
->multicast
.rec
,
335 member
->multicast
.comp_mask
,
336 3000, GFP_KERNEL
, join_handler
, group
,
339 group
->query_id
= ret
;
345 static int send_leave(struct mcast_group
*group
, u8 leave_state
)
347 struct mcast_port
*port
= group
->port
;
348 struct ib_sa_mcmember_rec rec
;
352 rec
.join_state
= leave_state
;
354 ret
= ib_sa_mcmember_rec_query(&sa_client
, port
->dev
->device
,
355 port
->port_num
, IB_SA_METHOD_DELETE
, &rec
,
356 IB_SA_MCMEMBER_REC_MGID
|
357 IB_SA_MCMEMBER_REC_PORT_GID
|
358 IB_SA_MCMEMBER_REC_JOIN_STATE
,
359 3000, GFP_KERNEL
, leave_handler
,
360 group
, &group
->query
);
362 group
->query_id
= ret
;
368 static void join_group(struct mcast_group
*group
, struct mcast_member
*member
,
371 member
->state
= MCAST_MEMBER
;
372 adjust_membership(group
, join_state
, 1);
373 group
->rec
.join_state
|= join_state
;
374 member
->multicast
.rec
= group
->rec
;
375 member
->multicast
.rec
.join_state
= join_state
;
376 list_move(&member
->list
, &group
->active_list
);
379 static int fail_join(struct mcast_group
*group
, struct mcast_member
*member
,
382 spin_lock_irq(&group
->lock
);
383 list_del_init(&member
->list
);
384 spin_unlock_irq(&group
->lock
);
385 return member
->multicast
.callback(status
, &member
->multicast
);
388 static void process_group_error(struct mcast_group
*group
)
390 struct mcast_member
*member
;
394 if (group
->state
== MCAST_PKEY_EVENT
)
395 ret
= ib_find_pkey(group
->port
->dev
->device
,
396 group
->port
->port_num
,
397 be16_to_cpu(group
->rec
.pkey
), &pkey_index
);
399 spin_lock_irq(&group
->lock
);
400 if (group
->state
== MCAST_PKEY_EVENT
&& !ret
&&
401 group
->pkey_index
== pkey_index
)
404 while (!list_empty(&group
->active_list
)) {
405 member
= list_entry(group
->active_list
.next
,
406 struct mcast_member
, list
);
407 atomic_inc(&member
->refcount
);
408 list_del_init(&member
->list
);
409 adjust_membership(group
, member
->multicast
.rec
.join_state
, -1);
410 member
->state
= MCAST_ERROR
;
411 spin_unlock_irq(&group
->lock
);
413 ret
= member
->multicast
.callback(-ENETRESET
,
415 deref_member(member
);
417 ib_sa_free_multicast(&member
->multicast
);
418 spin_lock_irq(&group
->lock
);
421 group
->rec
.join_state
= 0;
423 group
->state
= MCAST_BUSY
;
424 spin_unlock_irq(&group
->lock
);
427 static void mcast_work_handler(struct work_struct
*work
)
429 struct mcast_group
*group
;
430 struct mcast_member
*member
;
431 struct ib_sa_multicast
*multicast
;
435 group
= container_of(work
, typeof(*group
), work
);
437 spin_lock_irq(&group
->lock
);
438 while (!list_empty(&group
->pending_list
) ||
439 (group
->state
!= MCAST_BUSY
)) {
441 if (group
->state
!= MCAST_BUSY
) {
442 spin_unlock_irq(&group
->lock
);
443 process_group_error(group
);
447 member
= list_entry(group
->pending_list
.next
,
448 struct mcast_member
, list
);
449 multicast
= &member
->multicast
;
450 join_state
= multicast
->rec
.join_state
;
451 atomic_inc(&member
->refcount
);
453 if (join_state
== (group
->rec
.join_state
& join_state
)) {
454 status
= cmp_rec(&group
->rec
, &multicast
->rec
,
455 multicast
->comp_mask
);
457 join_group(group
, member
, join_state
);
459 list_del_init(&member
->list
);
460 spin_unlock_irq(&group
->lock
);
461 ret
= multicast
->callback(status
, multicast
);
463 spin_unlock_irq(&group
->lock
);
464 status
= send_join(group
, member
);
466 deref_member(member
);
469 ret
= fail_join(group
, member
, status
);
472 deref_member(member
);
474 ib_sa_free_multicast(&member
->multicast
);
475 spin_lock_irq(&group
->lock
);
478 join_state
= get_leave_state(group
);
480 group
->rec
.join_state
&= ~join_state
;
481 spin_unlock_irq(&group
->lock
);
482 if (send_leave(group
, join_state
))
485 group
->state
= MCAST_IDLE
;
486 spin_unlock_irq(&group
->lock
);
487 release_group(group
);
492 * Fail a join request if it is still active - at the head of the pending queue.
494 static void process_join_error(struct mcast_group
*group
, int status
)
496 struct mcast_member
*member
;
499 spin_lock_irq(&group
->lock
);
500 member
= list_entry(group
->pending_list
.next
,
501 struct mcast_member
, list
);
502 if (group
->last_join
== member
) {
503 atomic_inc(&member
->refcount
);
504 list_del_init(&member
->list
);
505 spin_unlock_irq(&group
->lock
);
506 ret
= member
->multicast
.callback(status
, &member
->multicast
);
507 deref_member(member
);
509 ib_sa_free_multicast(&member
->multicast
);
511 spin_unlock_irq(&group
->lock
);
514 static void join_handler(int status
, struct ib_sa_mcmember_rec
*rec
,
517 struct mcast_group
*group
= context
;
518 u16 pkey_index
= MCAST_INVALID_PKEY_INDEX
;
521 process_join_error(group
, status
);
523 ib_find_pkey(group
->port
->dev
->device
, group
->port
->port_num
,
524 be16_to_cpu(rec
->pkey
), &pkey_index
);
526 spin_lock_irq(&group
->port
->lock
);
528 if (group
->state
== MCAST_BUSY
&&
529 group
->pkey_index
== MCAST_INVALID_PKEY_INDEX
)
530 group
->pkey_index
= pkey_index
;
531 if (!memcmp(&mgid0
, &group
->rec
.mgid
, sizeof mgid0
)) {
532 rb_erase(&group
->node
, &group
->port
->table
);
533 mcast_insert(group
->port
, group
, 1);
535 spin_unlock_irq(&group
->port
->lock
);
537 mcast_work_handler(&group
->work
);
540 static void leave_handler(int status
, struct ib_sa_mcmember_rec
*rec
,
543 struct mcast_group
*group
= context
;
545 mcast_work_handler(&group
->work
);
548 static struct mcast_group
*acquire_group(struct mcast_port
*port
,
549 union ib_gid
*mgid
, gfp_t gfp_mask
)
551 struct mcast_group
*group
, *cur_group
;
555 is_mgid0
= !memcmp(&mgid0
, mgid
, sizeof mgid0
);
557 spin_lock_irqsave(&port
->lock
, flags
);
558 group
= mcast_find(port
, mgid
);
561 spin_unlock_irqrestore(&port
->lock
, flags
);
564 group
= kzalloc(sizeof *group
, gfp_mask
);
569 group
->rec
.mgid
= *mgid
;
570 group
->pkey_index
= MCAST_INVALID_PKEY_INDEX
;
571 INIT_LIST_HEAD(&group
->pending_list
);
572 INIT_LIST_HEAD(&group
->active_list
);
573 INIT_WORK(&group
->work
, mcast_work_handler
);
574 spin_lock_init(&group
->lock
);
576 spin_lock_irqsave(&port
->lock
, flags
);
577 cur_group
= mcast_insert(port
, group
, is_mgid0
);
582 atomic_inc(&port
->refcount
);
584 atomic_inc(&group
->refcount
);
585 spin_unlock_irqrestore(&port
->lock
, flags
);
590 * We serialize all join requests to a single group to make our lives much
591 * easier. Otherwise, two users could try to join the same group
592 * simultaneously, with different configurations, one could leave while the
593 * join is in progress, etc., which makes locking around error recovery
596 struct ib_sa_multicast
*
597 ib_sa_join_multicast(struct ib_sa_client
*client
,
598 struct ib_device
*device
, u8 port_num
,
599 struct ib_sa_mcmember_rec
*rec
,
600 ib_sa_comp_mask comp_mask
, gfp_t gfp_mask
,
601 int (*callback
)(int status
,
602 struct ib_sa_multicast
*multicast
),
605 struct mcast_device
*dev
;
606 struct mcast_member
*member
;
607 struct ib_sa_multicast
*multicast
;
610 dev
= ib_get_client_data(device
, &mcast_client
);
612 return ERR_PTR(-ENODEV
);
614 member
= kmalloc(sizeof *member
, gfp_mask
);
616 return ERR_PTR(-ENOMEM
);
618 ib_sa_client_get(client
);
619 member
->client
= client
;
620 member
->multicast
.rec
= *rec
;
621 member
->multicast
.comp_mask
= comp_mask
;
622 member
->multicast
.callback
= callback
;
623 member
->multicast
.context
= context
;
624 init_completion(&member
->comp
);
625 atomic_set(&member
->refcount
, 1);
626 member
->state
= MCAST_JOINING
;
628 member
->group
= acquire_group(&dev
->port
[port_num
- dev
->start_port
],
629 &rec
->mgid
, gfp_mask
);
630 if (!member
->group
) {
636 * The user will get the multicast structure in their callback. They
637 * could then free the multicast structure before we can return from
638 * this routine. So we save the pointer to return before queuing
641 multicast
= &member
->multicast
;
646 ib_sa_client_put(client
);
650 EXPORT_SYMBOL(ib_sa_join_multicast
);
652 void ib_sa_free_multicast(struct ib_sa_multicast
*multicast
)
654 struct mcast_member
*member
;
655 struct mcast_group
*group
;
657 member
= container_of(multicast
, struct mcast_member
, multicast
);
658 group
= member
->group
;
660 spin_lock_irq(&group
->lock
);
661 if (member
->state
== MCAST_MEMBER
)
662 adjust_membership(group
, multicast
->rec
.join_state
, -1);
664 list_del_init(&member
->list
);
666 if (group
->state
== MCAST_IDLE
) {
667 group
->state
= MCAST_BUSY
;
668 spin_unlock_irq(&group
->lock
);
669 /* Continue to hold reference on group until callback */
670 queue_work(mcast_wq
, &group
->work
);
672 spin_unlock_irq(&group
->lock
);
673 release_group(group
);
676 deref_member(member
);
677 wait_for_completion(&member
->comp
);
678 ib_sa_client_put(member
->client
);
681 EXPORT_SYMBOL(ib_sa_free_multicast
);
683 int ib_sa_get_mcmember_rec(struct ib_device
*device
, u8 port_num
,
684 union ib_gid
*mgid
, struct ib_sa_mcmember_rec
*rec
)
686 struct mcast_device
*dev
;
687 struct mcast_port
*port
;
688 struct mcast_group
*group
;
692 dev
= ib_get_client_data(device
, &mcast_client
);
696 port
= &dev
->port
[port_num
- dev
->start_port
];
697 spin_lock_irqsave(&port
->lock
, flags
);
698 group
= mcast_find(port
, mgid
);
702 ret
= -EADDRNOTAVAIL
;
703 spin_unlock_irqrestore(&port
->lock
, flags
);
707 EXPORT_SYMBOL(ib_sa_get_mcmember_rec
);
709 int ib_init_ah_from_mcmember(struct ib_device
*device
, u8 port_num
,
710 struct ib_sa_mcmember_rec
*rec
,
711 struct ib_ah_attr
*ah_attr
)
717 ret
= ib_find_cached_gid(device
, &rec
->port_gid
, &p
, &gid_index
);
721 memset(ah_attr
, 0, sizeof *ah_attr
);
722 ah_attr
->dlid
= be16_to_cpu(rec
->mlid
);
723 ah_attr
->sl
= rec
->sl
;
724 ah_attr
->port_num
= port_num
;
725 ah_attr
->static_rate
= rec
->rate
;
727 ah_attr
->ah_flags
= IB_AH_GRH
;
728 ah_attr
->grh
.dgid
= rec
->mgid
;
730 ah_attr
->grh
.sgid_index
= (u8
) gid_index
;
731 ah_attr
->grh
.flow_label
= be32_to_cpu(rec
->flow_label
);
732 ah_attr
->grh
.hop_limit
= rec
->hop_limit
;
733 ah_attr
->grh
.traffic_class
= rec
->traffic_class
;
737 EXPORT_SYMBOL(ib_init_ah_from_mcmember
);
739 static void mcast_groups_event(struct mcast_port
*port
,
740 enum mcast_group_state state
)
742 struct mcast_group
*group
;
743 struct rb_node
*node
;
746 spin_lock_irqsave(&port
->lock
, flags
);
747 for (node
= rb_first(&port
->table
); node
; node
= rb_next(node
)) {
748 group
= rb_entry(node
, struct mcast_group
, node
);
749 spin_lock(&group
->lock
);
750 if (group
->state
== MCAST_IDLE
) {
751 atomic_inc(&group
->refcount
);
752 queue_work(mcast_wq
, &group
->work
);
754 if (group
->state
!= MCAST_GROUP_ERROR
)
755 group
->state
= state
;
756 spin_unlock(&group
->lock
);
758 spin_unlock_irqrestore(&port
->lock
, flags
);
761 static void mcast_event_handler(struct ib_event_handler
*handler
,
762 struct ib_event
*event
)
764 struct mcast_device
*dev
;
767 dev
= container_of(handler
, struct mcast_device
, event_handler
);
768 index
= event
->element
.port_num
- dev
->start_port
;
770 switch (event
->event
) {
771 case IB_EVENT_PORT_ERR
:
772 case IB_EVENT_LID_CHANGE
:
773 case IB_EVENT_SM_CHANGE
:
774 case IB_EVENT_CLIENT_REREGISTER
:
775 mcast_groups_event(&dev
->port
[index
], MCAST_GROUP_ERROR
);
777 case IB_EVENT_PKEY_CHANGE
:
778 mcast_groups_event(&dev
->port
[index
], MCAST_PKEY_EVENT
);
785 static void mcast_add_one(struct ib_device
*device
)
787 struct mcast_device
*dev
;
788 struct mcast_port
*port
;
791 if (rdma_node_get_transport(device
->node_type
) != RDMA_TRANSPORT_IB
)
794 dev
= kmalloc(sizeof *dev
+ device
->phys_port_cnt
* sizeof *port
,
799 if (device
->node_type
== RDMA_NODE_IB_SWITCH
)
800 dev
->start_port
= dev
->end_port
= 0;
803 dev
->end_port
= device
->phys_port_cnt
;
806 for (i
= 0; i
<= dev
->end_port
- dev
->start_port
; i
++) {
807 port
= &dev
->port
[i
];
809 port
->port_num
= dev
->start_port
+ i
;
810 spin_lock_init(&port
->lock
);
811 port
->table
= RB_ROOT
;
812 init_completion(&port
->comp
);
813 atomic_set(&port
->refcount
, 1);
816 dev
->device
= device
;
817 ib_set_client_data(device
, &mcast_client
, dev
);
819 INIT_IB_EVENT_HANDLER(&dev
->event_handler
, device
, mcast_event_handler
);
820 ib_register_event_handler(&dev
->event_handler
);
823 static void mcast_remove_one(struct ib_device
*device
)
825 struct mcast_device
*dev
;
826 struct mcast_port
*port
;
829 dev
= ib_get_client_data(device
, &mcast_client
);
833 ib_unregister_event_handler(&dev
->event_handler
);
834 flush_workqueue(mcast_wq
);
836 for (i
= 0; i
<= dev
->end_port
- dev
->start_port
; i
++) {
837 port
= &dev
->port
[i
];
839 wait_for_completion(&port
->comp
);
849 mcast_wq
= create_singlethread_workqueue("ib_mcast");
853 ib_sa_register_client(&sa_client
);
855 ret
= ib_register_client(&mcast_client
);
861 ib_sa_unregister_client(&sa_client
);
862 destroy_workqueue(mcast_wq
);
866 void mcast_cleanup(void)
868 ib_unregister_client(&mcast_client
);
869 ib_sa_unregister_client(&sa_client
);
870 destroy_workqueue(mcast_wq
);