Skip to content

Commit 3711d44

Browse files
emuslndavem330
authored andcommitted
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: aa31988 ("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>
1 parent 2dce08a commit 3711d44

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

drivers/net/ethernet/pensando/ionic/ionic_ethtool.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -794,7 +794,7 @@ static int ionic_get_rxnfc(struct net_device *netdev,
794794
info->data = lif->nxqs;
795795
break;
796796
default:
797-
netdev_err(netdev, "Command parameter %d is not supported\n",
797+
netdev_dbg(netdev, "Command parameter %d is not supported\n",
798798
info->cmd);
799799
err = -EOPNOTSUPP;
800800
}

0 commit comments

Comments
 (0)