aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/infiniband/hw/cxgb3
diff options
context:
space:
mode:
authorSteve Wise <swise@opengridcomputing.com>2007-03-06 14:44:05 -0600
committerRoland Dreier <rolandd@cisco.com>2007-03-06 12:50:57 -0800
commit1f6a849b7ce6c3007088cd437dfc2b9c7cb5d21e (patch)
tree94e44196c86c85b332afd83bf5ab903e1d34d620 /drivers/infiniband/hw/cxgb3
parentRDMA/cxgb3: Squelch logging AE errors (diff)
downloadlinux-dev-1f6a849b7ce6c3007088cd437dfc2b9c7cb5d21e.tar.xz
linux-dev-1f6a849b7ce6c3007088cd437dfc2b9c7cb5d21e.zip
RDMA/cxgb3: Don't reuse skbs that are non-linear or cloned
Signed-off-by: Steve Wise <swise@opengridcomputing.com> Signed-off-by: Roland Dreier <rolandd@cisco.com>
Diffstat (limited to 'drivers/infiniband/hw/cxgb3')
-rw-r--r--drivers/infiniband/hw/cxgb3/iwch_cm.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/drivers/infiniband/hw/cxgb3/iwch_cm.c b/drivers/infiniband/hw/cxgb3/iwch_cm.c
index 3cf79ce64bd3..d0ed1d35ca3e 100644
--- a/drivers/infiniband/hw/cxgb3/iwch_cm.c
+++ b/drivers/infiniband/hw/cxgb3/iwch_cm.c
@@ -305,8 +305,7 @@ static int status2errno(int status)
*/
static struct sk_buff *get_skb(struct sk_buff *skb, int len, gfp_t gfp)
{
- if (skb) {
- BUG_ON(skb_cloned(skb));
+ if (skb && !skb_is_nonlinear(skb) && !skb_cloned(skb)) {
skb_trim(skb, 0);
skb_get(skb);
} else {