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
,
191 struct ipoib_dev_priv
*priv
= netdev_priv(dev
);
192 struct rb_node
*n
= priv
->path_tree
.rb_node
;
193 struct ipoib_path
*path
;
197 path
= rb_entry(n
, struct ipoib_path
, rb_node
);
199 ret
= memcmp(gid
->raw
, path
->pathrec
.dgid
.raw
,
200 sizeof (union ib_gid
));
213 static int __path_add(struct net_device
*dev
, struct ipoib_path
*path
)
215 struct ipoib_dev_priv
*priv
= netdev_priv(dev
);
216 struct rb_node
**n
= &priv
->path_tree
.rb_node
;
217 struct rb_node
*pn
= NULL
;
218 struct ipoib_path
*tpath
;
223 tpath
= rb_entry(pn
, struct ipoib_path
, rb_node
);
225 ret
= memcmp(path
->pathrec
.dgid
.raw
, tpath
->pathrec
.dgid
.raw
,
226 sizeof (union ib_gid
));
235 rb_link_node(&path
->rb_node
, pn
, n
);
236 rb_insert_color(&path
->rb_node
, &priv
->path_tree
);
238 list_add_tail(&path
->list
, &priv
->path_list
);
243 static void path_free(struct net_device
*dev
, struct ipoib_path
*path
)
245 struct ipoib_dev_priv
*priv
= netdev_priv(dev
);
246 struct ipoib_neigh
*neigh
, *tn
;
250 while ((skb
= __skb_dequeue(&path
->queue
)))
251 dev_kfree_skb_irq(skb
);
253 spin_lock_irqsave(&priv
->lock
, flags
);
255 list_for_each_entry_safe(neigh
, tn
, &path
->neigh_list
, list
) {
257 * It's safe to call ipoib_put_ah() inside priv->lock
258 * here, because we know that path->ah will always
259 * hold one more reference, so ipoib_put_ah() will
260 * never do more than decrement the ref count.
263 ipoib_put_ah(neigh
->ah
);
265 ipoib_neigh_free(neigh
);
268 spin_unlock_irqrestore(&priv
->lock
, flags
);
271 ipoib_put_ah(path
->ah
);
276 #ifdef CONFIG_INFINIBAND_IPOIB_DEBUG
278 struct ipoib_path_iter
*ipoib_path_iter_init(struct net_device
*dev
)
280 struct ipoib_path_iter
*iter
;
282 iter
= kmalloc(sizeof *iter
, GFP_KERNEL
);
287 memset(iter
->path
.pathrec
.dgid
.raw
, 0, 16);
289 if (ipoib_path_iter_next(iter
)) {
297 int ipoib_path_iter_next(struct ipoib_path_iter
*iter
)
299 struct ipoib_dev_priv
*priv
= netdev_priv(iter
->dev
);
301 struct ipoib_path
*path
;
304 spin_lock_irq(&priv
->lock
);
306 n
= rb_first(&priv
->path_tree
);
309 path
= rb_entry(n
, struct ipoib_path
, rb_node
);
311 if (memcmp(iter
->path
.pathrec
.dgid
.raw
, path
->pathrec
.dgid
.raw
,
312 sizeof (union ib_gid
)) < 0) {
321 spin_unlock_irq(&priv
->lock
);
326 void ipoib_path_iter_read(struct ipoib_path_iter
*iter
,
327 struct ipoib_path
*path
)
332 #endif /* CONFIG_INFINIBAND_IPOIB_DEBUG */
334 void ipoib_flush_paths(struct net_device
*dev
)
336 struct ipoib_dev_priv
*priv
= netdev_priv(dev
);
337 struct ipoib_path
*path
, *tp
;
338 LIST_HEAD(remove_list
);
340 spin_lock_irq(&priv
->lock
);
342 list_splice(&priv
->path_list
, &remove_list
);
343 INIT_LIST_HEAD(&priv
->path_list
);
345 list_for_each_entry(path
, &remove_list
, list
)
346 rb_erase(&path
->rb_node
, &priv
->path_tree
);
348 list_for_each_entry_safe(path
, tp
, &remove_list
, list
) {
350 ib_sa_cancel_query(path
->query_id
, path
->query
);
351 spin_unlock_irq(&priv
->lock
);
352 wait_for_completion(&path
->done
);
353 path_free(dev
, path
);
354 spin_lock_irq(&priv
->lock
);
356 spin_unlock_irq(&priv
->lock
);
359 static void path_rec_completion(int status
,
360 struct ib_sa_path_rec
*pathrec
,
363 struct ipoib_path
*path
= path_ptr
;
364 struct net_device
*dev
= path
->dev
;
365 struct ipoib_dev_priv
*priv
= netdev_priv(dev
);
366 struct ipoib_ah
*ah
= NULL
;
367 struct ipoib_neigh
*neigh
;
368 struct sk_buff_head skqueue
;
373 ipoib_dbg(priv
, "PathRec LID 0x%04x for GID " IPOIB_GID_FMT
"\n",
374 be16_to_cpu(pathrec
->dlid
), IPOIB_GID_ARG(pathrec
->dgid
));
376 ipoib_dbg(priv
, "PathRec status %d for GID " IPOIB_GID_FMT
"\n",
377 status
, IPOIB_GID_ARG(path
->pathrec
.dgid
));
379 skb_queue_head_init(&skqueue
);
382 struct ib_ah_attr av
= {
383 .dlid
= be16_to_cpu(pathrec
->dlid
),
385 .port_num
= priv
->port
,
386 .static_rate
= pathrec
->rate
389 ah
= ipoib_create_ah(dev
, priv
->pd
, &av
);
392 spin_lock_irqsave(&priv
->lock
, flags
);
397 path
->pathrec
= *pathrec
;
399 ipoib_dbg(priv
, "created address handle %p for LID 0x%04x, SL %d\n",
400 ah
, be16_to_cpu(pathrec
->dlid
), pathrec
->sl
);
402 while ((skb
= __skb_dequeue(&path
->queue
)))
403 __skb_queue_tail(&skqueue
, skb
);
405 list_for_each_entry(neigh
, &path
->neigh_list
, list
) {
406 kref_get(&path
->ah
->ref
);
407 neigh
->ah
= path
->ah
;
409 while ((skb
= __skb_dequeue(&neigh
->queue
)))
410 __skb_queue_tail(&skqueue
, skb
);
415 complete(&path
->done
);
417 spin_unlock_irqrestore(&priv
->lock
, flags
);
419 while ((skb
= __skb_dequeue(&skqueue
))) {
421 if (dev_queue_xmit(skb
))
422 ipoib_warn(priv
, "dev_queue_xmit failed "
423 "to requeue packet\n");
427 static struct ipoib_path
*path_rec_create(struct net_device
*dev
,
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
->raw
, 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
, (union ib_gid
*) (skb
->dst
->neighbour
->ha
+ 4));
503 path
= path_rec_create(dev
,
504 (union ib_gid
*) (skb
->dst
->neighbour
->ha
+ 4));
508 __path_add(dev
, path
);
511 list_add_tail(&neigh
->list
, &path
->neigh_list
);
514 kref_get(&path
->ah
->ref
);
515 neigh
->ah
= path
->ah
;
517 ipoib_send(dev
, skb
, path
->ah
,
518 be32_to_cpup((__be32
*) skb
->dst
->neighbour
->ha
));
521 __skb_queue_tail(&neigh
->queue
, skb
);
523 if (!path
->query
&& path_rec_start(dev
, path
))
527 spin_unlock(&priv
->lock
);
531 list_del(&neigh
->list
);
534 ipoib_neigh_free(neigh
);
535 ++priv
->stats
.tx_dropped
;
536 dev_kfree_skb_any(skb
);
538 spin_unlock(&priv
->lock
);
541 static void ipoib_path_lookup(struct sk_buff
*skb
, struct net_device
*dev
)
543 struct ipoib_dev_priv
*priv
= netdev_priv(skb
->dev
);
545 /* Look up path record for unicasts */
546 if (skb
->dst
->neighbour
->ha
[4] != 0xff) {
547 neigh_add_path(skb
, dev
);
551 /* Add in the P_Key for multicasts */
552 skb
->dst
->neighbour
->ha
[8] = (priv
->pkey
>> 8) & 0xff;
553 skb
->dst
->neighbour
->ha
[9] = priv
->pkey
& 0xff;
554 ipoib_mcast_send(dev
, (union ib_gid
*) (skb
->dst
->neighbour
->ha
+ 4), skb
);
557 static void unicast_arp_send(struct sk_buff
*skb
, struct net_device
*dev
,
558 struct ipoib_pseudoheader
*phdr
)
560 struct ipoib_dev_priv
*priv
= netdev_priv(dev
);
561 struct ipoib_path
*path
;
564 * We can only be called from ipoib_start_xmit, so we're
565 * inside tx_lock -- no need to save/restore flags.
567 spin_lock(&priv
->lock
);
569 path
= __path_find(dev
, (union ib_gid
*) (phdr
->hwaddr
+ 4));
571 path
= path_rec_create(dev
,
572 (union ib_gid
*) (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 ipoib_send(dev
, skb
, neigh
->ah
,
641 be32_to_cpup((__be32
*) skb
->dst
->neighbour
->ha
));
645 if (skb_queue_len(&neigh
->queue
) < IPOIB_MAX_PATH_REC_QUEUE
) {
646 spin_lock(&priv
->lock
);
647 __skb_queue_tail(&neigh
->queue
, skb
);
648 spin_unlock(&priv
->lock
);
650 ++priv
->stats
.tx_dropped
;
651 dev_kfree_skb_any(skb
);
654 struct ipoib_pseudoheader
*phdr
=
655 (struct ipoib_pseudoheader
*) skb
->data
;
656 skb_pull(skb
, sizeof *phdr
);
658 if (phdr
->hwaddr
[4] == 0xff) {
659 /* Add in the P_Key for multicast*/
660 phdr
->hwaddr
[8] = (priv
->pkey
>> 8) & 0xff;
661 phdr
->hwaddr
[9] = priv
->pkey
& 0xff;
663 ipoib_mcast_send(dev
, (union ib_gid
*) (phdr
->hwaddr
+ 4), skb
);
665 /* unicast GID -- should be ARP or RARP reply */
667 if ((be16_to_cpup((__be16
*) skb
->data
) != ETH_P_ARP
) &&
668 (be16_to_cpup((__be16
*) skb
->data
) != ETH_P_RARP
)) {
669 ipoib_warn(priv
, "Unicast, no %s: type %04x, QPN %06x "
671 skb
->dst
? "neigh" : "dst",
672 be16_to_cpup((__be16
*) skb
->data
),
673 be32_to_cpup((__be32
*) phdr
->hwaddr
),
674 IPOIB_GID_ARG(*(union ib_gid
*) (phdr
->hwaddr
+ 4)));
675 dev_kfree_skb_any(skb
);
676 ++priv
->stats
.tx_dropped
;
680 unicast_arp_send(skb
, dev
, phdr
);
685 spin_unlock_irqrestore(&priv
->tx_lock
, flags
);
690 static struct net_device_stats
*ipoib_get_stats(struct net_device
*dev
)
692 struct ipoib_dev_priv
*priv
= netdev_priv(dev
);
697 static void ipoib_timeout(struct net_device
*dev
)
699 struct ipoib_dev_priv
*priv
= netdev_priv(dev
);
701 ipoib_warn(priv
, "transmit timeout: latency %d msecs\n",
702 jiffies_to_msecs(jiffies
- dev
->trans_start
));
703 ipoib_warn(priv
, "queue stopped %d, tx_head %u, tx_tail %u\n",
704 netif_queue_stopped(dev
),
705 priv
->tx_head
, priv
->tx_tail
);
706 /* XXX reset QP, etc. */
709 static int ipoib_hard_header(struct sk_buff
*skb
,
710 struct net_device
*dev
,
712 void *daddr
, void *saddr
, unsigned len
)
714 struct ipoib_header
*header
;
716 header
= (struct ipoib_header
*) skb_push(skb
, sizeof *header
);
718 header
->proto
= htons(type
);
719 header
->reserved
= 0;
722 * If we don't have a neighbour structure, stuff the
723 * destination address onto the front of the skb so we can
724 * figure out where to send the packet later.
726 if ((!skb
->dst
|| !skb
->dst
->neighbour
) && daddr
) {
727 struct ipoib_pseudoheader
*phdr
=
728 (struct ipoib_pseudoheader
*) skb_push(skb
, sizeof *phdr
);
729 memcpy(phdr
->hwaddr
, daddr
, INFINIBAND_ALEN
);
735 static void ipoib_set_mcast_list(struct net_device
*dev
)
737 struct ipoib_dev_priv
*priv
= netdev_priv(dev
);
739 if (!test_bit(IPOIB_FLAG_OPER_UP
, &priv
->flags
)) {
740 ipoib_dbg(priv
, "IPOIB_FLAG_OPER_UP not set");
744 queue_work(ipoib_workqueue
, &priv
->restart_task
);
747 static void ipoib_neigh_destructor(struct neighbour
*n
)
749 struct ipoib_neigh
*neigh
;
750 struct ipoib_dev_priv
*priv
= netdev_priv(n
->dev
);
752 struct ipoib_ah
*ah
= NULL
;
755 "neigh_destructor for %06x " IPOIB_GID_FMT
"\n",
756 be32_to_cpup((__be32
*) n
->ha
),
757 IPOIB_GID_ARG(*((union ib_gid
*) (n
->ha
+ 4))));
759 spin_lock_irqsave(&priv
->lock
, flags
);
761 neigh
= *to_ipoib_neigh(n
);
765 list_del(&neigh
->list
);
766 ipoib_neigh_free(neigh
);
769 spin_unlock_irqrestore(&priv
->lock
, flags
);
775 struct ipoib_neigh
*ipoib_neigh_alloc(struct neighbour
*neighbour
)
777 struct ipoib_neigh
*neigh
;
779 neigh
= kmalloc(sizeof *neigh
, GFP_ATOMIC
);
783 neigh
->neighbour
= neighbour
;
784 *to_ipoib_neigh(neighbour
) = neigh
;
789 void ipoib_neigh_free(struct ipoib_neigh
*neigh
)
791 *to_ipoib_neigh(neigh
->neighbour
) = NULL
;
795 static int ipoib_neigh_setup_dev(struct net_device
*dev
, struct neigh_parms
*parms
)
797 parms
->neigh_destructor
= ipoib_neigh_destructor
;
802 int ipoib_dev_init(struct net_device
*dev
, struct ib_device
*ca
, int port
)
804 struct ipoib_dev_priv
*priv
= netdev_priv(dev
);
806 /* Allocate RX/TX "rings" to hold queued skbs */
807 priv
->rx_ring
= kzalloc(ipoib_recvq_size
* sizeof *priv
->rx_ring
,
809 if (!priv
->rx_ring
) {
810 printk(KERN_WARNING
"%s: failed to allocate RX ring (%d entries)\n",
811 ca
->name
, ipoib_recvq_size
);
815 priv
->tx_ring
= kzalloc(ipoib_sendq_size
* sizeof *priv
->tx_ring
,
817 if (!priv
->tx_ring
) {
818 printk(KERN_WARNING
"%s: failed to allocate TX ring (%d entries)\n",
819 ca
->name
, ipoib_sendq_size
);
820 goto out_rx_ring_cleanup
;
823 /* priv->tx_head & tx_tail are already 0 */
825 if (ipoib_ib_dev_init(dev
, ca
, port
))
826 goto out_tx_ring_cleanup
;
831 kfree(priv
->tx_ring
);
834 kfree(priv
->rx_ring
);
840 void ipoib_dev_cleanup(struct net_device
*dev
)
842 struct ipoib_dev_priv
*priv
= netdev_priv(dev
), *cpriv
, *tcpriv
;
844 ipoib_delete_debug_files(dev
);
846 /* Delete any child interfaces first */
847 list_for_each_entry_safe(cpriv
, tcpriv
, &priv
->child_intfs
, list
) {
848 unregister_netdev(cpriv
->dev
);
849 ipoib_dev_cleanup(cpriv
->dev
);
850 free_netdev(cpriv
->dev
);
853 ipoib_ib_dev_cleanup(dev
);
855 kfree(priv
->rx_ring
);
856 kfree(priv
->tx_ring
);
858 priv
->rx_ring
= NULL
;
859 priv
->tx_ring
= NULL
;
862 static void ipoib_setup(struct net_device
*dev
)
864 struct ipoib_dev_priv
*priv
= netdev_priv(dev
);
866 dev
->open
= ipoib_open
;
867 dev
->stop
= ipoib_stop
;
868 dev
->change_mtu
= ipoib_change_mtu
;
869 dev
->hard_start_xmit
= ipoib_start_xmit
;
870 dev
->get_stats
= ipoib_get_stats
;
871 dev
->tx_timeout
= ipoib_timeout
;
872 dev
->hard_header
= ipoib_hard_header
;
873 dev
->set_multicast_list
= ipoib_set_mcast_list
;
874 dev
->neigh_setup
= ipoib_neigh_setup_dev
;
876 dev
->watchdog_timeo
= HZ
;
878 dev
->flags
|= IFF_BROADCAST
| IFF_MULTICAST
;
881 * We add in INFINIBAND_ALEN to allow for the destination
882 * address "pseudoheader" for skbs without neighbour struct.
884 dev
->hard_header_len
= IPOIB_ENCAP_LEN
+ INFINIBAND_ALEN
;
885 dev
->addr_len
= INFINIBAND_ALEN
;
886 dev
->type
= ARPHRD_INFINIBAND
;
887 dev
->tx_queue_len
= ipoib_sendq_size
* 2;
888 dev
->features
= NETIF_F_VLAN_CHALLENGED
| NETIF_F_LLTX
;
890 /* MTU will be reset when mcast join happens */
891 dev
->mtu
= IPOIB_PACKET_SIZE
- IPOIB_ENCAP_LEN
;
892 priv
->mcast_mtu
= priv
->admin_mtu
= dev
->mtu
;
894 memcpy(dev
->broadcast
, ipv4_bcast_addr
, INFINIBAND_ALEN
);
896 netif_carrier_off(dev
);
898 SET_MODULE_OWNER(dev
);
902 spin_lock_init(&priv
->lock
);
903 spin_lock_init(&priv
->tx_lock
);
905 mutex_init(&priv
->mcast_mutex
);
906 mutex_init(&priv
->vlan_mutex
);
908 INIT_LIST_HEAD(&priv
->path_list
);
909 INIT_LIST_HEAD(&priv
->child_intfs
);
910 INIT_LIST_HEAD(&priv
->dead_ahs
);
911 INIT_LIST_HEAD(&priv
->multicast_list
);
913 INIT_WORK(&priv
->pkey_task
, ipoib_pkey_poll
, priv
->dev
);
914 INIT_WORK(&priv
->mcast_task
, ipoib_mcast_join_task
, priv
->dev
);
915 INIT_WORK(&priv
->flush_task
, ipoib_ib_dev_flush
, priv
->dev
);
916 INIT_WORK(&priv
->restart_task
, ipoib_mcast_restart_task
, priv
->dev
);
917 INIT_WORK(&priv
->ah_reap_task
, ipoib_reap_ah
, priv
->dev
);
920 struct ipoib_dev_priv
*ipoib_intf_alloc(const char *name
)
922 struct net_device
*dev
;
924 dev
= alloc_netdev((int) sizeof (struct ipoib_dev_priv
), name
,
929 return netdev_priv(dev
);
932 static ssize_t
show_pkey(struct class_device
*cdev
, char *buf
)
934 struct ipoib_dev_priv
*priv
=
935 netdev_priv(container_of(cdev
, struct net_device
, class_dev
));
937 return sprintf(buf
, "0x%04x\n", priv
->pkey
);
939 static CLASS_DEVICE_ATTR(pkey
, S_IRUGO
, show_pkey
, NULL
);
941 static ssize_t
create_child(struct class_device
*cdev
,
942 const char *buf
, size_t count
)
947 if (sscanf(buf
, "%i", &pkey
) != 1)
950 if (pkey
< 0 || pkey
> 0xffff)
954 * Set the full membership bit, so that we join the right
955 * broadcast group, etc.
959 ret
= ipoib_vlan_add(container_of(cdev
, struct net_device
, class_dev
),
962 return ret
? ret
: count
;
964 static CLASS_DEVICE_ATTR(create_child
, S_IWUGO
, NULL
, create_child
);
966 static ssize_t
delete_child(struct class_device
*cdev
,
967 const char *buf
, size_t count
)
972 if (sscanf(buf
, "%i", &pkey
) != 1)
975 if (pkey
< 0 || pkey
> 0xffff)
978 ret
= ipoib_vlan_delete(container_of(cdev
, struct net_device
, class_dev
),
981 return ret
? ret
: count
;
984 static CLASS_DEVICE_ATTR(delete_child
, S_IWUGO
, NULL
, delete_child
);
986 int ipoib_add_pkey_attr(struct net_device
*dev
)
988 return class_device_create_file(&dev
->class_dev
,
989 &class_device_attr_pkey
);
992 static struct net_device
*ipoib_add_port(const char *format
,
993 struct ib_device
*hca
, u8 port
)
995 struct ipoib_dev_priv
*priv
;
996 int result
= -ENOMEM
;
998 priv
= ipoib_intf_alloc(format
);
1000 goto alloc_mem_failed
;
1002 SET_NETDEV_DEV(priv
->dev
, hca
->dma_device
);
1004 result
= ib_query_pkey(hca
, port
, 0, &priv
->pkey
);
1006 printk(KERN_WARNING
"%s: ib_query_pkey port %d failed (ret = %d)\n",
1007 hca
->name
, port
, result
);
1008 goto alloc_mem_failed
;
1012 * Set the full membership bit, so that we join the right
1013 * broadcast group, etc.
1015 priv
->pkey
|= 0x8000;
1017 priv
->dev
->broadcast
[8] = priv
->pkey
>> 8;
1018 priv
->dev
->broadcast
[9] = priv
->pkey
& 0xff;
1020 result
= ib_query_gid(hca
, port
, 0, &priv
->local_gid
);
1022 printk(KERN_WARNING
"%s: ib_query_gid port %d failed (ret = %d)\n",
1023 hca
->name
, port
, result
);
1024 goto alloc_mem_failed
;
1026 memcpy(priv
->dev
->dev_addr
+ 4, priv
->local_gid
.raw
, sizeof (union ib_gid
));
1029 result
= ipoib_dev_init(priv
->dev
, hca
, port
);
1031 printk(KERN_WARNING
"%s: failed to initialize port %d (ret = %d)\n",
1032 hca
->name
, port
, result
);
1033 goto device_init_failed
;
1036 INIT_IB_EVENT_HANDLER(&priv
->event_handler
,
1037 priv
->ca
, ipoib_event
);
1038 result
= ib_register_event_handler(&priv
->event_handler
);
1040 printk(KERN_WARNING
"%s: ib_register_event_handler failed for "
1041 "port %d (ret = %d)\n",
1042 hca
->name
, port
, result
);
1046 result
= register_netdev(priv
->dev
);
1048 printk(KERN_WARNING
"%s: couldn't register ipoib port %d; error %d\n",
1049 hca
->name
, port
, result
);
1050 goto register_failed
;
1053 ipoib_create_debug_files(priv
->dev
);
1055 if (ipoib_add_pkey_attr(priv
->dev
))
1057 if (class_device_create_file(&priv
->dev
->class_dev
,
1058 &class_device_attr_create_child
))
1060 if (class_device_create_file(&priv
->dev
->class_dev
,
1061 &class_device_attr_delete_child
))
1067 ipoib_delete_debug_files(priv
->dev
);
1068 unregister_netdev(priv
->dev
);
1071 ib_unregister_event_handler(&priv
->event_handler
);
1072 flush_scheduled_work();
1075 ipoib_dev_cleanup(priv
->dev
);
1078 free_netdev(priv
->dev
);
1081 return ERR_PTR(result
);
1084 static void ipoib_add_one(struct ib_device
*device
)
1086 struct list_head
*dev_list
;
1087 struct net_device
*dev
;
1088 struct ipoib_dev_priv
*priv
;
1091 dev_list
= kmalloc(sizeof *dev_list
, GFP_KERNEL
);
1095 INIT_LIST_HEAD(dev_list
);
1097 if (device
->node_type
== IB_NODE_SWITCH
) {
1102 e
= device
->phys_port_cnt
;
1105 for (p
= s
; p
<= e
; ++p
) {
1106 dev
= ipoib_add_port("ib%d", device
, p
);
1108 priv
= netdev_priv(dev
);
1109 list_add_tail(&priv
->list
, dev_list
);
1113 ib_set_client_data(device
, &ipoib_client
, dev_list
);
1116 static void ipoib_remove_one(struct ib_device
*device
)
1118 struct ipoib_dev_priv
*priv
, *tmp
;
1119 struct list_head
*dev_list
;
1121 dev_list
= ib_get_client_data(device
, &ipoib_client
);
1123 list_for_each_entry_safe(priv
, tmp
, dev_list
, list
) {
1124 ib_unregister_event_handler(&priv
->event_handler
);
1125 flush_scheduled_work();
1127 unregister_netdev(priv
->dev
);
1128 ipoib_dev_cleanup(priv
->dev
);
1129 free_netdev(priv
->dev
);
1135 static int __init
ipoib_init_module(void)
1139 ipoib_recvq_size
= roundup_pow_of_two(ipoib_recvq_size
);
1140 ipoib_recvq_size
= min(ipoib_recvq_size
, IPOIB_MAX_QUEUE_SIZE
);
1141 ipoib_recvq_size
= max(ipoib_recvq_size
, IPOIB_MIN_QUEUE_SIZE
);
1143 ipoib_sendq_size
= roundup_pow_of_two(ipoib_sendq_size
);
1144 ipoib_sendq_size
= min(ipoib_sendq_size
, IPOIB_MAX_QUEUE_SIZE
);
1145 ipoib_sendq_size
= max(ipoib_sendq_size
, IPOIB_MIN_QUEUE_SIZE
);
1147 ret
= ipoib_register_debugfs();
1152 * We create our own workqueue mainly because we want to be
1153 * able to flush it when devices are being removed. We can't
1154 * use schedule_work()/flush_scheduled_work() because both
1155 * unregister_netdev() and linkwatch_event take the rtnl lock,
1156 * so flush_scheduled_work() can deadlock during device
1159 ipoib_workqueue
= create_singlethread_workqueue("ipoib");
1160 if (!ipoib_workqueue
) {
1165 ret
= ib_register_client(&ipoib_client
);
1172 destroy_workqueue(ipoib_workqueue
);
1175 ipoib_unregister_debugfs();
1180 static void __exit
ipoib_cleanup_module(void)
1182 ib_unregister_client(&ipoib_client
);
1183 ipoib_unregister_debugfs();
1184 destroy_workqueue(ipoib_workqueue
);
1187 module_init(ipoib_init_module
);
1188 module_exit(ipoib_cleanup_module
);