diff options
-rw-r--r-- | drivers/infiniband/hw/cxgb3/iwch_cm.c | 11 |
1 files changed, 2 insertions, 9 deletions
diff --git a/drivers/infiniband/hw/cxgb3/iwch_cm.c b/drivers/infiniband/hw/cxgb3/iwch_cm.c index 66b41351910a..d94388b81a40 100644 --- a/drivers/infiniband/hw/cxgb3/iwch_cm.c +++ b/drivers/infiniband/hw/cxgb3/iwch_cm.c | |||
@@ -1371,15 +1371,8 @@ static int pass_accept_req(struct t3cdev *tdev, struct sk_buff *skb, void *ctx) | |||
1371 | tim.mac_addr = req->dst_mac; | 1371 | tim.mac_addr = req->dst_mac; |
1372 | tim.vlan_tag = ntohs(req->vlan_tag); | 1372 | tim.vlan_tag = ntohs(req->vlan_tag); |
1373 | if (tdev->ctl(tdev, GET_IFF_FROM_MAC, &tim) < 0 || !tim.dev) { | 1373 | if (tdev->ctl(tdev, GET_IFF_FROM_MAC, &tim) < 0 || !tim.dev) { |
1374 | printk(KERN_ERR | 1374 | printk(KERN_ERR "%s bad dst mac %pM\n", |
1375 | "%s bad dst mac %02x %02x %02x %02x %02x %02x\n", | 1375 | __func__, req->dst_mac); |
1376 | __func__, | ||
1377 | req->dst_mac[0], | ||
1378 | req->dst_mac[1], | ||
1379 | req->dst_mac[2], | ||
1380 | req->dst_mac[3], | ||
1381 | req->dst_mac[4], | ||
1382 | req->dst_mac[5]); | ||
1383 | goto reject; | 1376 | goto reject; |
1384 | } | 1377 | } |
1385 | 1378 | ||