net: qede: 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>
This commit is contained in:

committed by
David S. Miller

parent
6427477136
commit
c9312022db
@@ -2087,6 +2087,7 @@ err:
|
|||||||
}
|
}
|
||||||
|
|
||||||
static const struct ethtool_ops qede_ethtool_ops = {
|
static const struct ethtool_ops qede_ethtool_ops = {
|
||||||
|
.supported_coalesce_params = ETHTOOL_COALESCE_USECS,
|
||||||
.get_link_ksettings = qede_get_link_ksettings,
|
.get_link_ksettings = qede_get_link_ksettings,
|
||||||
.set_link_ksettings = qede_set_link_ksettings,
|
.set_link_ksettings = qede_set_link_ksettings,
|
||||||
.get_drvinfo = qede_get_drvinfo,
|
.get_drvinfo = qede_get_drvinfo,
|
||||||
@@ -2133,6 +2134,7 @@ static const struct ethtool_ops qede_ethtool_ops = {
|
|||||||
};
|
};
|
||||||
|
|
||||||
static const struct ethtool_ops qede_vf_ethtool_ops = {
|
static const struct ethtool_ops qede_vf_ethtool_ops = {
|
||||||
|
.supported_coalesce_params = ETHTOOL_COALESCE_USECS,
|
||||||
.get_link_ksettings = qede_get_link_ksettings,
|
.get_link_ksettings = qede_get_link_ksettings,
|
||||||
.get_drvinfo = qede_get_drvinfo,
|
.get_drvinfo = qede_get_drvinfo,
|
||||||
.get_msglevel = qede_get_msglevel,
|
.get_msglevel = qede_get_msglevel,
|
||||||
|
Reference in New Issue
Block a user