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
16 * - Redistributions of source code must retain the above
17 * copyright notice, this list of conditions and the following
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
34 * $Id: ipoib_main.c 1377 2004-12-23 19:57:12Z roland $
39 #include <linux/module.h>
41 #include <linux/init.h>
42 #include <linux/slab.h>
43 #include <linux/vmalloc.h>
44 #include <linux/kernel.h>
46 #include <linux/if_arp.h> /* For ARPHRD_xxx */
53 MODULE_AUTHOR("Roland Dreier");
54 MODULE_DESCRIPTION("IP-over-InfiniBand net driver");
55 MODULE_LICENSE("Dual BSD/GPL");
57 int ipoib_sendq_size __read_mostly = IPOIB_TX_RING_SIZE;
58 int ipoib_recvq_size __read_mostly = IPOIB_RX_RING_SIZE;
60 module_param_named(send_queue_size, ipoib_sendq_size, int, 0444);
61 MODULE_PARM_DESC(send_queue_size, "Number of descriptors in send queue");
62 module_param_named(recv_queue_size, ipoib_recvq_size, int, 0444);
63 MODULE_PARM_DESC(recv_queue_size, "Number of descriptors in receive queue");
65 #ifdef CONFIG_INFINIBAND_IPOIB_DEBUG
66 int ipoib_debug_level;
68 module_param_named(debug_level, ipoib_debug_level, int, 0644);
69 MODULE_PARM_DESC(debug_level, "Enable debug tracing if > 0");
72 struct ipoib_path_iter {
73 struct net_device *dev;
74 struct ipoib_path path;
77 static const u8 ipv4_bcast_addr[] = {
78 0x00, 0xff, 0xff, 0xff,
79 0xff, 0x12, 0x40, 0x1b, 0x00, 0x00, 0x00, 0x00,
80 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff
83 struct workqueue_struct *ipoib_workqueue;
85 static void ipoib_add_one(struct ib_device *device);
86 static void ipoib_remove_one(struct ib_device *device);
88 static struct ib_client ipoib_client = {
91 .remove = ipoib_remove_one
94 int ipoib_open(struct net_device *dev)
96 struct ipoib_dev_priv *priv = netdev_priv(dev);
98 ipoib_dbg(priv, "bringing up interface\n");
100 set_bit(IPOIB_FLAG_ADMIN_UP, &priv->flags);
102 if (ipoib_pkey_dev_delay_open(dev))
105 if (ipoib_ib_dev_open(dev))
108 if (ipoib_ib_dev_up(dev)) {
109 ipoib_ib_dev_stop(dev);
113 if (!test_bit(IPOIB_FLAG_SUBINTERFACE, &priv->flags)) {
114 struct ipoib_dev_priv *cpriv;
116 /* Bring up any child interfaces too */
117 mutex_lock(&priv->vlan_mutex);
118 list_for_each_entry(cpriv, &priv->child_intfs, list) {
121 flags = cpriv->dev->flags;
125 dev_change_flags(cpriv->dev, flags | IFF_UP);
127 mutex_unlock(&priv->vlan_mutex);
130 netif_start_queue(dev);
135 static int ipoib_stop(struct net_device *dev)
137 struct ipoib_dev_priv *priv = netdev_priv(dev);
139 ipoib_dbg(priv, "stopping interface\n");
141 clear_bit(IPOIB_FLAG_ADMIN_UP, &priv->flags);
143 netif_stop_queue(dev);
146 * Now flush workqueue to make sure a scheduled task doesn't
147 * bring our internal state back up.
149 flush_workqueue(ipoib_workqueue);
151 ipoib_ib_dev_down(dev, 1);
152 ipoib_ib_dev_stop(dev);
154 if (!test_bit(IPOIB_FLAG_SUBINTERFACE, &priv->flags)) {
155 struct ipoib_dev_priv *cpriv;
157 /* Bring down any child interfaces too */
158 mutex_lock(&priv->vlan_mutex);
159 list_for_each_entry(cpriv, &priv->child_intfs, list) {
162 flags = cpriv->dev->flags;
163 if (!(flags & IFF_UP))
166 dev_change_flags(cpriv->dev, flags & ~IFF_UP);
168 mutex_unlock(&priv->vlan_mutex);
174 static int ipoib_change_mtu(struct net_device *dev, int new_mtu)
176 struct ipoib_dev_priv *priv = netdev_priv(dev);
178 if (new_mtu > IPOIB_PACKET_SIZE - IPOIB_ENCAP_LEN)
181 priv->admin_mtu = new_mtu;
183 dev->mtu = min(priv->mcast_mtu, priv->admin_mtu);
188 static struct ipoib_path *__path_find(struct net_device *dev, void *gid)
190 struct ipoib_dev_priv *priv = netdev_priv(dev);
191 struct rb_node *n = priv->path_tree.rb_node;
192 struct ipoib_path *path;
196 path = rb_entry(n, struct ipoib_path, rb_node);
198 ret = memcmp(gid, path->pathrec.dgid.raw,
199 sizeof (union ib_gid));
212 static int __path_add(struct net_device *dev, struct ipoib_path *path)
214 struct ipoib_dev_priv *priv = netdev_priv(dev);
215 struct rb_node **n = &priv->path_tree.rb_node;
216 struct rb_node *pn = NULL;
217 struct ipoib_path *tpath;
222 tpath = rb_entry(pn, struct ipoib_path, rb_node);
224 ret = memcmp(path->pathrec.dgid.raw, tpath->pathrec.dgid.raw,
225 sizeof (union ib_gid));
234 rb_link_node(&path->rb_node, pn, n);
235 rb_insert_color(&path->rb_node, &priv->path_tree);
237 list_add_tail(&path->list, &priv->path_list);
242 static void path_free(struct net_device *dev, struct ipoib_path *path)
244 struct ipoib_dev_priv *priv = netdev_priv(dev);
245 struct ipoib_neigh *neigh, *tn;
249 while ((skb = __skb_dequeue(&path->queue)))
250 dev_kfree_skb_irq(skb);
252 spin_lock_irqsave(&priv->lock, flags);
254 list_for_each_entry_safe(neigh, tn, &path->neigh_list, list) {
256 * It's safe to call ipoib_put_ah() inside priv->lock
257 * here, because we know that path->ah will always
258 * hold one more reference, so ipoib_put_ah() will
259 * never do more than decrement the ref count.
262 ipoib_put_ah(neigh->ah);
264 ipoib_neigh_free(neigh);
267 spin_unlock_irqrestore(&priv->lock, flags);
270 ipoib_put_ah(path->ah);
275 #ifdef CONFIG_INFINIBAND_IPOIB_DEBUG
277 struct ipoib_path_iter *ipoib_path_iter_init(struct net_device *dev)
279 struct ipoib_path_iter *iter;
281 iter = kmalloc(sizeof *iter, GFP_KERNEL);
286 memset(iter->path.pathrec.dgid.raw, 0, 16);
288 if (ipoib_path_iter_next(iter)) {
296 int ipoib_path_iter_next(struct ipoib_path_iter *iter)
298 struct ipoib_dev_priv *priv = netdev_priv(iter->dev);
300 struct ipoib_path *path;
303 spin_lock_irq(&priv->lock);
305 n = rb_first(&priv->path_tree);
308 path = rb_entry(n, struct ipoib_path, rb_node);
310 if (memcmp(iter->path.pathrec.dgid.raw, path->pathrec.dgid.raw,
311 sizeof (union ib_gid)) < 0) {
320 spin_unlock_irq(&priv->lock);
325 void ipoib_path_iter_read(struct ipoib_path_iter *iter,
326 struct ipoib_path *path)
331 #endif /* CONFIG_INFINIBAND_IPOIB_DEBUG */
333 void ipoib_flush_paths(struct net_device *dev)
335 struct ipoib_dev_priv *priv = netdev_priv(dev);
336 struct ipoib_path *path, *tp;
337 LIST_HEAD(remove_list);
339 spin_lock_irq(&priv->lock);
341 list_splice(&priv->path_list, &remove_list);
342 INIT_LIST_HEAD(&priv->path_list);
344 list_for_each_entry(path, &remove_list, list)
345 rb_erase(&path->rb_node, &priv->path_tree);
347 list_for_each_entry_safe(path, tp, &remove_list, list) {
349 ib_sa_cancel_query(path->query_id, path->query);
350 spin_unlock_irq(&priv->lock);
351 wait_for_completion(&path->done);
352 path_free(dev, path);
353 spin_lock_irq(&priv->lock);
355 spin_unlock_irq(&priv->lock);
358 static void path_rec_completion(int status,
359 struct ib_sa_path_rec *pathrec,
362 struct ipoib_path *path = path_ptr;
363 struct net_device *dev = path->dev;
364 struct ipoib_dev_priv *priv = netdev_priv(dev);
365 struct ipoib_ah *ah = NULL;
366 struct ipoib_neigh *neigh;
367 struct sk_buff_head skqueue;
372 ipoib_dbg(priv, "PathRec LID 0x%04x for GID " IPOIB_GID_FMT "\n",
373 be16_to_cpu(pathrec->dlid), IPOIB_GID_ARG(pathrec->dgid));
375 ipoib_dbg(priv, "PathRec status %d for GID " IPOIB_GID_FMT "\n",
376 status, IPOIB_GID_ARG(path->pathrec.dgid));
378 skb_queue_head_init(&skqueue);
381 struct ib_ah_attr av = {
382 .dlid = be16_to_cpu(pathrec->dlid),
384 .port_num = priv->port,
385 .static_rate = pathrec->rate
388 ah = ipoib_create_ah(dev, priv->pd, &av);
391 spin_lock_irqsave(&priv->lock, flags);
396 path->pathrec = *pathrec;
398 ipoib_dbg(priv, "created address handle %p for LID 0x%04x, SL %d\n",
399 ah, be16_to_cpu(pathrec->dlid), pathrec->sl);
401 while ((skb = __skb_dequeue(&path->queue)))
402 __skb_queue_tail(&skqueue, skb);
404 list_for_each_entry(neigh, &path->neigh_list, list) {
405 kref_get(&path->ah->ref);
406 neigh->ah = path->ah;
407 memcpy(&neigh->dgid.raw, &path->pathrec.dgid.raw,
408 sizeof(union ib_gid));
410 while ((skb = __skb_dequeue(&neigh->queue)))
411 __skb_queue_tail(&skqueue, skb);
416 complete(&path->done);
418 spin_unlock_irqrestore(&priv->lock, flags);
420 while ((skb = __skb_dequeue(&skqueue))) {
422 if (dev_queue_xmit(skb))
423 ipoib_warn(priv, "dev_queue_xmit failed "
424 "to requeue packet\n");
428 static struct ipoib_path *path_rec_create(struct net_device *dev, void *gid)
430 struct ipoib_dev_priv *priv = netdev_priv(dev);
431 struct ipoib_path *path;
433 path = kzalloc(sizeof *path, GFP_ATOMIC);
439 skb_queue_head_init(&path->queue);
441 INIT_LIST_HEAD(&path->neigh_list);
443 memcpy(path->pathrec.dgid.raw, gid, sizeof (union ib_gid));
444 path->pathrec.sgid = priv->local_gid;
445 path->pathrec.pkey = cpu_to_be16(priv->pkey);
446 path->pathrec.numb_path = 1;
451 static int path_rec_start(struct net_device *dev,
452 struct ipoib_path *path)
454 struct ipoib_dev_priv *priv = netdev_priv(dev);
456 ipoib_dbg(priv, "Start path record lookup for " IPOIB_GID_FMT "\n",
457 IPOIB_GID_ARG(path->pathrec.dgid));
459 init_completion(&path->done);
462 ib_sa_path_rec_get(priv->ca, priv->port,
464 IB_SA_PATH_REC_DGID |
465 IB_SA_PATH_REC_SGID |
466 IB_SA_PATH_REC_NUMB_PATH |
471 if (path->query_id < 0) {
472 ipoib_warn(priv, "ib_sa_path_rec_get failed\n");
474 return path->query_id;
480 static void neigh_add_path(struct sk_buff *skb, struct net_device *dev)
482 struct ipoib_dev_priv *priv = netdev_priv(dev);
483 struct ipoib_path *path;
484 struct ipoib_neigh *neigh;
486 neigh = ipoib_neigh_alloc(skb->dst->neighbour);
488 ++priv->stats.tx_dropped;
489 dev_kfree_skb_any(skb);
493 skb_queue_head_init(&neigh->queue);
496 * We can only be called from ipoib_start_xmit, so we're
497 * inside tx_lock -- no need to save/restore flags.
499 spin_lock(&priv->lock);
501 path = __path_find(dev, skb->dst->neighbour->ha + 4);
503 path = path_rec_create(dev, skb->dst->neighbour->ha + 4);
507 __path_add(dev, path);
510 list_add_tail(&neigh->list, &path->neigh_list);
513 kref_get(&path->ah->ref);
514 neigh->ah = path->ah;
515 memcpy(&neigh->dgid.raw, &path->pathrec.dgid.raw,
516 sizeof(union ib_gid));
518 ipoib_send(dev, skb, path->ah,
519 be32_to_cpup((__be32 *) skb->dst->neighbour->ha));
522 __skb_queue_tail(&neigh->queue, skb);
524 if (!path->query && path_rec_start(dev, path))
528 spin_unlock(&priv->lock);
532 list_del(&neigh->list);
535 ipoib_neigh_free(neigh);
536 ++priv->stats.tx_dropped;
537 dev_kfree_skb_any(skb);
539 spin_unlock(&priv->lock);
542 static void ipoib_path_lookup(struct sk_buff *skb, struct net_device *dev)
544 struct ipoib_dev_priv *priv = netdev_priv(skb->dev);
546 /* Look up path record for unicasts */
547 if (skb->dst->neighbour->ha[4] != 0xff) {
548 neigh_add_path(skb, dev);
552 /* Add in the P_Key for multicasts */
553 skb->dst->neighbour->ha[8] = (priv->pkey >> 8) & 0xff;
554 skb->dst->neighbour->ha[9] = priv->pkey & 0xff;
555 ipoib_mcast_send(dev, skb->dst->neighbour->ha + 4, skb);
558 static void unicast_arp_send(struct sk_buff *skb, struct net_device *dev,
559 struct ipoib_pseudoheader *phdr)
561 struct ipoib_dev_priv *priv = netdev_priv(dev);
562 struct ipoib_path *path;
565 * We can only be called from ipoib_start_xmit, so we're
566 * inside tx_lock -- no need to save/restore flags.
568 spin_lock(&priv->lock);
570 path = __path_find(dev, phdr->hwaddr + 4);
572 path = path_rec_create(dev, phdr->hwaddr + 4);
574 /* put pseudoheader back on for next time */
575 skb_push(skb, sizeof *phdr);
576 __skb_queue_tail(&path->queue, skb);
578 if (path_rec_start(dev, path)) {
579 spin_unlock(&priv->lock);
580 path_free(dev, path);
583 __path_add(dev, path);
585 ++priv->stats.tx_dropped;
586 dev_kfree_skb_any(skb);
589 spin_unlock(&priv->lock);
594 ipoib_dbg(priv, "Send unicast ARP to %04x\n",
595 be16_to_cpu(path->pathrec.dlid));
597 ipoib_send(dev, skb, path->ah,
598 be32_to_cpup((__be32 *) phdr->hwaddr));
599 } else if ((path->query || !path_rec_start(dev, path)) &&
600 skb_queue_len(&path->queue) < IPOIB_MAX_PATH_REC_QUEUE) {
601 /* put pseudoheader back on for next time */
602 skb_push(skb, sizeof *phdr);
603 __skb_queue_tail(&path->queue, skb);
605 ++priv->stats.tx_dropped;
606 dev_kfree_skb_any(skb);
609 spin_unlock(&priv->lock);
612 static int ipoib_start_xmit(struct sk_buff *skb, struct net_device *dev)
614 struct ipoib_dev_priv *priv = netdev_priv(dev);
615 struct ipoib_neigh *neigh;
618 if (!spin_trylock_irqsave(&priv->tx_lock, flags))
619 return NETDEV_TX_LOCKED;
622 * Check if our queue is stopped. Since we have the LLTX bit
623 * set, we can't rely on netif_stop_queue() preventing our
624 * xmit function from being called with a full queue.
626 if (unlikely(netif_queue_stopped(dev))) {
627 spin_unlock_irqrestore(&priv->tx_lock, flags);
628 return NETDEV_TX_BUSY;
631 if (skb->dst && skb->dst->neighbour) {
632 if (unlikely(!*to_ipoib_neigh(skb->dst->neighbour))) {
633 ipoib_path_lookup(skb, dev);
637 neigh = *to_ipoib_neigh(skb->dst->neighbour);
639 if (likely(neigh->ah)) {
640 if (unlikely(memcmp(&neigh->dgid.raw,
641 skb->dst->neighbour->ha + 4,
642 sizeof(union ib_gid)))) {
643 spin_lock(&priv->lock);
645 * It's safe to call ipoib_put_ah() inside
646 * priv->lock here, because we know that
647 * path->ah will always hold one more reference,
648 * so ipoib_put_ah() will never do more than
649 * decrement the ref count.
651 ipoib_put_ah(neigh->ah);
652 list_del(&neigh->list);
653 ipoib_neigh_free(neigh);
654 spin_unlock(&priv->lock);
655 ipoib_path_lookup(skb, dev);
659 ipoib_send(dev, skb, neigh->ah,
660 be32_to_cpup((__be32 *) skb->dst->neighbour->ha));
664 if (skb_queue_len(&neigh->queue) < IPOIB_MAX_PATH_REC_QUEUE) {
665 spin_lock(&priv->lock);
666 __skb_queue_tail(&neigh->queue, skb);
667 spin_unlock(&priv->lock);
669 ++priv->stats.tx_dropped;
670 dev_kfree_skb_any(skb);
673 struct ipoib_pseudoheader *phdr =
674 (struct ipoib_pseudoheader *) skb->data;
675 skb_pull(skb, sizeof *phdr);
677 if (phdr->hwaddr[4] == 0xff) {
678 /* Add in the P_Key for multicast*/
679 phdr->hwaddr[8] = (priv->pkey >> 8) & 0xff;
680 phdr->hwaddr[9] = priv->pkey & 0xff;
682 ipoib_mcast_send(dev, phdr->hwaddr + 4, skb);
684 /* unicast GID -- should be ARP or RARP reply */
686 if ((be16_to_cpup((__be16 *) skb->data) != ETH_P_ARP) &&
687 (be16_to_cpup((__be16 *) skb->data) != ETH_P_RARP)) {
688 ipoib_warn(priv, "Unicast, no %s: type %04x, QPN %06x "
690 skb->dst ? "neigh" : "dst",
691 be16_to_cpup((__be16 *) skb->data),
692 be32_to_cpup((__be32 *) phdr->hwaddr),
693 IPOIB_GID_RAW_ARG(phdr->hwaddr + 4));
694 dev_kfree_skb_any(skb);
695 ++priv->stats.tx_dropped;
699 unicast_arp_send(skb, dev, phdr);
704 spin_unlock_irqrestore(&priv->tx_lock, flags);
709 static struct net_device_stats *ipoib_get_stats(struct net_device *dev)
711 struct ipoib_dev_priv *priv = netdev_priv(dev);
716 static void ipoib_timeout(struct net_device *dev)
718 struct ipoib_dev_priv *priv = netdev_priv(dev);
720 ipoib_warn(priv, "transmit timeout: latency %d msecs\n",
721 jiffies_to_msecs(jiffies - dev->trans_start));
722 ipoib_warn(priv, "queue stopped %d, tx_head %u, tx_tail %u\n",
723 netif_queue_stopped(dev),
724 priv->tx_head, priv->tx_tail);
725 /* XXX reset QP, etc. */
728 static int ipoib_hard_header(struct sk_buff *skb,
729 struct net_device *dev,
731 void *daddr, void *saddr, unsigned len)
733 struct ipoib_header *header;
735 header = (struct ipoib_header *) skb_push(skb, sizeof *header);
737 header->proto = htons(type);
738 header->reserved = 0;
741 * If we don't have a neighbour structure, stuff the
742 * destination address onto the front of the skb so we can
743 * figure out where to send the packet later.
745 if ((!skb->dst || !skb->dst->neighbour) && daddr) {
746 struct ipoib_pseudoheader *phdr =
747 (struct ipoib_pseudoheader *) skb_push(skb, sizeof *phdr);
748 memcpy(phdr->hwaddr, daddr, INFINIBAND_ALEN);
754 static void ipoib_set_mcast_list(struct net_device *dev)
756 struct ipoib_dev_priv *priv = netdev_priv(dev);
758 if (!test_bit(IPOIB_FLAG_OPER_UP, &priv->flags)) {
759 ipoib_dbg(priv, "IPOIB_FLAG_OPER_UP not set");
763 queue_work(ipoib_workqueue, &priv->restart_task);
766 static void ipoib_neigh_destructor(struct neighbour *n)
768 struct ipoib_neigh *neigh;
769 struct ipoib_dev_priv *priv = netdev_priv(n->dev);
771 struct ipoib_ah *ah = NULL;
774 "neigh_destructor for %06x " IPOIB_GID_FMT "\n",
775 be32_to_cpup((__be32 *) n->ha),
776 IPOIB_GID_RAW_ARG(n->ha + 4));
778 spin_lock_irqsave(&priv->lock, flags);
780 neigh = *to_ipoib_neigh(n);
784 list_del(&neigh->list);
785 ipoib_neigh_free(neigh);
788 spin_unlock_irqrestore(&priv->lock, flags);
794 struct ipoib_neigh *ipoib_neigh_alloc(struct neighbour *neighbour)
796 struct ipoib_neigh *neigh;
798 neigh = kmalloc(sizeof *neigh, GFP_ATOMIC);
802 neigh->neighbour = neighbour;
803 *to_ipoib_neigh(neighbour) = neigh;
808 void ipoib_neigh_free(struct ipoib_neigh *neigh)
810 *to_ipoib_neigh(neigh->neighbour) = NULL;
814 static int ipoib_neigh_setup_dev(struct net_device *dev, struct neigh_parms *parms)
816 parms->neigh_destructor = ipoib_neigh_destructor;
821 int ipoib_dev_init(struct net_device *dev, struct ib_device *ca, int port)
823 struct ipoib_dev_priv *priv = netdev_priv(dev);
825 /* Allocate RX/TX "rings" to hold queued skbs */
826 priv->rx_ring = kzalloc(ipoib_recvq_size * sizeof *priv->rx_ring,
828 if (!priv->rx_ring) {
829 printk(KERN_WARNING "%s: failed to allocate RX ring (%d entries)\n",
830 ca->name, ipoib_recvq_size);
834 priv->tx_ring = kzalloc(ipoib_sendq_size * sizeof *priv->tx_ring,
836 if (!priv->tx_ring) {
837 printk(KERN_WARNING "%s: failed to allocate TX ring (%d entries)\n",
838 ca->name, ipoib_sendq_size);
839 goto out_rx_ring_cleanup;
842 /* priv->tx_head & tx_tail are already 0 */
844 if (ipoib_ib_dev_init(dev, ca, port))
845 goto out_tx_ring_cleanup;
850 kfree(priv->tx_ring);
853 kfree(priv->rx_ring);
859 void ipoib_dev_cleanup(struct net_device *dev)
861 struct ipoib_dev_priv *priv = netdev_priv(dev), *cpriv, *tcpriv;
863 ipoib_delete_debug_files(dev);
865 /* Delete any child interfaces first */
866 list_for_each_entry_safe(cpriv, tcpriv, &priv->child_intfs, list) {
867 unregister_netdev(cpriv->dev);
868 ipoib_dev_cleanup(cpriv->dev);
869 free_netdev(cpriv->dev);
872 ipoib_ib_dev_cleanup(dev);
874 kfree(priv->rx_ring);
875 kfree(priv->tx_ring);
877 priv->rx_ring = NULL;
878 priv->tx_ring = NULL;
881 static void ipoib_setup(struct net_device *dev)
883 struct ipoib_dev_priv *priv = netdev_priv(dev);
885 dev->open = ipoib_open;
886 dev->stop = ipoib_stop;
887 dev->change_mtu = ipoib_change_mtu;
888 dev->hard_start_xmit = ipoib_start_xmit;
889 dev->get_stats = ipoib_get_stats;
890 dev->tx_timeout = ipoib_timeout;
891 dev->hard_header = ipoib_hard_header;
892 dev->set_multicast_list = ipoib_set_mcast_list;
893 dev->neigh_setup = ipoib_neigh_setup_dev;
895 dev->watchdog_timeo = HZ;
897 dev->flags |= IFF_BROADCAST | IFF_MULTICAST;
900 * We add in INFINIBAND_ALEN to allow for the destination
901 * address "pseudoheader" for skbs without neighbour struct.
903 dev->hard_header_len = IPOIB_ENCAP_LEN + INFINIBAND_ALEN;
904 dev->addr_len = INFINIBAND_ALEN;
905 dev->type = ARPHRD_INFINIBAND;
906 dev->tx_queue_len = ipoib_sendq_size * 2;
907 dev->features = NETIF_F_VLAN_CHALLENGED | NETIF_F_LLTX;
909 /* MTU will be reset when mcast join happens */
910 dev->mtu = IPOIB_PACKET_SIZE - IPOIB_ENCAP_LEN;
911 priv->mcast_mtu = priv->admin_mtu = dev->mtu;
913 memcpy(dev->broadcast, ipv4_bcast_addr, INFINIBAND_ALEN);
915 netif_carrier_off(dev);
917 SET_MODULE_OWNER(dev);
921 spin_lock_init(&priv->lock);
922 spin_lock_init(&priv->tx_lock);
924 mutex_init(&priv->mcast_mutex);
925 mutex_init(&priv->vlan_mutex);
927 INIT_LIST_HEAD(&priv->path_list);
928 INIT_LIST_HEAD(&priv->child_intfs);
929 INIT_LIST_HEAD(&priv->dead_ahs);
930 INIT_LIST_HEAD(&priv->multicast_list);
932 INIT_WORK(&priv->pkey_task, ipoib_pkey_poll, priv->dev);
933 INIT_WORK(&priv->mcast_task, ipoib_mcast_join_task, priv->dev);
934 INIT_WORK(&priv->flush_task, ipoib_ib_dev_flush, priv->dev);
935 INIT_WORK(&priv->restart_task, ipoib_mcast_restart_task, priv->dev);
936 INIT_WORK(&priv->ah_reap_task, ipoib_reap_ah, priv->dev);
939 struct ipoib_dev_priv *ipoib_intf_alloc(const char *name)
941 struct net_device *dev;
943 dev = alloc_netdev((int) sizeof (struct ipoib_dev_priv), name,
948 return netdev_priv(dev);
951 static ssize_t show_pkey(struct class_device *cdev, char *buf)
953 struct ipoib_dev_priv *priv =
954 netdev_priv(container_of(cdev, struct net_device, class_dev));
956 return sprintf(buf, "0x%04x\n", priv->pkey);
958 static CLASS_DEVICE_ATTR(pkey, S_IRUGO, show_pkey, NULL);
960 static ssize_t create_child(struct class_device *cdev,
961 const char *buf, size_t count)
966 if (sscanf(buf, "%i", &pkey) != 1)
969 if (pkey < 0 || pkey > 0xffff)
973 * Set the full membership bit, so that we join the right
974 * broadcast group, etc.
978 ret = ipoib_vlan_add(container_of(cdev, struct net_device, class_dev),
981 return ret ? ret : count;
983 static CLASS_DEVICE_ATTR(create_child, S_IWUGO, NULL, create_child);
985 static ssize_t delete_child(struct class_device *cdev,
986 const char *buf, size_t count)
991 if (sscanf(buf, "%i", &pkey) != 1)
994 if (pkey < 0 || pkey > 0xffff)
997 ret = ipoib_vlan_delete(container_of(cdev, struct net_device, class_dev),
1000 return ret ? ret : count;
1003 static CLASS_DEVICE_ATTR(delete_child, S_IWUGO, NULL, delete_child);
1005 int ipoib_add_pkey_attr(struct net_device *dev)
1007 return class_device_create_file(&dev->class_dev,
1008 &class_device_attr_pkey);
1011 static struct net_device *ipoib_add_port(const char *format,
1012 struct ib_device *hca, u8 port)
1014 struct ipoib_dev_priv *priv;
1015 int result = -ENOMEM;
1017 priv = ipoib_intf_alloc(format);
1019 goto alloc_mem_failed;
1021 SET_NETDEV_DEV(priv->dev, hca->dma_device);
1023 result = ib_query_pkey(hca, port, 0, &priv->pkey);
1025 printk(KERN_WARNING "%s: ib_query_pkey port %d failed (ret = %d)\n",
1026 hca->name, port, result);
1027 goto alloc_mem_failed;
1031 * Set the full membership bit, so that we join the right
1032 * broadcast group, etc.
1034 priv->pkey |= 0x8000;
1036 priv->dev->broadcast[8] = priv->pkey >> 8;
1037 priv->dev->broadcast[9] = priv->pkey & 0xff;
1039 result = ib_query_gid(hca, port, 0, &priv->local_gid);
1041 printk(KERN_WARNING "%s: ib_query_gid port %d failed (ret = %d)\n",
1042 hca->name, port, result);
1043 goto alloc_mem_failed;
1045 memcpy(priv->dev->dev_addr + 4, priv->local_gid.raw, sizeof (union ib_gid));
1048 result = ipoib_dev_init(priv->dev, hca, port);
1050 printk(KERN_WARNING "%s: failed to initialize port %d (ret = %d)\n",
1051 hca->name, port, result);
1052 goto device_init_failed;
1055 INIT_IB_EVENT_HANDLER(&priv->event_handler,
1056 priv->ca, ipoib_event);
1057 result = ib_register_event_handler(&priv->event_handler);
1059 printk(KERN_WARNING "%s: ib_register_event_handler failed for "
1060 "port %d (ret = %d)\n",
1061 hca->name, port, result);
1065 result = register_netdev(priv->dev);
1067 printk(KERN_WARNING "%s: couldn't register ipoib port %d; error %d\n",
1068 hca->name, port, result);
1069 goto register_failed;
1072 ipoib_create_debug_files(priv->dev);
1074 if (ipoib_add_pkey_attr(priv->dev))
1076 if (class_device_create_file(&priv->dev->class_dev,
1077 &class_device_attr_create_child))
1079 if (class_device_create_file(&priv->dev->class_dev,
1080 &class_device_attr_delete_child))
1086 ipoib_delete_debug_files(priv->dev);
1087 unregister_netdev(priv->dev);
1090 ib_unregister_event_handler(&priv->event_handler);
1091 flush_scheduled_work();
1094 ipoib_dev_cleanup(priv->dev);
1097 free_netdev(priv->dev);
1100 return ERR_PTR(result);
1103 static void ipoib_add_one(struct ib_device *device)
1105 struct list_head *dev_list;
1106 struct net_device *dev;
1107 struct ipoib_dev_priv *priv;
1110 dev_list = kmalloc(sizeof *dev_list, GFP_KERNEL);
1114 INIT_LIST_HEAD(dev_list);
1116 if (device->node_type == IB_NODE_SWITCH) {
1121 e = device->phys_port_cnt;
1124 for (p = s; p <= e; ++p) {
1125 dev = ipoib_add_port("ib%d", device, p);
1127 priv = netdev_priv(dev);
1128 list_add_tail(&priv->list, dev_list);
1132 ib_set_client_data(device, &ipoib_client, dev_list);
1135 static void ipoib_remove_one(struct ib_device *device)
1137 struct ipoib_dev_priv *priv, *tmp;
1138 struct list_head *dev_list;
1140 dev_list = ib_get_client_data(device, &ipoib_client);
1142 list_for_each_entry_safe(priv, tmp, dev_list, list) {
1143 ib_unregister_event_handler(&priv->event_handler);
1144 flush_scheduled_work();
1146 unregister_netdev(priv->dev);
1147 ipoib_dev_cleanup(priv->dev);
1148 free_netdev(priv->dev);
1154 static int __init ipoib_init_module(void)
1158 ipoib_recvq_size = roundup_pow_of_two(ipoib_recvq_size);
1159 ipoib_recvq_size = min(ipoib_recvq_size, IPOIB_MAX_QUEUE_SIZE);
1160 ipoib_recvq_size = max(ipoib_recvq_size, IPOIB_MIN_QUEUE_SIZE);
1162 ipoib_sendq_size = roundup_pow_of_two(ipoib_sendq_size);
1163 ipoib_sendq_size = min(ipoib_sendq_size, IPOIB_MAX_QUEUE_SIZE);
1164 ipoib_sendq_size = max(ipoib_sendq_size, IPOIB_MIN_QUEUE_SIZE);
1166 ret = ipoib_register_debugfs();
1171 * We create our own workqueue mainly because we want to be
1172 * able to flush it when devices are being removed. We can't
1173 * use schedule_work()/flush_scheduled_work() because both
1174 * unregister_netdev() and linkwatch_event take the rtnl lock,
1175 * so flush_scheduled_work() can deadlock during device
1178 ipoib_workqueue = create_singlethread_workqueue("ipoib");
1179 if (!ipoib_workqueue) {
1184 ret = ib_register_client(&ipoib_client);
1191 destroy_workqueue(ipoib_workqueue);
1194 ipoib_unregister_debugfs();
1199 static void __exit ipoib_cleanup_module(void)
1201 ib_unregister_client(&ipoib_client);
1202 ipoib_unregister_debugfs();
1203 destroy_workqueue(ipoib_workqueue);
1206 module_init(ipoib_init_module);
1207 module_exit(ipoib_cleanup_module);