aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/net/ethernet/cortina
diff options
context:
space:
mode:
authorJakub Kicinski <kuba@kernel.org>2020-03-09 19:15:12 -0700
committerDavid S. Miller <davem@davemloft.net>2020-03-10 16:28:53 -0700
commitd13f1167ab1c762a84350af97e8948a928d56019 (patch)
tree58260f9773cc8bf212bbd23c07a9510bd9cfd15f /drivers/net/ethernet/cortina
parentnet: cxgb4vf: reject unsupported coalescing params (diff)
downloadlinux-dev-d13f1167ab1c762a84350af97e8948a928d56019.tar.xz
linux-dev-d13f1167ab1c762a84350af97e8948a928d56019.zip
net: gemini: reject unsupported coalescing params
Set ethtool_ops->supported_coalesce_params to let the core reject unsupported coalescing parameters. This driver did not previously reject unsupported parameters. Signed-off-by: Jakub Kicinski <kuba@kernel.org> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/ethernet/cortina')
-rw-r--r--drivers/net/ethernet/cortina/gemini.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/net/ethernet/cortina/gemini.c b/drivers/net/ethernet/cortina/gemini.c
index dc2a4adab793..5bff5c2be88b 100644
--- a/drivers/net/ethernet/cortina/gemini.c
+++ b/drivers/net/ethernet/cortina/gemini.c
@@ -2222,6 +2222,8 @@ static const struct net_device_ops gmac_351x_ops = {
};
static const struct ethtool_ops gmac_351x_ethtool_ops = {
+ .supported_coalesce_params = ETHTOOL_COALESCE_RX_USECS |
+ ETHTOOL_COALESCE_MAX_FRAMES,
.get_sset_count = gmac_get_sset_count,
.get_strings = gmac_get_strings,
.get_ethtool_stats = gmac_get_ethtool_stats,