diff options
author | Hariprasad Shenai <hariprasad@chelsio.com> | 2016-02-05 07:13:29 +0100 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2016-02-11 13:13:23 +0100 |
commit | 6102c66eeb7497e4462c896074315635807758d4 (patch) | |
tree | 87dfe994225715cca0c6e9c7083f84b0c7d3bfe7 /drivers/infiniband | |
parent | iw_cxgb4: make queue allocation code more readable (diff) | |
download | linux-6102c66eeb7497e4462c896074315635807758d4.tar.xz linux-6102c66eeb7497e4462c896074315635807758d4.zip |
iw_cxgb4: remove false error log entry
Don't log errors if a listening endpoint is going away when procesing a
PASS_ACCEPT_REQ message. This can happen. Change the error printk to
a PDBG() debug log entry
Signed-off-by: Steve Wise <swise@opengridcomputing.com>
Signed-off-by: Hariprasad Shenai <hariprasad@chelsio.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/infiniband')
-rw-r--r-- | drivers/infiniband/hw/cxgb4/cm.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/drivers/infiniband/hw/cxgb4/cm.c b/drivers/infiniband/hw/cxgb4/cm.c index cd2ff5f9518a..0c2111b5b2e4 100644 --- a/drivers/infiniband/hw/cxgb4/cm.c +++ b/drivers/infiniband/hw/cxgb4/cm.c @@ -2399,8 +2399,7 @@ static int pass_accept_req(struct c4iw_dev *dev, struct sk_buff *skb) } if (state_read(&parent_ep->com) != LISTEN) { - printk(KERN_ERR "%s - listening ep not in LISTEN\n", - __func__); + PDBG("%s - listening ep not in LISTEN\n", __func__); goto reject; } |