2 * Copyright (c) 2004 Topspin Communications. All rights reserved.
4 * This software is available to you under a choice of one of two
5 * licenses. You may choose to be licensed under the terms of the GNU
6 * General Public License (GPL) Version 2, available from the file
7 * COPYING in the main directory of this source tree, or the
8 * OpenIB.org BSD license below:
10 * Redistribution and use in source and binary forms, with or
11 * without modification, are permitted provided that the following
14 * - Redistributions of source code must retain the above
15 * copyright notice, this list of conditions and the following
18 * - Redistributions in binary form must reproduce the above
19 * copyright notice, this list of conditions and the following
20 * disclaimer in the documentation and/or other materials
21 * provided with the distribution.
23 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
24 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
25 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
26 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
27 * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
28 * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
29 * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
32 * $Id: ipoib_main.c 1377 2004-12-23 19:57:12Z roland $
37 #include <linux/version.h>
38 #include <linux/module.h>
40 #include <linux/init.h>
41 #include <linux/slab.h>
42 #include <linux/vmalloc.h>
44 #include <linux/if_arp.h> /* For ARPHRD_xxx */
49 MODULE_AUTHOR("Roland Dreier");
50 MODULE_DESCRIPTION("IP-over-InfiniBand net driver");
51 MODULE_LICENSE("Dual BSD/GPL");
53 #ifdef CONFIG_INFINIBAND_IPOIB_DEBUG
54 int ipoib_debug_level
;
56 module_param_named(debug_level
, ipoib_debug_level
, int, 0644);
57 MODULE_PARM_DESC(debug_level
, "Enable debug tracing if > 0");
60 static const u8 ipv4_bcast_addr
[] = {
61 0x00, 0xff, 0xff, 0xff,
62 0xff, 0x12, 0x40, 0x1b, 0x00, 0x00, 0x00, 0x00,
63 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff
66 struct workqueue_struct
*ipoib_workqueue
;
68 static void ipoib_add_one(struct ib_device
*device
);
69 static void ipoib_remove_one(struct ib_device
*device
);
71 static struct ib_client ipoib_client
= {
74 .remove
= ipoib_remove_one
77 int ipoib_open(struct net_device
*dev
)
79 struct ipoib_dev_priv
*priv
= netdev_priv(dev
);
81 ipoib_dbg(priv
, "bringing up interface\n");
83 set_bit(IPOIB_FLAG_ADMIN_UP
, &priv
->flags
);
85 if (ipoib_pkey_dev_delay_open(dev
))
88 if (ipoib_ib_dev_open(dev
))
91 if (ipoib_ib_dev_up(dev
))
94 if (!test_bit(IPOIB_FLAG_SUBINTERFACE
, &priv
->flags
)) {
95 struct ipoib_dev_priv
*cpriv
;
97 /* Bring up any child interfaces too */
98 down(&priv
->vlan_mutex
);
99 list_for_each_entry(cpriv
, &priv
->child_intfs
, list
) {
102 flags
= cpriv
->dev
->flags
;
106 dev_change_flags(cpriv
->dev
, flags
| IFF_UP
);
108 up(&priv
->vlan_mutex
);
111 netif_start_queue(dev
);
116 static int ipoib_stop(struct net_device
*dev
)
118 struct ipoib_dev_priv
*priv
= netdev_priv(dev
);
120 ipoib_dbg(priv
, "stopping interface\n");
122 clear_bit(IPOIB_FLAG_ADMIN_UP
, &priv
->flags
);
124 netif_stop_queue(dev
);
126 ipoib_ib_dev_down(dev
);
127 ipoib_ib_dev_stop(dev
);
129 if (!test_bit(IPOIB_FLAG_SUBINTERFACE
, &priv
->flags
)) {
130 struct ipoib_dev_priv
*cpriv
;
132 /* Bring down any child interfaces too */
133 down(&priv
->vlan_mutex
);
134 list_for_each_entry(cpriv
, &priv
->child_intfs
, list
) {
137 flags
= cpriv
->dev
->flags
;
138 if (!(flags
& IFF_UP
))
141 dev_change_flags(cpriv
->dev
, flags
& ~IFF_UP
);
143 up(&priv
->vlan_mutex
);
149 static int ipoib_change_mtu(struct net_device
*dev
, int new_mtu
)
151 struct ipoib_dev_priv
*priv
= netdev_priv(dev
);
153 if (new_mtu
> IPOIB_PACKET_SIZE
- IPOIB_ENCAP_LEN
)
156 priv
->admin_mtu
= new_mtu
;
158 dev
->mtu
= min(priv
->mcast_mtu
, priv
->admin_mtu
);
163 static struct ipoib_path
*__path_find(struct net_device
*dev
,
166 struct ipoib_dev_priv
*priv
= netdev_priv(dev
);
167 struct rb_node
*n
= priv
->path_tree
.rb_node
;
168 struct ipoib_path
*path
;
172 path
= rb_entry(n
, struct ipoib_path
, rb_node
);
174 ret
= memcmp(gid
->raw
, path
->pathrec
.dgid
.raw
,
175 sizeof (union ib_gid
));
188 static int __path_add(struct net_device
*dev
, struct ipoib_path
*path
)
190 struct ipoib_dev_priv
*priv
= netdev_priv(dev
);
191 struct rb_node
**n
= &priv
->path_tree
.rb_node
;
192 struct rb_node
*pn
= NULL
;
193 struct ipoib_path
*tpath
;
198 tpath
= rb_entry(pn
, struct ipoib_path
, rb_node
);
200 ret
= memcmp(path
->pathrec
.dgid
.raw
, tpath
->pathrec
.dgid
.raw
,
201 sizeof (union ib_gid
));
210 rb_link_node(&path
->rb_node
, pn
, n
);
211 rb_insert_color(&path
->rb_node
, &priv
->path_tree
);
213 list_add_tail(&path
->list
, &priv
->path_list
);
218 static void path_free(struct net_device
*dev
, struct ipoib_path
*path
)
220 struct ipoib_dev_priv
*priv
= netdev_priv(dev
);
221 struct ipoib_neigh
*neigh
, *tn
;
225 while ((skb
= __skb_dequeue(&path
->queue
)))
226 dev_kfree_skb_irq(skb
);
228 spin_lock_irqsave(&priv
->lock
, flags
);
230 list_for_each_entry_safe(neigh
, tn
, &path
->neigh_list
, list
) {
232 * It's safe to call ipoib_put_ah() inside priv->lock
233 * here, because we know that path->ah will always
234 * hold one more reference, so ipoib_put_ah() will
235 * never do more than decrement the ref count.
238 ipoib_put_ah(neigh
->ah
);
239 *to_ipoib_neigh(neigh
->neighbour
) = NULL
;
240 neigh
->neighbour
->ops
->destructor
= NULL
;
244 spin_unlock_irqrestore(&priv
->lock
, flags
);
247 ipoib_put_ah(path
->ah
);
252 void ipoib_flush_paths(struct net_device
*dev
)
254 struct ipoib_dev_priv
*priv
= netdev_priv(dev
);
255 struct ipoib_path
*path
, *tp
;
256 LIST_HEAD(remove_list
);
259 spin_lock_irqsave(&priv
->lock
, flags
);
261 list_splice(&priv
->path_list
, &remove_list
);
262 INIT_LIST_HEAD(&priv
->path_list
);
264 list_for_each_entry(path
, &remove_list
, list
)
265 rb_erase(&path
->rb_node
, &priv
->path_tree
);
267 spin_unlock_irqrestore(&priv
->lock
, flags
);
269 list_for_each_entry_safe(path
, tp
, &remove_list
, list
) {
271 ib_sa_cancel_query(path
->query_id
, path
->query
);
272 wait_for_completion(&path
->done
);
273 path_free(dev
, path
);
277 static void path_rec_completion(int status
,
278 struct ib_sa_path_rec
*pathrec
,
281 struct ipoib_path
*path
= path_ptr
;
282 struct net_device
*dev
= path
->dev
;
283 struct ipoib_dev_priv
*priv
= netdev_priv(dev
);
284 struct ipoib_ah
*ah
= NULL
;
285 struct ipoib_neigh
*neigh
;
286 struct sk_buff_head skqueue
;
291 ipoib_dbg(priv
, "PathRec LID 0x%04x for GID " IPOIB_GID_FMT
"\n",
292 be16_to_cpu(pathrec
->dlid
), IPOIB_GID_ARG(pathrec
->dgid
));
294 ipoib_dbg(priv
, "PathRec status %d for GID " IPOIB_GID_FMT
"\n",
295 status
, IPOIB_GID_ARG(path
->pathrec
.dgid
));
297 skb_queue_head_init(&skqueue
);
300 struct ib_ah_attr av
= {
301 .dlid
= be16_to_cpu(pathrec
->dlid
),
303 .port_num
= priv
->port
305 int path_rate
= ib_sa_rate_enum_to_int(pathrec
->rate
);
307 if (path_rate
> 0 && priv
->local_rate
> path_rate
)
308 av
.static_rate
= (priv
->local_rate
- 1) / path_rate
;
310 ipoib_dbg(priv
, "static_rate %d for local port %dX, path %dX\n",
311 av
.static_rate
, priv
->local_rate
,
312 ib_sa_rate_enum_to_int(pathrec
->rate
));
314 ah
= ipoib_create_ah(dev
, priv
->pd
, &av
);
317 spin_lock_irqsave(&priv
->lock
, flags
);
322 path
->pathrec
= *pathrec
;
324 ipoib_dbg(priv
, "created address handle %p for LID 0x%04x, SL %d\n",
325 ah
, be16_to_cpu(pathrec
->dlid
), pathrec
->sl
);
327 while ((skb
= __skb_dequeue(&path
->queue
)))
328 __skb_queue_tail(&skqueue
, skb
);
330 list_for_each_entry(neigh
, &path
->neigh_list
, list
) {
331 kref_get(&path
->ah
->ref
);
332 neigh
->ah
= path
->ah
;
334 while ((skb
= __skb_dequeue(&neigh
->queue
)))
335 __skb_queue_tail(&skqueue
, skb
);
340 complete(&path
->done
);
342 spin_unlock_irqrestore(&priv
->lock
, flags
);
344 while ((skb
= __skb_dequeue(&skqueue
))) {
346 if (dev_queue_xmit(skb
))
347 ipoib_warn(priv
, "dev_queue_xmit failed "
348 "to requeue packet\n");
352 static struct ipoib_path
*path_rec_create(struct net_device
*dev
,
355 struct ipoib_dev_priv
*priv
= netdev_priv(dev
);
356 struct ipoib_path
*path
;
358 path
= kmalloc(sizeof *path
, GFP_ATOMIC
);
363 path
->pathrec
.dlid
= 0;
366 skb_queue_head_init(&path
->queue
);
368 INIT_LIST_HEAD(&path
->neigh_list
);
370 init_completion(&path
->done
);
372 memcpy(path
->pathrec
.dgid
.raw
, gid
->raw
, sizeof (union ib_gid
));
373 path
->pathrec
.sgid
= priv
->local_gid
;
374 path
->pathrec
.pkey
= cpu_to_be16(priv
->pkey
);
375 path
->pathrec
.numb_path
= 1;
380 static int path_rec_start(struct net_device
*dev
,
381 struct ipoib_path
*path
)
383 struct ipoib_dev_priv
*priv
= netdev_priv(dev
);
385 ipoib_dbg(priv
, "Start path record lookup for " IPOIB_GID_FMT
"\n",
386 IPOIB_GID_ARG(path
->pathrec
.dgid
));
389 ib_sa_path_rec_get(priv
->ca
, priv
->port
,
391 IB_SA_PATH_REC_DGID
|
392 IB_SA_PATH_REC_SGID
|
393 IB_SA_PATH_REC_NUMB_PATH
|
398 if (path
->query_id
< 0) {
399 ipoib_warn(priv
, "ib_sa_path_rec_get failed\n");
401 return path
->query_id
;
407 static void neigh_add_path(struct sk_buff
*skb
, struct net_device
*dev
)
409 struct ipoib_dev_priv
*priv
= netdev_priv(dev
);
410 struct ipoib_path
*path
;
411 struct ipoib_neigh
*neigh
;
413 neigh
= kmalloc(sizeof *neigh
, GFP_ATOMIC
);
415 ++priv
->stats
.tx_dropped
;
416 dev_kfree_skb_any(skb
);
420 skb_queue_head_init(&neigh
->queue
);
421 neigh
->neighbour
= skb
->dst
->neighbour
;
422 *to_ipoib_neigh(skb
->dst
->neighbour
) = neigh
;
425 * We can only be called from ipoib_start_xmit, so we're
426 * inside tx_lock -- no need to save/restore flags.
428 spin_lock(&priv
->lock
);
430 path
= __path_find(dev
, (union ib_gid
*) (skb
->dst
->neighbour
->ha
+ 4));
432 path
= path_rec_create(dev
,
433 (union ib_gid
*) (skb
->dst
->neighbour
->ha
+ 4));
437 __path_add(dev
, path
);
440 list_add_tail(&neigh
->list
, &path
->neigh_list
);
442 if (path
->pathrec
.dlid
) {
443 kref_get(&path
->ah
->ref
);
444 neigh
->ah
= path
->ah
;
446 ipoib_send(dev
, skb
, path
->ah
,
447 be32_to_cpup((__be32
*) skb
->dst
->neighbour
->ha
));
450 if (skb_queue_len(&neigh
->queue
) < IPOIB_MAX_PATH_REC_QUEUE
) {
451 __skb_queue_tail(&neigh
->queue
, skb
);
453 ++priv
->stats
.tx_dropped
;
454 dev_kfree_skb_any(skb
);
457 if (!path
->query
&& path_rec_start(dev
, path
))
461 spin_unlock(&priv
->lock
);
465 *to_ipoib_neigh(skb
->dst
->neighbour
) = NULL
;
466 list_del(&neigh
->list
);
467 neigh
->neighbour
->ops
->destructor
= NULL
;
470 ++priv
->stats
.tx_dropped
;
471 dev_kfree_skb_any(skb
);
473 spin_unlock(&priv
->lock
);
476 static void path_lookup(struct sk_buff
*skb
, struct net_device
*dev
)
478 struct ipoib_dev_priv
*priv
= netdev_priv(skb
->dev
);
480 /* Look up path record for unicasts */
481 if (skb
->dst
->neighbour
->ha
[4] != 0xff) {
482 neigh_add_path(skb
, dev
);
486 /* Add in the P_Key for multicasts */
487 skb
->dst
->neighbour
->ha
[8] = (priv
->pkey
>> 8) & 0xff;
488 skb
->dst
->neighbour
->ha
[9] = priv
->pkey
& 0xff;
489 ipoib_mcast_send(dev
, (union ib_gid
*) (skb
->dst
->neighbour
->ha
+ 4), skb
);
492 static void unicast_arp_send(struct sk_buff
*skb
, struct net_device
*dev
,
493 struct ipoib_pseudoheader
*phdr
)
495 struct ipoib_dev_priv
*priv
= netdev_priv(dev
);
496 struct ipoib_path
*path
;
499 * We can only be called from ipoib_start_xmit, so we're
500 * inside tx_lock -- no need to save/restore flags.
502 spin_lock(&priv
->lock
);
504 path
= __path_find(dev
, (union ib_gid
*) (phdr
->hwaddr
+ 4));
506 path
= path_rec_create(dev
,
507 (union ib_gid
*) (phdr
->hwaddr
+ 4));
509 /* put pseudoheader back on for next time */
510 skb_push(skb
, sizeof *phdr
);
511 __skb_queue_tail(&path
->queue
, skb
);
513 if (path_rec_start(dev
, path
)) {
514 spin_unlock(&priv
->lock
);
515 path_free(dev
, path
);
518 __path_add(dev
, path
);
520 ++priv
->stats
.tx_dropped
;
521 dev_kfree_skb_any(skb
);
524 spin_unlock(&priv
->lock
);
528 if (path
->pathrec
.dlid
) {
529 ipoib_dbg(priv
, "Send unicast ARP to %04x\n",
530 be16_to_cpu(path
->pathrec
.dlid
));
532 ipoib_send(dev
, skb
, path
->ah
,
533 be32_to_cpup((__be32
*) phdr
->hwaddr
));
534 } else if ((path
->query
|| !path_rec_start(dev
, path
)) &&
535 skb_queue_len(&path
->queue
) < IPOIB_MAX_PATH_REC_QUEUE
) {
536 /* put pseudoheader back on for next time */
537 skb_push(skb
, sizeof *phdr
);
538 __skb_queue_tail(&path
->queue
, skb
);
540 ++priv
->stats
.tx_dropped
;
541 dev_kfree_skb_any(skb
);
544 spin_unlock(&priv
->lock
);
547 static int ipoib_start_xmit(struct sk_buff
*skb
, struct net_device
*dev
)
549 struct ipoib_dev_priv
*priv
= netdev_priv(dev
);
550 struct ipoib_neigh
*neigh
;
553 local_irq_save(flags
);
554 if (!spin_trylock(&priv
->tx_lock
)) {
555 local_irq_restore(flags
);
556 return NETDEV_TX_LOCKED
;
560 * Check if our queue is stopped. Since we have the LLTX bit
561 * set, we can't rely on netif_stop_queue() preventing our
562 * xmit function from being called with a full queue.
564 if (unlikely(netif_queue_stopped(dev
))) {
565 spin_unlock_irqrestore(&priv
->tx_lock
, flags
);
566 return NETDEV_TX_BUSY
;
569 if (skb
->dst
&& skb
->dst
->neighbour
) {
570 if (unlikely(!*to_ipoib_neigh(skb
->dst
->neighbour
))) {
571 path_lookup(skb
, dev
);
575 neigh
= *to_ipoib_neigh(skb
->dst
->neighbour
);
577 if (likely(neigh
->ah
)) {
578 ipoib_send(dev
, skb
, neigh
->ah
,
579 be32_to_cpup((__be32
*) skb
->dst
->neighbour
->ha
));
583 if (skb_queue_len(&neigh
->queue
) < IPOIB_MAX_PATH_REC_QUEUE
) {
584 spin_lock(&priv
->lock
);
585 __skb_queue_tail(&neigh
->queue
, skb
);
586 spin_unlock(&priv
->lock
);
588 ++priv
->stats
.tx_dropped
;
589 dev_kfree_skb_any(skb
);
592 struct ipoib_pseudoheader
*phdr
=
593 (struct ipoib_pseudoheader
*) skb
->data
;
594 skb_pull(skb
, sizeof *phdr
);
596 if (phdr
->hwaddr
[4] == 0xff) {
597 /* Add in the P_Key for multicast*/
598 phdr
->hwaddr
[8] = (priv
->pkey
>> 8) & 0xff;
599 phdr
->hwaddr
[9] = priv
->pkey
& 0xff;
601 ipoib_mcast_send(dev
, (union ib_gid
*) (phdr
->hwaddr
+ 4), skb
);
603 /* unicast GID -- should be ARP reply */
605 if (be16_to_cpup((u16
*) skb
->data
) != ETH_P_ARP
) {
606 ipoib_warn(priv
, "Unicast, no %s: type %04x, QPN %06x "
608 skb
->dst
? "neigh" : "dst",
609 be16_to_cpup((u16
*) skb
->data
),
610 be32_to_cpup((u32
*) phdr
->hwaddr
),
611 IPOIB_GID_ARG(*(union ib_gid
*) (phdr
->hwaddr
+ 4)));
612 dev_kfree_skb_any(skb
);
613 ++priv
->stats
.tx_dropped
;
617 unicast_arp_send(skb
, dev
, phdr
);
622 spin_unlock_irqrestore(&priv
->tx_lock
, flags
);
627 static struct net_device_stats
*ipoib_get_stats(struct net_device
*dev
)
629 struct ipoib_dev_priv
*priv
= netdev_priv(dev
);
634 static void ipoib_timeout(struct net_device
*dev
)
636 struct ipoib_dev_priv
*priv
= netdev_priv(dev
);
638 ipoib_warn(priv
, "transmit timeout: latency %ld\n",
639 jiffies
- dev
->trans_start
);
640 /* XXX reset QP, etc. */
643 static int ipoib_hard_header(struct sk_buff
*skb
,
644 struct net_device
*dev
,
646 void *daddr
, void *saddr
, unsigned len
)
648 struct ipoib_header
*header
;
650 header
= (struct ipoib_header
*) skb_push(skb
, sizeof *header
);
652 header
->proto
= htons(type
);
653 header
->reserved
= 0;
656 * If we don't have a neighbour structure, stuff the
657 * destination address onto the front of the skb so we can
658 * figure out where to send the packet later.
660 if (!skb
->dst
|| !skb
->dst
->neighbour
) {
661 struct ipoib_pseudoheader
*phdr
=
662 (struct ipoib_pseudoheader
*) skb_push(skb
, sizeof *phdr
);
663 memcpy(phdr
->hwaddr
, daddr
, INFINIBAND_ALEN
);
669 static void ipoib_set_mcast_list(struct net_device
*dev
)
671 struct ipoib_dev_priv
*priv
= netdev_priv(dev
);
673 schedule_work(&priv
->restart_task
);
676 static void ipoib_neigh_destructor(struct neighbour
*n
)
678 struct ipoib_neigh
*neigh
;
679 struct ipoib_dev_priv
*priv
= netdev_priv(n
->dev
);
681 struct ipoib_ah
*ah
= NULL
;
684 "neigh_destructor for %06x " IPOIB_GID_FMT
"\n",
685 be32_to_cpup((__be32
*) n
->ha
),
686 IPOIB_GID_ARG(*((union ib_gid
*) (n
->ha
+ 4))));
688 spin_lock_irqsave(&priv
->lock
, flags
);
690 neigh
= *to_ipoib_neigh(n
);
694 list_del(&neigh
->list
);
695 *to_ipoib_neigh(n
) = NULL
;
699 spin_unlock_irqrestore(&priv
->lock
, flags
);
705 static int ipoib_neigh_setup(struct neighbour
*neigh
)
708 * Is this kosher? I can't find anybody in the kernel that
709 * sets neigh->destructor, so we should be able to set it here
712 neigh
->ops
->destructor
= ipoib_neigh_destructor
;
717 static int ipoib_neigh_setup_dev(struct net_device
*dev
, struct neigh_parms
*parms
)
719 parms
->neigh_setup
= ipoib_neigh_setup
;
724 int ipoib_dev_init(struct net_device
*dev
, struct ib_device
*ca
, int port
)
726 struct ipoib_dev_priv
*priv
= netdev_priv(dev
);
728 /* Allocate RX/TX "rings" to hold queued skbs */
730 priv
->rx_ring
= kmalloc(IPOIB_RX_RING_SIZE
* sizeof (struct ipoib_buf
),
732 if (!priv
->rx_ring
) {
733 printk(KERN_WARNING
"%s: failed to allocate RX ring (%d entries)\n",
734 ca
->name
, IPOIB_RX_RING_SIZE
);
737 memset(priv
->rx_ring
, 0,
738 IPOIB_RX_RING_SIZE
* sizeof (struct ipoib_buf
));
740 priv
->tx_ring
= kmalloc(IPOIB_TX_RING_SIZE
* sizeof (struct ipoib_buf
),
742 if (!priv
->tx_ring
) {
743 printk(KERN_WARNING
"%s: failed to allocate TX ring (%d entries)\n",
744 ca
->name
, IPOIB_TX_RING_SIZE
);
745 goto out_rx_ring_cleanup
;
747 memset(priv
->tx_ring
, 0,
748 IPOIB_TX_RING_SIZE
* sizeof (struct ipoib_buf
));
750 /* priv->tx_head & tx_tail are already 0 */
752 if (ipoib_ib_dev_init(dev
, ca
, port
))
753 goto out_tx_ring_cleanup
;
758 kfree(priv
->tx_ring
);
761 kfree(priv
->rx_ring
);
767 void ipoib_dev_cleanup(struct net_device
*dev
)
769 struct ipoib_dev_priv
*priv
= netdev_priv(dev
), *cpriv
, *tcpriv
;
771 ipoib_delete_debug_file(dev
);
773 /* Delete any child interfaces first */
774 list_for_each_entry_safe(cpriv
, tcpriv
, &priv
->child_intfs
, list
) {
775 unregister_netdev(cpriv
->dev
);
776 ipoib_dev_cleanup(cpriv
->dev
);
777 free_netdev(cpriv
->dev
);
780 ipoib_ib_dev_cleanup(dev
);
783 kfree(priv
->rx_ring
);
784 priv
->rx_ring
= NULL
;
788 kfree(priv
->tx_ring
);
789 priv
->tx_ring
= NULL
;
793 static void ipoib_setup(struct net_device
*dev
)
795 struct ipoib_dev_priv
*priv
= netdev_priv(dev
);
797 dev
->open
= ipoib_open
;
798 dev
->stop
= ipoib_stop
;
799 dev
->change_mtu
= ipoib_change_mtu
;
800 dev
->hard_start_xmit
= ipoib_start_xmit
;
801 dev
->get_stats
= ipoib_get_stats
;
802 dev
->tx_timeout
= ipoib_timeout
;
803 dev
->hard_header
= ipoib_hard_header
;
804 dev
->set_multicast_list
= ipoib_set_mcast_list
;
805 dev
->neigh_setup
= ipoib_neigh_setup_dev
;
807 dev
->watchdog_timeo
= HZ
;
809 dev
->rebuild_header
= NULL
;
810 dev
->set_mac_address
= NULL
;
811 dev
->header_cache_update
= NULL
;
813 dev
->flags
|= IFF_BROADCAST
| IFF_MULTICAST
;
816 * We add in INFINIBAND_ALEN to allow for the destination
817 * address "pseudoheader" for skbs without neighbour struct.
819 dev
->hard_header_len
= IPOIB_ENCAP_LEN
+ INFINIBAND_ALEN
;
820 dev
->addr_len
= INFINIBAND_ALEN
;
821 dev
->type
= ARPHRD_INFINIBAND
;
822 dev
->tx_queue_len
= IPOIB_TX_RING_SIZE
* 2;
823 dev
->features
= NETIF_F_VLAN_CHALLENGED
| NETIF_F_LLTX
;
825 /* MTU will be reset when mcast join happens */
826 dev
->mtu
= IPOIB_PACKET_SIZE
- IPOIB_ENCAP_LEN
;
827 priv
->mcast_mtu
= priv
->admin_mtu
= dev
->mtu
;
829 memcpy(dev
->broadcast
, ipv4_bcast_addr
, INFINIBAND_ALEN
);
831 netif_carrier_off(dev
);
833 SET_MODULE_OWNER(dev
);
837 spin_lock_init(&priv
->lock
);
838 spin_lock_init(&priv
->tx_lock
);
840 init_MUTEX(&priv
->mcast_mutex
);
841 init_MUTEX(&priv
->vlan_mutex
);
843 INIT_LIST_HEAD(&priv
->path_list
);
844 INIT_LIST_HEAD(&priv
->child_intfs
);
845 INIT_LIST_HEAD(&priv
->dead_ahs
);
846 INIT_LIST_HEAD(&priv
->multicast_list
);
848 INIT_WORK(&priv
->pkey_task
, ipoib_pkey_poll
, priv
->dev
);
849 INIT_WORK(&priv
->mcast_task
, ipoib_mcast_join_task
, priv
->dev
);
850 INIT_WORK(&priv
->flush_task
, ipoib_ib_dev_flush
, priv
->dev
);
851 INIT_WORK(&priv
->restart_task
, ipoib_mcast_restart_task
, priv
->dev
);
852 INIT_WORK(&priv
->ah_reap_task
, ipoib_reap_ah
, priv
->dev
);
855 struct ipoib_dev_priv
*ipoib_intf_alloc(const char *name
)
857 struct net_device
*dev
;
859 dev
= alloc_netdev((int) sizeof (struct ipoib_dev_priv
), name
,
864 return netdev_priv(dev
);
867 static ssize_t
show_pkey(struct class_device
*cdev
, char *buf
)
869 struct ipoib_dev_priv
*priv
=
870 netdev_priv(container_of(cdev
, struct net_device
, class_dev
));
872 return sprintf(buf
, "0x%04x\n", priv
->pkey
);
874 static CLASS_DEVICE_ATTR(pkey
, S_IRUGO
, show_pkey
, NULL
);
876 static ssize_t
create_child(struct class_device
*cdev
,
877 const char *buf
, size_t count
)
882 if (sscanf(buf
, "%i", &pkey
) != 1)
885 if (pkey
< 0 || pkey
> 0xffff)
888 ret
= ipoib_vlan_add(container_of(cdev
, struct net_device
, class_dev
),
891 return ret
? ret
: count
;
893 static CLASS_DEVICE_ATTR(create_child
, S_IWUGO
, NULL
, create_child
);
895 static ssize_t
delete_child(struct class_device
*cdev
,
896 const char *buf
, size_t count
)
901 if (sscanf(buf
, "%i", &pkey
) != 1)
904 if (pkey
< 0 || pkey
> 0xffff)
907 ret
= ipoib_vlan_delete(container_of(cdev
, struct net_device
, class_dev
),
910 return ret
? ret
: count
;
913 static CLASS_DEVICE_ATTR(delete_child
, S_IWUGO
, NULL
, delete_child
);
915 int ipoib_add_pkey_attr(struct net_device
*dev
)
917 return class_device_create_file(&dev
->class_dev
,
918 &class_device_attr_pkey
);
921 static struct net_device
*ipoib_add_port(const char *format
,
922 struct ib_device
*hca
, u8 port
)
924 struct ipoib_dev_priv
*priv
;
925 int result
= -ENOMEM
;
927 priv
= ipoib_intf_alloc(format
);
929 goto alloc_mem_failed
;
931 SET_NETDEV_DEV(priv
->dev
, hca
->dma_device
);
933 result
= ib_query_pkey(hca
, port
, 0, &priv
->pkey
);
935 printk(KERN_WARNING
"%s: ib_query_pkey port %d failed (ret = %d)\n",
936 hca
->name
, port
, result
);
937 goto alloc_mem_failed
;
940 priv
->dev
->broadcast
[8] = priv
->pkey
>> 8;
941 priv
->dev
->broadcast
[9] = priv
->pkey
& 0xff;
943 result
= ib_query_gid(hca
, port
, 0, &priv
->local_gid
);
945 printk(KERN_WARNING
"%s: ib_query_gid port %d failed (ret = %d)\n",
946 hca
->name
, port
, result
);
947 goto alloc_mem_failed
;
949 memcpy(priv
->dev
->dev_addr
+ 4, priv
->local_gid
.raw
, sizeof (union ib_gid
));
952 result
= ipoib_dev_init(priv
->dev
, hca
, port
);
954 printk(KERN_WARNING
"%s: failed to initialize port %d (ret = %d)\n",
955 hca
->name
, port
, result
);
956 goto device_init_failed
;
959 INIT_IB_EVENT_HANDLER(&priv
->event_handler
,
960 priv
->ca
, ipoib_event
);
961 result
= ib_register_event_handler(&priv
->event_handler
);
963 printk(KERN_WARNING
"%s: ib_register_event_handler failed for "
964 "port %d (ret = %d)\n",
965 hca
->name
, port
, result
);
969 result
= register_netdev(priv
->dev
);
971 printk(KERN_WARNING
"%s: couldn't register ipoib port %d; error %d\n",
972 hca
->name
, port
, result
);
973 goto register_failed
;
976 if (ipoib_create_debug_file(priv
->dev
))
979 if (ipoib_add_pkey_attr(priv
->dev
))
981 if (class_device_create_file(&priv
->dev
->class_dev
,
982 &class_device_attr_create_child
))
984 if (class_device_create_file(&priv
->dev
->class_dev
,
985 &class_device_attr_delete_child
))
991 ipoib_delete_debug_file(priv
->dev
);
994 unregister_netdev(priv
->dev
);
997 ib_unregister_event_handler(&priv
->event_handler
);
1000 ipoib_dev_cleanup(priv
->dev
);
1003 free_netdev(priv
->dev
);
1006 return ERR_PTR(result
);
1009 static void ipoib_add_one(struct ib_device
*device
)
1011 struct list_head
*dev_list
;
1012 struct net_device
*dev
;
1013 struct ipoib_dev_priv
*priv
;
1016 dev_list
= kmalloc(sizeof *dev_list
, GFP_KERNEL
);
1020 INIT_LIST_HEAD(dev_list
);
1022 if (device
->node_type
== IB_NODE_SWITCH
) {
1027 e
= device
->phys_port_cnt
;
1030 for (p
= s
; p
<= e
; ++p
) {
1031 dev
= ipoib_add_port("ib%d", device
, p
);
1033 priv
= netdev_priv(dev
);
1034 list_add_tail(&priv
->list
, dev_list
);
1038 ib_set_client_data(device
, &ipoib_client
, dev_list
);
1041 static void ipoib_remove_one(struct ib_device
*device
)
1043 struct ipoib_dev_priv
*priv
, *tmp
;
1044 struct list_head
*dev_list
;
1046 dev_list
= ib_get_client_data(device
, &ipoib_client
);
1048 list_for_each_entry_safe(priv
, tmp
, dev_list
, list
) {
1049 ib_unregister_event_handler(&priv
->event_handler
);
1051 unregister_netdev(priv
->dev
);
1052 ipoib_dev_cleanup(priv
->dev
);
1053 free_netdev(priv
->dev
);
1057 static int __init
ipoib_init_module(void)
1061 ret
= ipoib_register_debugfs();
1066 * We create our own workqueue mainly because we want to be
1067 * able to flush it when devices are being removed. We can't
1068 * use schedule_work()/flush_scheduled_work() because both
1069 * unregister_netdev() and linkwatch_event take the rtnl lock,
1070 * so flush_scheduled_work() can deadlock during device
1073 ipoib_workqueue
= create_singlethread_workqueue("ipoib");
1074 if (!ipoib_workqueue
) {
1079 ret
= ib_register_client(&ipoib_client
);
1086 destroy_workqueue(ipoib_workqueue
);
1089 ipoib_unregister_debugfs();
1094 static void __exit
ipoib_cleanup_module(void)
1096 ib_unregister_client(&ipoib_client
);
1097 ipoib_unregister_debugfs();
1098 destroy_workqueue(ipoib_workqueue
);
1101 module_init(ipoib_init_module
);
1102 module_exit(ipoib_cleanup_module
);