diff options
author | Shannon Nelson <shannon.nelson@amd.com> | 2023-05-02 21:47:40 +0300 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2023-05-03 11:08:02 +0300 |
commit | 3711d44fac1f80ea69ecb7315fed05b3812a7401 (patch) | |
tree | c7b43092a58735c2ca2709b0c4b3400625f33630 /drivers/net | |
parent | 2dce08ab7a32b15ee75be6a31084f78e41d2936a (diff) | |
download | linux-3711d44fac1f80ea69ecb7315fed05b3812a7401.tar.xz |
ionic: remove noise from ethtool rxnfc error msg
It seems that ethtool is calling into .get_rxnfc more often with
ETHTOOL_GRXCLSRLCNT which ionic doesn't know about. We don't
need to log a message about it, just return not supported.
Fixes: aa3198819bea6 ("ionic: Add RSS support")
Signed-off-by: Shannon Nelson <shannon.nelson@amd.com>
Reviewed-by: Simon Horman <simon.horman@corigine.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net')
-rw-r--r-- | drivers/net/ethernet/pensando/ionic/ionic_ethtool.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/ethernet/pensando/ionic/ionic_ethtool.c b/drivers/net/ethernet/pensando/ionic/ionic_ethtool.c index cf33503468a3..9b2b96fa36af 100644 --- a/drivers/net/ethernet/pensando/ionic/ionic_ethtool.c +++ b/drivers/net/ethernet/pensando/ionic/ionic_ethtool.c @@ -794,7 +794,7 @@ static int ionic_get_rxnfc(struct net_device *netdev, info->data = lif->nxqs; break; default: - netdev_err(netdev, "Command parameter %d is not supported\n", + netdev_dbg(netdev, "Command parameter %d is not supported\n", info->cmd); err = -EOPNOTSUPP; } |