blob: b3a671895bdc52dbfa2f17cfd2ff56dc22f6b048 [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
Vladimir Sokolovskyaf40da82008-07-14 23:48:48 -070063static int lro;
64module_param(lro, bool, 0444);
65MODULE_PARM_DESC(lro, "Enable LRO (Large Receive Offload)");
66
67static int lro_max_aggr = IPOIB_LRO_MAX_AGGR;
68module_param(lro_max_aggr, int, 0644);
69MODULE_PARM_DESC(lro_max_aggr, "LRO: Max packets to be aggregated "
70 "(default = 64)");
71
Linus Torvalds1da177e2005-04-16 15:20:36 -070072#ifdef CONFIG_INFINIBAND_IPOIB_DEBUG
73int ipoib_debug_level;
74
75module_param_named(debug_level, ipoib_debug_level, int, 0644);
76MODULE_PARM_DESC(debug_level, "Enable debug tracing if > 0");
77#endif
78
Roland Dreier1732b0e2005-11-07 10:33:11 -080079struct ipoib_path_iter {
80 struct net_device *dev;
81 struct ipoib_path path;
82};
83
Linus Torvalds1da177e2005-04-16 15:20:36 -070084static const u8 ipv4_bcast_addr[] = {
85 0x00, 0xff, 0xff, 0xff,
86 0xff, 0x12, 0x40, 0x1b, 0x00, 0x00, 0x00, 0x00,
87 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff
88};
89
90struct workqueue_struct *ipoib_workqueue;
91
Michael S. Tsirkinc1a0b232006-08-21 16:40:12 -070092struct ib_sa_client ipoib_sa_client;
93
Linus Torvalds1da177e2005-04-16 15:20:36 -070094static void ipoib_add_one(struct ib_device *device);
95static void ipoib_remove_one(struct ib_device *device);
96
97static struct ib_client ipoib_client = {
98 .name = "ipoib",
99 .add = ipoib_add_one,
100 .remove = ipoib_remove_one
101};
102
103int ipoib_open(struct net_device *dev)
104{
105 struct ipoib_dev_priv *priv = netdev_priv(dev);
106
107 ipoib_dbg(priv, "bringing up interface\n");
108
Stephen Hemmingerbea33482007-10-03 16:41:36 -0700109 napi_enable(&priv->napi);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110 set_bit(IPOIB_FLAG_ADMIN_UP, &priv->flags);
111
112 if (ipoib_pkey_dev_delay_open(dev))
113 return 0;
114
Stephen Hemmingerbea33482007-10-03 16:41:36 -0700115 if (ipoib_ib_dev_open(dev)) {
116 napi_disable(&priv->napi);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117 return -EINVAL;
Stephen Hemmingerbea33482007-10-03 16:41:36 -0700118 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119
Roland Dreier267ee882005-11-29 10:55:58 -0800120 if (ipoib_ib_dev_up(dev)) {
Yosef Etigin26bbf132007-05-19 08:51:54 -0700121 ipoib_ib_dev_stop(dev, 1);
Stephen Hemmingerbea33482007-10-03 16:41:36 -0700122 napi_disable(&priv->napi);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123 return -EINVAL;
Roland Dreier267ee882005-11-29 10:55:58 -0800124 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125
126 if (!test_bit(IPOIB_FLAG_SUBINTERFACE, &priv->flags)) {
127 struct ipoib_dev_priv *cpriv;
128
129 /* Bring up any child interfaces too */
Ingo Molnar95ed6442006-01-13 14:51:39 -0800130 mutex_lock(&priv->vlan_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131 list_for_each_entry(cpriv, &priv->child_intfs, list) {
132 int flags;
133
134 flags = cpriv->dev->flags;
135 if (flags & IFF_UP)
136 continue;
137
138 dev_change_flags(cpriv->dev, flags | IFF_UP);
139 }
Ingo Molnar95ed6442006-01-13 14:51:39 -0800140 mutex_unlock(&priv->vlan_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141 }
142
143 netif_start_queue(dev);
144
145 return 0;
146}
147
148static int ipoib_stop(struct net_device *dev)
149{
150 struct ipoib_dev_priv *priv = netdev_priv(dev);
151
152 ipoib_dbg(priv, "stopping interface\n");
153
154 clear_bit(IPOIB_FLAG_ADMIN_UP, &priv->flags);
Stephen Hemmingerbea33482007-10-03 16:41:36 -0700155 napi_disable(&priv->napi);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156
157 netif_stop_queue(dev);
158
Roland Dreiera77a57a2008-08-19 15:01:32 -0700159 ipoib_ib_dev_down(dev, 0);
160 ipoib_ib_dev_stop(dev, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161
162 if (!test_bit(IPOIB_FLAG_SUBINTERFACE, &priv->flags)) {
163 struct ipoib_dev_priv *cpriv;
164
165 /* Bring down any child interfaces too */
Ingo Molnar95ed6442006-01-13 14:51:39 -0800166 mutex_lock(&priv->vlan_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167 list_for_each_entry(cpriv, &priv->child_intfs, list) {
168 int flags;
169
170 flags = cpriv->dev->flags;
171 if (!(flags & IFF_UP))
172 continue;
173
174 dev_change_flags(cpriv->dev, flags & ~IFF_UP);
175 }
Ingo Molnar95ed6442006-01-13 14:51:39 -0800176 mutex_unlock(&priv->vlan_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177 }
178
179 return 0;
180}
181
182static int ipoib_change_mtu(struct net_device *dev, int new_mtu)
183{
184 struct ipoib_dev_priv *priv = netdev_priv(dev);
185
Michael S. Tsirkin839fcab2007-02-05 22:12:23 +0200186 /* dev->mtu > 2K ==> connected mode */
Pradeep Satyanarayana586a6932007-12-21 13:08:23 -0800187 if (ipoib_cm_admin_enabled(dev)) {
188 if (new_mtu > ipoib_cm_max_mtu(dev))
189 return -EINVAL;
190
Michael S. Tsirkin839fcab2007-02-05 22:12:23 +0200191 if (new_mtu > priv->mcast_mtu)
192 ipoib_warn(priv, "mtu > %d will cause multicast packet drops.\n",
193 priv->mcast_mtu);
Pradeep Satyanarayana586a6932007-12-21 13:08:23 -0800194
Michael S. Tsirkin839fcab2007-02-05 22:12:23 +0200195 dev->mtu = new_mtu;
196 return 0;
197 }
198
Shirley Mabc7b3a32008-04-23 11:55:45 -0700199 if (new_mtu > IPOIB_UD_MTU(priv->max_ib_mtu))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200 return -EINVAL;
201
202 priv->admin_mtu = new_mtu;
203
204 dev->mtu = min(priv->mcast_mtu, priv->admin_mtu);
205
206 return 0;
207}
208
Jack Morgenstein37c22a72006-05-29 19:14:05 +0300209static struct ipoib_path *__path_find(struct net_device *dev, void *gid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210{
211 struct ipoib_dev_priv *priv = netdev_priv(dev);
212 struct rb_node *n = priv->path_tree.rb_node;
213 struct ipoib_path *path;
214 int ret;
215
216 while (n) {
217 path = rb_entry(n, struct ipoib_path, rb_node);
218
Jack Morgenstein37c22a72006-05-29 19:14:05 +0300219 ret = memcmp(gid, path->pathrec.dgid.raw,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220 sizeof (union ib_gid));
221
222 if (ret < 0)
223 n = n->rb_left;
224 else if (ret > 0)
225 n = n->rb_right;
226 else
227 return path;
228 }
229
230 return NULL;
231}
232
233static int __path_add(struct net_device *dev, struct ipoib_path *path)
234{
235 struct ipoib_dev_priv *priv = netdev_priv(dev);
236 struct rb_node **n = &priv->path_tree.rb_node;
237 struct rb_node *pn = NULL;
238 struct ipoib_path *tpath;
239 int ret;
240
241 while (*n) {
242 pn = *n;
243 tpath = rb_entry(pn, struct ipoib_path, rb_node);
244
245 ret = memcmp(path->pathrec.dgid.raw, tpath->pathrec.dgid.raw,
246 sizeof (union ib_gid));
247 if (ret < 0)
248 n = &pn->rb_left;
249 else if (ret > 0)
250 n = &pn->rb_right;
251 else
252 return -EEXIST;
253 }
254
255 rb_link_node(&path->rb_node, pn, n);
256 rb_insert_color(&path->rb_node, &priv->path_tree);
257
258 list_add_tail(&path->list, &priv->path_list);
259
260 return 0;
261}
262
263static void path_free(struct net_device *dev, struct ipoib_path *path)
264{
265 struct ipoib_dev_priv *priv = netdev_priv(dev);
266 struct ipoib_neigh *neigh, *tn;
267 struct sk_buff *skb;
268 unsigned long flags;
269
270 while ((skb = __skb_dequeue(&path->queue)))
271 dev_kfree_skb_irq(skb);
272
273 spin_lock_irqsave(&priv->lock, flags);
274
275 list_for_each_entry_safe(neigh, tn, &path->neigh_list, list) {
276 /*
277 * It's safe to call ipoib_put_ah() inside priv->lock
278 * here, because we know that path->ah will always
279 * hold one more reference, so ipoib_put_ah() will
280 * never do more than decrement the ref count.
281 */
282 if (neigh->ah)
283 ipoib_put_ah(neigh->ah);
Michael S. Tsirkind2e06552006-04-04 19:59:40 +0300284
Michael S. Tsirkin2745b5b2006-11-16 14:16:47 +0200285 ipoib_neigh_free(dev, neigh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286 }
287
288 spin_unlock_irqrestore(&priv->lock, flags);
289
290 if (path->ah)
291 ipoib_put_ah(path->ah);
292
293 kfree(path);
294}
295
Roland Dreier1732b0e2005-11-07 10:33:11 -0800296#ifdef CONFIG_INFINIBAND_IPOIB_DEBUG
297
298struct ipoib_path_iter *ipoib_path_iter_init(struct net_device *dev)
299{
300 struct ipoib_path_iter *iter;
301
302 iter = kmalloc(sizeof *iter, GFP_KERNEL);
303 if (!iter)
304 return NULL;
305
306 iter->dev = dev;
307 memset(iter->path.pathrec.dgid.raw, 0, 16);
308
309 if (ipoib_path_iter_next(iter)) {
310 kfree(iter);
311 return NULL;
312 }
313
314 return iter;
315}
316
317int ipoib_path_iter_next(struct ipoib_path_iter *iter)
318{
319 struct ipoib_dev_priv *priv = netdev_priv(iter->dev);
320 struct rb_node *n;
321 struct ipoib_path *path;
322 int ret = 1;
323
324 spin_lock_irq(&priv->lock);
325
326 n = rb_first(&priv->path_tree);
327
328 while (n) {
329 path = rb_entry(n, struct ipoib_path, rb_node);
330
331 if (memcmp(iter->path.pathrec.dgid.raw, path->pathrec.dgid.raw,
332 sizeof (union ib_gid)) < 0) {
333 iter->path = *path;
334 ret = 0;
335 break;
336 }
337
338 n = rb_next(n);
339 }
340
341 spin_unlock_irq(&priv->lock);
342
343 return ret;
344}
345
346void ipoib_path_iter_read(struct ipoib_path_iter *iter,
347 struct ipoib_path *path)
348{
349 *path = iter->path;
350}
351
352#endif /* CONFIG_INFINIBAND_IPOIB_DEBUG */
353
Moni Shouaee1e2c82008-07-14 23:48:49 -0700354void ipoib_mark_paths_invalid(struct net_device *dev)
355{
356 struct ipoib_dev_priv *priv = netdev_priv(dev);
357 struct ipoib_path *path, *tp;
358
359 spin_lock_irq(&priv->lock);
360
361 list_for_each_entry_safe(path, tp, &priv->path_list, list) {
Harvey Harrison5b095d9892008-10-29 12:52:50 -0700362 ipoib_dbg(priv, "mark path LID 0x%04x GID %pI6 invalid\n",
Moni Shouaee1e2c82008-07-14 23:48:49 -0700363 be16_to_cpu(path->pathrec.dlid),
Harvey Harrisonfcace2f2008-10-28 22:37:22 -0700364 path->pathrec.dgid.raw);
Moni Shouaee1e2c82008-07-14 23:48:49 -0700365 path->valid = 0;
366 }
367
368 spin_unlock_irq(&priv->lock);
369}
370
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371void ipoib_flush_paths(struct net_device *dev)
372{
373 struct ipoib_dev_priv *priv = netdev_priv(dev);
374 struct ipoib_path *path, *tp;
375 LIST_HEAD(remove_list);
Roland Dreier943c2462008-09-30 10:36:21 -0700376 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377
Roland Dreier943c2462008-09-30 10:36:21 -0700378 netif_tx_lock_bh(dev);
379 spin_lock_irqsave(&priv->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380
Robert P. J. Day157de222008-04-16 21:09:26 -0700381 list_splice_init(&priv->path_list, &remove_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382
383 list_for_each_entry(path, &remove_list, list)
384 rb_erase(&path->rb_node, &priv->path_tree);
385
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386 list_for_each_entry_safe(path, tp, &remove_list, list) {
387 if (path->query)
388 ib_sa_cancel_query(path->query_id, path->query);
Roland Dreier943c2462008-09-30 10:36:21 -0700389 spin_unlock_irqrestore(&priv->lock, flags);
390 netif_tx_unlock_bh(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391 wait_for_completion(&path->done);
392 path_free(dev, path);
Roland Dreier943c2462008-09-30 10:36:21 -0700393 netif_tx_lock_bh(dev);
394 spin_lock_irqsave(&priv->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395 }
Roland Dreier943c2462008-09-30 10:36:21 -0700396
397 spin_unlock_irqrestore(&priv->lock, flags);
398 netif_tx_unlock_bh(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399}
400
401static void path_rec_completion(int status,
402 struct ib_sa_path_rec *pathrec,
403 void *path_ptr)
404{
405 struct ipoib_path *path = path_ptr;
406 struct net_device *dev = path->dev;
407 struct ipoib_dev_priv *priv = netdev_priv(dev);
408 struct ipoib_ah *ah = NULL;
Roland Dreierc9da4ba2008-09-25 15:26:15 -0700409 struct ipoib_ah *old_ah = NULL;
Michael S. Tsirkind04d01b2007-03-22 14:40:16 -0700410 struct ipoib_neigh *neigh, *tn;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411 struct sk_buff_head skqueue;
412 struct sk_buff *skb;
413 unsigned long flags;
414
Roland Dreier843613b2007-02-26 12:57:08 -0800415 if (!status)
Harvey Harrison5b095d9892008-10-29 12:52:50 -0700416 ipoib_dbg(priv, "PathRec LID 0x%04x for GID %pI6\n",
Harvey Harrisonfcace2f2008-10-28 22:37:22 -0700417 be16_to_cpu(pathrec->dlid), pathrec->dgid.raw);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418 else
Harvey Harrison5b095d9892008-10-29 12:52:50 -0700419 ipoib_dbg(priv, "PathRec status %d for GID %pI6\n",
Harvey Harrisonfcace2f2008-10-28 22:37:22 -0700420 status, path->pathrec.dgid.raw);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421
422 skb_queue_head_init(&skqueue);
423
424 if (!status) {
Sean Hefty46f1b3d2007-04-05 11:50:11 -0700425 struct ib_ah_attr av;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426
Sean Hefty46f1b3d2007-04-05 11:50:11 -0700427 if (!ib_init_ah_from_path(priv->ca, priv->port, pathrec, &av))
428 ah = ipoib_create_ah(dev, priv->pd, &av);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429 }
430
431 spin_lock_irqsave(&priv->lock, flags);
432
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433 if (ah) {
434 path->pathrec = *pathrec;
435
Roland Dreierc9da4ba2008-09-25 15:26:15 -0700436 old_ah = path->ah;
437 path->ah = ah;
438
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439 ipoib_dbg(priv, "created address handle %p for LID 0x%04x, SL %d\n",
440 ah, be16_to_cpu(pathrec->dlid), pathrec->sl);
441
442 while ((skb = __skb_dequeue(&path->queue)))
443 __skb_queue_tail(&skqueue, skb);
444
Michael S. Tsirkind04d01b2007-03-22 14:40:16 -0700445 list_for_each_entry_safe(neigh, tn, &path->neigh_list, list) {
Moni Shouaee1e2c82008-07-14 23:48:49 -0700446 if (neigh->ah) {
447 WARN_ON(neigh->ah != old_ah);
448 /*
449 * Dropping the ah reference inside
450 * priv->lock is safe here, because we
451 * will hold one more reference from
452 * the original value of path->ah (ie
453 * old_ah).
454 */
455 ipoib_put_ah(neigh->ah);
456 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457 kref_get(&path->ah->ref);
458 neigh->ah = path->ah;
Michael S. Tsirkin8a7f7522006-07-19 17:44:37 +0300459 memcpy(&neigh->dgid.raw, &path->pathrec.dgid.raw,
460 sizeof(union ib_gid));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461
Michael S. Tsirkin839fcab2007-02-05 22:12:23 +0200462 if (ipoib_cm_enabled(dev, neigh->neighbour)) {
463 if (!ipoib_cm_get(neigh))
464 ipoib_cm_set(neigh, ipoib_cm_create_tx(dev,
465 path,
466 neigh));
467 if (!ipoib_cm_get(neigh)) {
468 list_del(&neigh->list);
469 if (neigh->ah)
470 ipoib_put_ah(neigh->ah);
471 ipoib_neigh_free(dev, neigh);
472 continue;
473 }
474 }
475
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476 while ((skb = __skb_dequeue(&neigh->queue)))
477 __skb_queue_tail(&skqueue, skb);
478 }
Moni Shouaee1e2c82008-07-14 23:48:49 -0700479 path->valid = 1;
Roland Dreier5872a9f2005-11-29 10:13:54 -0800480 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481
Roland Dreier5872a9f2005-11-29 10:13:54 -0800482 path->query = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483 complete(&path->done);
484
485 spin_unlock_irqrestore(&priv->lock, flags);
486
Moni Shouaee1e2c82008-07-14 23:48:49 -0700487 if (old_ah)
488 ipoib_put_ah(old_ah);
489
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490 while ((skb = __skb_dequeue(&skqueue))) {
491 skb->dev = dev;
492 if (dev_queue_xmit(skb))
493 ipoib_warn(priv, "dev_queue_xmit failed "
494 "to requeue packet\n");
495 }
496}
497
Jack Morgenstein37c22a72006-05-29 19:14:05 +0300498static struct ipoib_path *path_rec_create(struct net_device *dev, void *gid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499{
500 struct ipoib_dev_priv *priv = netdev_priv(dev);
501 struct ipoib_path *path;
502
Jack Morgenstein1401b532007-11-26 10:41:19 +0200503 if (!priv->broadcast)
504 return NULL;
505
Roland Dreier21a38482005-11-02 10:07:59 -0800506 path = kzalloc(sizeof *path, GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507 if (!path)
508 return NULL;
509
Roland Dreier21a38482005-11-02 10:07:59 -0800510 path->dev = dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511
512 skb_queue_head_init(&path->queue);
513
514 INIT_LIST_HEAD(&path->neigh_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515
Jack Morgenstein37c22a72006-05-29 19:14:05 +0300516 memcpy(path->pathrec.dgid.raw, gid, sizeof (union ib_gid));
Roland Dreier2337f802007-10-23 19:57:54 -0700517 path->pathrec.sgid = priv->local_gid;
518 path->pathrec.pkey = cpu_to_be16(priv->pkey);
Sean Hefty81668832007-08-02 12:21:31 -0700519 path->pathrec.numb_path = 1;
520 path->pathrec.traffic_class = priv->broadcast->mcmember.traffic_class;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521
522 return path;
523}
524
525static int path_rec_start(struct net_device *dev,
526 struct ipoib_path *path)
527{
528 struct ipoib_dev_priv *priv = netdev_priv(dev);
529
Harvey Harrison5b095d9892008-10-29 12:52:50 -0700530 ipoib_dbg(priv, "Start path record lookup for %pI6\n",
Harvey Harrisonfcace2f2008-10-28 22:37:22 -0700531 path->pathrec.dgid.raw);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532
Roland Dreier65c7edd2005-11-28 21:20:34 -0800533 init_completion(&path->done);
534
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535 path->query_id =
Michael S. Tsirkinc1a0b232006-08-21 16:40:12 -0700536 ib_sa_path_rec_get(&ipoib_sa_client, priv->ca, priv->port,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537 &path->pathrec,
538 IB_SA_PATH_REC_DGID |
539 IB_SA_PATH_REC_SGID |
540 IB_SA_PATH_REC_NUMB_PATH |
Sean Hefty81668832007-08-02 12:21:31 -0700541 IB_SA_PATH_REC_TRAFFIC_CLASS |
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542 IB_SA_PATH_REC_PKEY,
543 1000, GFP_ATOMIC,
544 path_rec_completion,
545 path, &path->query);
546 if (path->query_id < 0) {
Or Gerlitz01b3fc82008-07-22 14:18:34 -0700547 ipoib_warn(priv, "ib_sa_path_rec_get failed: %d\n", path->query_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548 path->query = NULL;
549 return path->query_id;
550 }
551
552 return 0;
553}
554
555static void neigh_add_path(struct sk_buff *skb, struct net_device *dev)
556{
557 struct ipoib_dev_priv *priv = netdev_priv(dev);
558 struct ipoib_path *path;
559 struct ipoib_neigh *neigh;
Roland Dreier943c2462008-09-30 10:36:21 -0700560 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561
Moni Shoua732a2172007-10-09 19:43:36 -0700562 neigh = ipoib_neigh_alloc(skb->dst->neighbour, skb->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563 if (!neigh) {
Roland Dreierde903512007-09-28 15:33:51 -0700564 ++dev->stats.tx_dropped;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565 dev_kfree_skb_any(skb);
566 return;
567 }
568
Roland Dreier943c2462008-09-30 10:36:21 -0700569 spin_lock_irqsave(&priv->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570
Jack Morgenstein37c22a72006-05-29 19:14:05 +0300571 path = __path_find(dev, skb->dst->neighbour->ha + 4);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572 if (!path) {
Jack Morgenstein37c22a72006-05-29 19:14:05 +0300573 path = path_rec_create(dev, skb->dst->neighbour->ha + 4);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700574 if (!path)
Michael S. Tsirkind2e06552006-04-04 19:59:40 +0300575 goto err_path;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576
577 __path_add(dev, path);
578 }
579
580 list_add_tail(&neigh->list, &path->neigh_list);
581
Michael S. Tsirkin47f7a072006-01-17 09:22:05 -0800582 if (path->ah) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583 kref_get(&path->ah->ref);
584 neigh->ah = path->ah;
Michael S. Tsirkin8a7f7522006-07-19 17:44:37 +0300585 memcpy(&neigh->dgid.raw, &path->pathrec.dgid.raw,
586 sizeof(union ib_gid));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587
Michael S. Tsirkin839fcab2007-02-05 22:12:23 +0200588 if (ipoib_cm_enabled(dev, neigh->neighbour)) {
589 if (!ipoib_cm_get(neigh))
590 ipoib_cm_set(neigh, ipoib_cm_create_tx(dev, path, neigh));
591 if (!ipoib_cm_get(neigh)) {
592 list_del(&neigh->list);
593 if (neigh->ah)
594 ipoib_put_ah(neigh->ah);
595 ipoib_neigh_free(dev, neigh);
596 goto err_drop;
597 }
598 if (skb_queue_len(&neigh->queue) < IPOIB_MAX_PATH_REC_QUEUE)
599 __skb_queue_tail(&neigh->queue, skb);
600 else {
601 ipoib_warn(priv, "queue length limit %d. Packet drop.\n",
602 skb_queue_len(&neigh->queue));
603 goto err_drop;
604 }
605 } else
606 ipoib_send(dev, skb, path->ah, IPOIB_QPN(skb->dst->neighbour->ha));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607 } else {
608 neigh->ah = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609
610 if (!path->query && path_rec_start(dev, path))
Michael S. Tsirkind2e06552006-04-04 19:59:40 +0300611 goto err_list;
Michael S. Tsirkin2745b5b2006-11-16 14:16:47 +0200612
613 __skb_queue_tail(&neigh->queue, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614 }
615
Roland Dreier943c2462008-09-30 10:36:21 -0700616 spin_unlock_irqrestore(&priv->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617 return;
618
Michael S. Tsirkind2e06552006-04-04 19:59:40 +0300619err_list:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700620 list_del(&neigh->list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700621
Michael S. Tsirkind2e06552006-04-04 19:59:40 +0300622err_path:
Michael S. Tsirkin2745b5b2006-11-16 14:16:47 +0200623 ipoib_neigh_free(dev, neigh);
Michael S. Tsirkin839fcab2007-02-05 22:12:23 +0200624err_drop:
Roland Dreierde903512007-09-28 15:33:51 -0700625 ++dev->stats.tx_dropped;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700626 dev_kfree_skb_any(skb);
627
Roland Dreier943c2462008-09-30 10:36:21 -0700628 spin_unlock_irqrestore(&priv->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629}
630
Roland Dreierd70ed602005-09-28 19:56:57 -0700631static void ipoib_path_lookup(struct sk_buff *skb, struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700632{
633 struct ipoib_dev_priv *priv = netdev_priv(skb->dev);
634
635 /* Look up path record for unicasts */
636 if (skb->dst->neighbour->ha[4] != 0xff) {
637 neigh_add_path(skb, dev);
638 return;
639 }
640
641 /* Add in the P_Key for multicasts */
642 skb->dst->neighbour->ha[8] = (priv->pkey >> 8) & 0xff;
643 skb->dst->neighbour->ha[9] = priv->pkey & 0xff;
Jack Morgenstein37c22a72006-05-29 19:14:05 +0300644 ipoib_mcast_send(dev, skb->dst->neighbour->ha + 4, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700645}
646
647static void unicast_arp_send(struct sk_buff *skb, struct net_device *dev,
648 struct ipoib_pseudoheader *phdr)
649{
650 struct ipoib_dev_priv *priv = netdev_priv(dev);
651 struct ipoib_path *path;
Roland Dreier943c2462008-09-30 10:36:21 -0700652 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653
Roland Dreier943c2462008-09-30 10:36:21 -0700654 spin_lock_irqsave(&priv->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655
Jack Morgenstein37c22a72006-05-29 19:14:05 +0300656 path = __path_find(dev, phdr->hwaddr + 4);
Moni Shouaee1e2c82008-07-14 23:48:49 -0700657 if (!path || !path->valid) {
658 if (!path)
659 path = path_rec_create(dev, phdr->hwaddr + 4);
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
665 if (path_rec_start(dev, path)) {
Roland Dreier943c2462008-09-30 10:36:21 -0700666 spin_unlock_irqrestore(&priv->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700667 path_free(dev, path);
668 return;
669 } else
670 __path_add(dev, path);
671 } else {
Roland Dreierde903512007-09-28 15:33:51 -0700672 ++dev->stats.tx_dropped;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673 dev_kfree_skb_any(skb);
674 }
675
Roland Dreier943c2462008-09-30 10:36:21 -0700676 spin_unlock_irqrestore(&priv->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700677 return;
678 }
679
Michael S. Tsirkin47f7a072006-01-17 09:22:05 -0800680 if (path->ah) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700681 ipoib_dbg(priv, "Send unicast ARP to %04x\n",
682 be16_to_cpu(path->pathrec.dlid));
683
Michael S. Tsirkin073ae842006-11-16 10:59:12 +0200684 ipoib_send(dev, skb, path->ah, IPOIB_QPN(phdr->hwaddr));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685 } else if ((path->query || !path_rec_start(dev, path)) &&
686 skb_queue_len(&path->queue) < IPOIB_MAX_PATH_REC_QUEUE) {
687 /* put pseudoheader back on for next time */
688 skb_push(skb, sizeof *phdr);
689 __skb_queue_tail(&path->queue, skb);
690 } else {
Roland Dreierde903512007-09-28 15:33:51 -0700691 ++dev->stats.tx_dropped;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700692 dev_kfree_skb_any(skb);
693 }
694
Roland Dreier943c2462008-09-30 10:36:21 -0700695 spin_unlock_irqrestore(&priv->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696}
697
698static int ipoib_start_xmit(struct sk_buff *skb, struct net_device *dev)
699{
700 struct ipoib_dev_priv *priv = netdev_priv(dev);
701 struct ipoib_neigh *neigh;
702 unsigned long flags;
703
Eli Cohena8bfca02006-09-22 15:22:58 -0700704 if (likely(skb->dst && skb->dst->neighbour)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705 if (unlikely(!*to_ipoib_neigh(skb->dst->neighbour))) {
Roland Dreierd70ed602005-09-28 19:56:57 -0700706 ipoib_path_lookup(skb, dev);
Roland Dreier943c2462008-09-30 10:36:21 -0700707 return NETDEV_TX_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700708 }
709
710 neigh = *to_ipoib_neigh(skb->dst->neighbour);
711
Or Gerlitzbafff972008-01-17 17:03:45 +0200712 if (neigh->ah)
Moni Shoua200d1712007-10-09 19:43:37 -0700713 if (unlikely((memcmp(&neigh->dgid.raw,
Michael S. Tsirkin8a7f7522006-07-19 17:44:37 +0300714 skb->dst->neighbour->ha + 4,
Moni Shoua200d1712007-10-09 19:43:37 -0700715 sizeof(union ib_gid))) ||
716 (neigh->dev != dev))) {
Roland Dreier943c2462008-09-30 10:36:21 -0700717 spin_lock_irqsave(&priv->lock, flags);
Michael S. Tsirkin8a7f7522006-07-19 17:44:37 +0300718 /*
719 * It's safe to call ipoib_put_ah() inside
720 * priv->lock here, because we know that
721 * path->ah will always hold one more reference,
722 * so ipoib_put_ah() will never do more than
723 * decrement the ref count.
724 */
725 ipoib_put_ah(neigh->ah);
726 list_del(&neigh->list);
Michael S. Tsirkin2745b5b2006-11-16 14:16:47 +0200727 ipoib_neigh_free(dev, neigh);
Roland Dreier943c2462008-09-30 10:36:21 -0700728 spin_unlock_irqrestore(&priv->lock, flags);
Michael S. Tsirkin8a7f7522006-07-19 17:44:37 +0300729 ipoib_path_lookup(skb, dev);
Roland Dreier943c2462008-09-30 10:36:21 -0700730 return NETDEV_TX_OK;
Michael S. Tsirkin8a7f7522006-07-19 17:44:37 +0300731 }
732
Or Gerlitzbafff972008-01-17 17:03:45 +0200733 if (ipoib_cm_get(neigh)) {
734 if (ipoib_cm_up(neigh)) {
735 ipoib_cm_send(dev, skb, ipoib_cm_get(neigh));
Roland Dreier943c2462008-09-30 10:36:21 -0700736 return NETDEV_TX_OK;
Or Gerlitzbafff972008-01-17 17:03:45 +0200737 }
738 } else if (neigh->ah) {
Michael S. Tsirkin073ae842006-11-16 10:59:12 +0200739 ipoib_send(dev, skb, neigh->ah, IPOIB_QPN(skb->dst->neighbour->ha));
Roland Dreier943c2462008-09-30 10:36:21 -0700740 return NETDEV_TX_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700741 }
742
743 if (skb_queue_len(&neigh->queue) < IPOIB_MAX_PATH_REC_QUEUE) {
Roland Dreier943c2462008-09-30 10:36:21 -0700744 spin_lock_irqsave(&priv->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700745 __skb_queue_tail(&neigh->queue, skb);
Roland Dreier943c2462008-09-30 10:36:21 -0700746 spin_unlock_irqrestore(&priv->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700747 } else {
Roland Dreierde903512007-09-28 15:33:51 -0700748 ++dev->stats.tx_dropped;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700749 dev_kfree_skb_any(skb);
750 }
751 } else {
752 struct ipoib_pseudoheader *phdr =
753 (struct ipoib_pseudoheader *) skb->data;
754 skb_pull(skb, sizeof *phdr);
755
756 if (phdr->hwaddr[4] == 0xff) {
757 /* Add in the P_Key for multicast*/
758 phdr->hwaddr[8] = (priv->pkey >> 8) & 0xff;
759 phdr->hwaddr[9] = priv->pkey & 0xff;
760
Jack Morgenstein37c22a72006-05-29 19:14:05 +0300761 ipoib_mcast_send(dev, phdr->hwaddr + 4, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700762 } else {
Hal Rosenstock0dca0f72005-07-28 13:17:26 -0700763 /* unicast GID -- should be ARP or RARP reply */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700764
Hal Rosenstock0dca0f72005-07-28 13:17:26 -0700765 if ((be16_to_cpup((__be16 *) skb->data) != ETH_P_ARP) &&
766 (be16_to_cpup((__be16 *) skb->data) != ETH_P_RARP)) {
Harvey Harrison5b095d9892008-10-29 12:52:50 -0700767 ipoib_warn(priv, "Unicast, no %s: type %04x, QPN %06x %pI6\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700768 skb->dst ? "neigh" : "dst",
Sean Hefty97f52eb2005-08-13 21:05:57 -0700769 be16_to_cpup((__be16 *) skb->data),
Michael S. Tsirkin073ae842006-11-16 10:59:12 +0200770 IPOIB_QPN(phdr->hwaddr),
Harvey Harrisonfcace2f2008-10-28 22:37:22 -0700771 phdr->hwaddr + 4);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700772 dev_kfree_skb_any(skb);
Roland Dreierde903512007-09-28 15:33:51 -0700773 ++dev->stats.tx_dropped;
Roland Dreier943c2462008-09-30 10:36:21 -0700774 return NETDEV_TX_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700775 }
776
777 unicast_arp_send(skb, dev, phdr);
778 }
779 }
780
Linus Torvalds1da177e2005-04-16 15:20:36 -0700781 return NETDEV_TX_OK;
782}
783
Linus Torvalds1da177e2005-04-16 15:20:36 -0700784static void ipoib_timeout(struct net_device *dev)
785{
786 struct ipoib_dev_priv *priv = netdev_priv(dev);
787
Roland Dreier4b2d3192005-10-18 12:20:06 -0700788 ipoib_warn(priv, "transmit timeout: latency %d msecs\n",
789 jiffies_to_msecs(jiffies - dev->trans_start));
790 ipoib_warn(priv, "queue stopped %d, tx_head %u, tx_tail %u\n",
791 netif_queue_stopped(dev),
792 priv->tx_head, priv->tx_tail);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700793 /* XXX reset QP, etc. */
794}
795
796static int ipoib_hard_header(struct sk_buff *skb,
797 struct net_device *dev,
798 unsigned short type,
Stephen Hemminger3b04ddd2007-10-09 01:40:57 -0700799 const void *daddr, const void *saddr, unsigned len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700800{
801 struct ipoib_header *header;
802
803 header = (struct ipoib_header *) skb_push(skb, sizeof *header);
804
805 header->proto = htons(type);
806 header->reserved = 0;
807
808 /*
809 * If we don't have a neighbour structure, stuff the
810 * destination address onto the front of the skb so we can
811 * figure out where to send the packet later.
812 */
Roland Dreieref12d452006-03-29 09:36:46 -0800813 if ((!skb->dst || !skb->dst->neighbour) && daddr) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700814 struct ipoib_pseudoheader *phdr =
815 (struct ipoib_pseudoheader *) skb_push(skb, sizeof *phdr);
816 memcpy(phdr->hwaddr, daddr, INFINIBAND_ALEN);
817 }
818
819 return 0;
820}
821
822static void ipoib_set_mcast_list(struct net_device *dev)
823{
824 struct ipoib_dev_priv *priv = netdev_priv(dev);
825
Leonid Arsh7a343d42006-03-23 19:52:51 +0200826 if (!test_bit(IPOIB_FLAG_OPER_UP, &priv->flags)) {
827 ipoib_dbg(priv, "IPOIB_FLAG_OPER_UP not set");
828 return;
829 }
830
Michael S. Tsirkin1ad62a12005-08-24 14:41:51 -0700831 queue_work(ipoib_workqueue, &priv->restart_task);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700832}
833
Alexey Kuznetsovecbb4162007-03-24 12:52:16 -0700834static void ipoib_neigh_cleanup(struct neighbour *n)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700835{
836 struct ipoib_neigh *neigh;
837 struct ipoib_dev_priv *priv = netdev_priv(n->dev);
838 unsigned long flags;
839 struct ipoib_ah *ah = NULL;
840
Moni Shoua732a2172007-10-09 19:43:36 -0700841 neigh = *to_ipoib_neigh(n);
Or Gerlitz7bc531d2008-01-29 12:57:56 +0200842 if (neigh)
Moni Shoua732a2172007-10-09 19:43:36 -0700843 priv = netdev_priv(neigh->dev);
Or Gerlitz7bc531d2008-01-29 12:57:56 +0200844 else
Moni Shoua732a2172007-10-09 19:43:36 -0700845 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700846 ipoib_dbg(priv,
Harvey Harrison5b095d9892008-10-29 12:52:50 -0700847 "neigh_cleanup for %06x %pI6\n",
Michael S. Tsirkin073ae842006-11-16 10:59:12 +0200848 IPOIB_QPN(n->ha),
Harvey Harrisonfcace2f2008-10-28 22:37:22 -0700849 n->ha + 4);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700850
851 spin_lock_irqsave(&priv->lock, flags);
852
Moni Shoua732a2172007-10-09 19:43:36 -0700853 if (neigh->ah)
854 ah = neigh->ah;
855 list_del(&neigh->list);
856 ipoib_neigh_free(n->dev, neigh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700857
858 spin_unlock_irqrestore(&priv->lock, flags);
859
860 if (ah)
861 ipoib_put_ah(ah);
862}
863
Moni Shoua732a2172007-10-09 19:43:36 -0700864struct ipoib_neigh *ipoib_neigh_alloc(struct neighbour *neighbour,
865 struct net_device *dev)
Michael S. Tsirkind2e06552006-04-04 19:59:40 +0300866{
867 struct ipoib_neigh *neigh;
868
869 neigh = kmalloc(sizeof *neigh, GFP_ATOMIC);
870 if (!neigh)
871 return NULL;
872
873 neigh->neighbour = neighbour;
Moni Shoua732a2172007-10-09 19:43:36 -0700874 neigh->dev = dev;
Michael S. Tsirkind2e06552006-04-04 19:59:40 +0300875 *to_ipoib_neigh(neighbour) = neigh;
Roland Dreier82b39912006-12-12 14:48:18 -0800876 skb_queue_head_init(&neigh->queue);
Michael S. Tsirkin839fcab2007-02-05 22:12:23 +0200877 ipoib_cm_set(neigh, NULL);
Michael S. Tsirkind2e06552006-04-04 19:59:40 +0300878
879 return neigh;
880}
881
Michael S. Tsirkin2745b5b2006-11-16 14:16:47 +0200882void ipoib_neigh_free(struct net_device *dev, struct ipoib_neigh *neigh)
Michael S. Tsirkind2e06552006-04-04 19:59:40 +0300883{
Michael S. Tsirkin2745b5b2006-11-16 14:16:47 +0200884 struct sk_buff *skb;
Michael S. Tsirkind2e06552006-04-04 19:59:40 +0300885 *to_ipoib_neigh(neigh->neighbour) = NULL;
Michael S. Tsirkin2745b5b2006-11-16 14:16:47 +0200886 while ((skb = __skb_dequeue(&neigh->queue))) {
Roland Dreierde903512007-09-28 15:33:51 -0700887 ++dev->stats.tx_dropped;
Michael S. Tsirkin2745b5b2006-11-16 14:16:47 +0200888 dev_kfree_skb_any(skb);
889 }
Michael S. Tsirkin839fcab2007-02-05 22:12:23 +0200890 if (ipoib_cm_get(neigh))
891 ipoib_cm_destroy_tx(ipoib_cm_get(neigh));
Michael S. Tsirkind2e06552006-04-04 19:59:40 +0300892 kfree(neigh);
893}
894
Linus Torvalds1da177e2005-04-16 15:20:36 -0700895static int ipoib_neigh_setup_dev(struct net_device *dev, struct neigh_parms *parms)
896{
Alexey Kuznetsovecbb4162007-03-24 12:52:16 -0700897 parms->neigh_cleanup = ipoib_neigh_cleanup;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700898
899 return 0;
900}
901
902int ipoib_dev_init(struct net_device *dev, struct ib_device *ca, int port)
903{
904 struct ipoib_dev_priv *priv = netdev_priv(dev);
905
906 /* Allocate RX/TX "rings" to hold queued skbs */
Shirley Ma0f485252006-04-10 09:43:58 -0700907 priv->rx_ring = kzalloc(ipoib_recvq_size * sizeof *priv->rx_ring,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700908 GFP_KERNEL);
909 if (!priv->rx_ring) {
910 printk(KERN_WARNING "%s: failed to allocate RX ring (%d entries)\n",
Shirley Ma0f485252006-04-10 09:43:58 -0700911 ca->name, ipoib_recvq_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700912 goto out;
913 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700914
Roland Dreier10313cb2008-03-12 07:51:03 -0700915 priv->tx_ring = vmalloc(ipoib_sendq_size * sizeof *priv->tx_ring);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700916 if (!priv->tx_ring) {
917 printk(KERN_WARNING "%s: failed to allocate TX ring (%d entries)\n",
Shirley Ma0f485252006-04-10 09:43:58 -0700918 ca->name, ipoib_sendq_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700919 goto out_rx_ring_cleanup;
920 }
Roland Dreier10313cb2008-03-12 07:51:03 -0700921 memset(priv->tx_ring, 0, ipoib_sendq_size * sizeof *priv->tx_ring);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700922
Michael S. Tsirkin1b524962007-08-16 15:36:16 +0300923 /* priv->tx_head, tx_tail & tx_outstanding are already 0 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700924
925 if (ipoib_ib_dev_init(dev, ca, port))
926 goto out_tx_ring_cleanup;
927
928 return 0;
929
930out_tx_ring_cleanup:
Roland Dreier10313cb2008-03-12 07:51:03 -0700931 vfree(priv->tx_ring);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700932
933out_rx_ring_cleanup:
934 kfree(priv->rx_ring);
935
936out:
937 return -ENOMEM;
938}
939
940void ipoib_dev_cleanup(struct net_device *dev)
941{
942 struct ipoib_dev_priv *priv = netdev_priv(dev), *cpriv, *tcpriv;
943
Roland Dreier1732b0e2005-11-07 10:33:11 -0800944 ipoib_delete_debug_files(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700945
946 /* Delete any child interfaces first */
947 list_for_each_entry_safe(cpriv, tcpriv, &priv->child_intfs, list) {
948 unregister_netdev(cpriv->dev);
949 ipoib_dev_cleanup(cpriv->dev);
950 free_netdev(cpriv->dev);
951 }
952
953 ipoib_ib_dev_cleanup(dev);
954
Hal Rosenstock92a6b342005-08-13 20:50:27 -0700955 kfree(priv->rx_ring);
Roland Dreier10313cb2008-03-12 07:51:03 -0700956 vfree(priv->tx_ring);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700957
Hal Rosenstock92a6b342005-08-13 20:50:27 -0700958 priv->rx_ring = NULL;
959 priv->tx_ring = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700960}
961
Stephen Hemminger3b04ddd2007-10-09 01:40:57 -0700962static const struct header_ops ipoib_header_ops = {
963 .create = ipoib_hard_header,
964};
965
Vladimir Sokolovskyaf40da82008-07-14 23:48:48 -0700966static int get_skb_hdr(struct sk_buff *skb, void **iphdr,
967 void **tcph, u64 *hdr_flags, void *priv)
968{
969 unsigned int ip_len;
970 struct iphdr *iph;
971
972 if (unlikely(skb->protocol != htons(ETH_P_IP)))
973 return -1;
974
975 /*
976 * In the future we may add an else clause that verifies the
977 * checksum and allows devices which do not calculate checksum
978 * to use LRO.
979 */
980 if (unlikely(skb->ip_summed != CHECKSUM_UNNECESSARY))
981 return -1;
982
983 /* Check for non-TCP packet */
984 skb_reset_network_header(skb);
985 iph = ip_hdr(skb);
986 if (iph->protocol != IPPROTO_TCP)
987 return -1;
988
989 ip_len = ip_hdrlen(skb);
990 skb_set_transport_header(skb, ip_len);
991 *tcph = tcp_hdr(skb);
992
993 /* check if IP header and TCP header are complete */
994 if (ntohs(iph->tot_len) < ip_len + tcp_hdrlen(skb))
995 return -1;
996
997 *hdr_flags = LRO_IPV4 | LRO_TCP;
998 *iphdr = iph;
999
1000 return 0;
1001}
1002
1003static void ipoib_lro_setup(struct ipoib_dev_priv *priv)
1004{
1005 priv->lro.lro_mgr.max_aggr = lro_max_aggr;
1006 priv->lro.lro_mgr.max_desc = IPOIB_MAX_LRO_DESCRIPTORS;
1007 priv->lro.lro_mgr.lro_arr = priv->lro.lro_desc;
1008 priv->lro.lro_mgr.get_skb_header = get_skb_hdr;
1009 priv->lro.lro_mgr.features = LRO_F_NAPI;
1010 priv->lro.lro_mgr.dev = priv->dev;
1011 priv->lro.lro_mgr.ip_summed_aggr = CHECKSUM_UNNECESSARY;
1012}
1013
Linus Torvalds1da177e2005-04-16 15:20:36 -07001014static void ipoib_setup(struct net_device *dev)
1015{
1016 struct ipoib_dev_priv *priv = netdev_priv(dev);
1017
Roland Dreier2337f802007-10-23 19:57:54 -07001018 dev->open = ipoib_open;
1019 dev->stop = ipoib_stop;
1020 dev->change_mtu = ipoib_change_mtu;
1021 dev->hard_start_xmit = ipoib_start_xmit;
1022 dev->tx_timeout = ipoib_timeout;
1023 dev->header_ops = &ipoib_header_ops;
1024 dev->set_multicast_list = ipoib_set_mcast_list;
1025 dev->neigh_setup = ipoib_neigh_setup_dev;
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001026
Eli Cohen82c24c12008-04-16 21:09:32 -07001027 ipoib_set_ethtool_ops(dev);
1028
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001029 netif_napi_add(dev, &priv->napi, ipoib_poll, 100);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001030
Roland Dreier2337f802007-10-23 19:57:54 -07001031 dev->watchdog_timeo = HZ;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001032
Roland Dreier2337f802007-10-23 19:57:54 -07001033 dev->flags |= IFF_BROADCAST | IFF_MULTICAST;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001034
1035 /*
1036 * We add in INFINIBAND_ALEN to allow for the destination
1037 * address "pseudoheader" for skbs without neighbour struct.
1038 */
Roland Dreier2337f802007-10-23 19:57:54 -07001039 dev->hard_header_len = IPOIB_ENCAP_LEN + INFINIBAND_ALEN;
1040 dev->addr_len = INFINIBAND_ALEN;
1041 dev->type = ARPHRD_INFINIBAND;
1042 dev->tx_queue_len = ipoib_sendq_size * 2;
Eli Coheneb14032f2008-01-30 18:30:46 +02001043 dev->features = (NETIF_F_VLAN_CHALLENGED |
Eli Coheneb14032f2008-01-30 18:30:46 +02001044 NETIF_F_HIGHDMA);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001045
Linus Torvalds1da177e2005-04-16 15:20:36 -07001046 memcpy(dev->broadcast, ipv4_bcast_addr, INFINIBAND_ALEN);
1047
1048 netif_carrier_off(dev);
1049
Linus Torvalds1da177e2005-04-16 15:20:36 -07001050 priv->dev = dev;
1051
Vladimir Sokolovskyaf40da82008-07-14 23:48:48 -07001052 ipoib_lro_setup(priv);
1053
Linus Torvalds1da177e2005-04-16 15:20:36 -07001054 spin_lock_init(&priv->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001055
Ingo Molnar95ed6442006-01-13 14:51:39 -08001056 mutex_init(&priv->vlan_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001057
1058 INIT_LIST_HEAD(&priv->path_list);
1059 INIT_LIST_HEAD(&priv->child_intfs);
1060 INIT_LIST_HEAD(&priv->dead_ahs);
1061 INIT_LIST_HEAD(&priv->multicast_list);
1062
Yosef Etigin26bbf132007-05-19 08:51:54 -07001063 INIT_DELAYED_WORK(&priv->pkey_poll_task, ipoib_pkey_poll);
David Howellsc4028952006-11-22 14:57:56 +00001064 INIT_DELAYED_WORK(&priv->mcast_task, ipoib_mcast_join_task);
Yossi Etigine8224e42008-09-16 11:57:45 -07001065 INIT_WORK(&priv->carrier_on_task, ipoib_mcast_carrier_on_task);
Moni Shouaee1e2c82008-07-14 23:48:49 -07001066 INIT_WORK(&priv->flush_light, ipoib_ib_dev_flush_light);
1067 INIT_WORK(&priv->flush_normal, ipoib_ib_dev_flush_normal);
1068 INIT_WORK(&priv->flush_heavy, ipoib_ib_dev_flush_heavy);
David Howellsc4028952006-11-22 14:57:56 +00001069 INIT_WORK(&priv->restart_task, ipoib_mcast_restart_task);
1070 INIT_DELAYED_WORK(&priv->ah_reap_task, ipoib_reap_ah);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001071}
1072
1073struct ipoib_dev_priv *ipoib_intf_alloc(const char *name)
1074{
1075 struct net_device *dev;
1076
1077 dev = alloc_netdev((int) sizeof (struct ipoib_dev_priv), name,
1078 ipoib_setup);
1079 if (!dev)
1080 return NULL;
1081
1082 return netdev_priv(dev);
1083}
1084
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001085static ssize_t show_pkey(struct device *dev,
1086 struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001087{
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001088 struct ipoib_dev_priv *priv = netdev_priv(to_net_dev(dev));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001089
1090 return sprintf(buf, "0x%04x\n", priv->pkey);
1091}
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001092static DEVICE_ATTR(pkey, S_IRUGO, show_pkey, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001093
Or Gerlitz335a64a5a2007-10-08 10:13:00 +02001094static ssize_t show_umcast(struct device *dev,
1095 struct device_attribute *attr, char *buf)
1096{
1097 struct ipoib_dev_priv *priv = netdev_priv(to_net_dev(dev));
1098
1099 return sprintf(buf, "%d\n", test_bit(IPOIB_FLAG_UMCAST, &priv->flags));
1100}
1101
1102static ssize_t set_umcast(struct device *dev,
1103 struct device_attribute *attr,
1104 const char *buf, size_t count)
1105{
1106 struct ipoib_dev_priv *priv = netdev_priv(to_net_dev(dev));
1107 unsigned long umcast_val = simple_strtoul(buf, NULL, 0);
1108
1109 if (umcast_val > 0) {
1110 set_bit(IPOIB_FLAG_UMCAST, &priv->flags);
1111 ipoib_warn(priv, "ignoring multicast groups joined directly "
1112 "by userspace\n");
1113 } else
1114 clear_bit(IPOIB_FLAG_UMCAST, &priv->flags);
1115
1116 return count;
1117}
1118static DEVICE_ATTR(umcast, S_IWUSR | S_IRUGO, show_umcast, set_umcast);
1119
1120int ipoib_add_umcast_attr(struct net_device *dev)
1121{
1122 return device_create_file(&dev->dev, &dev_attr_umcast);
1123}
1124
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001125static ssize_t create_child(struct device *dev,
1126 struct device_attribute *attr,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001127 const char *buf, size_t count)
1128{
1129 int pkey;
1130 int ret;
1131
1132 if (sscanf(buf, "%i", &pkey) != 1)
1133 return -EINVAL;
1134
1135 if (pkey < 0 || pkey > 0xffff)
1136 return -EINVAL;
1137
Roland Dreier4ce05932005-08-19 12:03:17 -07001138 /*
1139 * Set the full membership bit, so that we join the right
1140 * broadcast group, etc.
1141 */
1142 pkey |= 0x8000;
1143
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001144 ret = ipoib_vlan_add(to_net_dev(dev), pkey);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001145
1146 return ret ? ret : count;
1147}
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001148static DEVICE_ATTR(create_child, S_IWUGO, NULL, create_child);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001149
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001150static ssize_t delete_child(struct device *dev,
1151 struct device_attribute *attr,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001152 const char *buf, size_t count)
1153{
1154 int pkey;
1155 int ret;
1156
1157 if (sscanf(buf, "%i", &pkey) != 1)
1158 return -EINVAL;
1159
1160 if (pkey < 0 || pkey > 0xffff)
1161 return -EINVAL;
1162
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001163 ret = ipoib_vlan_delete(to_net_dev(dev), pkey);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001164
1165 return ret ? ret : count;
1166
1167}
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001168static DEVICE_ATTR(delete_child, S_IWUGO, NULL, delete_child);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001169
1170int ipoib_add_pkey_attr(struct net_device *dev)
1171{
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001172 return device_create_file(&dev->dev, &dev_attr_pkey);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001173}
1174
Or Gerlitz83bb63f2008-10-22 15:49:49 -07001175int ipoib_set_dev_features(struct ipoib_dev_priv *priv, struct ib_device *hca)
1176{
1177 struct ib_device_attr *device_attr;
1178 int result = -ENOMEM;
1179
1180 device_attr = kmalloc(sizeof *device_attr, GFP_KERNEL);
1181 if (!device_attr) {
1182 printk(KERN_WARNING "%s: allocation of %zu bytes failed\n",
1183 hca->name, sizeof *device_attr);
1184 return result;
1185 }
1186
1187 result = ib_query_device(hca, device_attr);
1188 if (result) {
1189 printk(KERN_WARNING "%s: ib_query_device failed (ret = %d)\n",
1190 hca->name, result);
1191 kfree(device_attr);
1192 return result;
1193 }
1194 priv->hca_caps = device_attr->device_cap_flags;
1195
1196 kfree(device_attr);
1197
1198 if (priv->hca_caps & IB_DEVICE_UD_IP_CSUM) {
1199 set_bit(IPOIB_FLAG_CSUM, &priv->flags);
1200 priv->dev->features |= NETIF_F_SG | NETIF_F_IP_CSUM;
1201 }
1202
1203 if (lro)
1204 priv->dev->features |= NETIF_F_LRO;
1205
1206 if (priv->dev->features & NETIF_F_SG && priv->hca_caps & IB_DEVICE_UD_TSO)
1207 priv->dev->features |= NETIF_F_TSO;
1208
1209 return 0;
1210}
1211
1212
Linus Torvalds1da177e2005-04-16 15:20:36 -07001213static struct net_device *ipoib_add_port(const char *format,
1214 struct ib_device *hca, u8 port)
1215{
1216 struct ipoib_dev_priv *priv;
Shirley Mabc7b3a32008-04-23 11:55:45 -07001217 struct ib_port_attr attr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001218 int result = -ENOMEM;
1219
1220 priv = ipoib_intf_alloc(format);
1221 if (!priv)
1222 goto alloc_mem_failed;
1223
1224 SET_NETDEV_DEV(priv->dev, hca->dma_device);
1225
Shirley Mabc7b3a32008-04-23 11:55:45 -07001226 if (!ib_query_port(hca, port, &attr))
1227 priv->max_ib_mtu = ib_mtu_enum_to_int(attr.max_mtu);
1228 else {
1229 printk(KERN_WARNING "%s: ib_query_port %d failed\n",
1230 hca->name, port);
1231 goto device_init_failed;
1232 }
1233
1234 /* MTU will be reset when mcast join happens */
1235 priv->dev->mtu = IPOIB_UD_MTU(priv->max_ib_mtu);
1236 priv->mcast_mtu = priv->admin_mtu = priv->dev->mtu;
1237
Linus Torvalds1da177e2005-04-16 15:20:36 -07001238 result = ib_query_pkey(hca, port, 0, &priv->pkey);
1239 if (result) {
1240 printk(KERN_WARNING "%s: ib_query_pkey port %d failed (ret = %d)\n",
1241 hca->name, port, result);
Eli Cohenca6de172007-08-21 18:46:10 +03001242 goto device_init_failed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001243 }
1244
Or Gerlitz83bb63f2008-10-22 15:49:49 -07001245 if (ipoib_set_dev_features(priv, hca))
Eli Cohen60461362008-04-16 21:01:10 -07001246 goto device_init_failed;
Vladimir Sokolovskyaf40da82008-07-14 23:48:48 -07001247
Roland Dreier4ce05932005-08-19 12:03:17 -07001248 /*
1249 * Set the full membership bit, so that we join the right
1250 * broadcast group, etc.
1251 */
1252 priv->pkey |= 0x8000;
1253
Linus Torvalds1da177e2005-04-16 15:20:36 -07001254 priv->dev->broadcast[8] = priv->pkey >> 8;
1255 priv->dev->broadcast[9] = priv->pkey & 0xff;
1256
1257 result = ib_query_gid(hca, port, 0, &priv->local_gid);
1258 if (result) {
1259 printk(KERN_WARNING "%s: ib_query_gid port %d failed (ret = %d)\n",
1260 hca->name, port, result);
Eli Cohenca6de172007-08-21 18:46:10 +03001261 goto device_init_failed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001262 } else
1263 memcpy(priv->dev->dev_addr + 4, priv->local_gid.raw, sizeof (union ib_gid));
1264
Linus Torvalds1da177e2005-04-16 15:20:36 -07001265 result = ipoib_dev_init(priv->dev, hca, port);
1266 if (result < 0) {
1267 printk(KERN_WARNING "%s: failed to initialize port %d (ret = %d)\n",
1268 hca->name, port, result);
1269 goto device_init_failed;
1270 }
1271
1272 INIT_IB_EVENT_HANDLER(&priv->event_handler,
1273 priv->ca, ipoib_event);
1274 result = ib_register_event_handler(&priv->event_handler);
1275 if (result < 0) {
1276 printk(KERN_WARNING "%s: ib_register_event_handler failed for "
1277 "port %d (ret = %d)\n",
1278 hca->name, port, result);
1279 goto event_failed;
1280 }
1281
1282 result = register_netdev(priv->dev);
1283 if (result) {
1284 printk(KERN_WARNING "%s: couldn't register ipoib port %d; error %d\n",
1285 hca->name, port, result);
1286 goto register_failed;
1287 }
1288
Roland Dreier1732b0e2005-11-07 10:33:11 -08001289 ipoib_create_debug_files(priv->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001290
Michael S. Tsirkin839fcab2007-02-05 22:12:23 +02001291 if (ipoib_cm_add_mode_attr(priv->dev))
1292 goto sysfs_failed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001293 if (ipoib_add_pkey_attr(priv->dev))
1294 goto sysfs_failed;
Or Gerlitz335a64a5a2007-10-08 10:13:00 +02001295 if (ipoib_add_umcast_attr(priv->dev))
1296 goto sysfs_failed;
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001297 if (device_create_file(&priv->dev->dev, &dev_attr_create_child))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001298 goto sysfs_failed;
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001299 if (device_create_file(&priv->dev->dev, &dev_attr_delete_child))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001300 goto sysfs_failed;
1301
1302 return priv->dev;
1303
1304sysfs_failed:
Roland Dreier1732b0e2005-11-07 10:33:11 -08001305 ipoib_delete_debug_files(priv->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001306 unregister_netdev(priv->dev);
1307
1308register_failed:
1309 ib_unregister_event_handler(&priv->event_handler);
Roland Dreiera77a57a2008-08-19 15:01:32 -07001310 flush_workqueue(ipoib_workqueue);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001311
1312event_failed:
1313 ipoib_dev_cleanup(priv->dev);
1314
1315device_init_failed:
1316 free_netdev(priv->dev);
1317
1318alloc_mem_failed:
1319 return ERR_PTR(result);
1320}
1321
1322static void ipoib_add_one(struct ib_device *device)
1323{
1324 struct list_head *dev_list;
1325 struct net_device *dev;
1326 struct ipoib_dev_priv *priv;
1327 int s, e, p;
1328
Tom Tucker07ebafb2006-08-03 16:02:42 -05001329 if (rdma_node_get_transport(device->node_type) != RDMA_TRANSPORT_IB)
1330 return;
1331
Linus Torvalds1da177e2005-04-16 15:20:36 -07001332 dev_list = kmalloc(sizeof *dev_list, GFP_KERNEL);
1333 if (!dev_list)
1334 return;
1335
1336 INIT_LIST_HEAD(dev_list);
1337
Tom Tucker07ebafb2006-08-03 16:02:42 -05001338 if (device->node_type == RDMA_NODE_IB_SWITCH) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001339 s = 0;
1340 e = 0;
1341 } else {
1342 s = 1;
1343 e = device->phys_port_cnt;
1344 }
1345
1346 for (p = s; p <= e; ++p) {
1347 dev = ipoib_add_port("ib%d", device, p);
1348 if (!IS_ERR(dev)) {
1349 priv = netdev_priv(dev);
1350 list_add_tail(&priv->list, dev_list);
1351 }
1352 }
1353
1354 ib_set_client_data(device, &ipoib_client, dev_list);
1355}
1356
1357static void ipoib_remove_one(struct ib_device *device)
1358{
1359 struct ipoib_dev_priv *priv, *tmp;
1360 struct list_head *dev_list;
1361
Tom Tucker07ebafb2006-08-03 16:02:42 -05001362 if (rdma_node_get_transport(device->node_type) != RDMA_TRANSPORT_IB)
1363 return;
1364
Linus Torvalds1da177e2005-04-16 15:20:36 -07001365 dev_list = ib_get_client_data(device, &ipoib_client);
1366
1367 list_for_each_entry_safe(priv, tmp, dev_list, list) {
1368 ib_unregister_event_handler(&priv->event_handler);
Roland Dreiera77a57a2008-08-19 15:01:32 -07001369
1370 rtnl_lock();
1371 dev_change_flags(priv->dev, priv->dev->flags & ~IFF_UP);
1372 rtnl_unlock();
1373
1374 flush_workqueue(ipoib_workqueue);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001375
1376 unregister_netdev(priv->dev);
1377 ipoib_dev_cleanup(priv->dev);
1378 free_netdev(priv->dev);
1379 }
Michael S. Tsirkin06c56e42005-09-01 09:19:02 -07001380
1381 kfree(dev_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001382}
1383
1384static int __init ipoib_init_module(void)
1385{
1386 int ret;
1387
Shirley Ma0f485252006-04-10 09:43:58 -07001388 ipoib_recvq_size = roundup_pow_of_two(ipoib_recvq_size);
1389 ipoib_recvq_size = min(ipoib_recvq_size, IPOIB_MAX_QUEUE_SIZE);
1390 ipoib_recvq_size = max(ipoib_recvq_size, IPOIB_MIN_QUEUE_SIZE);
1391
1392 ipoib_sendq_size = roundup_pow_of_two(ipoib_sendq_size);
1393 ipoib_sendq_size = min(ipoib_sendq_size, IPOIB_MAX_QUEUE_SIZE);
Eli Cohenf56bcd82008-04-29 13:46:53 -07001394 ipoib_sendq_size = max(ipoib_sendq_size, max(2 * MAX_SEND_CQE,
1395 IPOIB_MIN_QUEUE_SIZE));
Pradeep Satyanarayana68e995a2008-01-25 14:15:24 -08001396#ifdef CONFIG_INFINIBAND_IPOIB_CM
1397 ipoib_max_conn_qp = min(ipoib_max_conn_qp, IPOIB_CM_MAX_CONN_QP);
1398#endif
Shirley Ma0f485252006-04-10 09:43:58 -07001399
Eli Cohenf89271da2008-07-14 23:48:44 -07001400 /*
1401 * When copying small received packets, we only copy from the
1402 * linear data part of the SKB, so we rely on this condition.
1403 */
1404 BUILD_BUG_ON(IPOIB_CM_COPYBREAK > IPOIB_CM_HEAD_SIZE);
1405
Linus Torvalds1da177e2005-04-16 15:20:36 -07001406 ret = ipoib_register_debugfs();
1407 if (ret)
1408 return ret;
1409
1410 /*
1411 * We create our own workqueue mainly because we want to be
1412 * able to flush it when devices are being removed. We can't
1413 * use schedule_work()/flush_scheduled_work() because both
1414 * unregister_netdev() and linkwatch_event take the rtnl lock,
1415 * so flush_scheduled_work() can deadlock during device
1416 * removal.
1417 */
1418 ipoib_workqueue = create_singlethread_workqueue("ipoib");
1419 if (!ipoib_workqueue) {
1420 ret = -ENOMEM;
1421 goto err_fs;
1422 }
1423
Michael S. Tsirkinc1a0b232006-08-21 16:40:12 -07001424 ib_sa_register_client(&ipoib_sa_client);
1425
Linus Torvalds1da177e2005-04-16 15:20:36 -07001426 ret = ib_register_client(&ipoib_client);
1427 if (ret)
Michael S. Tsirkinc1a0b232006-08-21 16:40:12 -07001428 goto err_sa;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001429
1430 return 0;
1431
Michael S. Tsirkinc1a0b232006-08-21 16:40:12 -07001432err_sa:
1433 ib_sa_unregister_client(&ipoib_sa_client);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001434 destroy_workqueue(ipoib_workqueue);
1435
Roland Dreier9adec1a2005-04-16 15:26:07 -07001436err_fs:
1437 ipoib_unregister_debugfs();
1438
Linus Torvalds1da177e2005-04-16 15:20:36 -07001439 return ret;
1440}
1441
1442static void __exit ipoib_cleanup_module(void)
1443{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001444 ib_unregister_client(&ipoib_client);
Michael S. Tsirkinc1a0b232006-08-21 16:40:12 -07001445 ib_sa_unregister_client(&ipoib_sa_client);
Roland Dreier9adec1a2005-04-16 15:26:07 -07001446 ipoib_unregister_debugfs();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001447 destroy_workqueue(ipoib_workqueue);
1448}
1449
1450module_init(ipoib_init_module);
1451module_exit(ipoib_cleanup_module);