aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSony Chacko <sony.chacko@qlogic.com>2010-11-16 14:08:46 +0000
committerDavid S. Miller <davem@davemloft.net>2010-11-17 11:49:26 -0800
commit706f23ada68746ed475488e7d2e2ca392fc4f731 (patch)
tree58333966f3305941f7eca272e1e061e0deddf354
parentqlcnic: Add description for CN1000Q adapter (diff)
downloadlinux-dev-706f23ada68746ed475488e7d2e2ca392fc4f731.tar.xz
linux-dev-706f23ada68746ed475488e7d2e2ca392fc4f731.zip
qlcnic: lro off message log from set rx checsum
Log LRO off message while disabling rx checksum only when LRO is already enabled. Signed-off-by: Sony Chacko <sony.chacko@qlogic.com> Signed-off-by: Anirban Chakraborty <anirban.chakraborty@qlogic.com> Signed-off-by: David S. Miller <davem@davemloft.net>
-rw-r--r--drivers/net/qlcnic/qlcnic_ethtool.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/net/qlcnic/qlcnic_ethtool.c b/drivers/net/qlcnic/qlcnic_ethtool.c
index ec21d24015c4..c38929636488 100644
--- a/drivers/net/qlcnic/qlcnic_ethtool.c
+++ b/drivers/net/qlcnic/qlcnic_ethtool.c
@@ -925,9 +925,10 @@ static int qlcnic_set_rx_csum(struct net_device *dev, u32 data)
dev->features &= ~NETIF_F_LRO;
qlcnic_send_lro_cleanup(adapter);
+ dev_info(&adapter->pdev->dev,
+ "disabling LRO as rx_csum is off\n");
}
adapter->rx_csum = !!data;
- dev_info(&adapter->pdev->dev, "disabling LRO as rx_csum is off\n");
return 0;
}