]> git.proxmox.com Git - mirror_ubuntu-hirsute-kernel.git/commitdiff
um: reject unsupported coalescing params
authorJakub Kicinski <kuba@kernel.org>
Fri, 6 Mar 2020 01:05:56 +0000 (17:05 -0800)
committerDavid S. Miller <davem@davemloft.net>
Sat, 7 Mar 2020 06:45:54 +0000 (22:45 -0800)
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>
Acked-by: Anton Ivanov <anton.ivanov@cambridgegreys.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
arch/um/drivers/vector_kern.c

index 0ff86391f77d072cf7c3b884bc40a6ce252fa0b3..e98304d0219ef9f1b67730989c98ec9dbf835c17 100644 (file)
@@ -1508,6 +1508,7 @@ static int vector_set_coalesce(struct net_device *netdev,
 }
 
 static const struct ethtool_ops vector_net_ethtool_ops = {
+       .supported_coalesce_params = ETHTOOL_COALESCE_TX_USECS,
        .get_drvinfo    = vector_net_get_drvinfo,
        .get_link       = ethtool_op_get_link,
        .get_ts_info    = ethtool_op_get_ts_info,