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/kernel.h>
45 #include <linux/if_arp.h> /* For ARPHRD_xxx */
52 MODULE_AUTHOR("Roland Dreier");
53 MODULE_DESCRIPTION("IP-over-InfiniBand net driver");
54 MODULE_LICENSE("Dual BSD/GPL");
56 int ipoib_sendq_size __read_mostly
= IPOIB_TX_RING_SIZE
;
57 int ipoib_recvq_size __read_mostly
= IPOIB_RX_RING_SIZE
;
59 module_param_named(send_queue_size
, ipoib_sendq_size
, int, 0444);
60 MODULE_PARM_DESC(send_queue_size
, "Number of descriptors in send queue");
61 module_param_named(recv_queue_size
, ipoib_recvq_size
, int, 0444);
62 MODULE_PARM_DESC(recv_queue_size
, "Number of descriptors in receive queue");
64 #ifdef CONFIG_INFINIBAND_IPOIB_DEBUG
65 int ipoib_debug_level
;
67 module_param_named(debug_level
, ipoib_debug_level
, int, 0644);
68 MODULE_PARM_DESC(debug_level
, "Enable debug tracing if > 0");
71 struct ipoib_path_iter
{
72 struct net_device
*dev
;
73 struct ipoib_path path
;
76 static const u8 ipv4_bcast_addr
[] = {
77 0x00, 0xff, 0xff, 0xff,
78 0xff, 0x12, 0x40, 0x1b, 0x00, 0x00, 0x00, 0x00,
79 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff
82 struct workqueue_struct
*ipoib_workqueue
;
84 struct ib_sa_client ipoib_sa_client
;
86 static void ipoib_add_one(struct ib_device
*device
);
87 static void ipoib_remove_one(struct ib_device
*device
);
89 static struct ib_client ipoib_client
= {
92 .remove
= ipoib_remove_one
95 int ipoib_open(struct net_device
*dev
)
97 struct ipoib_dev_priv
*priv
= netdev_priv(dev
);
99 ipoib_dbg(priv
, "bringing up interface\n");
101 set_bit(IPOIB_FLAG_ADMIN_UP
, &priv
->flags
);
103 if (ipoib_pkey_dev_delay_open(dev
))
106 if (ipoib_ib_dev_open(dev
))
109 if (ipoib_ib_dev_up(dev
)) {
110 ipoib_ib_dev_stop(dev
);
114 if (!test_bit(IPOIB_FLAG_SUBINTERFACE
, &priv
->flags
)) {
115 struct ipoib_dev_priv
*cpriv
;
117 /* Bring up any child interfaces too */
118 mutex_lock(&priv
->vlan_mutex
);
119 list_for_each_entry(cpriv
, &priv
->child_intfs
, list
) {
122 flags
= cpriv
->dev
->flags
;
126 dev_change_flags(cpriv
->dev
, flags
| IFF_UP
);
128 mutex_unlock(&priv
->vlan_mutex
);
131 netif_start_queue(dev
);
136 static int ipoib_stop(struct net_device
*dev
)
138 struct ipoib_dev_priv
*priv
= netdev_priv(dev
);
140 ipoib_dbg(priv
, "stopping interface\n");
142 clear_bit(IPOIB_FLAG_ADMIN_UP
, &priv
->flags
);
144 netif_stop_queue(dev
);
146 clear_bit(IPOIB_FLAG_NETIF_STOPPED
, &priv
->flags
);
149 * Now flush workqueue to make sure a scheduled task doesn't
150 * bring our internal state back up.
152 flush_workqueue(ipoib_workqueue
);
154 ipoib_ib_dev_down(dev
, 1);
155 ipoib_ib_dev_stop(dev
);
157 if (!test_bit(IPOIB_FLAG_SUBINTERFACE
, &priv
->flags
)) {
158 struct ipoib_dev_priv
*cpriv
;
160 /* Bring down any child interfaces too */
161 mutex_lock(&priv
->vlan_mutex
);
162 list_for_each_entry(cpriv
, &priv
->child_intfs
, list
) {
165 flags
= cpriv
->dev
->flags
;
166 if (!(flags
& IFF_UP
))
169 dev_change_flags(cpriv
->dev
, flags
& ~IFF_UP
);
171 mutex_unlock(&priv
->vlan_mutex
);
177 static int ipoib_change_mtu(struct net_device
*dev
, int new_mtu
)
179 struct ipoib_dev_priv
*priv
= netdev_priv(dev
);
181 /* dev->mtu > 2K ==> connected mode */
182 if (ipoib_cm_admin_enabled(dev
) && new_mtu
<= IPOIB_CM_MTU
) {
183 if (new_mtu
> priv
->mcast_mtu
)
184 ipoib_warn(priv
, "mtu > %d will cause multicast packet drops.\n",
190 if (new_mtu
> IPOIB_PACKET_SIZE
- IPOIB_ENCAP_LEN
) {
194 priv
->admin_mtu
= new_mtu
;
196 dev
->mtu
= min(priv
->mcast_mtu
, priv
->admin_mtu
);
201 static struct ipoib_path
*__path_find(struct net_device
*dev
, void *gid
)
203 struct ipoib_dev_priv
*priv
= netdev_priv(dev
);
204 struct rb_node
*n
= priv
->path_tree
.rb_node
;
205 struct ipoib_path
*path
;
209 path
= rb_entry(n
, struct ipoib_path
, rb_node
);
211 ret
= memcmp(gid
, path
->pathrec
.dgid
.raw
,
212 sizeof (union ib_gid
));
225 static int __path_add(struct net_device
*dev
, struct ipoib_path
*path
)
227 struct ipoib_dev_priv
*priv
= netdev_priv(dev
);
228 struct rb_node
**n
= &priv
->path_tree
.rb_node
;
229 struct rb_node
*pn
= NULL
;
230 struct ipoib_path
*tpath
;
235 tpath
= rb_entry(pn
, struct ipoib_path
, rb_node
);
237 ret
= memcmp(path
->pathrec
.dgid
.raw
, tpath
->pathrec
.dgid
.raw
,
238 sizeof (union ib_gid
));
247 rb_link_node(&path
->rb_node
, pn
, n
);
248 rb_insert_color(&path
->rb_node
, &priv
->path_tree
);
250 list_add_tail(&path
->list
, &priv
->path_list
);
255 static void path_free(struct net_device
*dev
, struct ipoib_path
*path
)
257 struct ipoib_dev_priv
*priv
= netdev_priv(dev
);
258 struct ipoib_neigh
*neigh
, *tn
;
262 while ((skb
= __skb_dequeue(&path
->queue
)))
263 dev_kfree_skb_irq(skb
);
265 spin_lock_irqsave(&priv
->lock
, flags
);
267 list_for_each_entry_safe(neigh
, tn
, &path
->neigh_list
, list
) {
269 * It's safe to call ipoib_put_ah() inside priv->lock
270 * here, because we know that path->ah will always
271 * hold one more reference, so ipoib_put_ah() will
272 * never do more than decrement the ref count.
275 ipoib_put_ah(neigh
->ah
);
277 ipoib_neigh_free(dev
, neigh
);
280 spin_unlock_irqrestore(&priv
->lock
, flags
);
283 ipoib_put_ah(path
->ah
);
288 #ifdef CONFIG_INFINIBAND_IPOIB_DEBUG
290 struct ipoib_path_iter
*ipoib_path_iter_init(struct net_device
*dev
)
292 struct ipoib_path_iter
*iter
;
294 iter
= kmalloc(sizeof *iter
, GFP_KERNEL
);
299 memset(iter
->path
.pathrec
.dgid
.raw
, 0, 16);
301 if (ipoib_path_iter_next(iter
)) {
309 int ipoib_path_iter_next(struct ipoib_path_iter
*iter
)
311 struct ipoib_dev_priv
*priv
= netdev_priv(iter
->dev
);
313 struct ipoib_path
*path
;
316 spin_lock_irq(&priv
->lock
);
318 n
= rb_first(&priv
->path_tree
);
321 path
= rb_entry(n
, struct ipoib_path
, rb_node
);
323 if (memcmp(iter
->path
.pathrec
.dgid
.raw
, path
->pathrec
.dgid
.raw
,
324 sizeof (union ib_gid
)) < 0) {
333 spin_unlock_irq(&priv
->lock
);
338 void ipoib_path_iter_read(struct ipoib_path_iter
*iter
,
339 struct ipoib_path
*path
)
344 #endif /* CONFIG_INFINIBAND_IPOIB_DEBUG */
346 void ipoib_flush_paths(struct net_device
*dev
)
348 struct ipoib_dev_priv
*priv
= netdev_priv(dev
);
349 struct ipoib_path
*path
, *tp
;
350 LIST_HEAD(remove_list
);
352 spin_lock_irq(&priv
->tx_lock
);
353 spin_lock(&priv
->lock
);
355 list_splice(&priv
->path_list
, &remove_list
);
356 INIT_LIST_HEAD(&priv
->path_list
);
358 list_for_each_entry(path
, &remove_list
, list
)
359 rb_erase(&path
->rb_node
, &priv
->path_tree
);
361 list_for_each_entry_safe(path
, tp
, &remove_list
, list
) {
363 ib_sa_cancel_query(path
->query_id
, path
->query
);
364 spin_unlock(&priv
->lock
);
365 spin_unlock_irq(&priv
->tx_lock
);
366 wait_for_completion(&path
->done
);
367 path_free(dev
, path
);
368 spin_lock_irq(&priv
->tx_lock
);
369 spin_lock(&priv
->lock
);
371 spin_unlock(&priv
->lock
);
372 spin_unlock_irq(&priv
->tx_lock
);
375 static void path_rec_completion(int status
,
376 struct ib_sa_path_rec
*pathrec
,
379 struct ipoib_path
*path
= path_ptr
;
380 struct net_device
*dev
= path
->dev
;
381 struct ipoib_dev_priv
*priv
= netdev_priv(dev
);
382 struct ipoib_ah
*ah
= NULL
;
383 struct ipoib_neigh
*neigh
, *tn
;
384 struct sk_buff_head skqueue
;
389 ipoib_dbg(priv
, "PathRec LID 0x%04x for GID " IPOIB_GID_FMT
"\n",
390 be16_to_cpu(pathrec
->dlid
), IPOIB_GID_ARG(pathrec
->dgid
));
392 ipoib_dbg(priv
, "PathRec status %d for GID " IPOIB_GID_FMT
"\n",
393 status
, IPOIB_GID_ARG(path
->pathrec
.dgid
));
395 skb_queue_head_init(&skqueue
);
398 struct ib_ah_attr av
= {
399 .dlid
= be16_to_cpu(pathrec
->dlid
),
401 .port_num
= priv
->port
,
402 .static_rate
= pathrec
->rate
405 ah
= ipoib_create_ah(dev
, priv
->pd
, &av
);
408 spin_lock_irqsave(&priv
->lock
, flags
);
413 path
->pathrec
= *pathrec
;
415 ipoib_dbg(priv
, "created address handle %p for LID 0x%04x, SL %d\n",
416 ah
, be16_to_cpu(pathrec
->dlid
), pathrec
->sl
);
418 while ((skb
= __skb_dequeue(&path
->queue
)))
419 __skb_queue_tail(&skqueue
, skb
);
421 list_for_each_entry_safe(neigh
, tn
, &path
->neigh_list
, list
) {
422 kref_get(&path
->ah
->ref
);
423 neigh
->ah
= path
->ah
;
424 memcpy(&neigh
->dgid
.raw
, &path
->pathrec
.dgid
.raw
,
425 sizeof(union ib_gid
));
427 if (ipoib_cm_enabled(dev
, neigh
->neighbour
)) {
428 if (!ipoib_cm_get(neigh
))
429 ipoib_cm_set(neigh
, ipoib_cm_create_tx(dev
,
432 if (!ipoib_cm_get(neigh
)) {
433 list_del(&neigh
->list
);
435 ipoib_put_ah(neigh
->ah
);
436 ipoib_neigh_free(dev
, neigh
);
441 while ((skb
= __skb_dequeue(&neigh
->queue
)))
442 __skb_queue_tail(&skqueue
, skb
);
447 complete(&path
->done
);
449 spin_unlock_irqrestore(&priv
->lock
, flags
);
451 while ((skb
= __skb_dequeue(&skqueue
))) {
453 if (dev_queue_xmit(skb
))
454 ipoib_warn(priv
, "dev_queue_xmit failed "
455 "to requeue packet\n");
459 static struct ipoib_path
*path_rec_create(struct net_device
*dev
, void *gid
)
461 struct ipoib_dev_priv
*priv
= netdev_priv(dev
);
462 struct ipoib_path
*path
;
464 path
= kzalloc(sizeof *path
, GFP_ATOMIC
);
470 skb_queue_head_init(&path
->queue
);
472 INIT_LIST_HEAD(&path
->neigh_list
);
474 memcpy(path
->pathrec
.dgid
.raw
, gid
, sizeof (union ib_gid
));
475 path
->pathrec
.sgid
= priv
->local_gid
;
476 path
->pathrec
.pkey
= cpu_to_be16(priv
->pkey
);
477 path
->pathrec
.numb_path
= 1;
482 static int path_rec_start(struct net_device
*dev
,
483 struct ipoib_path
*path
)
485 struct ipoib_dev_priv
*priv
= netdev_priv(dev
);
487 ipoib_dbg(priv
, "Start path record lookup for " IPOIB_GID_FMT
"\n",
488 IPOIB_GID_ARG(path
->pathrec
.dgid
));
490 init_completion(&path
->done
);
493 ib_sa_path_rec_get(&ipoib_sa_client
, priv
->ca
, priv
->port
,
495 IB_SA_PATH_REC_DGID
|
496 IB_SA_PATH_REC_SGID
|
497 IB_SA_PATH_REC_NUMB_PATH
|
502 if (path
->query_id
< 0) {
503 ipoib_warn(priv
, "ib_sa_path_rec_get failed\n");
505 return path
->query_id
;
511 static void neigh_add_path(struct sk_buff
*skb
, struct net_device
*dev
)
513 struct ipoib_dev_priv
*priv
= netdev_priv(dev
);
514 struct ipoib_path
*path
;
515 struct ipoib_neigh
*neigh
;
517 neigh
= ipoib_neigh_alloc(skb
->dst
->neighbour
);
519 ++priv
->stats
.tx_dropped
;
520 dev_kfree_skb_any(skb
);
525 * We can only be called from ipoib_start_xmit, so we're
526 * inside tx_lock -- no need to save/restore flags.
528 spin_lock(&priv
->lock
);
530 path
= __path_find(dev
, skb
->dst
->neighbour
->ha
+ 4);
532 path
= path_rec_create(dev
, skb
->dst
->neighbour
->ha
+ 4);
536 __path_add(dev
, path
);
539 list_add_tail(&neigh
->list
, &path
->neigh_list
);
542 kref_get(&path
->ah
->ref
);
543 neigh
->ah
= path
->ah
;
544 memcpy(&neigh
->dgid
.raw
, &path
->pathrec
.dgid
.raw
,
545 sizeof(union ib_gid
));
547 if (ipoib_cm_enabled(dev
, neigh
->neighbour
)) {
548 if (!ipoib_cm_get(neigh
))
549 ipoib_cm_set(neigh
, ipoib_cm_create_tx(dev
, path
, neigh
));
550 if (!ipoib_cm_get(neigh
)) {
551 list_del(&neigh
->list
);
553 ipoib_put_ah(neigh
->ah
);
554 ipoib_neigh_free(dev
, neigh
);
557 if (skb_queue_len(&neigh
->queue
) < IPOIB_MAX_PATH_REC_QUEUE
)
558 __skb_queue_tail(&neigh
->queue
, skb
);
560 ipoib_warn(priv
, "queue length limit %d. Packet drop.\n",
561 skb_queue_len(&neigh
->queue
));
565 ipoib_send(dev
, skb
, path
->ah
, IPOIB_QPN(skb
->dst
->neighbour
->ha
));
569 if (!path
->query
&& path_rec_start(dev
, path
))
572 __skb_queue_tail(&neigh
->queue
, skb
);
575 spin_unlock(&priv
->lock
);
579 list_del(&neigh
->list
);
582 ipoib_neigh_free(dev
, neigh
);
584 ++priv
->stats
.tx_dropped
;
585 dev_kfree_skb_any(skb
);
587 spin_unlock(&priv
->lock
);
590 static void ipoib_path_lookup(struct sk_buff
*skb
, struct net_device
*dev
)
592 struct ipoib_dev_priv
*priv
= netdev_priv(skb
->dev
);
594 /* Look up path record for unicasts */
595 if (skb
->dst
->neighbour
->ha
[4] != 0xff) {
596 neigh_add_path(skb
, dev
);
600 /* Add in the P_Key for multicasts */
601 skb
->dst
->neighbour
->ha
[8] = (priv
->pkey
>> 8) & 0xff;
602 skb
->dst
->neighbour
->ha
[9] = priv
->pkey
& 0xff;
603 ipoib_mcast_send(dev
, skb
->dst
->neighbour
->ha
+ 4, skb
);
606 static void unicast_arp_send(struct sk_buff
*skb
, struct net_device
*dev
,
607 struct ipoib_pseudoheader
*phdr
)
609 struct ipoib_dev_priv
*priv
= netdev_priv(dev
);
610 struct ipoib_path
*path
;
613 * We can only be called from ipoib_start_xmit, so we're
614 * inside tx_lock -- no need to save/restore flags.
616 spin_lock(&priv
->lock
);
618 path
= __path_find(dev
, phdr
->hwaddr
+ 4);
620 path
= path_rec_create(dev
, phdr
->hwaddr
+ 4);
622 /* put pseudoheader back on for next time */
623 skb_push(skb
, sizeof *phdr
);
624 __skb_queue_tail(&path
->queue
, skb
);
626 if (path_rec_start(dev
, path
)) {
627 spin_unlock(&priv
->lock
);
628 path_free(dev
, path
);
631 __path_add(dev
, path
);
633 ++priv
->stats
.tx_dropped
;
634 dev_kfree_skb_any(skb
);
637 spin_unlock(&priv
->lock
);
642 ipoib_dbg(priv
, "Send unicast ARP to %04x\n",
643 be16_to_cpu(path
->pathrec
.dlid
));
645 ipoib_send(dev
, skb
, path
->ah
, IPOIB_QPN(phdr
->hwaddr
));
646 } else if ((path
->query
|| !path_rec_start(dev
, path
)) &&
647 skb_queue_len(&path
->queue
) < IPOIB_MAX_PATH_REC_QUEUE
) {
648 /* put pseudoheader back on for next time */
649 skb_push(skb
, sizeof *phdr
);
650 __skb_queue_tail(&path
->queue
, skb
);
652 ++priv
->stats
.tx_dropped
;
653 dev_kfree_skb_any(skb
);
656 spin_unlock(&priv
->lock
);
659 static int ipoib_start_xmit(struct sk_buff
*skb
, struct net_device
*dev
)
661 struct ipoib_dev_priv
*priv
= netdev_priv(dev
);
662 struct ipoib_neigh
*neigh
;
665 if (unlikely(!spin_trylock_irqsave(&priv
->tx_lock
, flags
)))
666 return NETDEV_TX_LOCKED
;
669 * Check if our queue is stopped. Since we have the LLTX bit
670 * set, we can't rely on netif_stop_queue() preventing our
671 * xmit function from being called with a full queue.
673 if (unlikely(netif_queue_stopped(dev
))) {
674 spin_unlock_irqrestore(&priv
->tx_lock
, flags
);
675 return NETDEV_TX_BUSY
;
678 if (likely(skb
->dst
&& skb
->dst
->neighbour
)) {
679 if (unlikely(!*to_ipoib_neigh(skb
->dst
->neighbour
))) {
680 ipoib_path_lookup(skb
, dev
);
684 neigh
= *to_ipoib_neigh(skb
->dst
->neighbour
);
686 if (ipoib_cm_get(neigh
)) {
687 if (ipoib_cm_up(neigh
)) {
688 ipoib_cm_send(dev
, skb
, ipoib_cm_get(neigh
));
691 } else if (neigh
->ah
) {
692 if (unlikely(memcmp(&neigh
->dgid
.raw
,
693 skb
->dst
->neighbour
->ha
+ 4,
694 sizeof(union ib_gid
)))) {
695 spin_lock(&priv
->lock
);
697 * It's safe to call ipoib_put_ah() inside
698 * priv->lock here, because we know that
699 * path->ah will always hold one more reference,
700 * so ipoib_put_ah() will never do more than
701 * decrement the ref count.
703 ipoib_put_ah(neigh
->ah
);
704 list_del(&neigh
->list
);
705 ipoib_neigh_free(dev
, neigh
);
706 spin_unlock(&priv
->lock
);
707 ipoib_path_lookup(skb
, dev
);
711 ipoib_send(dev
, skb
, neigh
->ah
, IPOIB_QPN(skb
->dst
->neighbour
->ha
));
715 if (skb_queue_len(&neigh
->queue
) < IPOIB_MAX_PATH_REC_QUEUE
) {
716 spin_lock(&priv
->lock
);
717 __skb_queue_tail(&neigh
->queue
, skb
);
718 spin_unlock(&priv
->lock
);
720 ++priv
->stats
.tx_dropped
;
721 dev_kfree_skb_any(skb
);
724 struct ipoib_pseudoheader
*phdr
=
725 (struct ipoib_pseudoheader
*) skb
->data
;
726 skb_pull(skb
, sizeof *phdr
);
728 if (phdr
->hwaddr
[4] == 0xff) {
729 /* Add in the P_Key for multicast*/
730 phdr
->hwaddr
[8] = (priv
->pkey
>> 8) & 0xff;
731 phdr
->hwaddr
[9] = priv
->pkey
& 0xff;
733 ipoib_mcast_send(dev
, phdr
->hwaddr
+ 4, skb
);
735 /* unicast GID -- should be ARP or RARP reply */
737 if ((be16_to_cpup((__be16
*) skb
->data
) != ETH_P_ARP
) &&
738 (be16_to_cpup((__be16
*) skb
->data
) != ETH_P_RARP
)) {
739 ipoib_warn(priv
, "Unicast, no %s: type %04x, QPN %06x "
741 skb
->dst
? "neigh" : "dst",
742 be16_to_cpup((__be16
*) skb
->data
),
743 IPOIB_QPN(phdr
->hwaddr
),
744 IPOIB_GID_RAW_ARG(phdr
->hwaddr
+ 4));
745 dev_kfree_skb_any(skb
);
746 ++priv
->stats
.tx_dropped
;
750 unicast_arp_send(skb
, dev
, phdr
);
755 spin_unlock_irqrestore(&priv
->tx_lock
, flags
);
760 static struct net_device_stats
*ipoib_get_stats(struct net_device
*dev
)
762 struct ipoib_dev_priv
*priv
= netdev_priv(dev
);
767 static void ipoib_timeout(struct net_device
*dev
)
769 struct ipoib_dev_priv
*priv
= netdev_priv(dev
);
771 ipoib_warn(priv
, "transmit timeout: latency %d msecs\n",
772 jiffies_to_msecs(jiffies
- dev
->trans_start
));
773 ipoib_warn(priv
, "queue stopped %d, tx_head %u, tx_tail %u\n",
774 netif_queue_stopped(dev
),
775 priv
->tx_head
, priv
->tx_tail
);
776 /* XXX reset QP, etc. */
779 static int ipoib_hard_header(struct sk_buff
*skb
,
780 struct net_device
*dev
,
782 void *daddr
, void *saddr
, unsigned len
)
784 struct ipoib_header
*header
;
786 header
= (struct ipoib_header
*) skb_push(skb
, sizeof *header
);
788 header
->proto
= htons(type
);
789 header
->reserved
= 0;
792 * If we don't have a neighbour structure, stuff the
793 * destination address onto the front of the skb so we can
794 * figure out where to send the packet later.
796 if ((!skb
->dst
|| !skb
->dst
->neighbour
) && daddr
) {
797 struct ipoib_pseudoheader
*phdr
=
798 (struct ipoib_pseudoheader
*) skb_push(skb
, sizeof *phdr
);
799 memcpy(phdr
->hwaddr
, daddr
, INFINIBAND_ALEN
);
805 static void ipoib_set_mcast_list(struct net_device
*dev
)
807 struct ipoib_dev_priv
*priv
= netdev_priv(dev
);
809 if (!test_bit(IPOIB_FLAG_OPER_UP
, &priv
->flags
)) {
810 ipoib_dbg(priv
, "IPOIB_FLAG_OPER_UP not set");
814 queue_work(ipoib_workqueue
, &priv
->restart_task
);
817 static void ipoib_neigh_cleanup(struct neighbour
*n
)
819 struct ipoib_neigh
*neigh
;
820 struct ipoib_dev_priv
*priv
= netdev_priv(n
->dev
);
822 struct ipoib_ah
*ah
= NULL
;
825 "neigh_cleanup for %06x " IPOIB_GID_FMT
"\n",
827 IPOIB_GID_RAW_ARG(n
->ha
+ 4));
829 spin_lock_irqsave(&priv
->lock
, flags
);
831 neigh
= *to_ipoib_neigh(n
);
835 list_del(&neigh
->list
);
836 ipoib_neigh_free(n
->dev
, neigh
);
839 spin_unlock_irqrestore(&priv
->lock
, flags
);
845 struct ipoib_neigh
*ipoib_neigh_alloc(struct neighbour
*neighbour
)
847 struct ipoib_neigh
*neigh
;
849 neigh
= kmalloc(sizeof *neigh
, GFP_ATOMIC
);
853 neigh
->neighbour
= neighbour
;
854 *to_ipoib_neigh(neighbour
) = neigh
;
855 skb_queue_head_init(&neigh
->queue
);
856 ipoib_cm_set(neigh
, NULL
);
861 void ipoib_neigh_free(struct net_device
*dev
, struct ipoib_neigh
*neigh
)
863 struct ipoib_dev_priv
*priv
= netdev_priv(dev
);
865 *to_ipoib_neigh(neigh
->neighbour
) = NULL
;
866 while ((skb
= __skb_dequeue(&neigh
->queue
))) {
867 ++priv
->stats
.tx_dropped
;
868 dev_kfree_skb_any(skb
);
870 if (ipoib_cm_get(neigh
))
871 ipoib_cm_destroy_tx(ipoib_cm_get(neigh
));
875 static int ipoib_neigh_setup_dev(struct net_device
*dev
, struct neigh_parms
*parms
)
877 parms
->neigh_cleanup
= ipoib_neigh_cleanup
;
882 int ipoib_dev_init(struct net_device
*dev
, struct ib_device
*ca
, int port
)
884 struct ipoib_dev_priv
*priv
= netdev_priv(dev
);
886 /* Allocate RX/TX "rings" to hold queued skbs */
887 priv
->rx_ring
= kzalloc(ipoib_recvq_size
* sizeof *priv
->rx_ring
,
889 if (!priv
->rx_ring
) {
890 printk(KERN_WARNING
"%s: failed to allocate RX ring (%d entries)\n",
891 ca
->name
, ipoib_recvq_size
);
895 priv
->tx_ring
= kzalloc(ipoib_sendq_size
* sizeof *priv
->tx_ring
,
897 if (!priv
->tx_ring
) {
898 printk(KERN_WARNING
"%s: failed to allocate TX ring (%d entries)\n",
899 ca
->name
, ipoib_sendq_size
);
900 goto out_rx_ring_cleanup
;
903 /* priv->tx_head & tx_tail are already 0 */
905 if (ipoib_ib_dev_init(dev
, ca
, port
))
906 goto out_tx_ring_cleanup
;
911 kfree(priv
->tx_ring
);
914 kfree(priv
->rx_ring
);
920 void ipoib_dev_cleanup(struct net_device
*dev
)
922 struct ipoib_dev_priv
*priv
= netdev_priv(dev
), *cpriv
, *tcpriv
;
924 ipoib_delete_debug_files(dev
);
926 /* Delete any child interfaces first */
927 list_for_each_entry_safe(cpriv
, tcpriv
, &priv
->child_intfs
, list
) {
928 unregister_netdev(cpriv
->dev
);
929 ipoib_dev_cleanup(cpriv
->dev
);
930 free_netdev(cpriv
->dev
);
933 ipoib_ib_dev_cleanup(dev
);
935 kfree(priv
->rx_ring
);
936 kfree(priv
->tx_ring
);
938 priv
->rx_ring
= NULL
;
939 priv
->tx_ring
= NULL
;
942 static void ipoib_setup(struct net_device
*dev
)
944 struct ipoib_dev_priv
*priv
= netdev_priv(dev
);
946 dev
->open
= ipoib_open
;
947 dev
->stop
= ipoib_stop
;
948 dev
->change_mtu
= ipoib_change_mtu
;
949 dev
->hard_start_xmit
= ipoib_start_xmit
;
950 dev
->get_stats
= ipoib_get_stats
;
951 dev
->tx_timeout
= ipoib_timeout
;
952 dev
->hard_header
= ipoib_hard_header
;
953 dev
->set_multicast_list
= ipoib_set_mcast_list
;
954 dev
->neigh_setup
= ipoib_neigh_setup_dev
;
956 dev
->watchdog_timeo
= HZ
;
958 dev
->flags
|= IFF_BROADCAST
| IFF_MULTICAST
;
961 * We add in INFINIBAND_ALEN to allow for the destination
962 * address "pseudoheader" for skbs without neighbour struct.
964 dev
->hard_header_len
= IPOIB_ENCAP_LEN
+ INFINIBAND_ALEN
;
965 dev
->addr_len
= INFINIBAND_ALEN
;
966 dev
->type
= ARPHRD_INFINIBAND
;
967 dev
->tx_queue_len
= ipoib_sendq_size
* 2;
968 dev
->features
= NETIF_F_VLAN_CHALLENGED
| NETIF_F_LLTX
;
970 /* MTU will be reset when mcast join happens */
971 dev
->mtu
= IPOIB_PACKET_SIZE
- IPOIB_ENCAP_LEN
;
972 priv
->mcast_mtu
= priv
->admin_mtu
= dev
->mtu
;
974 memcpy(dev
->broadcast
, ipv4_bcast_addr
, INFINIBAND_ALEN
);
976 netif_carrier_off(dev
);
978 SET_MODULE_OWNER(dev
);
982 spin_lock_init(&priv
->lock
);
983 spin_lock_init(&priv
->tx_lock
);
985 mutex_init(&priv
->mcast_mutex
);
986 mutex_init(&priv
->vlan_mutex
);
988 INIT_LIST_HEAD(&priv
->path_list
);
989 INIT_LIST_HEAD(&priv
->child_intfs
);
990 INIT_LIST_HEAD(&priv
->dead_ahs
);
991 INIT_LIST_HEAD(&priv
->multicast_list
);
993 INIT_DELAYED_WORK(&priv
->pkey_task
, ipoib_pkey_poll
);
994 INIT_DELAYED_WORK(&priv
->mcast_task
, ipoib_mcast_join_task
);
995 INIT_WORK(&priv
->flush_task
, ipoib_ib_dev_flush
);
996 INIT_WORK(&priv
->restart_task
, ipoib_mcast_restart_task
);
997 INIT_DELAYED_WORK(&priv
->ah_reap_task
, ipoib_reap_ah
);
1000 struct ipoib_dev_priv
*ipoib_intf_alloc(const char *name
)
1002 struct net_device
*dev
;
1004 dev
= alloc_netdev((int) sizeof (struct ipoib_dev_priv
), name
,
1009 return netdev_priv(dev
);
1012 static ssize_t
show_pkey(struct device
*dev
,
1013 struct device_attribute
*attr
, char *buf
)
1015 struct ipoib_dev_priv
*priv
= netdev_priv(to_net_dev(dev
));
1017 return sprintf(buf
, "0x%04x\n", priv
->pkey
);
1019 static DEVICE_ATTR(pkey
, S_IRUGO
, show_pkey
, NULL
);
1021 static ssize_t
create_child(struct device
*dev
,
1022 struct device_attribute
*attr
,
1023 const char *buf
, size_t count
)
1028 if (sscanf(buf
, "%i", &pkey
) != 1)
1031 if (pkey
< 0 || pkey
> 0xffff)
1035 * Set the full membership bit, so that we join the right
1036 * broadcast group, etc.
1040 ret
= ipoib_vlan_add(to_net_dev(dev
), pkey
);
1042 return ret
? ret
: count
;
1044 static DEVICE_ATTR(create_child
, S_IWUGO
, NULL
, create_child
);
1046 static ssize_t
delete_child(struct device
*dev
,
1047 struct device_attribute
*attr
,
1048 const char *buf
, size_t count
)
1053 if (sscanf(buf
, "%i", &pkey
) != 1)
1056 if (pkey
< 0 || pkey
> 0xffff)
1059 ret
= ipoib_vlan_delete(to_net_dev(dev
), pkey
);
1061 return ret
? ret
: count
;
1064 static DEVICE_ATTR(delete_child
, S_IWUGO
, NULL
, delete_child
);
1066 int ipoib_add_pkey_attr(struct net_device
*dev
)
1068 return device_create_file(&dev
->dev
, &dev_attr_pkey
);
1071 static struct net_device
*ipoib_add_port(const char *format
,
1072 struct ib_device
*hca
, u8 port
)
1074 struct ipoib_dev_priv
*priv
;
1075 int result
= -ENOMEM
;
1077 priv
= ipoib_intf_alloc(format
);
1079 goto alloc_mem_failed
;
1081 SET_NETDEV_DEV(priv
->dev
, hca
->dma_device
);
1083 result
= ib_query_pkey(hca
, port
, 0, &priv
->pkey
);
1085 printk(KERN_WARNING
"%s: ib_query_pkey port %d failed (ret = %d)\n",
1086 hca
->name
, port
, result
);
1087 goto alloc_mem_failed
;
1091 * Set the full membership bit, so that we join the right
1092 * broadcast group, etc.
1094 priv
->pkey
|= 0x8000;
1096 priv
->dev
->broadcast
[8] = priv
->pkey
>> 8;
1097 priv
->dev
->broadcast
[9] = priv
->pkey
& 0xff;
1099 result
= ib_query_gid(hca
, port
, 0, &priv
->local_gid
);
1101 printk(KERN_WARNING
"%s: ib_query_gid port %d failed (ret = %d)\n",
1102 hca
->name
, port
, result
);
1103 goto alloc_mem_failed
;
1105 memcpy(priv
->dev
->dev_addr
+ 4, priv
->local_gid
.raw
, sizeof (union ib_gid
));
1108 result
= ipoib_dev_init(priv
->dev
, hca
, port
);
1110 printk(KERN_WARNING
"%s: failed to initialize port %d (ret = %d)\n",
1111 hca
->name
, port
, result
);
1112 goto device_init_failed
;
1115 INIT_IB_EVENT_HANDLER(&priv
->event_handler
,
1116 priv
->ca
, ipoib_event
);
1117 result
= ib_register_event_handler(&priv
->event_handler
);
1119 printk(KERN_WARNING
"%s: ib_register_event_handler failed for "
1120 "port %d (ret = %d)\n",
1121 hca
->name
, port
, result
);
1125 result
= register_netdev(priv
->dev
);
1127 printk(KERN_WARNING
"%s: couldn't register ipoib port %d; error %d\n",
1128 hca
->name
, port
, result
);
1129 goto register_failed
;
1132 ipoib_create_debug_files(priv
->dev
);
1134 if (ipoib_cm_add_mode_attr(priv
->dev
))
1136 if (ipoib_add_pkey_attr(priv
->dev
))
1138 if (device_create_file(&priv
->dev
->dev
, &dev_attr_create_child
))
1140 if (device_create_file(&priv
->dev
->dev
, &dev_attr_delete_child
))
1146 ipoib_delete_debug_files(priv
->dev
);
1147 unregister_netdev(priv
->dev
);
1150 ib_unregister_event_handler(&priv
->event_handler
);
1151 flush_scheduled_work();
1154 ipoib_dev_cleanup(priv
->dev
);
1157 free_netdev(priv
->dev
);
1160 return ERR_PTR(result
);
1163 static void ipoib_add_one(struct ib_device
*device
)
1165 struct list_head
*dev_list
;
1166 struct net_device
*dev
;
1167 struct ipoib_dev_priv
*priv
;
1170 if (rdma_node_get_transport(device
->node_type
) != RDMA_TRANSPORT_IB
)
1173 dev_list
= kmalloc(sizeof *dev_list
, GFP_KERNEL
);
1177 INIT_LIST_HEAD(dev_list
);
1179 if (device
->node_type
== RDMA_NODE_IB_SWITCH
) {
1184 e
= device
->phys_port_cnt
;
1187 for (p
= s
; p
<= e
; ++p
) {
1188 dev
= ipoib_add_port("ib%d", device
, p
);
1190 priv
= netdev_priv(dev
);
1191 list_add_tail(&priv
->list
, dev_list
);
1195 ib_set_client_data(device
, &ipoib_client
, dev_list
);
1198 static void ipoib_remove_one(struct ib_device
*device
)
1200 struct ipoib_dev_priv
*priv
, *tmp
;
1201 struct list_head
*dev_list
;
1203 if (rdma_node_get_transport(device
->node_type
) != RDMA_TRANSPORT_IB
)
1206 dev_list
= ib_get_client_data(device
, &ipoib_client
);
1208 list_for_each_entry_safe(priv
, tmp
, dev_list
, list
) {
1209 ib_unregister_event_handler(&priv
->event_handler
);
1210 flush_scheduled_work();
1212 unregister_netdev(priv
->dev
);
1213 ipoib_dev_cleanup(priv
->dev
);
1214 free_netdev(priv
->dev
);
1220 static int __init
ipoib_init_module(void)
1224 ipoib_recvq_size
= roundup_pow_of_two(ipoib_recvq_size
);
1225 ipoib_recvq_size
= min(ipoib_recvq_size
, IPOIB_MAX_QUEUE_SIZE
);
1226 ipoib_recvq_size
= max(ipoib_recvq_size
, IPOIB_MIN_QUEUE_SIZE
);
1228 ipoib_sendq_size
= roundup_pow_of_two(ipoib_sendq_size
);
1229 ipoib_sendq_size
= min(ipoib_sendq_size
, IPOIB_MAX_QUEUE_SIZE
);
1230 ipoib_sendq_size
= max(ipoib_sendq_size
, IPOIB_MIN_QUEUE_SIZE
);
1232 ret
= ipoib_register_debugfs();
1237 * We create our own workqueue mainly because we want to be
1238 * able to flush it when devices are being removed. We can't
1239 * use schedule_work()/flush_scheduled_work() because both
1240 * unregister_netdev() and linkwatch_event take the rtnl lock,
1241 * so flush_scheduled_work() can deadlock during device
1244 ipoib_workqueue
= create_singlethread_workqueue("ipoib");
1245 if (!ipoib_workqueue
) {
1250 ib_sa_register_client(&ipoib_sa_client
);
1252 ret
= ib_register_client(&ipoib_client
);
1259 ib_sa_unregister_client(&ipoib_sa_client
);
1260 destroy_workqueue(ipoib_workqueue
);
1263 ipoib_unregister_debugfs();
1268 static void __exit
ipoib_cleanup_module(void)
1270 ib_unregister_client(&ipoib_client
);
1271 ib_sa_unregister_client(&ipoib_sa_client
);
1272 ipoib_unregister_debugfs();
1273 destroy_workqueue(ipoib_workqueue
);
1276 module_init(ipoib_init_module
);
1277 module_exit(ipoib_cleanup_module
);