blob: 43f89ba0a90888d209341378ab626423b94b991f [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
Michał Mirosław3d96c742011-04-19 00:43:20 +0000174static u32 ipoib_fix_features(struct net_device *dev, u32 features)
175{
176 struct ipoib_dev_priv *priv = netdev_priv(dev);
177
178 if (test_bit(IPOIB_FLAG_ADMIN_CM, &priv->flags))
179 features &= ~(NETIF_F_SG | NETIF_F_IP_CSUM | NETIF_F_TSO);
180
181 return features;
182}
183
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184static int ipoib_change_mtu(struct net_device *dev, int new_mtu)
185{
186 struct ipoib_dev_priv *priv = netdev_priv(dev);
187
Michael S. Tsirkin839fcab2007-02-05 22:12:23 +0200188 /* dev->mtu > 2K ==> connected mode */
Pradeep Satyanarayana586a6932007-12-21 13:08:23 -0800189 if (ipoib_cm_admin_enabled(dev)) {
190 if (new_mtu > ipoib_cm_max_mtu(dev))
191 return -EINVAL;
192
Michael S. Tsirkin839fcab2007-02-05 22:12:23 +0200193 if (new_mtu > priv->mcast_mtu)
194 ipoib_warn(priv, "mtu > %d will cause multicast packet drops.\n",
195 priv->mcast_mtu);
Pradeep Satyanarayana586a6932007-12-21 13:08:23 -0800196
Michael S. Tsirkin839fcab2007-02-05 22:12:23 +0200197 dev->mtu = new_mtu;
198 return 0;
199 }
200
Shirley Mabc7b3a32008-04-23 11:55:45 -0700201 if (new_mtu > IPOIB_UD_MTU(priv->max_ib_mtu))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202 return -EINVAL;
203
204 priv->admin_mtu = new_mtu;
205
206 dev->mtu = min(priv->mcast_mtu, priv->admin_mtu);
207
208 return 0;
209}
210
Jack Morgenstein37c22a72006-05-29 19:14:05 +0300211static struct ipoib_path *__path_find(struct net_device *dev, void *gid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212{
213 struct ipoib_dev_priv *priv = netdev_priv(dev);
214 struct rb_node *n = priv->path_tree.rb_node;
215 struct ipoib_path *path;
216 int ret;
217
218 while (n) {
219 path = rb_entry(n, struct ipoib_path, rb_node);
220
Jack Morgenstein37c22a72006-05-29 19:14:05 +0300221 ret = memcmp(gid, path->pathrec.dgid.raw,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222 sizeof (union ib_gid));
223
224 if (ret < 0)
225 n = n->rb_left;
226 else if (ret > 0)
227 n = n->rb_right;
228 else
229 return path;
230 }
231
232 return NULL;
233}
234
235static int __path_add(struct net_device *dev, struct ipoib_path *path)
236{
237 struct ipoib_dev_priv *priv = netdev_priv(dev);
238 struct rb_node **n = &priv->path_tree.rb_node;
239 struct rb_node *pn = NULL;
240 struct ipoib_path *tpath;
241 int ret;
242
243 while (*n) {
244 pn = *n;
245 tpath = rb_entry(pn, struct ipoib_path, rb_node);
246
247 ret = memcmp(path->pathrec.dgid.raw, tpath->pathrec.dgid.raw,
248 sizeof (union ib_gid));
249 if (ret < 0)
250 n = &pn->rb_left;
251 else if (ret > 0)
252 n = &pn->rb_right;
253 else
254 return -EEXIST;
255 }
256
257 rb_link_node(&path->rb_node, pn, n);
258 rb_insert_color(&path->rb_node, &priv->path_tree);
259
260 list_add_tail(&path->list, &priv->path_list);
261
262 return 0;
263}
264
265static void path_free(struct net_device *dev, struct ipoib_path *path)
266{
267 struct ipoib_dev_priv *priv = netdev_priv(dev);
268 struct ipoib_neigh *neigh, *tn;
269 struct sk_buff *skb;
270 unsigned long flags;
271
272 while ((skb = __skb_dequeue(&path->queue)))
273 dev_kfree_skb_irq(skb);
274
275 spin_lock_irqsave(&priv->lock, flags);
276
277 list_for_each_entry_safe(neigh, tn, &path->neigh_list, list) {
278 /*
279 * It's safe to call ipoib_put_ah() inside priv->lock
280 * here, because we know that path->ah will always
281 * hold one more reference, so ipoib_put_ah() will
282 * never do more than decrement the ref count.
283 */
284 if (neigh->ah)
285 ipoib_put_ah(neigh->ah);
Michael S. Tsirkind2e06552006-04-04 19:59:40 +0300286
Michael S. Tsirkin2745b5b2006-11-16 14:16:47 +0200287 ipoib_neigh_free(dev, neigh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288 }
289
290 spin_unlock_irqrestore(&priv->lock, flags);
291
292 if (path->ah)
293 ipoib_put_ah(path->ah);
294
295 kfree(path);
296}
297
Roland Dreier1732b0e2005-11-07 10:33:11 -0800298#ifdef CONFIG_INFINIBAND_IPOIB_DEBUG
299
300struct ipoib_path_iter *ipoib_path_iter_init(struct net_device *dev)
301{
302 struct ipoib_path_iter *iter;
303
304 iter = kmalloc(sizeof *iter, GFP_KERNEL);
305 if (!iter)
306 return NULL;
307
308 iter->dev = dev;
309 memset(iter->path.pathrec.dgid.raw, 0, 16);
310
311 if (ipoib_path_iter_next(iter)) {
312 kfree(iter);
313 return NULL;
314 }
315
316 return iter;
317}
318
319int ipoib_path_iter_next(struct ipoib_path_iter *iter)
320{
321 struct ipoib_dev_priv *priv = netdev_priv(iter->dev);
322 struct rb_node *n;
323 struct ipoib_path *path;
324 int ret = 1;
325
326 spin_lock_irq(&priv->lock);
327
328 n = rb_first(&priv->path_tree);
329
330 while (n) {
331 path = rb_entry(n, struct ipoib_path, rb_node);
332
333 if (memcmp(iter->path.pathrec.dgid.raw, path->pathrec.dgid.raw,
334 sizeof (union ib_gid)) < 0) {
335 iter->path = *path;
336 ret = 0;
337 break;
338 }
339
340 n = rb_next(n);
341 }
342
343 spin_unlock_irq(&priv->lock);
344
345 return ret;
346}
347
348void ipoib_path_iter_read(struct ipoib_path_iter *iter,
349 struct ipoib_path *path)
350{
351 *path = iter->path;
352}
353
354#endif /* CONFIG_INFINIBAND_IPOIB_DEBUG */
355
Moni Shouaee1e2c82008-07-14 23:48:49 -0700356void ipoib_mark_paths_invalid(struct net_device *dev)
357{
358 struct ipoib_dev_priv *priv = netdev_priv(dev);
359 struct ipoib_path *path, *tp;
360
361 spin_lock_irq(&priv->lock);
362
363 list_for_each_entry_safe(path, tp, &priv->path_list, list) {
Harvey Harrison5b095d9892008-10-29 12:52:50 -0700364 ipoib_dbg(priv, "mark path LID 0x%04x GID %pI6 invalid\n",
Moni Shouaee1e2c82008-07-14 23:48:49 -0700365 be16_to_cpu(path->pathrec.dlid),
Harvey Harrisonfcace2f2008-10-28 22:37:22 -0700366 path->pathrec.dgid.raw);
Moni Shouaee1e2c82008-07-14 23:48:49 -0700367 path->valid = 0;
368 }
369
370 spin_unlock_irq(&priv->lock);
371}
372
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373void ipoib_flush_paths(struct net_device *dev)
374{
375 struct ipoib_dev_priv *priv = netdev_priv(dev);
376 struct ipoib_path *path, *tp;
377 LIST_HEAD(remove_list);
Roland Dreier943c2462008-09-30 10:36:21 -0700378 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379
Roland Dreier943c2462008-09-30 10:36:21 -0700380 netif_tx_lock_bh(dev);
381 spin_lock_irqsave(&priv->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382
Robert P. J. Day157de222008-04-16 21:09:26 -0700383 list_splice_init(&priv->path_list, &remove_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384
385 list_for_each_entry(path, &remove_list, list)
386 rb_erase(&path->rb_node, &priv->path_tree);
387
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388 list_for_each_entry_safe(path, tp, &remove_list, list) {
389 if (path->query)
390 ib_sa_cancel_query(path->query_id, path->query);
Roland Dreier943c2462008-09-30 10:36:21 -0700391 spin_unlock_irqrestore(&priv->lock, flags);
392 netif_tx_unlock_bh(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393 wait_for_completion(&path->done);
394 path_free(dev, path);
Roland Dreier943c2462008-09-30 10:36:21 -0700395 netif_tx_lock_bh(dev);
396 spin_lock_irqsave(&priv->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397 }
Roland Dreier943c2462008-09-30 10:36:21 -0700398
399 spin_unlock_irqrestore(&priv->lock, flags);
400 netif_tx_unlock_bh(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401}
402
403static void path_rec_completion(int status,
404 struct ib_sa_path_rec *pathrec,
405 void *path_ptr)
406{
407 struct ipoib_path *path = path_ptr;
408 struct net_device *dev = path->dev;
409 struct ipoib_dev_priv *priv = netdev_priv(dev);
410 struct ipoib_ah *ah = NULL;
Roland Dreierc9da4ba2008-09-25 15:26:15 -0700411 struct ipoib_ah *old_ah = NULL;
Michael S. Tsirkind04d01b2007-03-22 14:40:16 -0700412 struct ipoib_neigh *neigh, *tn;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413 struct sk_buff_head skqueue;
414 struct sk_buff *skb;
415 unsigned long flags;
416
Roland Dreier843613b2007-02-26 12:57:08 -0800417 if (!status)
Harvey Harrison5b095d9892008-10-29 12:52:50 -0700418 ipoib_dbg(priv, "PathRec LID 0x%04x for GID %pI6\n",
Harvey Harrisonfcace2f2008-10-28 22:37:22 -0700419 be16_to_cpu(pathrec->dlid), pathrec->dgid.raw);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420 else
Harvey Harrison5b095d9892008-10-29 12:52:50 -0700421 ipoib_dbg(priv, "PathRec status %d for GID %pI6\n",
Harvey Harrisonfcace2f2008-10-28 22:37:22 -0700422 status, path->pathrec.dgid.raw);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423
424 skb_queue_head_init(&skqueue);
425
426 if (!status) {
Sean Hefty46f1b3d2007-04-05 11:50:11 -0700427 struct ib_ah_attr av;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428
Sean Hefty46f1b3d2007-04-05 11:50:11 -0700429 if (!ib_init_ah_from_path(priv->ca, priv->port, pathrec, &av))
430 ah = ipoib_create_ah(dev, priv->pd, &av);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431 }
432
433 spin_lock_irqsave(&priv->lock, flags);
434
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435 if (ah) {
436 path->pathrec = *pathrec;
437
Roland Dreierc9da4ba2008-09-25 15:26:15 -0700438 old_ah = path->ah;
439 path->ah = ah;
440
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441 ipoib_dbg(priv, "created address handle %p for LID 0x%04x, SL %d\n",
442 ah, be16_to_cpu(pathrec->dlid), pathrec->sl);
443
444 while ((skb = __skb_dequeue(&path->queue)))
445 __skb_queue_tail(&skqueue, skb);
446
Michael S. Tsirkind04d01b2007-03-22 14:40:16 -0700447 list_for_each_entry_safe(neigh, tn, &path->neigh_list, list) {
Moni Shouaee1e2c82008-07-14 23:48:49 -0700448 if (neigh->ah) {
449 WARN_ON(neigh->ah != old_ah);
450 /*
451 * Dropping the ah reference inside
452 * priv->lock is safe here, because we
453 * will hold one more reference from
454 * the original value of path->ah (ie
455 * old_ah).
456 */
457 ipoib_put_ah(neigh->ah);
458 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700459 kref_get(&path->ah->ref);
460 neigh->ah = path->ah;
Michael S. Tsirkin8a7f7522006-07-19 17:44:37 +0300461 memcpy(&neigh->dgid.raw, &path->pathrec.dgid.raw,
462 sizeof(union ib_gid));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463
Michael S. Tsirkin839fcab2007-02-05 22:12:23 +0200464 if (ipoib_cm_enabled(dev, neigh->neighbour)) {
465 if (!ipoib_cm_get(neigh))
466 ipoib_cm_set(neigh, ipoib_cm_create_tx(dev,
467 path,
468 neigh));
469 if (!ipoib_cm_get(neigh)) {
470 list_del(&neigh->list);
471 if (neigh->ah)
472 ipoib_put_ah(neigh->ah);
473 ipoib_neigh_free(dev, neigh);
474 continue;
475 }
476 }
477
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478 while ((skb = __skb_dequeue(&neigh->queue)))
479 __skb_queue_tail(&skqueue, skb);
480 }
Moni Shouaee1e2c82008-07-14 23:48:49 -0700481 path->valid = 1;
Roland Dreier5872a9f2005-11-29 10:13:54 -0800482 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483
Roland Dreier5872a9f2005-11-29 10:13:54 -0800484 path->query = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485 complete(&path->done);
486
487 spin_unlock_irqrestore(&priv->lock, flags);
488
Moni Shouaee1e2c82008-07-14 23:48:49 -0700489 if (old_ah)
490 ipoib_put_ah(old_ah);
491
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492 while ((skb = __skb_dequeue(&skqueue))) {
493 skb->dev = dev;
494 if (dev_queue_xmit(skb))
495 ipoib_warn(priv, "dev_queue_xmit failed "
496 "to requeue packet\n");
497 }
498}
499
Jack Morgenstein37c22a72006-05-29 19:14:05 +0300500static struct ipoib_path *path_rec_create(struct net_device *dev, void *gid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501{
502 struct ipoib_dev_priv *priv = netdev_priv(dev);
503 struct ipoib_path *path;
504
Jack Morgenstein1401b532007-11-26 10:41:19 +0200505 if (!priv->broadcast)
506 return NULL;
507
Roland Dreier21a38482005-11-02 10:07:59 -0800508 path = kzalloc(sizeof *path, GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509 if (!path)
510 return NULL;
511
Roland Dreier21a38482005-11-02 10:07:59 -0800512 path->dev = dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513
514 skb_queue_head_init(&path->queue);
515
516 INIT_LIST_HEAD(&path->neigh_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517
Jack Morgenstein37c22a72006-05-29 19:14:05 +0300518 memcpy(path->pathrec.dgid.raw, gid, sizeof (union ib_gid));
Roland Dreier2337f802007-10-23 19:57:54 -0700519 path->pathrec.sgid = priv->local_gid;
520 path->pathrec.pkey = cpu_to_be16(priv->pkey);
Sean Hefty81668832007-08-02 12:21:31 -0700521 path->pathrec.numb_path = 1;
522 path->pathrec.traffic_class = priv->broadcast->mcmember.traffic_class;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523
524 return path;
525}
526
527static int path_rec_start(struct net_device *dev,
528 struct ipoib_path *path)
529{
530 struct ipoib_dev_priv *priv = netdev_priv(dev);
531
Harvey Harrison5b095d9892008-10-29 12:52:50 -0700532 ipoib_dbg(priv, "Start path record lookup for %pI6\n",
Harvey Harrisonfcace2f2008-10-28 22:37:22 -0700533 path->pathrec.dgid.raw);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534
Roland Dreier65c7edd2005-11-28 21:20:34 -0800535 init_completion(&path->done);
536
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537 path->query_id =
Michael S. Tsirkinc1a0b232006-08-21 16:40:12 -0700538 ib_sa_path_rec_get(&ipoib_sa_client, priv->ca, priv->port,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539 &path->pathrec,
540 IB_SA_PATH_REC_DGID |
541 IB_SA_PATH_REC_SGID |
542 IB_SA_PATH_REC_NUMB_PATH |
Sean Hefty81668832007-08-02 12:21:31 -0700543 IB_SA_PATH_REC_TRAFFIC_CLASS |
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544 IB_SA_PATH_REC_PKEY,
545 1000, GFP_ATOMIC,
546 path_rec_completion,
547 path, &path->query);
548 if (path->query_id < 0) {
Or Gerlitz01b3fc82008-07-22 14:18:34 -0700549 ipoib_warn(priv, "ib_sa_path_rec_get failed: %d\n", path->query_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550 path->query = NULL;
Yossi Etigin93a3ab92008-11-12 10:24:38 -0800551 complete(&path->done);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552 return path->query_id;
553 }
554
555 return 0;
556}
557
558static void neigh_add_path(struct sk_buff *skb, struct net_device *dev)
559{
560 struct ipoib_dev_priv *priv = netdev_priv(dev);
561 struct ipoib_path *path;
562 struct ipoib_neigh *neigh;
David S. Miller69cce1d2011-07-17 23:09:49 -0700563 struct neighbour *n;
Roland Dreier943c2462008-09-30 10:36:21 -0700564 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565
David S. Miller69cce1d2011-07-17 23:09:49 -0700566 n = dst_get_neighbour(skb_dst(skb));
567 neigh = ipoib_neigh_alloc(n, skb->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568 if (!neigh) {
Roland Dreierde903512007-09-28 15:33:51 -0700569 ++dev->stats.tx_dropped;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570 dev_kfree_skb_any(skb);
571 return;
572 }
573
Roland Dreier943c2462008-09-30 10:36:21 -0700574 spin_lock_irqsave(&priv->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575
David S. Miller69cce1d2011-07-17 23:09:49 -0700576 path = __path_find(dev, n->ha + 4);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577 if (!path) {
David S. Miller69cce1d2011-07-17 23:09:49 -0700578 path = path_rec_create(dev, n->ha + 4);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579 if (!path)
Michael S. Tsirkind2e06552006-04-04 19:59:40 +0300580 goto err_path;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581
582 __path_add(dev, path);
583 }
584
585 list_add_tail(&neigh->list, &path->neigh_list);
586
Michael S. Tsirkin47f7a072006-01-17 09:22:05 -0800587 if (path->ah) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588 kref_get(&path->ah->ref);
589 neigh->ah = path->ah;
Michael S. Tsirkin8a7f7522006-07-19 17:44:37 +0300590 memcpy(&neigh->dgid.raw, &path->pathrec.dgid.raw,
591 sizeof(union ib_gid));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592
Michael S. Tsirkin839fcab2007-02-05 22:12:23 +0200593 if (ipoib_cm_enabled(dev, neigh->neighbour)) {
594 if (!ipoib_cm_get(neigh))
595 ipoib_cm_set(neigh, ipoib_cm_create_tx(dev, path, neigh));
596 if (!ipoib_cm_get(neigh)) {
597 list_del(&neigh->list);
598 if (neigh->ah)
599 ipoib_put_ah(neigh->ah);
600 ipoib_neigh_free(dev, neigh);
601 goto err_drop;
602 }
603 if (skb_queue_len(&neigh->queue) < IPOIB_MAX_PATH_REC_QUEUE)
604 __skb_queue_tail(&neigh->queue, skb);
605 else {
606 ipoib_warn(priv, "queue length limit %d. Packet drop.\n",
607 skb_queue_len(&neigh->queue));
608 goto err_drop;
609 }
Roland Dreier721d67c2009-09-05 20:23:40 -0700610 } else {
611 spin_unlock_irqrestore(&priv->lock, flags);
David S. Miller69cce1d2011-07-17 23:09:49 -0700612 ipoib_send(dev, skb, path->ah, IPOIB_QPN(n->ha));
Roland Dreier721d67c2009-09-05 20:23:40 -0700613 return;
614 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700615 } else {
616 neigh->ah = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617
618 if (!path->query && path_rec_start(dev, path))
Michael S. Tsirkind2e06552006-04-04 19:59:40 +0300619 goto err_list;
Michael S. Tsirkin2745b5b2006-11-16 14:16:47 +0200620
621 __skb_queue_tail(&neigh->queue, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622 }
623
Roland Dreier943c2462008-09-30 10:36:21 -0700624 spin_unlock_irqrestore(&priv->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625 return;
626
Michael S. Tsirkind2e06552006-04-04 19:59:40 +0300627err_list:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700628 list_del(&neigh->list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629
Michael S. Tsirkind2e06552006-04-04 19:59:40 +0300630err_path:
Michael S. Tsirkin2745b5b2006-11-16 14:16:47 +0200631 ipoib_neigh_free(dev, neigh);
Michael S. Tsirkin839fcab2007-02-05 22:12:23 +0200632err_drop:
Roland Dreierde903512007-09-28 15:33:51 -0700633 ++dev->stats.tx_dropped;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700634 dev_kfree_skb_any(skb);
635
Roland Dreier943c2462008-09-30 10:36:21 -0700636 spin_unlock_irqrestore(&priv->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637}
638
Roland Dreierd70ed602005-09-28 19:56:57 -0700639static void ipoib_path_lookup(struct sk_buff *skb, struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640{
641 struct ipoib_dev_priv *priv = netdev_priv(skb->dev);
David S. Miller69cce1d2011-07-17 23:09:49 -0700642 struct dst_entry *dst = skb_dst(skb);
643 struct neighbour *n;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644
645 /* Look up path record for unicasts */
David S. Miller69cce1d2011-07-17 23:09:49 -0700646 n = dst_get_neighbour(dst);
647 if (n->ha[4] != 0xff) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648 neigh_add_path(skb, dev);
649 return;
650 }
651
652 /* Add in the P_Key for multicasts */
David S. Miller69cce1d2011-07-17 23:09:49 -0700653 n->ha[8] = (priv->pkey >> 8) & 0xff;
654 n->ha[9] = priv->pkey & 0xff;
655 ipoib_mcast_send(dev, n->ha + 4, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700656}
657
658static void unicast_arp_send(struct sk_buff *skb, struct net_device *dev,
659 struct ipoib_pseudoheader *phdr)
660{
661 struct ipoib_dev_priv *priv = netdev_priv(dev);
662 struct ipoib_path *path;
Roland Dreier943c2462008-09-30 10:36:21 -0700663 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700664
Roland Dreier943c2462008-09-30 10:36:21 -0700665 spin_lock_irqsave(&priv->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700666
Jack Morgenstein37c22a72006-05-29 19:14:05 +0300667 path = __path_find(dev, phdr->hwaddr + 4);
Moni Shouaee1e2c82008-07-14 23:48:49 -0700668 if (!path || !path->valid) {
Jack Morgenstein71d98b42009-02-17 14:51:47 -0800669 int new_path = 0;
670
671 if (!path) {
Moni Shouaee1e2c82008-07-14 23:48:49 -0700672 path = path_rec_create(dev, phdr->hwaddr + 4);
Jack Morgenstein71d98b42009-02-17 14:51:47 -0800673 new_path = 1;
674 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700675 if (path) {
676 /* put pseudoheader back on for next time */
677 skb_push(skb, sizeof *phdr);
678 __skb_queue_tail(&path->queue, skb);
679
Yossi Etiginff79ae82008-11-12 10:24:39 -0800680 if (!path->query && path_rec_start(dev, path)) {
Roland Dreier943c2462008-09-30 10:36:21 -0700681 spin_unlock_irqrestore(&priv->lock, flags);
Jack Morgenstein71d98b42009-02-17 14:51:47 -0800682 if (new_path)
683 path_free(dev, path);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684 return;
685 } else
686 __path_add(dev, path);
687 } else {
Roland Dreierde903512007-09-28 15:33:51 -0700688 ++dev->stats.tx_dropped;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689 dev_kfree_skb_any(skb);
690 }
691
Roland Dreier943c2462008-09-30 10:36:21 -0700692 spin_unlock_irqrestore(&priv->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693 return;
694 }
695
Michael S. Tsirkin47f7a072006-01-17 09:22:05 -0800696 if (path->ah) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700697 ipoib_dbg(priv, "Send unicast ARP to %04x\n",
698 be16_to_cpu(path->pathrec.dlid));
699
Roland Dreier721d67c2009-09-05 20:23:40 -0700700 spin_unlock_irqrestore(&priv->lock, flags);
Michael S. Tsirkin073ae842006-11-16 10:59:12 +0200701 ipoib_send(dev, skb, path->ah, IPOIB_QPN(phdr->hwaddr));
Roland Dreier721d67c2009-09-05 20:23:40 -0700702 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700703 } else if ((path->query || !path_rec_start(dev, path)) &&
704 skb_queue_len(&path->queue) < IPOIB_MAX_PATH_REC_QUEUE) {
705 /* put pseudoheader back on for next time */
706 skb_push(skb, sizeof *phdr);
707 __skb_queue_tail(&path->queue, skb);
708 } else {
Roland Dreierde903512007-09-28 15:33:51 -0700709 ++dev->stats.tx_dropped;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700710 dev_kfree_skb_any(skb);
711 }
712
Roland Dreier943c2462008-09-30 10:36:21 -0700713 spin_unlock_irqrestore(&priv->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700714}
715
716static int ipoib_start_xmit(struct sk_buff *skb, struct net_device *dev)
717{
718 struct ipoib_dev_priv *priv = netdev_priv(dev);
719 struct ipoib_neigh *neigh;
David S. Miller69cce1d2011-07-17 23:09:49 -0700720 struct neighbour *n;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700721 unsigned long flags;
722
David S. Miller69cce1d2011-07-17 23:09:49 -0700723 n = dst_get_neighbour(skb_dst(skb));
724 if (likely(skb_dst(skb) && n)) {
725 if (unlikely(!*to_ipoib_neigh(n))) {
Roland Dreierd70ed602005-09-28 19:56:57 -0700726 ipoib_path_lookup(skb, dev);
Roland Dreier943c2462008-09-30 10:36:21 -0700727 return NETDEV_TX_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728 }
729
David S. Miller69cce1d2011-07-17 23:09:49 -0700730 neigh = *to_ipoib_neigh(n);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700731
Yossi Etigina50df392009-01-09 14:05:11 -0800732 if (unlikely((memcmp(&neigh->dgid.raw,
David S. Miller69cce1d2011-07-17 23:09:49 -0700733 n->ha + 4,
Yossi Etigina50df392009-01-09 14:05:11 -0800734 sizeof(union ib_gid))) ||
735 (neigh->dev != dev))) {
736 spin_lock_irqsave(&priv->lock, flags);
737 /*
738 * It's safe to call ipoib_put_ah() inside
739 * priv->lock here, because we know that
740 * path->ah will always hold one more reference,
741 * so ipoib_put_ah() will never do more than
742 * decrement the ref count.
743 */
744 if (neigh->ah)
Michael S. Tsirkin8a7f7522006-07-19 17:44:37 +0300745 ipoib_put_ah(neigh->ah);
Yossi Etigina50df392009-01-09 14:05:11 -0800746 list_del(&neigh->list);
747 ipoib_neigh_free(dev, neigh);
748 spin_unlock_irqrestore(&priv->lock, flags);
749 ipoib_path_lookup(skb, dev);
750 return NETDEV_TX_OK;
751 }
Michael S. Tsirkin8a7f7522006-07-19 17:44:37 +0300752
Or Gerlitzbafff972008-01-17 17:03:45 +0200753 if (ipoib_cm_get(neigh)) {
754 if (ipoib_cm_up(neigh)) {
755 ipoib_cm_send(dev, skb, ipoib_cm_get(neigh));
Roland Dreier943c2462008-09-30 10:36:21 -0700756 return NETDEV_TX_OK;
Or Gerlitzbafff972008-01-17 17:03:45 +0200757 }
758 } else if (neigh->ah) {
David S. Miller69cce1d2011-07-17 23:09:49 -0700759 ipoib_send(dev, skb, neigh->ah, IPOIB_QPN(n->ha));
Roland Dreier943c2462008-09-30 10:36:21 -0700760 return NETDEV_TX_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700761 }
762
763 if (skb_queue_len(&neigh->queue) < IPOIB_MAX_PATH_REC_QUEUE) {
Roland Dreier943c2462008-09-30 10:36:21 -0700764 spin_lock_irqsave(&priv->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700765 __skb_queue_tail(&neigh->queue, skb);
Roland Dreier943c2462008-09-30 10:36:21 -0700766 spin_unlock_irqrestore(&priv->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700767 } else {
Roland Dreierde903512007-09-28 15:33:51 -0700768 ++dev->stats.tx_dropped;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700769 dev_kfree_skb_any(skb);
770 }
771 } else {
772 struct ipoib_pseudoheader *phdr =
773 (struct ipoib_pseudoheader *) skb->data;
774 skb_pull(skb, sizeof *phdr);
775
776 if (phdr->hwaddr[4] == 0xff) {
777 /* Add in the P_Key for multicast*/
778 phdr->hwaddr[8] = (priv->pkey >> 8) & 0xff;
779 phdr->hwaddr[9] = priv->pkey & 0xff;
780
Jack Morgenstein37c22a72006-05-29 19:14:05 +0300781 ipoib_mcast_send(dev, phdr->hwaddr + 4, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700782 } else {
Hal Rosenstock0dca0f72005-07-28 13:17:26 -0700783 /* unicast GID -- should be ARP or RARP reply */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700784
Hal Rosenstock0dca0f72005-07-28 13:17:26 -0700785 if ((be16_to_cpup((__be16 *) skb->data) != ETH_P_ARP) &&
786 (be16_to_cpup((__be16 *) skb->data) != ETH_P_RARP)) {
Harvey Harrison5b095d9892008-10-29 12:52:50 -0700787 ipoib_warn(priv, "Unicast, no %s: type %04x, QPN %06x %pI6\n",
Eric Dumazetadf30902009-06-02 05:19:30 +0000788 skb_dst(skb) ? "neigh" : "dst",
Sean Hefty97f52eb2005-08-13 21:05:57 -0700789 be16_to_cpup((__be16 *) skb->data),
Michael S. Tsirkin073ae842006-11-16 10:59:12 +0200790 IPOIB_QPN(phdr->hwaddr),
Harvey Harrisonfcace2f2008-10-28 22:37:22 -0700791 phdr->hwaddr + 4);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700792 dev_kfree_skb_any(skb);
Roland Dreierde903512007-09-28 15:33:51 -0700793 ++dev->stats.tx_dropped;
Roland Dreier943c2462008-09-30 10:36:21 -0700794 return NETDEV_TX_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700795 }
796
797 unicast_arp_send(skb, dev, phdr);
798 }
799 }
800
Linus Torvalds1da177e2005-04-16 15:20:36 -0700801 return NETDEV_TX_OK;
802}
803
Linus Torvalds1da177e2005-04-16 15:20:36 -0700804static void ipoib_timeout(struct net_device *dev)
805{
806 struct ipoib_dev_priv *priv = netdev_priv(dev);
807
Roland Dreier4b2d3192005-10-18 12:20:06 -0700808 ipoib_warn(priv, "transmit timeout: latency %d msecs\n",
809 jiffies_to_msecs(jiffies - dev->trans_start));
810 ipoib_warn(priv, "queue stopped %d, tx_head %u, tx_tail %u\n",
811 netif_queue_stopped(dev),
812 priv->tx_head, priv->tx_tail);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700813 /* XXX reset QP, etc. */
814}
815
816static int ipoib_hard_header(struct sk_buff *skb,
817 struct net_device *dev,
818 unsigned short type,
Stephen Hemminger3b04ddd2007-10-09 01:40:57 -0700819 const void *daddr, const void *saddr, unsigned len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700820{
821 struct ipoib_header *header;
David S. Miller69cce1d2011-07-17 23:09:49 -0700822 struct dst_entry *dst;
823 struct neighbour *n;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700824
825 header = (struct ipoib_header *) skb_push(skb, sizeof *header);
826
827 header->proto = htons(type);
828 header->reserved = 0;
829
830 /*
831 * If we don't have a neighbour structure, stuff the
832 * destination address onto the front of the skb so we can
833 * figure out where to send the packet later.
834 */
David S. Miller69cce1d2011-07-17 23:09:49 -0700835 dst = skb_dst(skb);
836 n = NULL;
837 if (dst)
838 n = dst_get_neighbour(dst);
839 if ((!dst || !n) && daddr) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700840 struct ipoib_pseudoheader *phdr =
841 (struct ipoib_pseudoheader *) skb_push(skb, sizeof *phdr);
842 memcpy(phdr->hwaddr, daddr, INFINIBAND_ALEN);
843 }
844
845 return 0;
846}
847
848static void ipoib_set_mcast_list(struct net_device *dev)
849{
850 struct ipoib_dev_priv *priv = netdev_priv(dev);
851
Leonid Arsh7a343d42006-03-23 19:52:51 +0200852 if (!test_bit(IPOIB_FLAG_OPER_UP, &priv->flags)) {
853 ipoib_dbg(priv, "IPOIB_FLAG_OPER_UP not set");
854 return;
855 }
856
Michael S. Tsirkin1ad62a12005-08-24 14:41:51 -0700857 queue_work(ipoib_workqueue, &priv->restart_task);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700858}
859
Alexey Kuznetsovecbb4162007-03-24 12:52:16 -0700860static void ipoib_neigh_cleanup(struct neighbour *n)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700861{
862 struct ipoib_neigh *neigh;
863 struct ipoib_dev_priv *priv = netdev_priv(n->dev);
864 unsigned long flags;
865 struct ipoib_ah *ah = NULL;
866
Moni Shoua732a2172007-10-09 19:43:36 -0700867 neigh = *to_ipoib_neigh(n);
Or Gerlitz7bc531d2008-01-29 12:57:56 +0200868 if (neigh)
Moni Shoua732a2172007-10-09 19:43:36 -0700869 priv = netdev_priv(neigh->dev);
Or Gerlitz7bc531d2008-01-29 12:57:56 +0200870 else
Moni Shoua732a2172007-10-09 19:43:36 -0700871 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700872 ipoib_dbg(priv,
Harvey Harrison5b095d9892008-10-29 12:52:50 -0700873 "neigh_cleanup for %06x %pI6\n",
Michael S. Tsirkin073ae842006-11-16 10:59:12 +0200874 IPOIB_QPN(n->ha),
Harvey Harrisonfcace2f2008-10-28 22:37:22 -0700875 n->ha + 4);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700876
877 spin_lock_irqsave(&priv->lock, flags);
878
Moni Shoua732a2172007-10-09 19:43:36 -0700879 if (neigh->ah)
880 ah = neigh->ah;
881 list_del(&neigh->list);
882 ipoib_neigh_free(n->dev, neigh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700883
884 spin_unlock_irqrestore(&priv->lock, flags);
885
886 if (ah)
887 ipoib_put_ah(ah);
888}
889
Moni Shoua732a2172007-10-09 19:43:36 -0700890struct ipoib_neigh *ipoib_neigh_alloc(struct neighbour *neighbour,
891 struct net_device *dev)
Michael S. Tsirkind2e06552006-04-04 19:59:40 +0300892{
893 struct ipoib_neigh *neigh;
894
895 neigh = kmalloc(sizeof *neigh, GFP_ATOMIC);
896 if (!neigh)
897 return NULL;
898
899 neigh->neighbour = neighbour;
Moni Shoua732a2172007-10-09 19:43:36 -0700900 neigh->dev = dev;
David J. Wilder0cd4d0f2009-12-09 10:03:00 -0800901 memset(&neigh->dgid.raw, 0, sizeof (union ib_gid));
Michael S. Tsirkind2e06552006-04-04 19:59:40 +0300902 *to_ipoib_neigh(neighbour) = neigh;
Roland Dreier82b39912006-12-12 14:48:18 -0800903 skb_queue_head_init(&neigh->queue);
Michael S. Tsirkin839fcab2007-02-05 22:12:23 +0200904 ipoib_cm_set(neigh, NULL);
Michael S. Tsirkind2e06552006-04-04 19:59:40 +0300905
906 return neigh;
907}
908
Michael S. Tsirkin2745b5b2006-11-16 14:16:47 +0200909void ipoib_neigh_free(struct net_device *dev, struct ipoib_neigh *neigh)
Michael S. Tsirkind2e06552006-04-04 19:59:40 +0300910{
Michael S. Tsirkin2745b5b2006-11-16 14:16:47 +0200911 struct sk_buff *skb;
Michael S. Tsirkind2e06552006-04-04 19:59:40 +0300912 *to_ipoib_neigh(neigh->neighbour) = NULL;
Michael S. Tsirkin2745b5b2006-11-16 14:16:47 +0200913 while ((skb = __skb_dequeue(&neigh->queue))) {
Roland Dreierde903512007-09-28 15:33:51 -0700914 ++dev->stats.tx_dropped;
Michael S. Tsirkin2745b5b2006-11-16 14:16:47 +0200915 dev_kfree_skb_any(skb);
916 }
Michael S. Tsirkin839fcab2007-02-05 22:12:23 +0200917 if (ipoib_cm_get(neigh))
918 ipoib_cm_destroy_tx(ipoib_cm_get(neigh));
Michael S. Tsirkind2e06552006-04-04 19:59:40 +0300919 kfree(neigh);
920}
921
Linus Torvalds1da177e2005-04-16 15:20:36 -0700922static int ipoib_neigh_setup_dev(struct net_device *dev, struct neigh_parms *parms)
923{
Alexey Kuznetsovecbb4162007-03-24 12:52:16 -0700924 parms->neigh_cleanup = ipoib_neigh_cleanup;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700925
926 return 0;
927}
928
929int ipoib_dev_init(struct net_device *dev, struct ib_device *ca, int port)
930{
931 struct ipoib_dev_priv *priv = netdev_priv(dev);
932
933 /* Allocate RX/TX "rings" to hold queued skbs */
Shirley Ma0f485252006-04-10 09:43:58 -0700934 priv->rx_ring = kzalloc(ipoib_recvq_size * sizeof *priv->rx_ring,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700935 GFP_KERNEL);
936 if (!priv->rx_ring) {
937 printk(KERN_WARNING "%s: failed to allocate RX ring (%d entries)\n",
Shirley Ma0f485252006-04-10 09:43:58 -0700938 ca->name, ipoib_recvq_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700939 goto out;
940 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700941
Joe Perches948579c2010-11-05 03:07:36 +0000942 priv->tx_ring = vzalloc(ipoib_sendq_size * sizeof *priv->tx_ring);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700943 if (!priv->tx_ring) {
944 printk(KERN_WARNING "%s: failed to allocate TX ring (%d entries)\n",
Shirley Ma0f485252006-04-10 09:43:58 -0700945 ca->name, ipoib_sendq_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700946 goto out_rx_ring_cleanup;
947 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700948
Michael S. Tsirkin1b524962007-08-16 15:36:16 +0300949 /* priv->tx_head, tx_tail & tx_outstanding are already 0 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700950
951 if (ipoib_ib_dev_init(dev, ca, port))
952 goto out_tx_ring_cleanup;
953
954 return 0;
955
956out_tx_ring_cleanup:
Roland Dreier10313cb2008-03-12 07:51:03 -0700957 vfree(priv->tx_ring);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700958
959out_rx_ring_cleanup:
960 kfree(priv->rx_ring);
961
962out:
963 return -ENOMEM;
964}
965
966void ipoib_dev_cleanup(struct net_device *dev)
967{
968 struct ipoib_dev_priv *priv = netdev_priv(dev), *cpriv, *tcpriv;
969
Roland Dreier1732b0e2005-11-07 10:33:11 -0800970 ipoib_delete_debug_files(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700971
972 /* Delete any child interfaces first */
973 list_for_each_entry_safe(cpriv, tcpriv, &priv->child_intfs, list) {
974 unregister_netdev(cpriv->dev);
975 ipoib_dev_cleanup(cpriv->dev);
976 free_netdev(cpriv->dev);
977 }
978
979 ipoib_ib_dev_cleanup(dev);
980
Hal Rosenstock92a6b342005-08-13 20:50:27 -0700981 kfree(priv->rx_ring);
Roland Dreier10313cb2008-03-12 07:51:03 -0700982 vfree(priv->tx_ring);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700983
Hal Rosenstock92a6b342005-08-13 20:50:27 -0700984 priv->rx_ring = NULL;
985 priv->tx_ring = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700986}
987
Stephen Hemminger3b04ddd2007-10-09 01:40:57 -0700988static const struct header_ops ipoib_header_ops = {
989 .create = ipoib_hard_header,
990};
991
Stephen Hemmingerfe8114e2009-03-20 19:35:32 +0000992static const struct net_device_ops ipoib_netdev_ops = {
993 .ndo_open = ipoib_open,
994 .ndo_stop = ipoib_stop,
995 .ndo_change_mtu = ipoib_change_mtu,
Michał Mirosław3d96c742011-04-19 00:43:20 +0000996 .ndo_fix_features = ipoib_fix_features,
Stephen Hemmingerfe8114e2009-03-20 19:35:32 +0000997 .ndo_start_xmit = ipoib_start_xmit,
998 .ndo_tx_timeout = ipoib_timeout,
999 .ndo_set_multicast_list = ipoib_set_mcast_list,
1000 .ndo_neigh_setup = ipoib_neigh_setup_dev,
1001};
1002
Linus Torvalds1da177e2005-04-16 15:20:36 -07001003static void ipoib_setup(struct net_device *dev)
1004{
1005 struct ipoib_dev_priv *priv = netdev_priv(dev);
1006
Stephen Hemmingerfe8114e2009-03-20 19:35:32 +00001007 dev->netdev_ops = &ipoib_netdev_ops;
Roland Dreier2337f802007-10-23 19:57:54 -07001008 dev->header_ops = &ipoib_header_ops;
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001009
Eli Cohen82c24c12008-04-16 21:09:32 -07001010 ipoib_set_ethtool_ops(dev);
1011
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001012 netif_napi_add(dev, &priv->napi, ipoib_poll, 100);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001013
Roland Dreier2337f802007-10-23 19:57:54 -07001014 dev->watchdog_timeo = HZ;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001015
Roland Dreier2337f802007-10-23 19:57:54 -07001016 dev->flags |= IFF_BROADCAST | IFF_MULTICAST;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001017
1018 /*
1019 * We add in INFINIBAND_ALEN to allow for the destination
1020 * address "pseudoheader" for skbs without neighbour struct.
1021 */
Roland Dreier2337f802007-10-23 19:57:54 -07001022 dev->hard_header_len = IPOIB_ENCAP_LEN + INFINIBAND_ALEN;
1023 dev->addr_len = INFINIBAND_ALEN;
1024 dev->type = ARPHRD_INFINIBAND;
1025 dev->tx_queue_len = ipoib_sendq_size * 2;
Eli Coheneb14032f2008-01-30 18:30:46 +02001026 dev->features = (NETIF_F_VLAN_CHALLENGED |
Eli Coheneb14032f2008-01-30 18:30:46 +02001027 NETIF_F_HIGHDMA);
Eric Dumazet86d15cd2009-05-30 23:04:46 -07001028 dev->priv_flags &= ~IFF_XMIT_DST_RELEASE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001029
Linus Torvalds1da177e2005-04-16 15:20:36 -07001030 memcpy(dev->broadcast, ipv4_bcast_addr, INFINIBAND_ALEN);
1031
1032 netif_carrier_off(dev);
1033
Linus Torvalds1da177e2005-04-16 15:20:36 -07001034 priv->dev = dev;
1035
1036 spin_lock_init(&priv->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001037
Ingo Molnar95ed6442006-01-13 14:51:39 -08001038 mutex_init(&priv->vlan_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001039
1040 INIT_LIST_HEAD(&priv->path_list);
1041 INIT_LIST_HEAD(&priv->child_intfs);
1042 INIT_LIST_HEAD(&priv->dead_ahs);
1043 INIT_LIST_HEAD(&priv->multicast_list);
1044
Yosef Etigin26bbf132007-05-19 08:51:54 -07001045 INIT_DELAYED_WORK(&priv->pkey_poll_task, ipoib_pkey_poll);
David Howellsc4028952006-11-22 14:57:56 +00001046 INIT_DELAYED_WORK(&priv->mcast_task, ipoib_mcast_join_task);
Yossi Etigine8224e42008-09-16 11:57:45 -07001047 INIT_WORK(&priv->carrier_on_task, ipoib_mcast_carrier_on_task);
Moni Shouaee1e2c82008-07-14 23:48:49 -07001048 INIT_WORK(&priv->flush_light, ipoib_ib_dev_flush_light);
1049 INIT_WORK(&priv->flush_normal, ipoib_ib_dev_flush_normal);
1050 INIT_WORK(&priv->flush_heavy, ipoib_ib_dev_flush_heavy);
David Howellsc4028952006-11-22 14:57:56 +00001051 INIT_WORK(&priv->restart_task, ipoib_mcast_restart_task);
1052 INIT_DELAYED_WORK(&priv->ah_reap_task, ipoib_reap_ah);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001053}
1054
1055struct ipoib_dev_priv *ipoib_intf_alloc(const char *name)
1056{
1057 struct net_device *dev;
1058
1059 dev = alloc_netdev((int) sizeof (struct ipoib_dev_priv), name,
1060 ipoib_setup);
1061 if (!dev)
1062 return NULL;
1063
1064 return netdev_priv(dev);
1065}
1066
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001067static ssize_t show_pkey(struct device *dev,
1068 struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001069{
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001070 struct ipoib_dev_priv *priv = netdev_priv(to_net_dev(dev));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001071
1072 return sprintf(buf, "0x%04x\n", priv->pkey);
1073}
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001074static DEVICE_ATTR(pkey, S_IRUGO, show_pkey, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001075
Or Gerlitz335a64a5a2007-10-08 10:13:00 +02001076static ssize_t show_umcast(struct device *dev,
1077 struct device_attribute *attr, char *buf)
1078{
1079 struct ipoib_dev_priv *priv = netdev_priv(to_net_dev(dev));
1080
1081 return sprintf(buf, "%d\n", test_bit(IPOIB_FLAG_UMCAST, &priv->flags));
1082}
1083
1084static ssize_t set_umcast(struct device *dev,
1085 struct device_attribute *attr,
1086 const char *buf, size_t count)
1087{
1088 struct ipoib_dev_priv *priv = netdev_priv(to_net_dev(dev));
1089 unsigned long umcast_val = simple_strtoul(buf, NULL, 0);
1090
1091 if (umcast_val > 0) {
1092 set_bit(IPOIB_FLAG_UMCAST, &priv->flags);
1093 ipoib_warn(priv, "ignoring multicast groups joined directly "
1094 "by userspace\n");
1095 } else
1096 clear_bit(IPOIB_FLAG_UMCAST, &priv->flags);
1097
1098 return count;
1099}
1100static DEVICE_ATTR(umcast, S_IWUSR | S_IRUGO, show_umcast, set_umcast);
1101
1102int ipoib_add_umcast_attr(struct net_device *dev)
1103{
1104 return device_create_file(&dev->dev, &dev_attr_umcast);
1105}
1106
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001107static ssize_t create_child(struct device *dev,
1108 struct device_attribute *attr,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001109 const char *buf, size_t count)
1110{
1111 int pkey;
1112 int ret;
1113
1114 if (sscanf(buf, "%i", &pkey) != 1)
1115 return -EINVAL;
1116
1117 if (pkey < 0 || pkey > 0xffff)
1118 return -EINVAL;
1119
Roland Dreier4ce05932005-08-19 12:03:17 -07001120 /*
1121 * Set the full membership bit, so that we join the right
1122 * broadcast group, etc.
1123 */
1124 pkey |= 0x8000;
1125
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001126 ret = ipoib_vlan_add(to_net_dev(dev), pkey);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001127
1128 return ret ? ret : count;
1129}
Or Gerlitz7a52b342010-06-06 04:59:16 +00001130static DEVICE_ATTR(create_child, S_IWUSR, NULL, create_child);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001131
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001132static ssize_t delete_child(struct device *dev,
1133 struct device_attribute *attr,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001134 const char *buf, size_t count)
1135{
1136 int pkey;
1137 int ret;
1138
1139 if (sscanf(buf, "%i", &pkey) != 1)
1140 return -EINVAL;
1141
1142 if (pkey < 0 || pkey > 0xffff)
1143 return -EINVAL;
1144
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001145 ret = ipoib_vlan_delete(to_net_dev(dev), pkey);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001146
1147 return ret ? ret : count;
1148
1149}
Or Gerlitz7a52b342010-06-06 04:59:16 +00001150static DEVICE_ATTR(delete_child, S_IWUSR, NULL, delete_child);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001151
1152int ipoib_add_pkey_attr(struct net_device *dev)
1153{
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001154 return device_create_file(&dev->dev, &dev_attr_pkey);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001155}
1156
Or Gerlitz83bb63f2008-10-22 15:49:49 -07001157int ipoib_set_dev_features(struct ipoib_dev_priv *priv, struct ib_device *hca)
1158{
1159 struct ib_device_attr *device_attr;
1160 int result = -ENOMEM;
1161
1162 device_attr = kmalloc(sizeof *device_attr, GFP_KERNEL);
1163 if (!device_attr) {
1164 printk(KERN_WARNING "%s: allocation of %zu bytes failed\n",
1165 hca->name, sizeof *device_attr);
1166 return result;
1167 }
1168
1169 result = ib_query_device(hca, device_attr);
1170 if (result) {
1171 printk(KERN_WARNING "%s: ib_query_device failed (ret = %d)\n",
1172 hca->name, result);
1173 kfree(device_attr);
1174 return result;
1175 }
1176 priv->hca_caps = device_attr->device_cap_flags;
1177
1178 kfree(device_attr);
1179
1180 if (priv->hca_caps & IB_DEVICE_UD_IP_CSUM) {
Michał Mirosław3d96c742011-04-19 00:43:20 +00001181 priv->dev->hw_features = NETIF_F_SG |
1182 NETIF_F_IP_CSUM | NETIF_F_RXCSUM;
1183
1184 if (priv->hca_caps & IB_DEVICE_UD_TSO)
1185 priv->dev->hw_features |= NETIF_F_TSO;
1186
1187 priv->dev->features |= priv->dev->hw_features;
Or Gerlitz83bb63f2008-10-22 15:49:49 -07001188 }
1189
Or Gerlitz83bb63f2008-10-22 15:49:49 -07001190 return 0;
1191}
1192
Linus Torvalds1da177e2005-04-16 15:20:36 -07001193static struct net_device *ipoib_add_port(const char *format,
1194 struct ib_device *hca, u8 port)
1195{
1196 struct ipoib_dev_priv *priv;
Shirley Mabc7b3a32008-04-23 11:55:45 -07001197 struct ib_port_attr attr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001198 int result = -ENOMEM;
1199
1200 priv = ipoib_intf_alloc(format);
1201 if (!priv)
1202 goto alloc_mem_failed;
1203
1204 SET_NETDEV_DEV(priv->dev, hca->dma_device);
Eli Cohenc3aa9b12010-09-20 07:05:06 +00001205 priv->dev->dev_id = port - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001206
Shirley Mabc7b3a32008-04-23 11:55:45 -07001207 if (!ib_query_port(hca, port, &attr))
1208 priv->max_ib_mtu = ib_mtu_enum_to_int(attr.max_mtu);
1209 else {
1210 printk(KERN_WARNING "%s: ib_query_port %d failed\n",
1211 hca->name, port);
1212 goto device_init_failed;
1213 }
1214
1215 /* MTU will be reset when mcast join happens */
1216 priv->dev->mtu = IPOIB_UD_MTU(priv->max_ib_mtu);
1217 priv->mcast_mtu = priv->admin_mtu = priv->dev->mtu;
1218
Linus Torvalds1da177e2005-04-16 15:20:36 -07001219 result = ib_query_pkey(hca, port, 0, &priv->pkey);
1220 if (result) {
1221 printk(KERN_WARNING "%s: ib_query_pkey port %d failed (ret = %d)\n",
1222 hca->name, port, result);
Eli Cohenca6de172007-08-21 18:46:10 +03001223 goto device_init_failed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001224 }
1225
Or Gerlitz83bb63f2008-10-22 15:49:49 -07001226 if (ipoib_set_dev_features(priv, hca))
Eli Cohen60461362008-04-16 21:01:10 -07001227 goto device_init_failed;
Vladimir Sokolovskyaf40da82008-07-14 23:48:48 -07001228
Roland Dreier4ce05932005-08-19 12:03:17 -07001229 /*
1230 * Set the full membership bit, so that we join the right
1231 * broadcast group, etc.
1232 */
1233 priv->pkey |= 0x8000;
1234
Linus Torvalds1da177e2005-04-16 15:20:36 -07001235 priv->dev->broadcast[8] = priv->pkey >> 8;
1236 priv->dev->broadcast[9] = priv->pkey & 0xff;
1237
1238 result = ib_query_gid(hca, port, 0, &priv->local_gid);
1239 if (result) {
1240 printk(KERN_WARNING "%s: ib_query_gid 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 } else
1244 memcpy(priv->dev->dev_addr + 4, priv->local_gid.raw, sizeof (union ib_gid));
1245
Linus Torvalds1da177e2005-04-16 15:20:36 -07001246 result = ipoib_dev_init(priv->dev, hca, port);
1247 if (result < 0) {
1248 printk(KERN_WARNING "%s: failed to initialize port %d (ret = %d)\n",
1249 hca->name, port, result);
1250 goto device_init_failed;
1251 }
1252
1253 INIT_IB_EVENT_HANDLER(&priv->event_handler,
1254 priv->ca, ipoib_event);
1255 result = ib_register_event_handler(&priv->event_handler);
1256 if (result < 0) {
1257 printk(KERN_WARNING "%s: ib_register_event_handler failed for "
1258 "port %d (ret = %d)\n",
1259 hca->name, port, result);
1260 goto event_failed;
1261 }
1262
1263 result = register_netdev(priv->dev);
1264 if (result) {
1265 printk(KERN_WARNING "%s: couldn't register ipoib port %d; error %d\n",
1266 hca->name, port, result);
1267 goto register_failed;
1268 }
1269
Roland Dreier1732b0e2005-11-07 10:33:11 -08001270 ipoib_create_debug_files(priv->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001271
Michael S. Tsirkin839fcab2007-02-05 22:12:23 +02001272 if (ipoib_cm_add_mode_attr(priv->dev))
1273 goto sysfs_failed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001274 if (ipoib_add_pkey_attr(priv->dev))
1275 goto sysfs_failed;
Or Gerlitz335a64a5a2007-10-08 10:13:00 +02001276 if (ipoib_add_umcast_attr(priv->dev))
1277 goto sysfs_failed;
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001278 if (device_create_file(&priv->dev->dev, &dev_attr_create_child))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001279 goto sysfs_failed;
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001280 if (device_create_file(&priv->dev->dev, &dev_attr_delete_child))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001281 goto sysfs_failed;
1282
1283 return priv->dev;
1284
1285sysfs_failed:
Roland Dreier1732b0e2005-11-07 10:33:11 -08001286 ipoib_delete_debug_files(priv->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001287 unregister_netdev(priv->dev);
1288
1289register_failed:
1290 ib_unregister_event_handler(&priv->event_handler);
Roland Dreiera77a57a2008-08-19 15:01:32 -07001291 flush_workqueue(ipoib_workqueue);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001292
1293event_failed:
1294 ipoib_dev_cleanup(priv->dev);
1295
1296device_init_failed:
1297 free_netdev(priv->dev);
1298
1299alloc_mem_failed:
1300 return ERR_PTR(result);
1301}
1302
1303static void ipoib_add_one(struct ib_device *device)
1304{
1305 struct list_head *dev_list;
1306 struct net_device *dev;
1307 struct ipoib_dev_priv *priv;
1308 int s, e, p;
1309
Tom Tucker07ebafb2006-08-03 16:02:42 -05001310 if (rdma_node_get_transport(device->node_type) != RDMA_TRANSPORT_IB)
1311 return;
1312
Linus Torvalds1da177e2005-04-16 15:20:36 -07001313 dev_list = kmalloc(sizeof *dev_list, GFP_KERNEL);
1314 if (!dev_list)
1315 return;
1316
1317 INIT_LIST_HEAD(dev_list);
1318
Tom Tucker07ebafb2006-08-03 16:02:42 -05001319 if (device->node_type == RDMA_NODE_IB_SWITCH) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001320 s = 0;
1321 e = 0;
1322 } else {
1323 s = 1;
1324 e = device->phys_port_cnt;
1325 }
1326
1327 for (p = s; p <= e; ++p) {
Eli Cohen7b4c8762010-09-27 17:51:11 -07001328 if (rdma_port_get_link_layer(device, p) != IB_LINK_LAYER_INFINIBAND)
1329 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001330 dev = ipoib_add_port("ib%d", device, p);
1331 if (!IS_ERR(dev)) {
1332 priv = netdev_priv(dev);
1333 list_add_tail(&priv->list, dev_list);
1334 }
1335 }
1336
1337 ib_set_client_data(device, &ipoib_client, dev_list);
1338}
1339
1340static void ipoib_remove_one(struct ib_device *device)
1341{
1342 struct ipoib_dev_priv *priv, *tmp;
1343 struct list_head *dev_list;
1344
Tom Tucker07ebafb2006-08-03 16:02:42 -05001345 if (rdma_node_get_transport(device->node_type) != RDMA_TRANSPORT_IB)
1346 return;
1347
Linus Torvalds1da177e2005-04-16 15:20:36 -07001348 dev_list = ib_get_client_data(device, &ipoib_client);
1349
1350 list_for_each_entry_safe(priv, tmp, dev_list, list) {
1351 ib_unregister_event_handler(&priv->event_handler);
Roland Dreiera77a57a2008-08-19 15:01:32 -07001352
1353 rtnl_lock();
1354 dev_change_flags(priv->dev, priv->dev->flags & ~IFF_UP);
1355 rtnl_unlock();
1356
1357 flush_workqueue(ipoib_workqueue);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001358
1359 unregister_netdev(priv->dev);
1360 ipoib_dev_cleanup(priv->dev);
1361 free_netdev(priv->dev);
1362 }
Michael S. Tsirkin06c56e42005-09-01 09:19:02 -07001363
1364 kfree(dev_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001365}
1366
1367static int __init ipoib_init_module(void)
1368{
1369 int ret;
1370
Shirley Ma0f485252006-04-10 09:43:58 -07001371 ipoib_recvq_size = roundup_pow_of_two(ipoib_recvq_size);
1372 ipoib_recvq_size = min(ipoib_recvq_size, IPOIB_MAX_QUEUE_SIZE);
1373 ipoib_recvq_size = max(ipoib_recvq_size, IPOIB_MIN_QUEUE_SIZE);
1374
1375 ipoib_sendq_size = roundup_pow_of_two(ipoib_sendq_size);
1376 ipoib_sendq_size = min(ipoib_sendq_size, IPOIB_MAX_QUEUE_SIZE);
Hagen Paul Pfeifer732eacc2010-10-26 14:22:23 -07001377 ipoib_sendq_size = max3(ipoib_sendq_size, 2 * MAX_SEND_CQE, IPOIB_MIN_QUEUE_SIZE);
Pradeep Satyanarayana68e995a2008-01-25 14:15:24 -08001378#ifdef CONFIG_INFINIBAND_IPOIB_CM
1379 ipoib_max_conn_qp = min(ipoib_max_conn_qp, IPOIB_CM_MAX_CONN_QP);
1380#endif
Shirley Ma0f485252006-04-10 09:43:58 -07001381
Eli Cohenf89271da2008-07-14 23:48:44 -07001382 /*
1383 * When copying small received packets, we only copy from the
1384 * linear data part of the SKB, so we rely on this condition.
1385 */
1386 BUILD_BUG_ON(IPOIB_CM_COPYBREAK > IPOIB_CM_HEAD_SIZE);
1387
Linus Torvalds1da177e2005-04-16 15:20:36 -07001388 ret = ipoib_register_debugfs();
1389 if (ret)
1390 return ret;
1391
1392 /*
1393 * We create our own workqueue mainly because we want to be
1394 * able to flush it when devices are being removed. We can't
1395 * use schedule_work()/flush_scheduled_work() because both
1396 * unregister_netdev() and linkwatch_event take the rtnl lock,
1397 * so flush_scheduled_work() can deadlock during device
1398 * removal.
1399 */
1400 ipoib_workqueue = create_singlethread_workqueue("ipoib");
1401 if (!ipoib_workqueue) {
1402 ret = -ENOMEM;
1403 goto err_fs;
1404 }
1405
Michael S. Tsirkinc1a0b232006-08-21 16:40:12 -07001406 ib_sa_register_client(&ipoib_sa_client);
1407
Linus Torvalds1da177e2005-04-16 15:20:36 -07001408 ret = ib_register_client(&ipoib_client);
1409 if (ret)
Michael S. Tsirkinc1a0b232006-08-21 16:40:12 -07001410 goto err_sa;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001411
1412 return 0;
1413
Michael S. Tsirkinc1a0b232006-08-21 16:40:12 -07001414err_sa:
1415 ib_sa_unregister_client(&ipoib_sa_client);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001416 destroy_workqueue(ipoib_workqueue);
1417
Roland Dreier9adec1a2005-04-16 15:26:07 -07001418err_fs:
1419 ipoib_unregister_debugfs();
1420
Linus Torvalds1da177e2005-04-16 15:20:36 -07001421 return ret;
1422}
1423
1424static void __exit ipoib_cleanup_module(void)
1425{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001426 ib_unregister_client(&ipoib_client);
Michael S. Tsirkinc1a0b232006-08-21 16:40:12 -07001427 ib_sa_unregister_client(&ipoib_sa_client);
Roland Dreier9adec1a2005-04-16 15:26:07 -07001428 ipoib_unregister_debugfs();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001429 destroy_workqueue(ipoib_workqueue);
1430}
1431
1432module_init(ipoib_init_module);
1433module_exit(ipoib_cleanup_module);