diff options
author | Heng Qi <hengqi@linux.alibaba.com> | 2023-10-08 14:27:44 +0800 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2023-10-11 07:13:50 +0100 |
commit | c4e33cf2611b2f73098f7413176d428d1fb62304 (patch) | |
tree | 94db9829e6d16961643509bfdf0548ff3096bf34 /drivers | |
parent | f61fe5f081cf40de08d0a4c89659baf23c900f0c (diff) |
virtio-net: a tiny comment update
Update a comment because virtio-net now supports both
VIRTIO_NET_F_NOTF_COAL and VIRTIO_NET_F_VQ_NOTF_COAL.
Signed-off-by: Heng Qi <hengqi@linux.alibaba.com>
Acked-by: Jason Wang <jasowang@redhat.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/net/virtio_net.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/virtio_net.c b/drivers/net/virtio_net.c index 26e4a7749628..a52fd743504a 100644 --- a/drivers/net/virtio_net.c +++ b/drivers/net/virtio_net.c @@ -3347,7 +3347,7 @@ static int virtnet_send_notf_coal_vq_cmds(struct virtnet_info *vi, static int virtnet_coal_params_supported(struct ethtool_coalesce *ec) { /* usecs coalescing is supported only if VIRTIO_NET_F_NOTF_COAL - * feature is negotiated. + * or VIRTIO_NET_F_VQ_NOTF_COAL feature is negotiated. */ if (ec->rx_coalesce_usecs || ec->tx_coalesce_usecs) return -EOPNOTSUPP; |