IPoIB: Recycle loopback skbs instead of freeing and reallocating
[pv_ops_mirror.git] / drivers / infiniband / ulp / ipoib / ipoib_ib.c
blob10944888cffd79de3c8b4751ceac2929a0296141
1 /*
2 * Copyright (c) 2004, 2005 Topspin Communications. All rights reserved.
3 * Copyright (c) 2005 Sun Microsystems, Inc. All rights reserved.
4 * Copyright (c) 2005 Mellanox Technologies. All rights reserved.
5 * Copyright (c) 2004, 2005 Voltaire, Inc. All rights reserved.
7 * This software is available to you under a choice of one of two
8 * licenses. You may choose to be licensed under the terms of the GNU
9 * General Public License (GPL) Version 2, available from the file
10 * COPYING in the main directory of this source tree, or the
11 * OpenIB.org BSD license below:
13 * Redistribution and use in source and binary forms, with or
14 * without modification, are permitted provided that the following
15 * conditions are met:
17 * - Redistributions of source code must retain the above
18 * copyright notice, this list of conditions and the following
19 * disclaimer.
21 * - Redistributions in binary form must reproduce the above
22 * copyright notice, this list of conditions and the following
23 * disclaimer in the documentation and/or other materials
24 * provided with the distribution.
26 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
27 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
28 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
29 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
30 * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
31 * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
32 * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
33 * SOFTWARE.
35 * $Id: ipoib_ib.c 1386 2004-12-27 16:23:17Z roland $
38 #include <linux/delay.h>
39 #include <linux/dma-mapping.h>
41 #include <rdma/ib_cache.h>
43 #include "ipoib.h"
45 #ifdef CONFIG_INFINIBAND_IPOIB_DEBUG_DATA
46 static int data_debug_level;
48 module_param(data_debug_level, int, 0644);
49 MODULE_PARM_DESC(data_debug_level,
50 "Enable data path debug tracing if > 0");
51 #endif
53 static DEFINE_MUTEX(pkey_mutex);
55 struct ipoib_ah *ipoib_create_ah(struct net_device *dev,
56 struct ib_pd *pd, struct ib_ah_attr *attr)
58 struct ipoib_ah *ah;
60 ah = kmalloc(sizeof *ah, GFP_KERNEL);
61 if (!ah)
62 return NULL;
64 ah->dev = dev;
65 ah->last_send = 0;
66 kref_init(&ah->ref);
68 ah->ah = ib_create_ah(pd, attr);
69 if (IS_ERR(ah->ah)) {
70 kfree(ah);
71 ah = NULL;
72 } else
73 ipoib_dbg(netdev_priv(dev), "Created ah %p\n", ah->ah);
75 return ah;
78 void ipoib_free_ah(struct kref *kref)
80 struct ipoib_ah *ah = container_of(kref, struct ipoib_ah, ref);
81 struct ipoib_dev_priv *priv = netdev_priv(ah->dev);
83 unsigned long flags;
85 spin_lock_irqsave(&priv->lock, flags);
86 list_add_tail(&ah->list, &priv->dead_ahs);
87 spin_unlock_irqrestore(&priv->lock, flags);
90 static int ipoib_ib_post_receive(struct net_device *dev, int id)
92 struct ipoib_dev_priv *priv = netdev_priv(dev);
93 struct ib_sge list;
94 struct ib_recv_wr param;
95 struct ib_recv_wr *bad_wr;
96 int ret;
98 list.addr = priv->rx_ring[id].mapping;
99 list.length = IPOIB_BUF_SIZE;
100 list.lkey = priv->mr->lkey;
102 param.next = NULL;
103 param.wr_id = id | IPOIB_OP_RECV;
104 param.sg_list = &list;
105 param.num_sge = 1;
107 ret = ib_post_recv(priv->qp, &param, &bad_wr);
108 if (unlikely(ret)) {
109 ipoib_warn(priv, "receive failed for buf %d (%d)\n", id, ret);
110 ib_dma_unmap_single(priv->ca, priv->rx_ring[id].mapping,
111 IPOIB_BUF_SIZE, DMA_FROM_DEVICE);
112 dev_kfree_skb_any(priv->rx_ring[id].skb);
113 priv->rx_ring[id].skb = NULL;
116 return ret;
119 static int ipoib_alloc_rx_skb(struct net_device *dev, int id)
121 struct ipoib_dev_priv *priv = netdev_priv(dev);
122 struct sk_buff *skb;
123 u64 addr;
125 skb = dev_alloc_skb(IPOIB_BUF_SIZE + 4);
126 if (!skb)
127 return -ENOMEM;
130 * IB will leave a 40 byte gap for a GRH and IPoIB adds a 4 byte
131 * header. So we need 4 more bytes to get to 48 and align the
132 * IP header to a multiple of 16.
134 skb_reserve(skb, 4);
136 addr = ib_dma_map_single(priv->ca, skb->data, IPOIB_BUF_SIZE,
137 DMA_FROM_DEVICE);
138 if (unlikely(ib_dma_mapping_error(priv->ca, addr))) {
139 dev_kfree_skb_any(skb);
140 return -EIO;
143 priv->rx_ring[id].skb = skb;
144 priv->rx_ring[id].mapping = addr;
146 return 0;
149 static int ipoib_ib_post_receives(struct net_device *dev)
151 struct ipoib_dev_priv *priv = netdev_priv(dev);
152 int i;
154 for (i = 0; i < ipoib_recvq_size; ++i) {
155 if (ipoib_alloc_rx_skb(dev, i)) {
156 ipoib_warn(priv, "failed to allocate receive buffer %d\n", i);
157 return -ENOMEM;
159 if (ipoib_ib_post_receive(dev, i)) {
160 ipoib_warn(priv, "ipoib_ib_post_receive failed for buf %d\n", i);
161 return -EIO;
165 return 0;
168 static void ipoib_ib_handle_rx_wc(struct net_device *dev, struct ib_wc *wc)
170 struct ipoib_dev_priv *priv = netdev_priv(dev);
171 unsigned int wr_id = wc->wr_id & ~IPOIB_OP_RECV;
172 struct sk_buff *skb;
173 u64 addr;
175 ipoib_dbg_data(priv, "recv completion: id %d, status: %d\n",
176 wr_id, wc->status);
178 if (unlikely(wr_id >= ipoib_recvq_size)) {
179 ipoib_warn(priv, "recv completion event with wrid %d (> %d)\n",
180 wr_id, ipoib_recvq_size);
181 return;
184 skb = priv->rx_ring[wr_id].skb;
185 addr = priv->rx_ring[wr_id].mapping;
187 if (unlikely(wc->status != IB_WC_SUCCESS)) {
188 if (wc->status != IB_WC_WR_FLUSH_ERR)
189 ipoib_warn(priv, "failed recv event "
190 "(status=%d, wrid=%d vend_err %x)\n",
191 wc->status, wr_id, wc->vendor_err);
192 ib_dma_unmap_single(priv->ca, addr,
193 IPOIB_BUF_SIZE, DMA_FROM_DEVICE);
194 dev_kfree_skb_any(skb);
195 priv->rx_ring[wr_id].skb = NULL;
196 return;
200 * Drop packets that this interface sent, ie multicast packets
201 * that the HCA has replicated.
203 if (wc->slid == priv->local_lid && wc->src_qp == priv->qp->qp_num)
204 goto repost;
207 * If we can't allocate a new RX buffer, dump
208 * this packet and reuse the old buffer.
210 if (unlikely(ipoib_alloc_rx_skb(dev, wr_id))) {
211 ++priv->stats.rx_dropped;
212 goto repost;
215 ipoib_dbg_data(priv, "received %d bytes, SLID 0x%04x\n",
216 wc->byte_len, wc->slid);
218 ib_dma_unmap_single(priv->ca, addr, IPOIB_BUF_SIZE, DMA_FROM_DEVICE);
220 skb_put(skb, wc->byte_len);
221 skb_pull(skb, IB_GRH_BYTES);
223 skb->protocol = ((struct ipoib_header *) skb->data)->proto;
224 skb_reset_mac_header(skb);
225 skb_pull(skb, IPOIB_ENCAP_LEN);
227 dev->last_rx = jiffies;
228 ++priv->stats.rx_packets;
229 priv->stats.rx_bytes += skb->len;
231 skb->dev = dev;
232 /* XXX get correct PACKET_ type here */
233 skb->pkt_type = PACKET_HOST;
234 netif_receive_skb(skb);
236 repost:
237 if (unlikely(ipoib_ib_post_receive(dev, wr_id)))
238 ipoib_warn(priv, "ipoib_ib_post_receive failed "
239 "for buf %d\n", wr_id);
242 static void ipoib_ib_handle_tx_wc(struct net_device *dev, struct ib_wc *wc)
244 struct ipoib_dev_priv *priv = netdev_priv(dev);
245 unsigned int wr_id = wc->wr_id;
246 struct ipoib_tx_buf *tx_req;
247 unsigned long flags;
249 ipoib_dbg_data(priv, "send completion: id %d, status: %d\n",
250 wr_id, wc->status);
252 if (unlikely(wr_id >= ipoib_sendq_size)) {
253 ipoib_warn(priv, "send completion event with wrid %d (> %d)\n",
254 wr_id, ipoib_sendq_size);
255 return;
258 tx_req = &priv->tx_ring[wr_id];
260 ib_dma_unmap_single(priv->ca, tx_req->mapping,
261 tx_req->skb->len, DMA_TO_DEVICE);
263 ++priv->stats.tx_packets;
264 priv->stats.tx_bytes += tx_req->skb->len;
266 dev_kfree_skb_any(tx_req->skb);
268 spin_lock_irqsave(&priv->tx_lock, flags);
269 ++priv->tx_tail;
270 if (unlikely(test_bit(IPOIB_FLAG_NETIF_STOPPED, &priv->flags)) &&
271 priv->tx_head - priv->tx_tail <= ipoib_sendq_size >> 1) {
272 clear_bit(IPOIB_FLAG_NETIF_STOPPED, &priv->flags);
273 netif_wake_queue(dev);
275 spin_unlock_irqrestore(&priv->tx_lock, flags);
277 if (wc->status != IB_WC_SUCCESS &&
278 wc->status != IB_WC_WR_FLUSH_ERR)
279 ipoib_warn(priv, "failed send event "
280 "(status=%d, wrid=%d vend_err %x)\n",
281 wc->status, wr_id, wc->vendor_err);
284 int ipoib_poll(struct net_device *dev, int *budget)
286 struct ipoib_dev_priv *priv = netdev_priv(dev);
287 int max = min(*budget, dev->quota);
288 int done;
289 int t;
290 int empty;
291 int n, i;
293 done = 0;
294 empty = 0;
296 while (max) {
297 t = min(IPOIB_NUM_WC, max);
298 n = ib_poll_cq(priv->cq, t, priv->ibwc);
300 for (i = 0; i < n; ++i) {
301 struct ib_wc *wc = priv->ibwc + i;
303 if (wc->wr_id & IPOIB_CM_OP_SRQ) {
304 ++done;
305 --max;
306 ipoib_cm_handle_rx_wc(dev, wc);
307 } else if (wc->wr_id & IPOIB_OP_RECV) {
308 ++done;
309 --max;
310 ipoib_ib_handle_rx_wc(dev, wc);
311 } else
312 ipoib_ib_handle_tx_wc(dev, wc);
315 if (n != t) {
316 empty = 1;
317 break;
321 dev->quota -= done;
322 *budget -= done;
324 if (empty) {
325 netif_rx_complete(dev);
326 if (unlikely(ib_req_notify_cq(priv->cq,
327 IB_CQ_NEXT_COMP |
328 IB_CQ_REPORT_MISSED_EVENTS)) &&
329 netif_rx_reschedule(dev, 0))
330 return 1;
332 return 0;
335 return 1;
338 void ipoib_ib_completion(struct ib_cq *cq, void *dev_ptr)
340 netif_rx_schedule(dev_ptr);
343 static inline int post_send(struct ipoib_dev_priv *priv,
344 unsigned int wr_id,
345 struct ib_ah *address, u32 qpn,
346 u64 addr, int len)
348 struct ib_send_wr *bad_wr;
350 priv->tx_sge.addr = addr;
351 priv->tx_sge.length = len;
353 priv->tx_wr.wr_id = wr_id;
354 priv->tx_wr.wr.ud.remote_qpn = qpn;
355 priv->tx_wr.wr.ud.ah = address;
357 return ib_post_send(priv->qp, &priv->tx_wr, &bad_wr);
360 void ipoib_send(struct net_device *dev, struct sk_buff *skb,
361 struct ipoib_ah *address, u32 qpn)
363 struct ipoib_dev_priv *priv = netdev_priv(dev);
364 struct ipoib_tx_buf *tx_req;
365 u64 addr;
367 if (unlikely(skb->len > priv->mcast_mtu + IPOIB_ENCAP_LEN)) {
368 ipoib_warn(priv, "packet len %d (> %d) too long to send, dropping\n",
369 skb->len, priv->mcast_mtu + IPOIB_ENCAP_LEN);
370 ++priv->stats.tx_dropped;
371 ++priv->stats.tx_errors;
372 ipoib_cm_skb_too_long(dev, skb, priv->mcast_mtu);
373 return;
376 ipoib_dbg_data(priv, "sending packet, length=%d address=%p qpn=0x%06x\n",
377 skb->len, address, qpn);
380 * We put the skb into the tx_ring _before_ we call post_send()
381 * because it's entirely possible that the completion handler will
382 * run before we execute anything after the post_send(). That
383 * means we have to make sure everything is properly recorded and
384 * our state is consistent before we call post_send().
386 tx_req = &priv->tx_ring[priv->tx_head & (ipoib_sendq_size - 1)];
387 tx_req->skb = skb;
388 addr = ib_dma_map_single(priv->ca, skb->data, skb->len,
389 DMA_TO_DEVICE);
390 if (unlikely(ib_dma_mapping_error(priv->ca, addr))) {
391 ++priv->stats.tx_errors;
392 dev_kfree_skb_any(skb);
393 return;
395 tx_req->mapping = addr;
397 if (unlikely(post_send(priv, priv->tx_head & (ipoib_sendq_size - 1),
398 address->ah, qpn, addr, skb->len))) {
399 ipoib_warn(priv, "post_send failed\n");
400 ++priv->stats.tx_errors;
401 ib_dma_unmap_single(priv->ca, addr, skb->len, DMA_TO_DEVICE);
402 dev_kfree_skb_any(skb);
403 } else {
404 dev->trans_start = jiffies;
406 address->last_send = priv->tx_head;
407 ++priv->tx_head;
409 if (priv->tx_head - priv->tx_tail == ipoib_sendq_size) {
410 ipoib_dbg(priv, "TX ring full, stopping kernel net queue\n");
411 netif_stop_queue(dev);
412 set_bit(IPOIB_FLAG_NETIF_STOPPED, &priv->flags);
417 static void __ipoib_reap_ah(struct net_device *dev)
419 struct ipoib_dev_priv *priv = netdev_priv(dev);
420 struct ipoib_ah *ah, *tah;
421 LIST_HEAD(remove_list);
423 spin_lock_irq(&priv->tx_lock);
424 spin_lock(&priv->lock);
425 list_for_each_entry_safe(ah, tah, &priv->dead_ahs, list)
426 if ((int) priv->tx_tail - (int) ah->last_send >= 0) {
427 list_del(&ah->list);
428 ib_destroy_ah(ah->ah);
429 kfree(ah);
431 spin_unlock(&priv->lock);
432 spin_unlock_irq(&priv->tx_lock);
435 void ipoib_reap_ah(struct work_struct *work)
437 struct ipoib_dev_priv *priv =
438 container_of(work, struct ipoib_dev_priv, ah_reap_task.work);
439 struct net_device *dev = priv->dev;
441 __ipoib_reap_ah(dev);
443 if (!test_bit(IPOIB_STOP_REAPER, &priv->flags))
444 queue_delayed_work(ipoib_workqueue, &priv->ah_reap_task, HZ);
447 int ipoib_ib_dev_open(struct net_device *dev)
449 struct ipoib_dev_priv *priv = netdev_priv(dev);
450 int ret;
452 if (ib_find_pkey(priv->ca, priv->port, priv->pkey, &priv->pkey_index)) {
453 ipoib_warn(priv, "P_Key 0x%04x not found\n", priv->pkey);
454 clear_bit(IPOIB_PKEY_ASSIGNED, &priv->flags);
455 return -1;
457 set_bit(IPOIB_PKEY_ASSIGNED, &priv->flags);
459 ret = ipoib_init_qp(dev);
460 if (ret) {
461 ipoib_warn(priv, "ipoib_init_qp returned %d\n", ret);
462 return -1;
465 ret = ipoib_ib_post_receives(dev);
466 if (ret) {
467 ipoib_warn(priv, "ipoib_ib_post_receives returned %d\n", ret);
468 ipoib_ib_dev_stop(dev, 1);
469 return -1;
472 ret = ipoib_cm_dev_open(dev);
473 if (ret) {
474 ipoib_warn(priv, "ipoib_cm_dev_open returned %d\n", ret);
475 ipoib_ib_dev_stop(dev, 1);
476 return -1;
479 clear_bit(IPOIB_STOP_REAPER, &priv->flags);
480 queue_delayed_work(ipoib_workqueue, &priv->ah_reap_task, HZ);
482 set_bit(IPOIB_FLAG_INITIALIZED, &priv->flags);
484 return 0;
487 static void ipoib_pkey_dev_check_presence(struct net_device *dev)
489 struct ipoib_dev_priv *priv = netdev_priv(dev);
490 u16 pkey_index = 0;
492 if (ib_find_cached_pkey(priv->ca, priv->port, priv->pkey, &pkey_index))
493 clear_bit(IPOIB_PKEY_ASSIGNED, &priv->flags);
494 else
495 set_bit(IPOIB_PKEY_ASSIGNED, &priv->flags);
498 int ipoib_ib_dev_up(struct net_device *dev)
500 struct ipoib_dev_priv *priv = netdev_priv(dev);
502 ipoib_pkey_dev_check_presence(dev);
504 if (!test_bit(IPOIB_PKEY_ASSIGNED, &priv->flags)) {
505 ipoib_dbg(priv, "PKEY is not assigned.\n");
506 return 0;
509 set_bit(IPOIB_FLAG_OPER_UP, &priv->flags);
511 return ipoib_mcast_start_thread(dev);
514 int ipoib_ib_dev_down(struct net_device *dev, int flush)
516 struct ipoib_dev_priv *priv = netdev_priv(dev);
518 ipoib_dbg(priv, "downing ib_dev\n");
520 clear_bit(IPOIB_FLAG_OPER_UP, &priv->flags);
521 netif_carrier_off(dev);
523 /* Shutdown the P_Key thread if still active */
524 if (!test_bit(IPOIB_PKEY_ASSIGNED, &priv->flags)) {
525 mutex_lock(&pkey_mutex);
526 set_bit(IPOIB_PKEY_STOP, &priv->flags);
527 cancel_delayed_work(&priv->pkey_poll_task);
528 mutex_unlock(&pkey_mutex);
529 if (flush)
530 flush_workqueue(ipoib_workqueue);
533 ipoib_mcast_stop_thread(dev, flush);
534 ipoib_mcast_dev_flush(dev);
536 ipoib_flush_paths(dev);
538 return 0;
541 static int recvs_pending(struct net_device *dev)
543 struct ipoib_dev_priv *priv = netdev_priv(dev);
544 int pending = 0;
545 int i;
547 for (i = 0; i < ipoib_recvq_size; ++i)
548 if (priv->rx_ring[i].skb)
549 ++pending;
551 return pending;
554 void ipoib_drain_cq(struct net_device *dev)
556 struct ipoib_dev_priv *priv = netdev_priv(dev);
557 int i, n;
558 do {
559 n = ib_poll_cq(priv->cq, IPOIB_NUM_WC, priv->ibwc);
560 for (i = 0; i < n; ++i) {
561 if (priv->ibwc[i].wr_id & IPOIB_CM_OP_SRQ)
562 ipoib_cm_handle_rx_wc(dev, priv->ibwc + i);
563 else if (priv->ibwc[i].wr_id & IPOIB_OP_RECV)
564 ipoib_ib_handle_rx_wc(dev, priv->ibwc + i);
565 else
566 ipoib_ib_handle_tx_wc(dev, priv->ibwc + i);
568 } while (n == IPOIB_NUM_WC);
571 int ipoib_ib_dev_stop(struct net_device *dev, int flush)
573 struct ipoib_dev_priv *priv = netdev_priv(dev);
574 struct ib_qp_attr qp_attr;
575 unsigned long begin;
576 struct ipoib_tx_buf *tx_req;
577 int i;
579 clear_bit(IPOIB_FLAG_INITIALIZED, &priv->flags);
580 netif_poll_disable(dev);
582 ipoib_cm_dev_stop(dev);
585 * Move our QP to the error state and then reinitialize in
586 * when all work requests have completed or have been flushed.
588 qp_attr.qp_state = IB_QPS_ERR;
589 if (ib_modify_qp(priv->qp, &qp_attr, IB_QP_STATE))
590 ipoib_warn(priv, "Failed to modify QP to ERROR state\n");
592 /* Wait for all sends and receives to complete */
593 begin = jiffies;
595 while (priv->tx_head != priv->tx_tail || recvs_pending(dev)) {
596 if (time_after(jiffies, begin + 5 * HZ)) {
597 ipoib_warn(priv, "timing out; %d sends %d receives not completed\n",
598 priv->tx_head - priv->tx_tail, recvs_pending(dev));
601 * assume the HW is wedged and just free up
602 * all our pending work requests.
604 while ((int) priv->tx_tail - (int) priv->tx_head < 0) {
605 tx_req = &priv->tx_ring[priv->tx_tail &
606 (ipoib_sendq_size - 1)];
607 ib_dma_unmap_single(priv->ca,
608 tx_req->mapping,
609 tx_req->skb->len,
610 DMA_TO_DEVICE);
611 dev_kfree_skb_any(tx_req->skb);
612 ++priv->tx_tail;
615 for (i = 0; i < ipoib_recvq_size; ++i) {
616 struct ipoib_rx_buf *rx_req;
618 rx_req = &priv->rx_ring[i];
619 if (!rx_req->skb)
620 continue;
621 ib_dma_unmap_single(priv->ca,
622 rx_req->mapping,
623 IPOIB_BUF_SIZE,
624 DMA_FROM_DEVICE);
625 dev_kfree_skb_any(rx_req->skb);
626 rx_req->skb = NULL;
629 goto timeout;
632 ipoib_drain_cq(dev);
634 msleep(1);
637 ipoib_dbg(priv, "All sends and receives done.\n");
639 timeout:
640 qp_attr.qp_state = IB_QPS_RESET;
641 if (ib_modify_qp(priv->qp, &qp_attr, IB_QP_STATE))
642 ipoib_warn(priv, "Failed to modify QP to RESET state\n");
644 /* Wait for all AHs to be reaped */
645 set_bit(IPOIB_STOP_REAPER, &priv->flags);
646 cancel_delayed_work(&priv->ah_reap_task);
647 if (flush)
648 flush_workqueue(ipoib_workqueue);
650 begin = jiffies;
652 while (!list_empty(&priv->dead_ahs)) {
653 __ipoib_reap_ah(dev);
655 if (time_after(jiffies, begin + HZ)) {
656 ipoib_warn(priv, "timing out; will leak address handles\n");
657 break;
660 msleep(1);
663 netif_poll_enable(dev);
664 ib_req_notify_cq(priv->cq, IB_CQ_NEXT_COMP);
666 return 0;
669 int ipoib_ib_dev_init(struct net_device *dev, struct ib_device *ca, int port)
671 struct ipoib_dev_priv *priv = netdev_priv(dev);
673 priv->ca = ca;
674 priv->port = port;
675 priv->qp = NULL;
677 if (ipoib_transport_dev_init(dev, ca)) {
678 printk(KERN_WARNING "%s: ipoib_transport_dev_init failed\n", ca->name);
679 return -ENODEV;
682 if (dev->flags & IFF_UP) {
683 if (ipoib_ib_dev_open(dev)) {
684 ipoib_transport_dev_cleanup(dev);
685 return -ENODEV;
689 return 0;
692 static void __ipoib_ib_dev_flush(struct ipoib_dev_priv *priv, int pkey_event)
694 struct ipoib_dev_priv *cpriv;
695 struct net_device *dev = priv->dev;
696 u16 new_index;
698 mutex_lock(&priv->vlan_mutex);
701 * Flush any child interfaces too -- they might be up even if
702 * the parent is down.
704 list_for_each_entry(cpriv, &priv->child_intfs, list)
705 __ipoib_ib_dev_flush(cpriv, pkey_event);
707 mutex_unlock(&priv->vlan_mutex);
709 if (!test_bit(IPOIB_FLAG_INITIALIZED, &priv->flags)) {
710 ipoib_dbg(priv, "Not flushing - IPOIB_FLAG_INITIALIZED not set.\n");
711 return;
714 if (!test_bit(IPOIB_FLAG_ADMIN_UP, &priv->flags)) {
715 ipoib_dbg(priv, "Not flushing - IPOIB_FLAG_ADMIN_UP not set.\n");
716 return;
719 if (pkey_event) {
720 if (ib_find_pkey(priv->ca, priv->port, priv->pkey, &new_index)) {
721 clear_bit(IPOIB_PKEY_ASSIGNED, &priv->flags);
722 ipoib_ib_dev_down(dev, 0);
723 ipoib_pkey_dev_delay_open(dev);
724 return;
726 set_bit(IPOIB_PKEY_ASSIGNED, &priv->flags);
728 /* restart QP only if P_Key index is changed */
729 if (new_index == priv->pkey_index) {
730 ipoib_dbg(priv, "Not flushing - P_Key index not changed.\n");
731 return;
733 priv->pkey_index = new_index;
736 ipoib_dbg(priv, "flushing\n");
738 ipoib_ib_dev_down(dev, 0);
740 if (pkey_event) {
741 ipoib_ib_dev_stop(dev, 0);
742 ipoib_ib_dev_open(dev);
746 * The device could have been brought down between the start and when
747 * we get here, don't bring it back up if it's not configured up
749 if (test_bit(IPOIB_FLAG_ADMIN_UP, &priv->flags)) {
750 ipoib_ib_dev_up(dev);
751 ipoib_mcast_restart_task(&priv->restart_task);
755 void ipoib_ib_dev_flush(struct work_struct *work)
757 struct ipoib_dev_priv *priv =
758 container_of(work, struct ipoib_dev_priv, flush_task);
760 ipoib_dbg(priv, "Flushing %s\n", priv->dev->name);
761 __ipoib_ib_dev_flush(priv, 0);
764 void ipoib_pkey_event(struct work_struct *work)
766 struct ipoib_dev_priv *priv =
767 container_of(work, struct ipoib_dev_priv, pkey_event_task);
769 ipoib_dbg(priv, "Flushing %s and restarting its QP\n", priv->dev->name);
770 __ipoib_ib_dev_flush(priv, 1);
773 void ipoib_ib_dev_cleanup(struct net_device *dev)
775 struct ipoib_dev_priv *priv = netdev_priv(dev);
777 ipoib_dbg(priv, "cleaning up ib_dev\n");
779 ipoib_mcast_stop_thread(dev, 1);
780 ipoib_mcast_dev_flush(dev);
782 ipoib_transport_dev_cleanup(dev);
786 * Delayed P_Key Assigment Interim Support
788 * The following is initial implementation of delayed P_Key assigment
789 * mechanism. It is using the same approach implemented for the multicast
790 * group join. The single goal of this implementation is to quickly address
791 * Bug #2507. This implementation will probably be removed when the P_Key
792 * change async notification is available.
795 void ipoib_pkey_poll(struct work_struct *work)
797 struct ipoib_dev_priv *priv =
798 container_of(work, struct ipoib_dev_priv, pkey_poll_task.work);
799 struct net_device *dev = priv->dev;
801 ipoib_pkey_dev_check_presence(dev);
803 if (test_bit(IPOIB_PKEY_ASSIGNED, &priv->flags))
804 ipoib_open(dev);
805 else {
806 mutex_lock(&pkey_mutex);
807 if (!test_bit(IPOIB_PKEY_STOP, &priv->flags))
808 queue_delayed_work(ipoib_workqueue,
809 &priv->pkey_poll_task,
810 HZ);
811 mutex_unlock(&pkey_mutex);
815 int ipoib_pkey_dev_delay_open(struct net_device *dev)
817 struct ipoib_dev_priv *priv = netdev_priv(dev);
819 /* Look for the interface pkey value in the IB Port P_Key table and */
820 /* set the interface pkey assigment flag */
821 ipoib_pkey_dev_check_presence(dev);
823 /* P_Key value not assigned yet - start polling */
824 if (!test_bit(IPOIB_PKEY_ASSIGNED, &priv->flags)) {
825 mutex_lock(&pkey_mutex);
826 clear_bit(IPOIB_PKEY_STOP, &priv->flags);
827 queue_delayed_work(ipoib_workqueue,
828 &priv->pkey_poll_task,
829 HZ);
830 mutex_unlock(&pkey_mutex);
831 return 1;
834 return 0;