IPoIB: Remove priv->mcast_mutex
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / drivers / infiniband / ulp / ipoib / ipoib_main.c
blob8be9ea0436e6bf4751042a644bb78912a319627b
1 /*
2 * Copyright (c) 2004 Topspin Communications. All rights reserved.
3 * Copyright (c) 2005 Sun Microsystems, Inc. All rights reserved.
4 * Copyright (c) 2004 Voltaire, Inc. All rights reserved.
6 * This software is available to you under a choice of one of two
7 * licenses. You may choose to be licensed under the terms of the GNU
8 * General Public License (GPL) Version 2, available from the file
9 * COPYING in the main directory of this source tree, or the
10 * OpenIB.org BSD license below:
12 * Redistribution and use in source and binary forms, with or
13 * without modification, are permitted provided that the following
14 * conditions are met:
16 * - Redistributions of source code must retain the above
17 * copyright notice, this list of conditions and the following
18 * disclaimer.
20 * - Redistributions in binary form must reproduce the above
21 * copyright notice, this list of conditions and the following
22 * disclaimer in the documentation and/or other materials
23 * provided with the distribution.
25 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
26 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
27 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
28 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
29 * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
30 * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
31 * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
32 * SOFTWARE.
35 #include "ipoib.h"
37 #include <linux/module.h>
39 #include <linux/init.h>
40 #include <linux/slab.h>
41 #include <linux/kernel.h>
42 #include <linux/vmalloc.h>
44 #include <linux/if_arp.h> /* For ARPHRD_xxx */
46 #include <linux/ip.h>
47 #include <linux/in.h>
49 #include <net/dst.h>
51 MODULE_AUTHOR("Roland Dreier");
52 MODULE_DESCRIPTION("IP-over-InfiniBand net driver");
53 MODULE_LICENSE("Dual BSD/GPL");
55 int ipoib_sendq_size __read_mostly = IPOIB_TX_RING_SIZE;
56 int ipoib_recvq_size __read_mostly = IPOIB_RX_RING_SIZE;
58 module_param_named(send_queue_size, ipoib_sendq_size, int, 0444);
59 MODULE_PARM_DESC(send_queue_size, "Number of descriptors in send queue");
60 module_param_named(recv_queue_size, ipoib_recvq_size, int, 0444);
61 MODULE_PARM_DESC(recv_queue_size, "Number of descriptors in receive queue");
63 static int lro;
64 module_param(lro, bool, 0444);
65 MODULE_PARM_DESC(lro, "Enable LRO (Large Receive Offload)");
67 static int lro_max_aggr = IPOIB_LRO_MAX_AGGR;
68 module_param(lro_max_aggr, int, 0644);
69 MODULE_PARM_DESC(lro_max_aggr, "LRO: Max packets to be aggregated "
70 "(default = 64)");
72 #ifdef CONFIG_INFINIBAND_IPOIB_DEBUG
73 int ipoib_debug_level;
75 module_param_named(debug_level, ipoib_debug_level, int, 0644);
76 MODULE_PARM_DESC(debug_level, "Enable debug tracing if > 0");
77 #endif
79 struct ipoib_path_iter {
80 struct net_device *dev;
81 struct ipoib_path path;
84 static const u8 ipv4_bcast_addr[] = {
85 0x00, 0xff, 0xff, 0xff,
86 0xff, 0x12, 0x40, 0x1b, 0x00, 0x00, 0x00, 0x00,
87 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff
90 struct workqueue_struct *ipoib_workqueue;
92 struct ib_sa_client ipoib_sa_client;
94 static void ipoib_add_one(struct ib_device *device);
95 static void ipoib_remove_one(struct ib_device *device);
97 static struct ib_client ipoib_client = {
98 .name = "ipoib",
99 .add = ipoib_add_one,
100 .remove = ipoib_remove_one
103 int ipoib_open(struct net_device *dev)
105 struct ipoib_dev_priv *priv = netdev_priv(dev);
107 ipoib_dbg(priv, "bringing up interface\n");
109 napi_enable(&priv->napi);
110 set_bit(IPOIB_FLAG_ADMIN_UP, &priv->flags);
112 if (ipoib_pkey_dev_delay_open(dev))
113 return 0;
115 if (ipoib_ib_dev_open(dev)) {
116 napi_disable(&priv->napi);
117 return -EINVAL;
120 if (ipoib_ib_dev_up(dev)) {
121 ipoib_ib_dev_stop(dev, 1);
122 napi_disable(&priv->napi);
123 return -EINVAL;
126 if (!test_bit(IPOIB_FLAG_SUBINTERFACE, &priv->flags)) {
127 struct ipoib_dev_priv *cpriv;
129 /* Bring up any child interfaces too */
130 mutex_lock(&priv->vlan_mutex);
131 list_for_each_entry(cpriv, &priv->child_intfs, list) {
132 int flags;
134 flags = cpriv->dev->flags;
135 if (flags & IFF_UP)
136 continue;
138 dev_change_flags(cpriv->dev, flags | IFF_UP);
140 mutex_unlock(&priv->vlan_mutex);
143 netif_start_queue(dev);
145 return 0;
148 static int ipoib_stop(struct net_device *dev)
150 struct ipoib_dev_priv *priv = netdev_priv(dev);
152 ipoib_dbg(priv, "stopping interface\n");
154 clear_bit(IPOIB_FLAG_ADMIN_UP, &priv->flags);
155 napi_disable(&priv->napi);
157 netif_stop_queue(dev);
160 * Now flush workqueue to make sure a scheduled task doesn't
161 * bring our internal state back up.
163 flush_workqueue(ipoib_workqueue);
165 ipoib_ib_dev_down(dev, 1);
166 ipoib_ib_dev_stop(dev, 1);
168 if (!test_bit(IPOIB_FLAG_SUBINTERFACE, &priv->flags)) {
169 struct ipoib_dev_priv *cpriv;
171 /* Bring down any child interfaces too */
172 mutex_lock(&priv->vlan_mutex);
173 list_for_each_entry(cpriv, &priv->child_intfs, list) {
174 int flags;
176 flags = cpriv->dev->flags;
177 if (!(flags & IFF_UP))
178 continue;
180 dev_change_flags(cpriv->dev, flags & ~IFF_UP);
182 mutex_unlock(&priv->vlan_mutex);
185 return 0;
188 static int ipoib_change_mtu(struct net_device *dev, int new_mtu)
190 struct ipoib_dev_priv *priv = netdev_priv(dev);
192 /* dev->mtu > 2K ==> connected mode */
193 if (ipoib_cm_admin_enabled(dev)) {
194 if (new_mtu > ipoib_cm_max_mtu(dev))
195 return -EINVAL;
197 if (new_mtu > priv->mcast_mtu)
198 ipoib_warn(priv, "mtu > %d will cause multicast packet drops.\n",
199 priv->mcast_mtu);
201 dev->mtu = new_mtu;
202 return 0;
205 if (new_mtu > IPOIB_UD_MTU(priv->max_ib_mtu))
206 return -EINVAL;
208 priv->admin_mtu = new_mtu;
210 dev->mtu = min(priv->mcast_mtu, priv->admin_mtu);
212 return 0;
215 static struct ipoib_path *__path_find(struct net_device *dev, void *gid)
217 struct ipoib_dev_priv *priv = netdev_priv(dev);
218 struct rb_node *n = priv->path_tree.rb_node;
219 struct ipoib_path *path;
220 int ret;
222 while (n) {
223 path = rb_entry(n, struct ipoib_path, rb_node);
225 ret = memcmp(gid, path->pathrec.dgid.raw,
226 sizeof (union ib_gid));
228 if (ret < 0)
229 n = n->rb_left;
230 else if (ret > 0)
231 n = n->rb_right;
232 else
233 return path;
236 return NULL;
239 static int __path_add(struct net_device *dev, struct ipoib_path *path)
241 struct ipoib_dev_priv *priv = netdev_priv(dev);
242 struct rb_node **n = &priv->path_tree.rb_node;
243 struct rb_node *pn = NULL;
244 struct ipoib_path *tpath;
245 int ret;
247 while (*n) {
248 pn = *n;
249 tpath = rb_entry(pn, struct ipoib_path, rb_node);
251 ret = memcmp(path->pathrec.dgid.raw, tpath->pathrec.dgid.raw,
252 sizeof (union ib_gid));
253 if (ret < 0)
254 n = &pn->rb_left;
255 else if (ret > 0)
256 n = &pn->rb_right;
257 else
258 return -EEXIST;
261 rb_link_node(&path->rb_node, pn, n);
262 rb_insert_color(&path->rb_node, &priv->path_tree);
264 list_add_tail(&path->list, &priv->path_list);
266 return 0;
269 static void path_free(struct net_device *dev, struct ipoib_path *path)
271 struct ipoib_dev_priv *priv = netdev_priv(dev);
272 struct ipoib_neigh *neigh, *tn;
273 struct sk_buff *skb;
274 unsigned long flags;
276 while ((skb = __skb_dequeue(&path->queue)))
277 dev_kfree_skb_irq(skb);
279 spin_lock_irqsave(&priv->lock, flags);
281 list_for_each_entry_safe(neigh, tn, &path->neigh_list, list) {
283 * It's safe to call ipoib_put_ah() inside priv->lock
284 * here, because we know that path->ah will always
285 * hold one more reference, so ipoib_put_ah() will
286 * never do more than decrement the ref count.
288 if (neigh->ah)
289 ipoib_put_ah(neigh->ah);
291 ipoib_neigh_free(dev, neigh);
294 spin_unlock_irqrestore(&priv->lock, flags);
296 if (path->ah)
297 ipoib_put_ah(path->ah);
299 kfree(path);
302 #ifdef CONFIG_INFINIBAND_IPOIB_DEBUG
304 struct ipoib_path_iter *ipoib_path_iter_init(struct net_device *dev)
306 struct ipoib_path_iter *iter;
308 iter = kmalloc(sizeof *iter, GFP_KERNEL);
309 if (!iter)
310 return NULL;
312 iter->dev = dev;
313 memset(iter->path.pathrec.dgid.raw, 0, 16);
315 if (ipoib_path_iter_next(iter)) {
316 kfree(iter);
317 return NULL;
320 return iter;
323 int ipoib_path_iter_next(struct ipoib_path_iter *iter)
325 struct ipoib_dev_priv *priv = netdev_priv(iter->dev);
326 struct rb_node *n;
327 struct ipoib_path *path;
328 int ret = 1;
330 spin_lock_irq(&priv->lock);
332 n = rb_first(&priv->path_tree);
334 while (n) {
335 path = rb_entry(n, struct ipoib_path, rb_node);
337 if (memcmp(iter->path.pathrec.dgid.raw, path->pathrec.dgid.raw,
338 sizeof (union ib_gid)) < 0) {
339 iter->path = *path;
340 ret = 0;
341 break;
344 n = rb_next(n);
347 spin_unlock_irq(&priv->lock);
349 return ret;
352 void ipoib_path_iter_read(struct ipoib_path_iter *iter,
353 struct ipoib_path *path)
355 *path = iter->path;
358 #endif /* CONFIG_INFINIBAND_IPOIB_DEBUG */
360 void ipoib_mark_paths_invalid(struct net_device *dev)
362 struct ipoib_dev_priv *priv = netdev_priv(dev);
363 struct ipoib_path *path, *tp;
365 spin_lock_irq(&priv->lock);
367 list_for_each_entry_safe(path, tp, &priv->path_list, list) {
368 ipoib_dbg(priv, "mark path LID 0x%04x GID " IPOIB_GID_FMT " invalid\n",
369 be16_to_cpu(path->pathrec.dlid),
370 IPOIB_GID_ARG(path->pathrec.dgid));
371 path->valid = 0;
374 spin_unlock_irq(&priv->lock);
377 void ipoib_flush_paths(struct net_device *dev)
379 struct ipoib_dev_priv *priv = netdev_priv(dev);
380 struct ipoib_path *path, *tp;
381 LIST_HEAD(remove_list);
383 spin_lock_irq(&priv->tx_lock);
384 spin_lock(&priv->lock);
386 list_splice_init(&priv->path_list, &remove_list);
388 list_for_each_entry(path, &remove_list, list)
389 rb_erase(&path->rb_node, &priv->path_tree);
391 list_for_each_entry_safe(path, tp, &remove_list, list) {
392 if (path->query)
393 ib_sa_cancel_query(path->query_id, path->query);
394 spin_unlock(&priv->lock);
395 spin_unlock_irq(&priv->tx_lock);
396 wait_for_completion(&path->done);
397 path_free(dev, path);
398 spin_lock_irq(&priv->tx_lock);
399 spin_lock(&priv->lock);
401 spin_unlock(&priv->lock);
402 spin_unlock_irq(&priv->tx_lock);
405 static void path_rec_completion(int status,
406 struct ib_sa_path_rec *pathrec,
407 void *path_ptr)
409 struct ipoib_path *path = path_ptr;
410 struct net_device *dev = path->dev;
411 struct ipoib_dev_priv *priv = netdev_priv(dev);
412 struct ipoib_ah *ah = NULL;
413 struct ipoib_ah *old_ah;
414 struct ipoib_neigh *neigh, *tn;
415 struct sk_buff_head skqueue;
416 struct sk_buff *skb;
417 unsigned long flags;
419 if (!status)
420 ipoib_dbg(priv, "PathRec LID 0x%04x for GID " IPOIB_GID_FMT "\n",
421 be16_to_cpu(pathrec->dlid), IPOIB_GID_ARG(pathrec->dgid));
422 else
423 ipoib_dbg(priv, "PathRec status %d for GID " IPOIB_GID_FMT "\n",
424 status, IPOIB_GID_ARG(path->pathrec.dgid));
426 skb_queue_head_init(&skqueue);
428 if (!status) {
429 struct ib_ah_attr av;
431 if (!ib_init_ah_from_path(priv->ca, priv->port, pathrec, &av))
432 ah = ipoib_create_ah(dev, priv->pd, &av);
435 spin_lock_irqsave(&priv->lock, flags);
437 old_ah = path->ah;
438 path->ah = ah;
440 if (ah) {
441 path->pathrec = *pathrec;
443 ipoib_dbg(priv, "created address handle %p for LID 0x%04x, SL %d\n",
444 ah, be16_to_cpu(pathrec->dlid), pathrec->sl);
446 while ((skb = __skb_dequeue(&path->queue)))
447 __skb_queue_tail(&skqueue, skb);
449 list_for_each_entry_safe(neigh, tn, &path->neigh_list, list) {
450 if (neigh->ah) {
451 WARN_ON(neigh->ah != old_ah);
453 * Dropping the ah reference inside
454 * priv->lock is safe here, because we
455 * will hold one more reference from
456 * the original value of path->ah (ie
457 * old_ah).
459 ipoib_put_ah(neigh->ah);
461 kref_get(&path->ah->ref);
462 neigh->ah = path->ah;
463 memcpy(&neigh->dgid.raw, &path->pathrec.dgid.raw,
464 sizeof(union ib_gid));
466 if (ipoib_cm_enabled(dev, neigh->neighbour)) {
467 if (!ipoib_cm_get(neigh))
468 ipoib_cm_set(neigh, ipoib_cm_create_tx(dev,
469 path,
470 neigh));
471 if (!ipoib_cm_get(neigh)) {
472 list_del(&neigh->list);
473 if (neigh->ah)
474 ipoib_put_ah(neigh->ah);
475 ipoib_neigh_free(dev, neigh);
476 continue;
480 while ((skb = __skb_dequeue(&neigh->queue)))
481 __skb_queue_tail(&skqueue, skb);
483 path->valid = 1;
486 path->query = NULL;
487 complete(&path->done);
489 spin_unlock_irqrestore(&priv->lock, flags);
491 if (old_ah)
492 ipoib_put_ah(old_ah);
494 while ((skb = __skb_dequeue(&skqueue))) {
495 skb->dev = dev;
496 if (dev_queue_xmit(skb))
497 ipoib_warn(priv, "dev_queue_xmit failed "
498 "to requeue packet\n");
502 static struct ipoib_path *path_rec_create(struct net_device *dev, void *gid)
504 struct ipoib_dev_priv *priv = netdev_priv(dev);
505 struct ipoib_path *path;
507 if (!priv->broadcast)
508 return NULL;
510 path = kzalloc(sizeof *path, GFP_ATOMIC);
511 if (!path)
512 return NULL;
514 path->dev = dev;
516 skb_queue_head_init(&path->queue);
518 INIT_LIST_HEAD(&path->neigh_list);
520 memcpy(path->pathrec.dgid.raw, gid, sizeof (union ib_gid));
521 path->pathrec.sgid = priv->local_gid;
522 path->pathrec.pkey = cpu_to_be16(priv->pkey);
523 path->pathrec.numb_path = 1;
524 path->pathrec.traffic_class = priv->broadcast->mcmember.traffic_class;
526 return path;
529 static int path_rec_start(struct net_device *dev,
530 struct ipoib_path *path)
532 struct ipoib_dev_priv *priv = netdev_priv(dev);
534 ipoib_dbg(priv, "Start path record lookup for " IPOIB_GID_FMT "\n",
535 IPOIB_GID_ARG(path->pathrec.dgid));
537 init_completion(&path->done);
539 path->query_id =
540 ib_sa_path_rec_get(&ipoib_sa_client, priv->ca, priv->port,
541 &path->pathrec,
542 IB_SA_PATH_REC_DGID |
543 IB_SA_PATH_REC_SGID |
544 IB_SA_PATH_REC_NUMB_PATH |
545 IB_SA_PATH_REC_TRAFFIC_CLASS |
546 IB_SA_PATH_REC_PKEY,
547 1000, GFP_ATOMIC,
548 path_rec_completion,
549 path, &path->query);
550 if (path->query_id < 0) {
551 ipoib_warn(priv, "ib_sa_path_rec_get failed\n");
552 path->query = NULL;
553 return path->query_id;
556 return 0;
559 static void neigh_add_path(struct sk_buff *skb, struct net_device *dev)
561 struct ipoib_dev_priv *priv = netdev_priv(dev);
562 struct ipoib_path *path;
563 struct ipoib_neigh *neigh;
565 neigh = ipoib_neigh_alloc(skb->dst->neighbour, skb->dev);
566 if (!neigh) {
567 ++dev->stats.tx_dropped;
568 dev_kfree_skb_any(skb);
569 return;
573 * We can only be called from ipoib_start_xmit, so we're
574 * inside tx_lock -- no need to save/restore flags.
576 spin_lock(&priv->lock);
578 path = __path_find(dev, skb->dst->neighbour->ha + 4);
579 if (!path) {
580 path = path_rec_create(dev, skb->dst->neighbour->ha + 4);
581 if (!path)
582 goto err_path;
584 __path_add(dev, path);
587 list_add_tail(&neigh->list, &path->neigh_list);
589 if (path->ah) {
590 kref_get(&path->ah->ref);
591 neigh->ah = path->ah;
592 memcpy(&neigh->dgid.raw, &path->pathrec.dgid.raw,
593 sizeof(union ib_gid));
595 if (ipoib_cm_enabled(dev, neigh->neighbour)) {
596 if (!ipoib_cm_get(neigh))
597 ipoib_cm_set(neigh, ipoib_cm_create_tx(dev, path, neigh));
598 if (!ipoib_cm_get(neigh)) {
599 list_del(&neigh->list);
600 if (neigh->ah)
601 ipoib_put_ah(neigh->ah);
602 ipoib_neigh_free(dev, neigh);
603 goto err_drop;
605 if (skb_queue_len(&neigh->queue) < IPOIB_MAX_PATH_REC_QUEUE)
606 __skb_queue_tail(&neigh->queue, skb);
607 else {
608 ipoib_warn(priv, "queue length limit %d. Packet drop.\n",
609 skb_queue_len(&neigh->queue));
610 goto err_drop;
612 } else
613 ipoib_send(dev, skb, path->ah, IPOIB_QPN(skb->dst->neighbour->ha));
614 } else {
615 neigh->ah = NULL;
617 if (!path->query && path_rec_start(dev, path))
618 goto err_list;
620 __skb_queue_tail(&neigh->queue, skb);
623 spin_unlock(&priv->lock);
624 return;
626 err_list:
627 list_del(&neigh->list);
629 err_path:
630 ipoib_neigh_free(dev, neigh);
631 err_drop:
632 ++dev->stats.tx_dropped;
633 dev_kfree_skb_any(skb);
635 spin_unlock(&priv->lock);
638 static void ipoib_path_lookup(struct sk_buff *skb, struct net_device *dev)
640 struct ipoib_dev_priv *priv = netdev_priv(skb->dev);
642 /* Look up path record for unicasts */
643 if (skb->dst->neighbour->ha[4] != 0xff) {
644 neigh_add_path(skb, dev);
645 return;
648 /* Add in the P_Key for multicasts */
649 skb->dst->neighbour->ha[8] = (priv->pkey >> 8) & 0xff;
650 skb->dst->neighbour->ha[9] = priv->pkey & 0xff;
651 ipoib_mcast_send(dev, skb->dst->neighbour->ha + 4, skb);
654 static void unicast_arp_send(struct sk_buff *skb, struct net_device *dev,
655 struct ipoib_pseudoheader *phdr)
657 struct ipoib_dev_priv *priv = netdev_priv(dev);
658 struct ipoib_path *path;
661 * We can only be called from ipoib_start_xmit, so we're
662 * inside tx_lock -- no need to save/restore flags.
664 spin_lock(&priv->lock);
666 path = __path_find(dev, phdr->hwaddr + 4);
667 if (!path || !path->valid) {
668 if (!path)
669 path = path_rec_create(dev, phdr->hwaddr + 4);
670 if (path) {
671 /* put pseudoheader back on for next time */
672 skb_push(skb, sizeof *phdr);
673 __skb_queue_tail(&path->queue, skb);
675 if (path_rec_start(dev, path)) {
676 spin_unlock(&priv->lock);
677 path_free(dev, path);
678 return;
679 } else
680 __path_add(dev, path);
681 } else {
682 ++dev->stats.tx_dropped;
683 dev_kfree_skb_any(skb);
686 spin_unlock(&priv->lock);
687 return;
690 if (path->ah) {
691 ipoib_dbg(priv, "Send unicast ARP to %04x\n",
692 be16_to_cpu(path->pathrec.dlid));
694 ipoib_send(dev, skb, path->ah, IPOIB_QPN(phdr->hwaddr));
695 } else if ((path->query || !path_rec_start(dev, path)) &&
696 skb_queue_len(&path->queue) < IPOIB_MAX_PATH_REC_QUEUE) {
697 /* put pseudoheader back on for next time */
698 skb_push(skb, sizeof *phdr);
699 __skb_queue_tail(&path->queue, skb);
700 } else {
701 ++dev->stats.tx_dropped;
702 dev_kfree_skb_any(skb);
705 spin_unlock(&priv->lock);
708 static int ipoib_start_xmit(struct sk_buff *skb, struct net_device *dev)
710 struct ipoib_dev_priv *priv = netdev_priv(dev);
711 struct ipoib_neigh *neigh;
712 unsigned long flags;
714 if (unlikely(!spin_trylock_irqsave(&priv->tx_lock, flags)))
715 return NETDEV_TX_LOCKED;
717 if (likely(skb->dst && skb->dst->neighbour)) {
718 if (unlikely(!*to_ipoib_neigh(skb->dst->neighbour))) {
719 ipoib_path_lookup(skb, dev);
720 goto out;
723 neigh = *to_ipoib_neigh(skb->dst->neighbour);
725 if (neigh->ah)
726 if (unlikely((memcmp(&neigh->dgid.raw,
727 skb->dst->neighbour->ha + 4,
728 sizeof(union ib_gid))) ||
729 (neigh->dev != dev))) {
730 spin_lock(&priv->lock);
732 * It's safe to call ipoib_put_ah() inside
733 * priv->lock here, because we know that
734 * path->ah will always hold one more reference,
735 * so ipoib_put_ah() will never do more than
736 * decrement the ref count.
738 ipoib_put_ah(neigh->ah);
739 list_del(&neigh->list);
740 ipoib_neigh_free(dev, neigh);
741 spin_unlock(&priv->lock);
742 ipoib_path_lookup(skb, dev);
743 goto out;
746 if (ipoib_cm_get(neigh)) {
747 if (ipoib_cm_up(neigh)) {
748 ipoib_cm_send(dev, skb, ipoib_cm_get(neigh));
749 goto out;
751 } else if (neigh->ah) {
752 ipoib_send(dev, skb, neigh->ah, IPOIB_QPN(skb->dst->neighbour->ha));
753 goto out;
756 if (skb_queue_len(&neigh->queue) < IPOIB_MAX_PATH_REC_QUEUE) {
757 spin_lock(&priv->lock);
758 __skb_queue_tail(&neigh->queue, skb);
759 spin_unlock(&priv->lock);
760 } else {
761 ++dev->stats.tx_dropped;
762 dev_kfree_skb_any(skb);
764 } else {
765 struct ipoib_pseudoheader *phdr =
766 (struct ipoib_pseudoheader *) skb->data;
767 skb_pull(skb, sizeof *phdr);
769 if (phdr->hwaddr[4] == 0xff) {
770 /* Add in the P_Key for multicast*/
771 phdr->hwaddr[8] = (priv->pkey >> 8) & 0xff;
772 phdr->hwaddr[9] = priv->pkey & 0xff;
774 ipoib_mcast_send(dev, phdr->hwaddr + 4, skb);
775 } else {
776 /* unicast GID -- should be ARP or RARP reply */
778 if ((be16_to_cpup((__be16 *) skb->data) != ETH_P_ARP) &&
779 (be16_to_cpup((__be16 *) skb->data) != ETH_P_RARP)) {
780 ipoib_warn(priv, "Unicast, no %s: type %04x, QPN %06x "
781 IPOIB_GID_FMT "\n",
782 skb->dst ? "neigh" : "dst",
783 be16_to_cpup((__be16 *) skb->data),
784 IPOIB_QPN(phdr->hwaddr),
785 IPOIB_GID_RAW_ARG(phdr->hwaddr + 4));
786 dev_kfree_skb_any(skb);
787 ++dev->stats.tx_dropped;
788 goto out;
791 unicast_arp_send(skb, dev, phdr);
795 out:
796 spin_unlock_irqrestore(&priv->tx_lock, flags);
798 return NETDEV_TX_OK;
801 static void ipoib_timeout(struct net_device *dev)
803 struct ipoib_dev_priv *priv = netdev_priv(dev);
805 ipoib_warn(priv, "transmit timeout: latency %d msecs\n",
806 jiffies_to_msecs(jiffies - dev->trans_start));
807 ipoib_warn(priv, "queue stopped %d, tx_head %u, tx_tail %u\n",
808 netif_queue_stopped(dev),
809 priv->tx_head, priv->tx_tail);
810 /* XXX reset QP, etc. */
813 static int ipoib_hard_header(struct sk_buff *skb,
814 struct net_device *dev,
815 unsigned short type,
816 const void *daddr, const void *saddr, unsigned len)
818 struct ipoib_header *header;
820 header = (struct ipoib_header *) skb_push(skb, sizeof *header);
822 header->proto = htons(type);
823 header->reserved = 0;
826 * If we don't have a neighbour structure, stuff the
827 * destination address onto the front of the skb so we can
828 * figure out where to send the packet later.
830 if ((!skb->dst || !skb->dst->neighbour) && daddr) {
831 struct ipoib_pseudoheader *phdr =
832 (struct ipoib_pseudoheader *) skb_push(skb, sizeof *phdr);
833 memcpy(phdr->hwaddr, daddr, INFINIBAND_ALEN);
836 return 0;
839 static void ipoib_set_mcast_list(struct net_device *dev)
841 struct ipoib_dev_priv *priv = netdev_priv(dev);
843 if (!test_bit(IPOIB_FLAG_OPER_UP, &priv->flags)) {
844 ipoib_dbg(priv, "IPOIB_FLAG_OPER_UP not set");
845 return;
848 queue_work(ipoib_workqueue, &priv->restart_task);
851 static void ipoib_neigh_cleanup(struct neighbour *n)
853 struct ipoib_neigh *neigh;
854 struct ipoib_dev_priv *priv = netdev_priv(n->dev);
855 unsigned long flags;
856 struct ipoib_ah *ah = NULL;
858 neigh = *to_ipoib_neigh(n);
859 if (neigh)
860 priv = netdev_priv(neigh->dev);
861 else
862 return;
863 ipoib_dbg(priv,
864 "neigh_cleanup for %06x " IPOIB_GID_FMT "\n",
865 IPOIB_QPN(n->ha),
866 IPOIB_GID_RAW_ARG(n->ha + 4));
868 spin_lock_irqsave(&priv->lock, flags);
870 if (neigh->ah)
871 ah = neigh->ah;
872 list_del(&neigh->list);
873 ipoib_neigh_free(n->dev, neigh);
875 spin_unlock_irqrestore(&priv->lock, flags);
877 if (ah)
878 ipoib_put_ah(ah);
881 struct ipoib_neigh *ipoib_neigh_alloc(struct neighbour *neighbour,
882 struct net_device *dev)
884 struct ipoib_neigh *neigh;
886 neigh = kmalloc(sizeof *neigh, GFP_ATOMIC);
887 if (!neigh)
888 return NULL;
890 neigh->neighbour = neighbour;
891 neigh->dev = dev;
892 *to_ipoib_neigh(neighbour) = neigh;
893 skb_queue_head_init(&neigh->queue);
894 ipoib_cm_set(neigh, NULL);
896 return neigh;
899 void ipoib_neigh_free(struct net_device *dev, struct ipoib_neigh *neigh)
901 struct sk_buff *skb;
902 *to_ipoib_neigh(neigh->neighbour) = NULL;
903 while ((skb = __skb_dequeue(&neigh->queue))) {
904 ++dev->stats.tx_dropped;
905 dev_kfree_skb_any(skb);
907 if (ipoib_cm_get(neigh))
908 ipoib_cm_destroy_tx(ipoib_cm_get(neigh));
909 kfree(neigh);
912 static int ipoib_neigh_setup_dev(struct net_device *dev, struct neigh_parms *parms)
914 parms->neigh_cleanup = ipoib_neigh_cleanup;
916 return 0;
919 int ipoib_dev_init(struct net_device *dev, struct ib_device *ca, int port)
921 struct ipoib_dev_priv *priv = netdev_priv(dev);
923 /* Allocate RX/TX "rings" to hold queued skbs */
924 priv->rx_ring = kzalloc(ipoib_recvq_size * sizeof *priv->rx_ring,
925 GFP_KERNEL);
926 if (!priv->rx_ring) {
927 printk(KERN_WARNING "%s: failed to allocate RX ring (%d entries)\n",
928 ca->name, ipoib_recvq_size);
929 goto out;
932 priv->tx_ring = vmalloc(ipoib_sendq_size * sizeof *priv->tx_ring);
933 if (!priv->tx_ring) {
934 printk(KERN_WARNING "%s: failed to allocate TX ring (%d entries)\n",
935 ca->name, ipoib_sendq_size);
936 goto out_rx_ring_cleanup;
938 memset(priv->tx_ring, 0, ipoib_sendq_size * sizeof *priv->tx_ring);
940 /* priv->tx_head, tx_tail & tx_outstanding are already 0 */
942 if (ipoib_ib_dev_init(dev, ca, port))
943 goto out_tx_ring_cleanup;
945 return 0;
947 out_tx_ring_cleanup:
948 vfree(priv->tx_ring);
950 out_rx_ring_cleanup:
951 kfree(priv->rx_ring);
953 out:
954 return -ENOMEM;
957 void ipoib_dev_cleanup(struct net_device *dev)
959 struct ipoib_dev_priv *priv = netdev_priv(dev), *cpriv, *tcpriv;
961 ipoib_delete_debug_files(dev);
963 /* Delete any child interfaces first */
964 list_for_each_entry_safe(cpriv, tcpriv, &priv->child_intfs, list) {
965 unregister_netdev(cpriv->dev);
966 ipoib_dev_cleanup(cpriv->dev);
967 free_netdev(cpriv->dev);
970 ipoib_ib_dev_cleanup(dev);
972 kfree(priv->rx_ring);
973 vfree(priv->tx_ring);
975 priv->rx_ring = NULL;
976 priv->tx_ring = NULL;
979 static const struct header_ops ipoib_header_ops = {
980 .create = ipoib_hard_header,
983 static int get_skb_hdr(struct sk_buff *skb, void **iphdr,
984 void **tcph, u64 *hdr_flags, void *priv)
986 unsigned int ip_len;
987 struct iphdr *iph;
989 if (unlikely(skb->protocol != htons(ETH_P_IP)))
990 return -1;
993 * In the future we may add an else clause that verifies the
994 * checksum and allows devices which do not calculate checksum
995 * to use LRO.
997 if (unlikely(skb->ip_summed != CHECKSUM_UNNECESSARY))
998 return -1;
1000 /* Check for non-TCP packet */
1001 skb_reset_network_header(skb);
1002 iph = ip_hdr(skb);
1003 if (iph->protocol != IPPROTO_TCP)
1004 return -1;
1006 ip_len = ip_hdrlen(skb);
1007 skb_set_transport_header(skb, ip_len);
1008 *tcph = tcp_hdr(skb);
1010 /* check if IP header and TCP header are complete */
1011 if (ntohs(iph->tot_len) < ip_len + tcp_hdrlen(skb))
1012 return -1;
1014 *hdr_flags = LRO_IPV4 | LRO_TCP;
1015 *iphdr = iph;
1017 return 0;
1020 static void ipoib_lro_setup(struct ipoib_dev_priv *priv)
1022 priv->lro.lro_mgr.max_aggr = lro_max_aggr;
1023 priv->lro.lro_mgr.max_desc = IPOIB_MAX_LRO_DESCRIPTORS;
1024 priv->lro.lro_mgr.lro_arr = priv->lro.lro_desc;
1025 priv->lro.lro_mgr.get_skb_header = get_skb_hdr;
1026 priv->lro.lro_mgr.features = LRO_F_NAPI;
1027 priv->lro.lro_mgr.dev = priv->dev;
1028 priv->lro.lro_mgr.ip_summed_aggr = CHECKSUM_UNNECESSARY;
1031 static void ipoib_setup(struct net_device *dev)
1033 struct ipoib_dev_priv *priv = netdev_priv(dev);
1035 dev->open = ipoib_open;
1036 dev->stop = ipoib_stop;
1037 dev->change_mtu = ipoib_change_mtu;
1038 dev->hard_start_xmit = ipoib_start_xmit;
1039 dev->tx_timeout = ipoib_timeout;
1040 dev->header_ops = &ipoib_header_ops;
1041 dev->set_multicast_list = ipoib_set_mcast_list;
1042 dev->neigh_setup = ipoib_neigh_setup_dev;
1044 ipoib_set_ethtool_ops(dev);
1046 netif_napi_add(dev, &priv->napi, ipoib_poll, 100);
1048 dev->watchdog_timeo = HZ;
1050 dev->flags |= IFF_BROADCAST | IFF_MULTICAST;
1053 * We add in INFINIBAND_ALEN to allow for the destination
1054 * address "pseudoheader" for skbs without neighbour struct.
1056 dev->hard_header_len = IPOIB_ENCAP_LEN + INFINIBAND_ALEN;
1057 dev->addr_len = INFINIBAND_ALEN;
1058 dev->type = ARPHRD_INFINIBAND;
1059 dev->tx_queue_len = ipoib_sendq_size * 2;
1060 dev->features = (NETIF_F_VLAN_CHALLENGED |
1061 NETIF_F_LLTX |
1062 NETIF_F_HIGHDMA);
1064 memcpy(dev->broadcast, ipv4_bcast_addr, INFINIBAND_ALEN);
1066 netif_carrier_off(dev);
1068 priv->dev = dev;
1070 ipoib_lro_setup(priv);
1072 spin_lock_init(&priv->lock);
1073 spin_lock_init(&priv->tx_lock);
1075 mutex_init(&priv->vlan_mutex);
1077 INIT_LIST_HEAD(&priv->path_list);
1078 INIT_LIST_HEAD(&priv->child_intfs);
1079 INIT_LIST_HEAD(&priv->dead_ahs);
1080 INIT_LIST_HEAD(&priv->multicast_list);
1082 INIT_DELAYED_WORK(&priv->pkey_poll_task, ipoib_pkey_poll);
1083 INIT_DELAYED_WORK(&priv->mcast_task, ipoib_mcast_join_task);
1084 INIT_WORK(&priv->flush_light, ipoib_ib_dev_flush_light);
1085 INIT_WORK(&priv->flush_normal, ipoib_ib_dev_flush_normal);
1086 INIT_WORK(&priv->flush_heavy, ipoib_ib_dev_flush_heavy);
1087 INIT_WORK(&priv->restart_task, ipoib_mcast_restart_task);
1088 INIT_DELAYED_WORK(&priv->ah_reap_task, ipoib_reap_ah);
1091 struct ipoib_dev_priv *ipoib_intf_alloc(const char *name)
1093 struct net_device *dev;
1095 dev = alloc_netdev((int) sizeof (struct ipoib_dev_priv), name,
1096 ipoib_setup);
1097 if (!dev)
1098 return NULL;
1100 return netdev_priv(dev);
1103 static ssize_t show_pkey(struct device *dev,
1104 struct device_attribute *attr, char *buf)
1106 struct ipoib_dev_priv *priv = netdev_priv(to_net_dev(dev));
1108 return sprintf(buf, "0x%04x\n", priv->pkey);
1110 static DEVICE_ATTR(pkey, S_IRUGO, show_pkey, NULL);
1112 static ssize_t show_umcast(struct device *dev,
1113 struct device_attribute *attr, char *buf)
1115 struct ipoib_dev_priv *priv = netdev_priv(to_net_dev(dev));
1117 return sprintf(buf, "%d\n", test_bit(IPOIB_FLAG_UMCAST, &priv->flags));
1120 static ssize_t set_umcast(struct device *dev,
1121 struct device_attribute *attr,
1122 const char *buf, size_t count)
1124 struct ipoib_dev_priv *priv = netdev_priv(to_net_dev(dev));
1125 unsigned long umcast_val = simple_strtoul(buf, NULL, 0);
1127 if (umcast_val > 0) {
1128 set_bit(IPOIB_FLAG_UMCAST, &priv->flags);
1129 ipoib_warn(priv, "ignoring multicast groups joined directly "
1130 "by userspace\n");
1131 } else
1132 clear_bit(IPOIB_FLAG_UMCAST, &priv->flags);
1134 return count;
1136 static DEVICE_ATTR(umcast, S_IWUSR | S_IRUGO, show_umcast, set_umcast);
1138 int ipoib_add_umcast_attr(struct net_device *dev)
1140 return device_create_file(&dev->dev, &dev_attr_umcast);
1143 static ssize_t create_child(struct device *dev,
1144 struct device_attribute *attr,
1145 const char *buf, size_t count)
1147 int pkey;
1148 int ret;
1150 if (sscanf(buf, "%i", &pkey) != 1)
1151 return -EINVAL;
1153 if (pkey < 0 || pkey > 0xffff)
1154 return -EINVAL;
1157 * Set the full membership bit, so that we join the right
1158 * broadcast group, etc.
1160 pkey |= 0x8000;
1162 ret = ipoib_vlan_add(to_net_dev(dev), pkey);
1164 return ret ? ret : count;
1166 static DEVICE_ATTR(create_child, S_IWUGO, NULL, create_child);
1168 static ssize_t delete_child(struct device *dev,
1169 struct device_attribute *attr,
1170 const char *buf, size_t count)
1172 int pkey;
1173 int ret;
1175 if (sscanf(buf, "%i", &pkey) != 1)
1176 return -EINVAL;
1178 if (pkey < 0 || pkey > 0xffff)
1179 return -EINVAL;
1181 ret = ipoib_vlan_delete(to_net_dev(dev), pkey);
1183 return ret ? ret : count;
1186 static DEVICE_ATTR(delete_child, S_IWUGO, NULL, delete_child);
1188 int ipoib_add_pkey_attr(struct net_device *dev)
1190 return device_create_file(&dev->dev, &dev_attr_pkey);
1193 static struct net_device *ipoib_add_port(const char *format,
1194 struct ib_device *hca, u8 port)
1196 struct ipoib_dev_priv *priv;
1197 struct ib_device_attr *device_attr;
1198 struct ib_port_attr attr;
1199 int result = -ENOMEM;
1201 priv = ipoib_intf_alloc(format);
1202 if (!priv)
1203 goto alloc_mem_failed;
1205 SET_NETDEV_DEV(priv->dev, hca->dma_device);
1207 if (!ib_query_port(hca, port, &attr))
1208 priv->max_ib_mtu = ib_mtu_enum_to_int(attr.max_mtu);
1209 else {
1210 printk(KERN_WARNING "%s: ib_query_port %d failed\n",
1211 hca->name, port);
1212 goto device_init_failed;
1215 /* MTU will be reset when mcast join happens */
1216 priv->dev->mtu = IPOIB_UD_MTU(priv->max_ib_mtu);
1217 priv->mcast_mtu = priv->admin_mtu = priv->dev->mtu;
1219 result = ib_query_pkey(hca, port, 0, &priv->pkey);
1220 if (result) {
1221 printk(KERN_WARNING "%s: ib_query_pkey port %d failed (ret = %d)\n",
1222 hca->name, port, result);
1223 goto device_init_failed;
1226 device_attr = kmalloc(sizeof *device_attr, GFP_KERNEL);
1227 if (!device_attr) {
1228 printk(KERN_WARNING "%s: allocation of %zu bytes failed\n",
1229 hca->name, sizeof *device_attr);
1230 goto device_init_failed;
1233 result = ib_query_device(hca, device_attr);
1234 if (result) {
1235 printk(KERN_WARNING "%s: ib_query_device failed (ret = %d)\n",
1236 hca->name, result);
1237 kfree(device_attr);
1238 goto device_init_failed;
1240 priv->hca_caps = device_attr->device_cap_flags;
1242 kfree(device_attr);
1244 if (priv->hca_caps & IB_DEVICE_UD_IP_CSUM) {
1245 set_bit(IPOIB_FLAG_CSUM, &priv->flags);
1246 priv->dev->features |= NETIF_F_SG | NETIF_F_IP_CSUM;
1249 if (lro)
1250 priv->dev->features |= NETIF_F_LRO;
1253 * Set the full membership bit, so that we join the right
1254 * broadcast group, etc.
1256 priv->pkey |= 0x8000;
1258 priv->dev->broadcast[8] = priv->pkey >> 8;
1259 priv->dev->broadcast[9] = priv->pkey & 0xff;
1261 result = ib_query_gid(hca, port, 0, &priv->local_gid);
1262 if (result) {
1263 printk(KERN_WARNING "%s: ib_query_gid port %d failed (ret = %d)\n",
1264 hca->name, port, result);
1265 goto device_init_failed;
1266 } else
1267 memcpy(priv->dev->dev_addr + 4, priv->local_gid.raw, sizeof (union ib_gid));
1269 result = ipoib_dev_init(priv->dev, hca, port);
1270 if (result < 0) {
1271 printk(KERN_WARNING "%s: failed to initialize port %d (ret = %d)\n",
1272 hca->name, port, result);
1273 goto device_init_failed;
1276 INIT_IB_EVENT_HANDLER(&priv->event_handler,
1277 priv->ca, ipoib_event);
1278 result = ib_register_event_handler(&priv->event_handler);
1279 if (result < 0) {
1280 printk(KERN_WARNING "%s: ib_register_event_handler failed for "
1281 "port %d (ret = %d)\n",
1282 hca->name, port, result);
1283 goto event_failed;
1286 if (priv->dev->features & NETIF_F_SG && priv->hca_caps & IB_DEVICE_UD_TSO)
1287 priv->dev->features |= NETIF_F_TSO;
1289 result = register_netdev(priv->dev);
1290 if (result) {
1291 printk(KERN_WARNING "%s: couldn't register ipoib port %d; error %d\n",
1292 hca->name, port, result);
1293 goto register_failed;
1296 ipoib_create_debug_files(priv->dev);
1298 if (ipoib_cm_add_mode_attr(priv->dev))
1299 goto sysfs_failed;
1300 if (ipoib_add_pkey_attr(priv->dev))
1301 goto sysfs_failed;
1302 if (ipoib_add_umcast_attr(priv->dev))
1303 goto sysfs_failed;
1304 if (device_create_file(&priv->dev->dev, &dev_attr_create_child))
1305 goto sysfs_failed;
1306 if (device_create_file(&priv->dev->dev, &dev_attr_delete_child))
1307 goto sysfs_failed;
1309 return priv->dev;
1311 sysfs_failed:
1312 ipoib_delete_debug_files(priv->dev);
1313 unregister_netdev(priv->dev);
1315 register_failed:
1316 ib_unregister_event_handler(&priv->event_handler);
1317 flush_scheduled_work();
1319 event_failed:
1320 ipoib_dev_cleanup(priv->dev);
1322 device_init_failed:
1323 free_netdev(priv->dev);
1325 alloc_mem_failed:
1326 return ERR_PTR(result);
1329 static void ipoib_add_one(struct ib_device *device)
1331 struct list_head *dev_list;
1332 struct net_device *dev;
1333 struct ipoib_dev_priv *priv;
1334 int s, e, p;
1336 if (rdma_node_get_transport(device->node_type) != RDMA_TRANSPORT_IB)
1337 return;
1339 dev_list = kmalloc(sizeof *dev_list, GFP_KERNEL);
1340 if (!dev_list)
1341 return;
1343 INIT_LIST_HEAD(dev_list);
1345 if (device->node_type == RDMA_NODE_IB_SWITCH) {
1346 s = 0;
1347 e = 0;
1348 } else {
1349 s = 1;
1350 e = device->phys_port_cnt;
1353 for (p = s; p <= e; ++p) {
1354 dev = ipoib_add_port("ib%d", device, p);
1355 if (!IS_ERR(dev)) {
1356 priv = netdev_priv(dev);
1357 list_add_tail(&priv->list, dev_list);
1361 ib_set_client_data(device, &ipoib_client, dev_list);
1364 static void ipoib_remove_one(struct ib_device *device)
1366 struct ipoib_dev_priv *priv, *tmp;
1367 struct list_head *dev_list;
1369 if (rdma_node_get_transport(device->node_type) != RDMA_TRANSPORT_IB)
1370 return;
1372 dev_list = ib_get_client_data(device, &ipoib_client);
1374 list_for_each_entry_safe(priv, tmp, dev_list, list) {
1375 ib_unregister_event_handler(&priv->event_handler);
1376 flush_scheduled_work();
1378 unregister_netdev(priv->dev);
1379 ipoib_dev_cleanup(priv->dev);
1380 free_netdev(priv->dev);
1383 kfree(dev_list);
1386 static int __init ipoib_init_module(void)
1388 int ret;
1390 ipoib_recvq_size = roundup_pow_of_two(ipoib_recvq_size);
1391 ipoib_recvq_size = min(ipoib_recvq_size, IPOIB_MAX_QUEUE_SIZE);
1392 ipoib_recvq_size = max(ipoib_recvq_size, IPOIB_MIN_QUEUE_SIZE);
1394 ipoib_sendq_size = roundup_pow_of_two(ipoib_sendq_size);
1395 ipoib_sendq_size = min(ipoib_sendq_size, IPOIB_MAX_QUEUE_SIZE);
1396 ipoib_sendq_size = max(ipoib_sendq_size, max(2 * MAX_SEND_CQE,
1397 IPOIB_MIN_QUEUE_SIZE));
1398 #ifdef CONFIG_INFINIBAND_IPOIB_CM
1399 ipoib_max_conn_qp = min(ipoib_max_conn_qp, IPOIB_CM_MAX_CONN_QP);
1400 #endif
1403 * When copying small received packets, we only copy from the
1404 * linear data part of the SKB, so we rely on this condition.
1406 BUILD_BUG_ON(IPOIB_CM_COPYBREAK > IPOIB_CM_HEAD_SIZE);
1408 ret = ipoib_register_debugfs();
1409 if (ret)
1410 return ret;
1413 * We create our own workqueue mainly because we want to be
1414 * able to flush it when devices are being removed. We can't
1415 * use schedule_work()/flush_scheduled_work() because both
1416 * unregister_netdev() and linkwatch_event take the rtnl lock,
1417 * so flush_scheduled_work() can deadlock during device
1418 * removal.
1420 ipoib_workqueue = create_singlethread_workqueue("ipoib");
1421 if (!ipoib_workqueue) {
1422 ret = -ENOMEM;
1423 goto err_fs;
1426 ib_sa_register_client(&ipoib_sa_client);
1428 ret = ib_register_client(&ipoib_client);
1429 if (ret)
1430 goto err_sa;
1432 return 0;
1434 err_sa:
1435 ib_sa_unregister_client(&ipoib_sa_client);
1436 destroy_workqueue(ipoib_workqueue);
1438 err_fs:
1439 ipoib_unregister_debugfs();
1441 return ret;
1444 static void __exit ipoib_cleanup_module(void)
1446 ib_unregister_client(&ipoib_client);
1447 ib_sa_unregister_client(&ipoib_sa_client);
1448 ipoib_unregister_debugfs();
1449 destroy_workqueue(ipoib_workqueue);
1452 module_init(ipoib_init_module);
1453 module_exit(ipoib_cleanup_module);