diff options
author | Lipeng <lipeng321@huawei.com> | 2017-10-10 16:42:07 +0800 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2017-10-10 13:09:14 -0700 |
commit | abf11d04fd9dbec778219d76a9d38c36f65fbc24 (patch) | |
tree | cbc1ceb7371bd0b2360a09d7154293f3c9e1ec78 /drivers/net/ethernet/hisilicon/hns3/hns3pf/hns3_ethtool.c | |
parent | 07d2995425eb8eb4874b94bf62fb1490a2014d76 (diff) | |
download | lwn-abf11d04fd9dbec778219d76a9d38c36f65fbc24.tar.gz lwn-abf11d04fd9dbec778219d76a9d38c36f65fbc24.zip |
net: hns3: fix the ring count for ETHTOOL_GRXRINGS
This patch fix the ring count for ETHTOOL_GRXRINGS. Ring count
not TC size should be return for command "ethtool -n ethx".
Signed-off-by: Lipeng <lipeng321@huawei.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/ethernet/hisilicon/hns3/hns3pf/hns3_ethtool.c')
-rw-r--r-- | drivers/net/ethernet/hisilicon/hns3/hns3pf/hns3_ethtool.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/ethernet/hisilicon/hns3/hns3pf/hns3_ethtool.c b/drivers/net/ethernet/hisilicon/hns3/hns3pf/hns3_ethtool.c index b64fbd3c369a..9b36ce081f62 100644 --- a/drivers/net/ethernet/hisilicon/hns3/hns3pf/hns3_ethtool.c +++ b/drivers/net/ethernet/hisilicon/hns3/hns3pf/hns3_ethtool.c @@ -450,7 +450,7 @@ static int hns3_get_rxnfc(struct net_device *netdev, switch (cmd->cmd) { case ETHTOOL_GRXRINGS: - cmd->data = h->ae_algo->ops->get_tc_size(h); + cmd->data = h->kinfo.num_tc * h->kinfo.rss_size; break; case ETHTOOL_GRXFH: return h->ae_algo->ops->get_rss_tuple(h, cmd); |