blob: aca3b44f7aed130b71a00a264c1e964fab3640ac [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * Copyright (c) 2004 Topspin Communications. All rights reserved.
Roland Dreier2a1d9b72005-08-10 23:03:10 -07003 * Copyright (c) 2005 Sun Microsystems, Inc. All rights reserved.
4 * Copyright (c) 2004 Voltaire, Inc. All rights reserved.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005 *
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:
11 *
12 * Redistribution and use in source and binary forms, with or
13 * without modification, are permitted provided that the following
14 * conditions are met:
15 *
16 * - Redistributions of source code must retain the above
17 * copyright notice, this list of conditions and the following
18 * disclaimer.
19 *
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.
24 *
25 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
26 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
27 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
28 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
29 * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
30 * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
31 * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
32 * SOFTWARE.
Linus Torvalds1da177e2005-04-16 15:20:36 -070033 */
34
35#include "ipoib.h"
36
Linus Torvalds1da177e2005-04-16 15:20:36 -070037#include <linux/module.h>
38
39#include <linux/init.h>
40#include <linux/slab.h>
Shirley Ma0f485252006-04-10 09:43:58 -070041#include <linux/kernel.h>
Roland Dreier10313cb2008-03-12 07:51:03 -070042#include <linux/vmalloc.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070043
44#include <linux/if_arp.h> /* For ARPHRD_xxx */
45
46#include <linux/ip.h>
47#include <linux/in.h>
48
Arnaldo Carvalho de Melo14c85022005-12-27 02:43:12 -020049#include <net/dst.h>
50
Linus Torvalds1da177e2005-04-16 15:20:36 -070051MODULE_AUTHOR("Roland Dreier");
52MODULE_DESCRIPTION("IP-over-InfiniBand net driver");
53MODULE_LICENSE("Dual BSD/GPL");
54
Shirley Ma0f485252006-04-10 09:43:58 -070055int ipoib_sendq_size __read_mostly = IPOIB_TX_RING_SIZE;
56int ipoib_recvq_size __read_mostly = IPOIB_RX_RING_SIZE;
57
58module_param_named(send_queue_size, ipoib_sendq_size, int, 0444);
59MODULE_PARM_DESC(send_queue_size, "Number of descriptors in send queue");
60module_param_named(recv_queue_size, ipoib_recvq_size, int, 0444);
61MODULE_PARM_DESC(recv_queue_size, "Number of descriptors in receive queue");
62
Linus Torvalds1da177e2005-04-16 15:20:36 -070063#ifdef CONFIG_INFINIBAND_IPOIB_DEBUG
64int ipoib_debug_level;
65
66module_param_named(debug_level, ipoib_debug_level, int, 0644);
67MODULE_PARM_DESC(debug_level, "Enable debug tracing if > 0");
68#endif
69
Roland Dreier1732b0e2005-11-07 10:33:11 -080070struct ipoib_path_iter {
71 struct net_device *dev;
72 struct ipoib_path path;
73};
74
Linus Torvalds1da177e2005-04-16 15:20:36 -070075static const u8 ipv4_bcast_addr[] = {
76 0x00, 0xff, 0xff, 0xff,
77 0xff, 0x12, 0x40, 0x1b, 0x00, 0x00, 0x00, 0x00,
78 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff
79};
80
81struct workqueue_struct *ipoib_workqueue;
82
Michael S. Tsirkinc1a0b232006-08-21 16:40:12 -070083struct ib_sa_client ipoib_sa_client;
84
Linus Torvalds1da177e2005-04-16 15:20:36 -070085static void ipoib_add_one(struct ib_device *device);
86static void ipoib_remove_one(struct ib_device *device);
87
88static struct ib_client ipoib_client = {
89 .name = "ipoib",
90 .add = ipoib_add_one,
91 .remove = ipoib_remove_one
92};
93
94int ipoib_open(struct net_device *dev)
95{
96 struct ipoib_dev_priv *priv = netdev_priv(dev);
97
98 ipoib_dbg(priv, "bringing up interface\n");
99
Yossi Etigine028cc52009-04-20 13:58:08 -0700100 set_bit(IPOIB_FLAG_ADMIN_UP, &priv->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101
102 if (ipoib_pkey_dev_delay_open(dev))
103 return 0;
104
Roland Dreierb8a1b1c2009-01-14 14:55:41 -0800105 if (ipoib_ib_dev_open(dev))
106 goto err_disable;
Yossi Etiginfe25c562008-11-12 10:24:36 -0800107
Roland Dreierb8a1b1c2009-01-14 14:55:41 -0800108 if (ipoib_ib_dev_up(dev))
109 goto err_stop;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110
111 if (!test_bit(IPOIB_FLAG_SUBINTERFACE, &priv->flags)) {
112 struct ipoib_dev_priv *cpriv;
113
114 /* Bring up any child interfaces too */
Ingo Molnar95ed6442006-01-13 14:51:39 -0800115 mutex_lock(&priv->vlan_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116 list_for_each_entry(cpriv, &priv->child_intfs, list) {
117 int flags;
118
119 flags = cpriv->dev->flags;
120 if (flags & IFF_UP)
121 continue;
122
123 dev_change_flags(cpriv->dev, flags | IFF_UP);
124 }
Ingo Molnar95ed6442006-01-13 14:51:39 -0800125 mutex_unlock(&priv->vlan_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126 }
127
128 netif_start_queue(dev);
129
130 return 0;
Roland Dreierb8a1b1c2009-01-14 14:55:41 -0800131
132err_stop:
133 ipoib_ib_dev_stop(dev, 1);
134
135err_disable:
Roland Dreierb8a1b1c2009-01-14 14:55:41 -0800136 clear_bit(IPOIB_FLAG_ADMIN_UP, &priv->flags);
137
138 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139}
140
141static int ipoib_stop(struct net_device *dev)
142{
143 struct ipoib_dev_priv *priv = netdev_priv(dev);
144
145 ipoib_dbg(priv, "stopping interface\n");
146
147 clear_bit(IPOIB_FLAG_ADMIN_UP, &priv->flags);
148
149 netif_stop_queue(dev);
150
Roland Dreiera77a57a2008-08-19 15:01:32 -0700151 ipoib_ib_dev_down(dev, 0);
152 ipoib_ib_dev_stop(dev, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153
154 if (!test_bit(IPOIB_FLAG_SUBINTERFACE, &priv->flags)) {
155 struct ipoib_dev_priv *cpriv;
156
157 /* Bring down any child interfaces too */
Ingo Molnar95ed6442006-01-13 14:51:39 -0800158 mutex_lock(&priv->vlan_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159 list_for_each_entry(cpriv, &priv->child_intfs, list) {
160 int flags;
161
162 flags = cpriv->dev->flags;
163 if (!(flags & IFF_UP))
164 continue;
165
166 dev_change_flags(cpriv->dev, flags & ~IFF_UP);
167 }
Ingo Molnar95ed6442006-01-13 14:51:39 -0800168 mutex_unlock(&priv->vlan_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169 }
170
171 return 0;
172}
173
174static int ipoib_change_mtu(struct net_device *dev, int new_mtu)
175{
176 struct ipoib_dev_priv *priv = netdev_priv(dev);
177
Michael S. Tsirkin839fcab2007-02-05 22:12:23 +0200178 /* dev->mtu > 2K ==> connected mode */
Pradeep Satyanarayana586a6932007-12-21 13:08:23 -0800179 if (ipoib_cm_admin_enabled(dev)) {
180 if (new_mtu > ipoib_cm_max_mtu(dev))
181 return -EINVAL;
182
Michael S. Tsirkin839fcab2007-02-05 22:12:23 +0200183 if (new_mtu > priv->mcast_mtu)
184 ipoib_warn(priv, "mtu > %d will cause multicast packet drops.\n",
185 priv->mcast_mtu);
Pradeep Satyanarayana586a6932007-12-21 13:08:23 -0800186
Michael S. Tsirkin839fcab2007-02-05 22:12:23 +0200187 dev->mtu = new_mtu;
188 return 0;
189 }
190
Shirley Mabc7b3a32008-04-23 11:55:45 -0700191 if (new_mtu > IPOIB_UD_MTU(priv->max_ib_mtu))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192 return -EINVAL;
193
194 priv->admin_mtu = new_mtu;
195
196 dev->mtu = min(priv->mcast_mtu, priv->admin_mtu);
197
198 return 0;
199}
200
Jack Morgenstein37c22a72006-05-29 19:14:05 +0300201static struct ipoib_path *__path_find(struct net_device *dev, void *gid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202{
203 struct ipoib_dev_priv *priv = netdev_priv(dev);
204 struct rb_node *n = priv->path_tree.rb_node;
205 struct ipoib_path *path;
206 int ret;
207
208 while (n) {
209 path = rb_entry(n, struct ipoib_path, rb_node);
210
Jack Morgenstein37c22a72006-05-29 19:14:05 +0300211 ret = memcmp(gid, path->pathrec.dgid.raw,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212 sizeof (union ib_gid));
213
214 if (ret < 0)
215 n = n->rb_left;
216 else if (ret > 0)
217 n = n->rb_right;
218 else
219 return path;
220 }
221
222 return NULL;
223}
224
225static int __path_add(struct net_device *dev, struct ipoib_path *path)
226{
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;
231 int ret;
232
233 while (*n) {
234 pn = *n;
235 tpath = rb_entry(pn, struct ipoib_path, rb_node);
236
237 ret = memcmp(path->pathrec.dgid.raw, tpath->pathrec.dgid.raw,
238 sizeof (union ib_gid));
239 if (ret < 0)
240 n = &pn->rb_left;
241 else if (ret > 0)
242 n = &pn->rb_right;
243 else
244 return -EEXIST;
245 }
246
247 rb_link_node(&path->rb_node, pn, n);
248 rb_insert_color(&path->rb_node, &priv->path_tree);
249
250 list_add_tail(&path->list, &priv->path_list);
251
252 return 0;
253}
254
255static void path_free(struct net_device *dev, struct ipoib_path *path)
256{
257 struct ipoib_dev_priv *priv = netdev_priv(dev);
258 struct ipoib_neigh *neigh, *tn;
259 struct sk_buff *skb;
260 unsigned long flags;
261
262 while ((skb = __skb_dequeue(&path->queue)))
263 dev_kfree_skb_irq(skb);
264
265 spin_lock_irqsave(&priv->lock, flags);
266
267 list_for_each_entry_safe(neigh, tn, &path->neigh_list, list) {
268 /*
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.
273 */
274 if (neigh->ah)
275 ipoib_put_ah(neigh->ah);
Michael S. Tsirkind2e06552006-04-04 19:59:40 +0300276
Michael S. Tsirkin2745b5b2006-11-16 14:16:47 +0200277 ipoib_neigh_free(dev, neigh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278 }
279
280 spin_unlock_irqrestore(&priv->lock, flags);
281
282 if (path->ah)
283 ipoib_put_ah(path->ah);
284
285 kfree(path);
286}
287
Roland Dreier1732b0e2005-11-07 10:33:11 -0800288#ifdef CONFIG_INFINIBAND_IPOIB_DEBUG
289
290struct ipoib_path_iter *ipoib_path_iter_init(struct net_device *dev)
291{
292 struct ipoib_path_iter *iter;
293
294 iter = kmalloc(sizeof *iter, GFP_KERNEL);
295 if (!iter)
296 return NULL;
297
298 iter->dev = dev;
299 memset(iter->path.pathrec.dgid.raw, 0, 16);
300
301 if (ipoib_path_iter_next(iter)) {
302 kfree(iter);
303 return NULL;
304 }
305
306 return iter;
307}
308
309int ipoib_path_iter_next(struct ipoib_path_iter *iter)
310{
311 struct ipoib_dev_priv *priv = netdev_priv(iter->dev);
312 struct rb_node *n;
313 struct ipoib_path *path;
314 int ret = 1;
315
316 spin_lock_irq(&priv->lock);
317
318 n = rb_first(&priv->path_tree);
319
320 while (n) {
321 path = rb_entry(n, struct ipoib_path, rb_node);
322
323 if (memcmp(iter->path.pathrec.dgid.raw, path->pathrec.dgid.raw,
324 sizeof (union ib_gid)) < 0) {
325 iter->path = *path;
326 ret = 0;
327 break;
328 }
329
330 n = rb_next(n);
331 }
332
333 spin_unlock_irq(&priv->lock);
334
335 return ret;
336}
337
338void ipoib_path_iter_read(struct ipoib_path_iter *iter,
339 struct ipoib_path *path)
340{
341 *path = iter->path;
342}
343
344#endif /* CONFIG_INFINIBAND_IPOIB_DEBUG */
345
Moni Shouaee1e2c82008-07-14 23:48:49 -0700346void ipoib_mark_paths_invalid(struct net_device *dev)
347{
348 struct ipoib_dev_priv *priv = netdev_priv(dev);
349 struct ipoib_path *path, *tp;
350
351 spin_lock_irq(&priv->lock);
352
353 list_for_each_entry_safe(path, tp, &priv->path_list, list) {
Harvey Harrison5b095d9892008-10-29 12:52:50 -0700354 ipoib_dbg(priv, "mark path LID 0x%04x GID %pI6 invalid\n",
Moni Shouaee1e2c82008-07-14 23:48:49 -0700355 be16_to_cpu(path->pathrec.dlid),
Harvey Harrisonfcace2f2008-10-28 22:37:22 -0700356 path->pathrec.dgid.raw);
Moni Shouaee1e2c82008-07-14 23:48:49 -0700357 path->valid = 0;
358 }
359
360 spin_unlock_irq(&priv->lock);
361}
362
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363void ipoib_flush_paths(struct net_device *dev)
364{
365 struct ipoib_dev_priv *priv = netdev_priv(dev);
366 struct ipoib_path *path, *tp;
367 LIST_HEAD(remove_list);
Roland Dreier943c2462008-09-30 10:36:21 -0700368 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369
Roland Dreier943c2462008-09-30 10:36:21 -0700370 netif_tx_lock_bh(dev);
371 spin_lock_irqsave(&priv->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372
Robert P. J. Day157de222008-04-16 21:09:26 -0700373 list_splice_init(&priv->path_list, &remove_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374
375 list_for_each_entry(path, &remove_list, list)
376 rb_erase(&path->rb_node, &priv->path_tree);
377
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378 list_for_each_entry_safe(path, tp, &remove_list, list) {
379 if (path->query)
380 ib_sa_cancel_query(path->query_id, path->query);
Roland Dreier943c2462008-09-30 10:36:21 -0700381 spin_unlock_irqrestore(&priv->lock, flags);
382 netif_tx_unlock_bh(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383 wait_for_completion(&path->done);
384 path_free(dev, path);
Roland Dreier943c2462008-09-30 10:36:21 -0700385 netif_tx_lock_bh(dev);
386 spin_lock_irqsave(&priv->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387 }
Roland Dreier943c2462008-09-30 10:36:21 -0700388
389 spin_unlock_irqrestore(&priv->lock, flags);
390 netif_tx_unlock_bh(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391}
392
393static void path_rec_completion(int status,
394 struct ib_sa_path_rec *pathrec,
395 void *path_ptr)
396{
397 struct ipoib_path *path = path_ptr;
398 struct net_device *dev = path->dev;
399 struct ipoib_dev_priv *priv = netdev_priv(dev);
400 struct ipoib_ah *ah = NULL;
Roland Dreierc9da4ba2008-09-25 15:26:15 -0700401 struct ipoib_ah *old_ah = NULL;
Michael S. Tsirkind04d01b2007-03-22 14:40:16 -0700402 struct ipoib_neigh *neigh, *tn;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403 struct sk_buff_head skqueue;
404 struct sk_buff *skb;
405 unsigned long flags;
406
Roland Dreier843613b2007-02-26 12:57:08 -0800407 if (!status)
Harvey Harrison5b095d9892008-10-29 12:52:50 -0700408 ipoib_dbg(priv, "PathRec LID 0x%04x for GID %pI6\n",
Harvey Harrisonfcace2f2008-10-28 22:37:22 -0700409 be16_to_cpu(pathrec->dlid), pathrec->dgid.raw);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410 else
Harvey Harrison5b095d9892008-10-29 12:52:50 -0700411 ipoib_dbg(priv, "PathRec status %d for GID %pI6\n",
Harvey Harrisonfcace2f2008-10-28 22:37:22 -0700412 status, path->pathrec.dgid.raw);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413
414 skb_queue_head_init(&skqueue);
415
416 if (!status) {
Sean Hefty46f1b3d2007-04-05 11:50:11 -0700417 struct ib_ah_attr av;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418
Sean Hefty46f1b3d2007-04-05 11:50:11 -0700419 if (!ib_init_ah_from_path(priv->ca, priv->port, pathrec, &av))
420 ah = ipoib_create_ah(dev, priv->pd, &av);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421 }
422
423 spin_lock_irqsave(&priv->lock, flags);
424
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425 if (ah) {
426 path->pathrec = *pathrec;
427
Roland Dreierc9da4ba2008-09-25 15:26:15 -0700428 old_ah = path->ah;
429 path->ah = ah;
430
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431 ipoib_dbg(priv, "created address handle %p for LID 0x%04x, SL %d\n",
432 ah, be16_to_cpu(pathrec->dlid), pathrec->sl);
433
434 while ((skb = __skb_dequeue(&path->queue)))
435 __skb_queue_tail(&skqueue, skb);
436
Michael S. Tsirkind04d01b2007-03-22 14:40:16 -0700437 list_for_each_entry_safe(neigh, tn, &path->neigh_list, list) {
Moni Shouaee1e2c82008-07-14 23:48:49 -0700438 if (neigh->ah) {
439 WARN_ON(neigh->ah != old_ah);
440 /*
441 * Dropping the ah reference inside
442 * priv->lock is safe here, because we
443 * will hold one more reference from
444 * the original value of path->ah (ie
445 * old_ah).
446 */
447 ipoib_put_ah(neigh->ah);
448 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449 kref_get(&path->ah->ref);
450 neigh->ah = path->ah;
Michael S. Tsirkin8a7f7522006-07-19 17:44:37 +0300451 memcpy(&neigh->dgid.raw, &path->pathrec.dgid.raw,
452 sizeof(union ib_gid));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453
Michael S. Tsirkin839fcab2007-02-05 22:12:23 +0200454 if (ipoib_cm_enabled(dev, neigh->neighbour)) {
455 if (!ipoib_cm_get(neigh))
456 ipoib_cm_set(neigh, ipoib_cm_create_tx(dev,
457 path,
458 neigh));
459 if (!ipoib_cm_get(neigh)) {
460 list_del(&neigh->list);
461 if (neigh->ah)
462 ipoib_put_ah(neigh->ah);
463 ipoib_neigh_free(dev, neigh);
464 continue;
465 }
466 }
467
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468 while ((skb = __skb_dequeue(&neigh->queue)))
469 __skb_queue_tail(&skqueue, skb);
470 }
Moni Shouaee1e2c82008-07-14 23:48:49 -0700471 path->valid = 1;
Roland Dreier5872a9f2005-11-29 10:13:54 -0800472 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473
Roland Dreier5872a9f2005-11-29 10:13:54 -0800474 path->query = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475 complete(&path->done);
476
477 spin_unlock_irqrestore(&priv->lock, flags);
478
Moni Shouaee1e2c82008-07-14 23:48:49 -0700479 if (old_ah)
480 ipoib_put_ah(old_ah);
481
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482 while ((skb = __skb_dequeue(&skqueue))) {
483 skb->dev = dev;
484 if (dev_queue_xmit(skb))
485 ipoib_warn(priv, "dev_queue_xmit failed "
486 "to requeue packet\n");
487 }
488}
489
Jack Morgenstein37c22a72006-05-29 19:14:05 +0300490static struct ipoib_path *path_rec_create(struct net_device *dev, void *gid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491{
492 struct ipoib_dev_priv *priv = netdev_priv(dev);
493 struct ipoib_path *path;
494
Jack Morgenstein1401b532007-11-26 10:41:19 +0200495 if (!priv->broadcast)
496 return NULL;
497
Roland Dreier21a38482005-11-02 10:07:59 -0800498 path = kzalloc(sizeof *path, GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499 if (!path)
500 return NULL;
501
Roland Dreier21a38482005-11-02 10:07:59 -0800502 path->dev = dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503
504 skb_queue_head_init(&path->queue);
505
506 INIT_LIST_HEAD(&path->neigh_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507
Jack Morgenstein37c22a72006-05-29 19:14:05 +0300508 memcpy(path->pathrec.dgid.raw, gid, sizeof (union ib_gid));
Roland Dreier2337f802007-10-23 19:57:54 -0700509 path->pathrec.sgid = priv->local_gid;
510 path->pathrec.pkey = cpu_to_be16(priv->pkey);
Sean Hefty81668832007-08-02 12:21:31 -0700511 path->pathrec.numb_path = 1;
512 path->pathrec.traffic_class = priv->broadcast->mcmember.traffic_class;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513
514 return path;
515}
516
517static int path_rec_start(struct net_device *dev,
518 struct ipoib_path *path)
519{
520 struct ipoib_dev_priv *priv = netdev_priv(dev);
521
Harvey Harrison5b095d9892008-10-29 12:52:50 -0700522 ipoib_dbg(priv, "Start path record lookup for %pI6\n",
Harvey Harrisonfcace2f2008-10-28 22:37:22 -0700523 path->pathrec.dgid.raw);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524
Roland Dreier65c7edd2005-11-28 21:20:34 -0800525 init_completion(&path->done);
526
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527 path->query_id =
Michael S. Tsirkinc1a0b232006-08-21 16:40:12 -0700528 ib_sa_path_rec_get(&ipoib_sa_client, priv->ca, priv->port,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529 &path->pathrec,
530 IB_SA_PATH_REC_DGID |
531 IB_SA_PATH_REC_SGID |
532 IB_SA_PATH_REC_NUMB_PATH |
Sean Hefty81668832007-08-02 12:21:31 -0700533 IB_SA_PATH_REC_TRAFFIC_CLASS |
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534 IB_SA_PATH_REC_PKEY,
535 1000, GFP_ATOMIC,
536 path_rec_completion,
537 path, &path->query);
538 if (path->query_id < 0) {
Or Gerlitz01b3fc82008-07-22 14:18:34 -0700539 ipoib_warn(priv, "ib_sa_path_rec_get failed: %d\n", path->query_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540 path->query = NULL;
Yossi Etigin93a3ab92008-11-12 10:24:38 -0800541 complete(&path->done);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542 return path->query_id;
543 }
544
545 return 0;
546}
547
548static void neigh_add_path(struct sk_buff *skb, struct net_device *dev)
549{
550 struct ipoib_dev_priv *priv = netdev_priv(dev);
551 struct ipoib_path *path;
552 struct ipoib_neigh *neigh;
Roland Dreier943c2462008-09-30 10:36:21 -0700553 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554
Eric Dumazetadf30902009-06-02 05:19:30 +0000555 neigh = ipoib_neigh_alloc(skb_dst(skb)->neighbour, skb->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556 if (!neigh) {
Roland Dreierde903512007-09-28 15:33:51 -0700557 ++dev->stats.tx_dropped;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558 dev_kfree_skb_any(skb);
559 return;
560 }
561
Roland Dreier943c2462008-09-30 10:36:21 -0700562 spin_lock_irqsave(&priv->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563
Eric Dumazetadf30902009-06-02 05:19:30 +0000564 path = __path_find(dev, skb_dst(skb)->neighbour->ha + 4);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565 if (!path) {
Eric Dumazetadf30902009-06-02 05:19:30 +0000566 path = path_rec_create(dev, skb_dst(skb)->neighbour->ha + 4);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567 if (!path)
Michael S. Tsirkind2e06552006-04-04 19:59:40 +0300568 goto err_path;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569
570 __path_add(dev, path);
571 }
572
573 list_add_tail(&neigh->list, &path->neigh_list);
574
Michael S. Tsirkin47f7a072006-01-17 09:22:05 -0800575 if (path->ah) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576 kref_get(&path->ah->ref);
577 neigh->ah = path->ah;
Michael S. Tsirkin8a7f7522006-07-19 17:44:37 +0300578 memcpy(&neigh->dgid.raw, &path->pathrec.dgid.raw,
579 sizeof(union ib_gid));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580
Michael S. Tsirkin839fcab2007-02-05 22:12:23 +0200581 if (ipoib_cm_enabled(dev, neigh->neighbour)) {
582 if (!ipoib_cm_get(neigh))
583 ipoib_cm_set(neigh, ipoib_cm_create_tx(dev, path, neigh));
584 if (!ipoib_cm_get(neigh)) {
585 list_del(&neigh->list);
586 if (neigh->ah)
587 ipoib_put_ah(neigh->ah);
588 ipoib_neigh_free(dev, neigh);
589 goto err_drop;
590 }
591 if (skb_queue_len(&neigh->queue) < IPOIB_MAX_PATH_REC_QUEUE)
592 __skb_queue_tail(&neigh->queue, skb);
593 else {
594 ipoib_warn(priv, "queue length limit %d. Packet drop.\n",
595 skb_queue_len(&neigh->queue));
596 goto err_drop;
597 }
Roland Dreier721d67c2009-09-05 20:23:40 -0700598 } else {
599 spin_unlock_irqrestore(&priv->lock, flags);
Eric Dumazetadf30902009-06-02 05:19:30 +0000600 ipoib_send(dev, skb, path->ah, IPOIB_QPN(skb_dst(skb)->neighbour->ha));
Roland Dreier721d67c2009-09-05 20:23:40 -0700601 return;
602 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603 } else {
604 neigh->ah = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605
606 if (!path->query && path_rec_start(dev, path))
Michael S. Tsirkind2e06552006-04-04 19:59:40 +0300607 goto err_list;
Michael S. Tsirkin2745b5b2006-11-16 14:16:47 +0200608
609 __skb_queue_tail(&neigh->queue, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610 }
611
Roland Dreier943c2462008-09-30 10:36:21 -0700612 spin_unlock_irqrestore(&priv->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700613 return;
614
Michael S. Tsirkind2e06552006-04-04 19:59:40 +0300615err_list:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616 list_del(&neigh->list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617
Michael S. Tsirkind2e06552006-04-04 19:59:40 +0300618err_path:
Michael S. Tsirkin2745b5b2006-11-16 14:16:47 +0200619 ipoib_neigh_free(dev, neigh);
Michael S. Tsirkin839fcab2007-02-05 22:12:23 +0200620err_drop:
Roland Dreierde903512007-09-28 15:33:51 -0700621 ++dev->stats.tx_dropped;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622 dev_kfree_skb_any(skb);
623
Roland Dreier943c2462008-09-30 10:36:21 -0700624 spin_unlock_irqrestore(&priv->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625}
626
Roland Dreierd70ed602005-09-28 19:56:57 -0700627static void ipoib_path_lookup(struct sk_buff *skb, struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700628{
629 struct ipoib_dev_priv *priv = netdev_priv(skb->dev);
630
631 /* Look up path record for unicasts */
Eric Dumazetadf30902009-06-02 05:19:30 +0000632 if (skb_dst(skb)->neighbour->ha[4] != 0xff) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633 neigh_add_path(skb, dev);
634 return;
635 }
636
637 /* Add in the P_Key for multicasts */
Eric Dumazetadf30902009-06-02 05:19:30 +0000638 skb_dst(skb)->neighbour->ha[8] = (priv->pkey >> 8) & 0xff;
639 skb_dst(skb)->neighbour->ha[9] = priv->pkey & 0xff;
640 ipoib_mcast_send(dev, skb_dst(skb)->neighbour->ha + 4, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641}
642
643static void unicast_arp_send(struct sk_buff *skb, struct net_device *dev,
644 struct ipoib_pseudoheader *phdr)
645{
646 struct ipoib_dev_priv *priv = netdev_priv(dev);
647 struct ipoib_path *path;
Roland Dreier943c2462008-09-30 10:36:21 -0700648 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649
Roland Dreier943c2462008-09-30 10:36:21 -0700650 spin_lock_irqsave(&priv->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651
Jack Morgenstein37c22a72006-05-29 19:14:05 +0300652 path = __path_find(dev, phdr->hwaddr + 4);
Moni Shouaee1e2c82008-07-14 23:48:49 -0700653 if (!path || !path->valid) {
Jack Morgenstein71d98b42009-02-17 14:51:47 -0800654 int new_path = 0;
655
656 if (!path) {
Moni Shouaee1e2c82008-07-14 23:48:49 -0700657 path = path_rec_create(dev, phdr->hwaddr + 4);
Jack Morgenstein71d98b42009-02-17 14:51:47 -0800658 new_path = 1;
659 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700660 if (path) {
661 /* put pseudoheader back on for next time */
662 skb_push(skb, sizeof *phdr);
663 __skb_queue_tail(&path->queue, skb);
664
Yossi Etiginff79ae82008-11-12 10:24:39 -0800665 if (!path->query && path_rec_start(dev, path)) {
Roland Dreier943c2462008-09-30 10:36:21 -0700666 spin_unlock_irqrestore(&priv->lock, flags);
Jack Morgenstein71d98b42009-02-17 14:51:47 -0800667 if (new_path)
668 path_free(dev, path);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669 return;
670 } else
671 __path_add(dev, path);
672 } else {
Roland Dreierde903512007-09-28 15:33:51 -0700673 ++dev->stats.tx_dropped;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700674 dev_kfree_skb_any(skb);
675 }
676
Roland Dreier943c2462008-09-30 10:36:21 -0700677 spin_unlock_irqrestore(&priv->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678 return;
679 }
680
Michael S. Tsirkin47f7a072006-01-17 09:22:05 -0800681 if (path->ah) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682 ipoib_dbg(priv, "Send unicast ARP to %04x\n",
683 be16_to_cpu(path->pathrec.dlid));
684
Roland Dreier721d67c2009-09-05 20:23:40 -0700685 spin_unlock_irqrestore(&priv->lock, flags);
Michael S. Tsirkin073ae842006-11-16 10:59:12 +0200686 ipoib_send(dev, skb, path->ah, IPOIB_QPN(phdr->hwaddr));
Roland Dreier721d67c2009-09-05 20:23:40 -0700687 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700688 } else if ((path->query || !path_rec_start(dev, path)) &&
689 skb_queue_len(&path->queue) < IPOIB_MAX_PATH_REC_QUEUE) {
690 /* put pseudoheader back on for next time */
691 skb_push(skb, sizeof *phdr);
692 __skb_queue_tail(&path->queue, skb);
693 } else {
Roland Dreierde903512007-09-28 15:33:51 -0700694 ++dev->stats.tx_dropped;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700695 dev_kfree_skb_any(skb);
696 }
697
Roland Dreier943c2462008-09-30 10:36:21 -0700698 spin_unlock_irqrestore(&priv->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700699}
700
701static int ipoib_start_xmit(struct sk_buff *skb, struct net_device *dev)
702{
703 struct ipoib_dev_priv *priv = netdev_priv(dev);
704 struct ipoib_neigh *neigh;
705 unsigned long flags;
706
Eric Dumazetadf30902009-06-02 05:19:30 +0000707 if (likely(skb_dst(skb) && skb_dst(skb)->neighbour)) {
708 if (unlikely(!*to_ipoib_neigh(skb_dst(skb)->neighbour))) {
Roland Dreierd70ed602005-09-28 19:56:57 -0700709 ipoib_path_lookup(skb, dev);
Roland Dreier943c2462008-09-30 10:36:21 -0700710 return NETDEV_TX_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700711 }
712
Eric Dumazetadf30902009-06-02 05:19:30 +0000713 neigh = *to_ipoib_neigh(skb_dst(skb)->neighbour);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700714
Yossi Etigina50df392009-01-09 14:05:11 -0800715 if (unlikely((memcmp(&neigh->dgid.raw,
Eric Dumazetadf30902009-06-02 05:19:30 +0000716 skb_dst(skb)->neighbour->ha + 4,
Yossi Etigina50df392009-01-09 14:05:11 -0800717 sizeof(union ib_gid))) ||
718 (neigh->dev != dev))) {
719 spin_lock_irqsave(&priv->lock, flags);
720 /*
721 * It's safe to call ipoib_put_ah() inside
722 * priv->lock here, because we know that
723 * path->ah will always hold one more reference,
724 * so ipoib_put_ah() will never do more than
725 * decrement the ref count.
726 */
727 if (neigh->ah)
Michael S. Tsirkin8a7f7522006-07-19 17:44:37 +0300728 ipoib_put_ah(neigh->ah);
Yossi Etigina50df392009-01-09 14:05:11 -0800729 list_del(&neigh->list);
730 ipoib_neigh_free(dev, neigh);
731 spin_unlock_irqrestore(&priv->lock, flags);
732 ipoib_path_lookup(skb, dev);
733 return NETDEV_TX_OK;
734 }
Michael S. Tsirkin8a7f7522006-07-19 17:44:37 +0300735
Or Gerlitzbafff972008-01-17 17:03:45 +0200736 if (ipoib_cm_get(neigh)) {
737 if (ipoib_cm_up(neigh)) {
738 ipoib_cm_send(dev, skb, ipoib_cm_get(neigh));
Roland Dreier943c2462008-09-30 10:36:21 -0700739 return NETDEV_TX_OK;
Or Gerlitzbafff972008-01-17 17:03:45 +0200740 }
741 } else if (neigh->ah) {
Eric Dumazetadf30902009-06-02 05:19:30 +0000742 ipoib_send(dev, skb, neigh->ah, IPOIB_QPN(skb_dst(skb)->neighbour->ha));
Roland Dreier943c2462008-09-30 10:36:21 -0700743 return NETDEV_TX_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700744 }
745
746 if (skb_queue_len(&neigh->queue) < IPOIB_MAX_PATH_REC_QUEUE) {
Roland Dreier943c2462008-09-30 10:36:21 -0700747 spin_lock_irqsave(&priv->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700748 __skb_queue_tail(&neigh->queue, skb);
Roland Dreier943c2462008-09-30 10:36:21 -0700749 spin_unlock_irqrestore(&priv->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700750 } else {
Roland Dreierde903512007-09-28 15:33:51 -0700751 ++dev->stats.tx_dropped;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700752 dev_kfree_skb_any(skb);
753 }
754 } else {
755 struct ipoib_pseudoheader *phdr =
756 (struct ipoib_pseudoheader *) skb->data;
757 skb_pull(skb, sizeof *phdr);
758
759 if (phdr->hwaddr[4] == 0xff) {
760 /* Add in the P_Key for multicast*/
761 phdr->hwaddr[8] = (priv->pkey >> 8) & 0xff;
762 phdr->hwaddr[9] = priv->pkey & 0xff;
763
Jack Morgenstein37c22a72006-05-29 19:14:05 +0300764 ipoib_mcast_send(dev, phdr->hwaddr + 4, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700765 } else {
Hal Rosenstock0dca0f72005-07-28 13:17:26 -0700766 /* unicast GID -- should be ARP or RARP reply */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700767
Hal Rosenstock0dca0f72005-07-28 13:17:26 -0700768 if ((be16_to_cpup((__be16 *) skb->data) != ETH_P_ARP) &&
769 (be16_to_cpup((__be16 *) skb->data) != ETH_P_RARP)) {
Harvey Harrison5b095d9892008-10-29 12:52:50 -0700770 ipoib_warn(priv, "Unicast, no %s: type %04x, QPN %06x %pI6\n",
Eric Dumazetadf30902009-06-02 05:19:30 +0000771 skb_dst(skb) ? "neigh" : "dst",
Sean Hefty97f52eb2005-08-13 21:05:57 -0700772 be16_to_cpup((__be16 *) skb->data),
Michael S. Tsirkin073ae842006-11-16 10:59:12 +0200773 IPOIB_QPN(phdr->hwaddr),
Harvey Harrisonfcace2f2008-10-28 22:37:22 -0700774 phdr->hwaddr + 4);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700775 dev_kfree_skb_any(skb);
Roland Dreierde903512007-09-28 15:33:51 -0700776 ++dev->stats.tx_dropped;
Roland Dreier943c2462008-09-30 10:36:21 -0700777 return NETDEV_TX_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700778 }
779
780 unicast_arp_send(skb, dev, phdr);
781 }
782 }
783
Linus Torvalds1da177e2005-04-16 15:20:36 -0700784 return NETDEV_TX_OK;
785}
786
Linus Torvalds1da177e2005-04-16 15:20:36 -0700787static void ipoib_timeout(struct net_device *dev)
788{
789 struct ipoib_dev_priv *priv = netdev_priv(dev);
790
Roland Dreier4b2d3192005-10-18 12:20:06 -0700791 ipoib_warn(priv, "transmit timeout: latency %d msecs\n",
792 jiffies_to_msecs(jiffies - dev->trans_start));
793 ipoib_warn(priv, "queue stopped %d, tx_head %u, tx_tail %u\n",
794 netif_queue_stopped(dev),
795 priv->tx_head, priv->tx_tail);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700796 /* XXX reset QP, etc. */
797}
798
799static int ipoib_hard_header(struct sk_buff *skb,
800 struct net_device *dev,
801 unsigned short type,
Stephen Hemminger3b04ddd2007-10-09 01:40:57 -0700802 const void *daddr, const void *saddr, unsigned len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700803{
804 struct ipoib_header *header;
805
806 header = (struct ipoib_header *) skb_push(skb, sizeof *header);
807
808 header->proto = htons(type);
809 header->reserved = 0;
810
811 /*
812 * If we don't have a neighbour structure, stuff the
813 * destination address onto the front of the skb so we can
814 * figure out where to send the packet later.
815 */
Eric Dumazetadf30902009-06-02 05:19:30 +0000816 if ((!skb_dst(skb) || !skb_dst(skb)->neighbour) && daddr) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700817 struct ipoib_pseudoheader *phdr =
818 (struct ipoib_pseudoheader *) skb_push(skb, sizeof *phdr);
819 memcpy(phdr->hwaddr, daddr, INFINIBAND_ALEN);
820 }
821
822 return 0;
823}
824
825static void ipoib_set_mcast_list(struct net_device *dev)
826{
827 struct ipoib_dev_priv *priv = netdev_priv(dev);
828
Leonid Arsh7a343d42006-03-23 19:52:51 +0200829 if (!test_bit(IPOIB_FLAG_OPER_UP, &priv->flags)) {
830 ipoib_dbg(priv, "IPOIB_FLAG_OPER_UP not set");
831 return;
832 }
833
Michael S. Tsirkin1ad62a12005-08-24 14:41:51 -0700834 queue_work(ipoib_workqueue, &priv->restart_task);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700835}
836
Alexey Kuznetsovecbb4162007-03-24 12:52:16 -0700837static void ipoib_neigh_cleanup(struct neighbour *n)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700838{
839 struct ipoib_neigh *neigh;
840 struct ipoib_dev_priv *priv = netdev_priv(n->dev);
841 unsigned long flags;
842 struct ipoib_ah *ah = NULL;
843
Moni Shoua732a2172007-10-09 19:43:36 -0700844 neigh = *to_ipoib_neigh(n);
Or Gerlitz7bc531d2008-01-29 12:57:56 +0200845 if (neigh)
Moni Shoua732a2172007-10-09 19:43:36 -0700846 priv = netdev_priv(neigh->dev);
Or Gerlitz7bc531d2008-01-29 12:57:56 +0200847 else
Moni Shoua732a2172007-10-09 19:43:36 -0700848 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700849 ipoib_dbg(priv,
Harvey Harrison5b095d9892008-10-29 12:52:50 -0700850 "neigh_cleanup for %06x %pI6\n",
Michael S. Tsirkin073ae842006-11-16 10:59:12 +0200851 IPOIB_QPN(n->ha),
Harvey Harrisonfcace2f2008-10-28 22:37:22 -0700852 n->ha + 4);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700853
854 spin_lock_irqsave(&priv->lock, flags);
855
Moni Shoua732a2172007-10-09 19:43:36 -0700856 if (neigh->ah)
857 ah = neigh->ah;
858 list_del(&neigh->list);
859 ipoib_neigh_free(n->dev, neigh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700860
861 spin_unlock_irqrestore(&priv->lock, flags);
862
863 if (ah)
864 ipoib_put_ah(ah);
865}
866
Moni Shoua732a2172007-10-09 19:43:36 -0700867struct ipoib_neigh *ipoib_neigh_alloc(struct neighbour *neighbour,
868 struct net_device *dev)
Michael S. Tsirkind2e06552006-04-04 19:59:40 +0300869{
870 struct ipoib_neigh *neigh;
871
872 neigh = kmalloc(sizeof *neigh, GFP_ATOMIC);
873 if (!neigh)
874 return NULL;
875
876 neigh->neighbour = neighbour;
Moni Shoua732a2172007-10-09 19:43:36 -0700877 neigh->dev = dev;
David J. Wilder0cd4d0f2009-12-09 10:03:00 -0800878 memset(&neigh->dgid.raw, 0, sizeof (union ib_gid));
Michael S. Tsirkind2e06552006-04-04 19:59:40 +0300879 *to_ipoib_neigh(neighbour) = neigh;
Roland Dreier82b39912006-12-12 14:48:18 -0800880 skb_queue_head_init(&neigh->queue);
Michael S. Tsirkin839fcab2007-02-05 22:12:23 +0200881 ipoib_cm_set(neigh, NULL);
Michael S. Tsirkind2e06552006-04-04 19:59:40 +0300882
883 return neigh;
884}
885
Michael S. Tsirkin2745b5b2006-11-16 14:16:47 +0200886void ipoib_neigh_free(struct net_device *dev, struct ipoib_neigh *neigh)
Michael S. Tsirkind2e06552006-04-04 19:59:40 +0300887{
Michael S. Tsirkin2745b5b2006-11-16 14:16:47 +0200888 struct sk_buff *skb;
Michael S. Tsirkind2e06552006-04-04 19:59:40 +0300889 *to_ipoib_neigh(neigh->neighbour) = NULL;
Michael S. Tsirkin2745b5b2006-11-16 14:16:47 +0200890 while ((skb = __skb_dequeue(&neigh->queue))) {
Roland Dreierde903512007-09-28 15:33:51 -0700891 ++dev->stats.tx_dropped;
Michael S. Tsirkin2745b5b2006-11-16 14:16:47 +0200892 dev_kfree_skb_any(skb);
893 }
Michael S. Tsirkin839fcab2007-02-05 22:12:23 +0200894 if (ipoib_cm_get(neigh))
895 ipoib_cm_destroy_tx(ipoib_cm_get(neigh));
Michael S. Tsirkind2e06552006-04-04 19:59:40 +0300896 kfree(neigh);
897}
898
Linus Torvalds1da177e2005-04-16 15:20:36 -0700899static int ipoib_neigh_setup_dev(struct net_device *dev, struct neigh_parms *parms)
900{
Alexey Kuznetsovecbb4162007-03-24 12:52:16 -0700901 parms->neigh_cleanup = ipoib_neigh_cleanup;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700902
903 return 0;
904}
905
906int ipoib_dev_init(struct net_device *dev, struct ib_device *ca, int port)
907{
908 struct ipoib_dev_priv *priv = netdev_priv(dev);
909
910 /* Allocate RX/TX "rings" to hold queued skbs */
Shirley Ma0f485252006-04-10 09:43:58 -0700911 priv->rx_ring = kzalloc(ipoib_recvq_size * sizeof *priv->rx_ring,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700912 GFP_KERNEL);
913 if (!priv->rx_ring) {
914 printk(KERN_WARNING "%s: failed to allocate RX ring (%d entries)\n",
Shirley Ma0f485252006-04-10 09:43:58 -0700915 ca->name, ipoib_recvq_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700916 goto out;
917 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700918
Joe Perches948579c2010-11-05 03:07:36 +0000919 priv->tx_ring = vzalloc(ipoib_sendq_size * sizeof *priv->tx_ring);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700920 if (!priv->tx_ring) {
921 printk(KERN_WARNING "%s: failed to allocate TX ring (%d entries)\n",
Shirley Ma0f485252006-04-10 09:43:58 -0700922 ca->name, ipoib_sendq_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700923 goto out_rx_ring_cleanup;
924 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700925
Michael S. Tsirkin1b524962007-08-16 15:36:16 +0300926 /* priv->tx_head, tx_tail & tx_outstanding are already 0 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700927
928 if (ipoib_ib_dev_init(dev, ca, port))
929 goto out_tx_ring_cleanup;
930
931 return 0;
932
933out_tx_ring_cleanup:
Roland Dreier10313cb2008-03-12 07:51:03 -0700934 vfree(priv->tx_ring);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700935
936out_rx_ring_cleanup:
937 kfree(priv->rx_ring);
938
939out:
940 return -ENOMEM;
941}
942
943void ipoib_dev_cleanup(struct net_device *dev)
944{
945 struct ipoib_dev_priv *priv = netdev_priv(dev), *cpriv, *tcpriv;
946
Roland Dreier1732b0e2005-11-07 10:33:11 -0800947 ipoib_delete_debug_files(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700948
949 /* Delete any child interfaces first */
950 list_for_each_entry_safe(cpriv, tcpriv, &priv->child_intfs, list) {
951 unregister_netdev(cpriv->dev);
952 ipoib_dev_cleanup(cpriv->dev);
953 free_netdev(cpriv->dev);
954 }
955
956 ipoib_ib_dev_cleanup(dev);
957
Hal Rosenstock92a6b342005-08-13 20:50:27 -0700958 kfree(priv->rx_ring);
Roland Dreier10313cb2008-03-12 07:51:03 -0700959 vfree(priv->tx_ring);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700960
Hal Rosenstock92a6b342005-08-13 20:50:27 -0700961 priv->rx_ring = NULL;
962 priv->tx_ring = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700963}
964
Stephen Hemminger3b04ddd2007-10-09 01:40:57 -0700965static const struct header_ops ipoib_header_ops = {
966 .create = ipoib_hard_header,
967};
968
Stephen Hemmingerfe8114e2009-03-20 19:35:32 +0000969static const struct net_device_ops ipoib_netdev_ops = {
970 .ndo_open = ipoib_open,
971 .ndo_stop = ipoib_stop,
972 .ndo_change_mtu = ipoib_change_mtu,
973 .ndo_start_xmit = ipoib_start_xmit,
974 .ndo_tx_timeout = ipoib_timeout,
975 .ndo_set_multicast_list = ipoib_set_mcast_list,
976 .ndo_neigh_setup = ipoib_neigh_setup_dev,
977};
978
Linus Torvalds1da177e2005-04-16 15:20:36 -0700979static void ipoib_setup(struct net_device *dev)
980{
981 struct ipoib_dev_priv *priv = netdev_priv(dev);
982
Stephen Hemmingerfe8114e2009-03-20 19:35:32 +0000983 dev->netdev_ops = &ipoib_netdev_ops;
Roland Dreier2337f802007-10-23 19:57:54 -0700984 dev->header_ops = &ipoib_header_ops;
Stephen Hemmingerbea33482007-10-03 16:41:36 -0700985
Eli Cohen82c24c12008-04-16 21:09:32 -0700986 ipoib_set_ethtool_ops(dev);
987
Stephen Hemmingerbea33482007-10-03 16:41:36 -0700988 netif_napi_add(dev, &priv->napi, ipoib_poll, 100);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700989
Roland Dreier2337f802007-10-23 19:57:54 -0700990 dev->watchdog_timeo = HZ;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700991
Roland Dreier2337f802007-10-23 19:57:54 -0700992 dev->flags |= IFF_BROADCAST | IFF_MULTICAST;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700993
994 /*
995 * We add in INFINIBAND_ALEN to allow for the destination
996 * address "pseudoheader" for skbs without neighbour struct.
997 */
Roland Dreier2337f802007-10-23 19:57:54 -0700998 dev->hard_header_len = IPOIB_ENCAP_LEN + INFINIBAND_ALEN;
999 dev->addr_len = INFINIBAND_ALEN;
1000 dev->type = ARPHRD_INFINIBAND;
1001 dev->tx_queue_len = ipoib_sendq_size * 2;
Eli Coheneb14032f2008-01-30 18:30:46 +02001002 dev->features = (NETIF_F_VLAN_CHALLENGED |
Eli Coheneb14032f2008-01-30 18:30:46 +02001003 NETIF_F_HIGHDMA);
Eric Dumazet86d15cd2009-05-30 23:04:46 -07001004 dev->priv_flags &= ~IFF_XMIT_DST_RELEASE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001005
Linus Torvalds1da177e2005-04-16 15:20:36 -07001006 memcpy(dev->broadcast, ipv4_bcast_addr, INFINIBAND_ALEN);
1007
1008 netif_carrier_off(dev);
1009
Linus Torvalds1da177e2005-04-16 15:20:36 -07001010 priv->dev = dev;
1011
1012 spin_lock_init(&priv->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001013
Ingo Molnar95ed6442006-01-13 14:51:39 -08001014 mutex_init(&priv->vlan_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001015
1016 INIT_LIST_HEAD(&priv->path_list);
1017 INIT_LIST_HEAD(&priv->child_intfs);
1018 INIT_LIST_HEAD(&priv->dead_ahs);
1019 INIT_LIST_HEAD(&priv->multicast_list);
1020
Yosef Etigin26bbf132007-05-19 08:51:54 -07001021 INIT_DELAYED_WORK(&priv->pkey_poll_task, ipoib_pkey_poll);
David Howellsc4028952006-11-22 14:57:56 +00001022 INIT_DELAYED_WORK(&priv->mcast_task, ipoib_mcast_join_task);
Yossi Etigine8224e42008-09-16 11:57:45 -07001023 INIT_WORK(&priv->carrier_on_task, ipoib_mcast_carrier_on_task);
Moni Shouaee1e2c82008-07-14 23:48:49 -07001024 INIT_WORK(&priv->flush_light, ipoib_ib_dev_flush_light);
1025 INIT_WORK(&priv->flush_normal, ipoib_ib_dev_flush_normal);
1026 INIT_WORK(&priv->flush_heavy, ipoib_ib_dev_flush_heavy);
David Howellsc4028952006-11-22 14:57:56 +00001027 INIT_WORK(&priv->restart_task, ipoib_mcast_restart_task);
1028 INIT_DELAYED_WORK(&priv->ah_reap_task, ipoib_reap_ah);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001029}
1030
1031struct ipoib_dev_priv *ipoib_intf_alloc(const char *name)
1032{
1033 struct net_device *dev;
1034
1035 dev = alloc_netdev((int) sizeof (struct ipoib_dev_priv), name,
1036 ipoib_setup);
1037 if (!dev)
1038 return NULL;
1039
1040 return netdev_priv(dev);
1041}
1042
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001043static ssize_t show_pkey(struct device *dev,
1044 struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001045{
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001046 struct ipoib_dev_priv *priv = netdev_priv(to_net_dev(dev));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001047
1048 return sprintf(buf, "0x%04x\n", priv->pkey);
1049}
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001050static DEVICE_ATTR(pkey, S_IRUGO, show_pkey, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001051
Or Gerlitz335a64a5a2007-10-08 10:13:00 +02001052static ssize_t show_umcast(struct device *dev,
1053 struct device_attribute *attr, char *buf)
1054{
1055 struct ipoib_dev_priv *priv = netdev_priv(to_net_dev(dev));
1056
1057 return sprintf(buf, "%d\n", test_bit(IPOIB_FLAG_UMCAST, &priv->flags));
1058}
1059
1060static ssize_t set_umcast(struct device *dev,
1061 struct device_attribute *attr,
1062 const char *buf, size_t count)
1063{
1064 struct ipoib_dev_priv *priv = netdev_priv(to_net_dev(dev));
1065 unsigned long umcast_val = simple_strtoul(buf, NULL, 0);
1066
1067 if (umcast_val > 0) {
1068 set_bit(IPOIB_FLAG_UMCAST, &priv->flags);
1069 ipoib_warn(priv, "ignoring multicast groups joined directly "
1070 "by userspace\n");
1071 } else
1072 clear_bit(IPOIB_FLAG_UMCAST, &priv->flags);
1073
1074 return count;
1075}
1076static DEVICE_ATTR(umcast, S_IWUSR | S_IRUGO, show_umcast, set_umcast);
1077
1078int ipoib_add_umcast_attr(struct net_device *dev)
1079{
1080 return device_create_file(&dev->dev, &dev_attr_umcast);
1081}
1082
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001083static ssize_t create_child(struct device *dev,
1084 struct device_attribute *attr,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001085 const char *buf, size_t count)
1086{
1087 int pkey;
1088 int ret;
1089
1090 if (sscanf(buf, "%i", &pkey) != 1)
1091 return -EINVAL;
1092
1093 if (pkey < 0 || pkey > 0xffff)
1094 return -EINVAL;
1095
Roland Dreier4ce05932005-08-19 12:03:17 -07001096 /*
1097 * Set the full membership bit, so that we join the right
1098 * broadcast group, etc.
1099 */
1100 pkey |= 0x8000;
1101
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001102 ret = ipoib_vlan_add(to_net_dev(dev), pkey);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001103
1104 return ret ? ret : count;
1105}
Or Gerlitz7a52b342010-06-06 04:59:16 +00001106static DEVICE_ATTR(create_child, S_IWUSR, NULL, create_child);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001107
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001108static ssize_t delete_child(struct device *dev,
1109 struct device_attribute *attr,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001110 const char *buf, size_t count)
1111{
1112 int pkey;
1113 int ret;
1114
1115 if (sscanf(buf, "%i", &pkey) != 1)
1116 return -EINVAL;
1117
1118 if (pkey < 0 || pkey > 0xffff)
1119 return -EINVAL;
1120
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001121 ret = ipoib_vlan_delete(to_net_dev(dev), pkey);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001122
1123 return ret ? ret : count;
1124
1125}
Or Gerlitz7a52b342010-06-06 04:59:16 +00001126static DEVICE_ATTR(delete_child, S_IWUSR, NULL, delete_child);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001127
1128int ipoib_add_pkey_attr(struct net_device *dev)
1129{
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001130 return device_create_file(&dev->dev, &dev_attr_pkey);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001131}
1132
Or Gerlitz83bb63f2008-10-22 15:49:49 -07001133int ipoib_set_dev_features(struct ipoib_dev_priv *priv, struct ib_device *hca)
1134{
1135 struct ib_device_attr *device_attr;
1136 int result = -ENOMEM;
1137
1138 device_attr = kmalloc(sizeof *device_attr, GFP_KERNEL);
1139 if (!device_attr) {
1140 printk(KERN_WARNING "%s: allocation of %zu bytes failed\n",
1141 hca->name, sizeof *device_attr);
1142 return result;
1143 }
1144
1145 result = ib_query_device(hca, device_attr);
1146 if (result) {
1147 printk(KERN_WARNING "%s: ib_query_device failed (ret = %d)\n",
1148 hca->name, result);
1149 kfree(device_attr);
1150 return result;
1151 }
1152 priv->hca_caps = device_attr->device_cap_flags;
1153
1154 kfree(device_attr);
1155
1156 if (priv->hca_caps & IB_DEVICE_UD_IP_CSUM) {
1157 set_bit(IPOIB_FLAG_CSUM, &priv->flags);
1158 priv->dev->features |= NETIF_F_SG | NETIF_F_IP_CSUM;
1159 }
1160
Or Gerlitz8ae31e52011-01-10 17:41:55 -08001161 priv->dev->features |= NETIF_F_GRO;
1162
Or Gerlitz83bb63f2008-10-22 15:49:49 -07001163 if (priv->dev->features & NETIF_F_SG && priv->hca_caps & IB_DEVICE_UD_TSO)
1164 priv->dev->features |= NETIF_F_TSO;
1165
1166 return 0;
1167}
1168
1169
Linus Torvalds1da177e2005-04-16 15:20:36 -07001170static struct net_device *ipoib_add_port(const char *format,
1171 struct ib_device *hca, u8 port)
1172{
1173 struct ipoib_dev_priv *priv;
Shirley Mabc7b3a32008-04-23 11:55:45 -07001174 struct ib_port_attr attr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001175 int result = -ENOMEM;
1176
1177 priv = ipoib_intf_alloc(format);
1178 if (!priv)
1179 goto alloc_mem_failed;
1180
1181 SET_NETDEV_DEV(priv->dev, hca->dma_device);
Eli Cohenc3aa9b12010-09-20 07:05:06 +00001182 priv->dev->dev_id = port - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001183
Shirley Mabc7b3a32008-04-23 11:55:45 -07001184 if (!ib_query_port(hca, port, &attr))
1185 priv->max_ib_mtu = ib_mtu_enum_to_int(attr.max_mtu);
1186 else {
1187 printk(KERN_WARNING "%s: ib_query_port %d failed\n",
1188 hca->name, port);
1189 goto device_init_failed;
1190 }
1191
1192 /* MTU will be reset when mcast join happens */
1193 priv->dev->mtu = IPOIB_UD_MTU(priv->max_ib_mtu);
1194 priv->mcast_mtu = priv->admin_mtu = priv->dev->mtu;
1195
Linus Torvalds1da177e2005-04-16 15:20:36 -07001196 result = ib_query_pkey(hca, port, 0, &priv->pkey);
1197 if (result) {
1198 printk(KERN_WARNING "%s: ib_query_pkey port %d failed (ret = %d)\n",
1199 hca->name, port, result);
Eli Cohenca6de172007-08-21 18:46:10 +03001200 goto device_init_failed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001201 }
1202
Or Gerlitz83bb63f2008-10-22 15:49:49 -07001203 if (ipoib_set_dev_features(priv, hca))
Eli Cohen60461362008-04-16 21:01:10 -07001204 goto device_init_failed;
Vladimir Sokolovskyaf40da82008-07-14 23:48:48 -07001205
Roland Dreier4ce05932005-08-19 12:03:17 -07001206 /*
1207 * Set the full membership bit, so that we join the right
1208 * broadcast group, etc.
1209 */
1210 priv->pkey |= 0x8000;
1211
Linus Torvalds1da177e2005-04-16 15:20:36 -07001212 priv->dev->broadcast[8] = priv->pkey >> 8;
1213 priv->dev->broadcast[9] = priv->pkey & 0xff;
1214
1215 result = ib_query_gid(hca, port, 0, &priv->local_gid);
1216 if (result) {
1217 printk(KERN_WARNING "%s: ib_query_gid port %d failed (ret = %d)\n",
1218 hca->name, port, result);
Eli Cohenca6de172007-08-21 18:46:10 +03001219 goto device_init_failed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001220 } else
1221 memcpy(priv->dev->dev_addr + 4, priv->local_gid.raw, sizeof (union ib_gid));
1222
Linus Torvalds1da177e2005-04-16 15:20:36 -07001223 result = ipoib_dev_init(priv->dev, hca, port);
1224 if (result < 0) {
1225 printk(KERN_WARNING "%s: failed to initialize port %d (ret = %d)\n",
1226 hca->name, port, result);
1227 goto device_init_failed;
1228 }
1229
1230 INIT_IB_EVENT_HANDLER(&priv->event_handler,
1231 priv->ca, ipoib_event);
1232 result = ib_register_event_handler(&priv->event_handler);
1233 if (result < 0) {
1234 printk(KERN_WARNING "%s: ib_register_event_handler failed for "
1235 "port %d (ret = %d)\n",
1236 hca->name, port, result);
1237 goto event_failed;
1238 }
1239
1240 result = register_netdev(priv->dev);
1241 if (result) {
1242 printk(KERN_WARNING "%s: couldn't register ipoib port %d; error %d\n",
1243 hca->name, port, result);
1244 goto register_failed;
1245 }
1246
Roland Dreier1732b0e2005-11-07 10:33:11 -08001247 ipoib_create_debug_files(priv->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001248
Michael S. Tsirkin839fcab2007-02-05 22:12:23 +02001249 if (ipoib_cm_add_mode_attr(priv->dev))
1250 goto sysfs_failed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001251 if (ipoib_add_pkey_attr(priv->dev))
1252 goto sysfs_failed;
Or Gerlitz335a64a5a2007-10-08 10:13:00 +02001253 if (ipoib_add_umcast_attr(priv->dev))
1254 goto sysfs_failed;
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001255 if (device_create_file(&priv->dev->dev, &dev_attr_create_child))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001256 goto sysfs_failed;
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001257 if (device_create_file(&priv->dev->dev, &dev_attr_delete_child))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001258 goto sysfs_failed;
1259
1260 return priv->dev;
1261
1262sysfs_failed:
Roland Dreier1732b0e2005-11-07 10:33:11 -08001263 ipoib_delete_debug_files(priv->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001264 unregister_netdev(priv->dev);
1265
1266register_failed:
1267 ib_unregister_event_handler(&priv->event_handler);
Roland Dreiera77a57a2008-08-19 15:01:32 -07001268 flush_workqueue(ipoib_workqueue);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001269
1270event_failed:
1271 ipoib_dev_cleanup(priv->dev);
1272
1273device_init_failed:
1274 free_netdev(priv->dev);
1275
1276alloc_mem_failed:
1277 return ERR_PTR(result);
1278}
1279
1280static void ipoib_add_one(struct ib_device *device)
1281{
1282 struct list_head *dev_list;
1283 struct net_device *dev;
1284 struct ipoib_dev_priv *priv;
1285 int s, e, p;
1286
Tom Tucker07ebafb2006-08-03 16:02:42 -05001287 if (rdma_node_get_transport(device->node_type) != RDMA_TRANSPORT_IB)
1288 return;
1289
Linus Torvalds1da177e2005-04-16 15:20:36 -07001290 dev_list = kmalloc(sizeof *dev_list, GFP_KERNEL);
1291 if (!dev_list)
1292 return;
1293
1294 INIT_LIST_HEAD(dev_list);
1295
Tom Tucker07ebafb2006-08-03 16:02:42 -05001296 if (device->node_type == RDMA_NODE_IB_SWITCH) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001297 s = 0;
1298 e = 0;
1299 } else {
1300 s = 1;
1301 e = device->phys_port_cnt;
1302 }
1303
1304 for (p = s; p <= e; ++p) {
Eli Cohen7b4c8762010-09-27 17:51:11 -07001305 if (rdma_port_get_link_layer(device, p) != IB_LINK_LAYER_INFINIBAND)
1306 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001307 dev = ipoib_add_port("ib%d", device, p);
1308 if (!IS_ERR(dev)) {
1309 priv = netdev_priv(dev);
1310 list_add_tail(&priv->list, dev_list);
1311 }
1312 }
1313
1314 ib_set_client_data(device, &ipoib_client, dev_list);
1315}
1316
1317static void ipoib_remove_one(struct ib_device *device)
1318{
1319 struct ipoib_dev_priv *priv, *tmp;
1320 struct list_head *dev_list;
1321
Tom Tucker07ebafb2006-08-03 16:02:42 -05001322 if (rdma_node_get_transport(device->node_type) != RDMA_TRANSPORT_IB)
1323 return;
1324
Linus Torvalds1da177e2005-04-16 15:20:36 -07001325 dev_list = ib_get_client_data(device, &ipoib_client);
1326
1327 list_for_each_entry_safe(priv, tmp, dev_list, list) {
1328 ib_unregister_event_handler(&priv->event_handler);
Roland Dreiera77a57a2008-08-19 15:01:32 -07001329
1330 rtnl_lock();
1331 dev_change_flags(priv->dev, priv->dev->flags & ~IFF_UP);
1332 rtnl_unlock();
1333
1334 flush_workqueue(ipoib_workqueue);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001335
1336 unregister_netdev(priv->dev);
1337 ipoib_dev_cleanup(priv->dev);
1338 free_netdev(priv->dev);
1339 }
Michael S. Tsirkin06c56e42005-09-01 09:19:02 -07001340
1341 kfree(dev_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001342}
1343
1344static int __init ipoib_init_module(void)
1345{
1346 int ret;
1347
Shirley Ma0f485252006-04-10 09:43:58 -07001348 ipoib_recvq_size = roundup_pow_of_two(ipoib_recvq_size);
1349 ipoib_recvq_size = min(ipoib_recvq_size, IPOIB_MAX_QUEUE_SIZE);
1350 ipoib_recvq_size = max(ipoib_recvq_size, IPOIB_MIN_QUEUE_SIZE);
1351
1352 ipoib_sendq_size = roundup_pow_of_two(ipoib_sendq_size);
1353 ipoib_sendq_size = min(ipoib_sendq_size, IPOIB_MAX_QUEUE_SIZE);
Hagen Paul Pfeifer732eacc2010-10-26 14:22:23 -07001354 ipoib_sendq_size = max3(ipoib_sendq_size, 2 * MAX_SEND_CQE, IPOIB_MIN_QUEUE_SIZE);
Pradeep Satyanarayana68e995a2008-01-25 14:15:24 -08001355#ifdef CONFIG_INFINIBAND_IPOIB_CM
1356 ipoib_max_conn_qp = min(ipoib_max_conn_qp, IPOIB_CM_MAX_CONN_QP);
1357#endif
Shirley Ma0f485252006-04-10 09:43:58 -07001358
Eli Cohenf89271da2008-07-14 23:48:44 -07001359 /*
1360 * When copying small received packets, we only copy from the
1361 * linear data part of the SKB, so we rely on this condition.
1362 */
1363 BUILD_BUG_ON(IPOIB_CM_COPYBREAK > IPOIB_CM_HEAD_SIZE);
1364
Linus Torvalds1da177e2005-04-16 15:20:36 -07001365 ret = ipoib_register_debugfs();
1366 if (ret)
1367 return ret;
1368
1369 /*
1370 * We create our own workqueue mainly because we want to be
1371 * able to flush it when devices are being removed. We can't
1372 * use schedule_work()/flush_scheduled_work() because both
1373 * unregister_netdev() and linkwatch_event take the rtnl lock,
1374 * so flush_scheduled_work() can deadlock during device
1375 * removal.
1376 */
1377 ipoib_workqueue = create_singlethread_workqueue("ipoib");
1378 if (!ipoib_workqueue) {
1379 ret = -ENOMEM;
1380 goto err_fs;
1381 }
1382
Michael S. Tsirkinc1a0b232006-08-21 16:40:12 -07001383 ib_sa_register_client(&ipoib_sa_client);
1384
Linus Torvalds1da177e2005-04-16 15:20:36 -07001385 ret = ib_register_client(&ipoib_client);
1386 if (ret)
Michael S. Tsirkinc1a0b232006-08-21 16:40:12 -07001387 goto err_sa;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001388
1389 return 0;
1390
Michael S. Tsirkinc1a0b232006-08-21 16:40:12 -07001391err_sa:
1392 ib_sa_unregister_client(&ipoib_sa_client);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001393 destroy_workqueue(ipoib_workqueue);
1394
Roland Dreier9adec1a2005-04-16 15:26:07 -07001395err_fs:
1396 ipoib_unregister_debugfs();
1397
Linus Torvalds1da177e2005-04-16 15:20:36 -07001398 return ret;
1399}
1400
1401static void __exit ipoib_cleanup_module(void)
1402{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001403 ib_unregister_client(&ipoib_client);
Michael S. Tsirkinc1a0b232006-08-21 16:40:12 -07001404 ib_sa_unregister_client(&ipoib_sa_client);
Roland Dreier9adec1a2005-04-16 15:26:07 -07001405 ipoib_unregister_debugfs();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001406 destroy_workqueue(ipoib_workqueue);
1407}
1408
1409module_init(ipoib_init_module);
1410module_exit(ipoib_cleanup_module);