diff options
author | Mark McLoughlin <markmc@redhat.com> | 2008-11-16 22:40:36 -0800 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2008-11-16 22:40:36 -0800 |
commit | 0276b4972e932ea8bf2941dcd37e9caac5652ed7 (patch) | |
tree | 4fca22ffd784e7aa8e07338b0d20400cfd678546 /drivers/net/virtio_net.c | |
parent | 0a888fd1f6320d1d9318c58de9bca3cef41546d6 (diff) | |
download | linux-3.10-0276b4972e932ea8bf2941dcd37e9caac5652ed7.tar.gz linux-3.10-0276b4972e932ea8bf2941dcd37e9caac5652ed7.tar.bz2 linux-3.10-0276b4972e932ea8bf2941dcd37e9caac5652ed7.zip |
virtio_net: hook up the set-tso ethtool op
Seems like an oversight that we have set-tx-csum and set-sg hooked
up, but not set-tso.
Also leads to the strange situation that if you e.g. disable tx-csum,
then tso doesn't get disabled.
Signed-off-by: Mark McLoughlin <markmc@redhat.com>
Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/virtio_net.c')
-rw-r--r-- | drivers/net/virtio_net.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/net/virtio_net.c b/drivers/net/virtio_net.c index f5207ef21a9..27559c987d4 100644 --- a/drivers/net/virtio_net.c +++ b/drivers/net/virtio_net.c @@ -481,6 +481,7 @@ static int virtnet_set_tx_csum(struct net_device *dev, u32 data) static struct ethtool_ops virtnet_ethtool_ops = { .set_tx_csum = virtnet_set_tx_csum, .set_sg = ethtool_op_set_sg, + .set_tso = ethtool_op_set_tso, }; static int virtnet_probe(struct virtio_device *vdev) |