diff options
author | Michael S. Tsirkin <mst@mellanox.co.il> | 2007-02-15 17:16:13 -0500 |
---|---|---|
committer | Roland Dreier <rolandd@cisco.com> | 2007-02-16 16:57:35 -0500 |
commit | 8a2e65f87c66ab1e720f49378750cdd800f9e9cf (patch) | |
tree | 8aece3b76c52dd7c398d17ba2e5977580b77ca61 /drivers/infiniband | |
parent | c52daa29760818772ee4211be4ee8d1c78b888d5 (diff) |
IPoIB: CM error handling thinko fix
ipoib_cm_alloc_rx_skb() might be called from IRQ context, so it must
use dev_kfree_skb_any(), not kfree_skb().
Signed-off-by: Michael S. Tsirkin <mst@mellanox.co.il>
Signed-off-by: Roland Dreier <rolandd@cisco.com>
Diffstat (limited to 'drivers/infiniband')
-rw-r--r-- | drivers/infiniband/ulp/ipoib/ipoib_cm.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/infiniband/ulp/ipoib/ipoib_cm.c b/drivers/infiniband/ulp/ipoib/ipoib_cm.c index 8881a717e9da..4d59682f7d4a 100644 --- a/drivers/infiniband/ulp/ipoib/ipoib_cm.c +++ b/drivers/infiniband/ulp/ipoib/ipoib_cm.c | |||
@@ -145,7 +145,7 @@ partial_error: | |||
145 | for (; i >= 0; --i) | 145 | for (; i >= 0; --i) |
146 | ib_dma_unmap_single(priv->ca, mapping[i + 1], PAGE_SIZE, DMA_FROM_DEVICE); | 146 | ib_dma_unmap_single(priv->ca, mapping[i + 1], PAGE_SIZE, DMA_FROM_DEVICE); |
147 | 147 | ||
148 | kfree_skb(skb); | 148 | dev_kfree_skb_any(skb); |
149 | return -ENOMEM; | 149 | return -ENOMEM; |
150 | } | 150 | } |
151 | 151 | ||