diff options
author | Yuri Benditovich <yuri.benditovich@daynix.com> | 2020-05-08 15:59:28 +0300 |
---|---|---|
committer | Jason Wang <jasowang@redhat.com> | 2020-06-18 21:05:50 +0800 |
commit | 590790297c0dd2c8e817c7b33daf66862b0ee8ef (patch) | |
tree | 451a25ac6b916e185d0fefd86dda472ccbe8f476 /hw/net/trace-events | |
parent | 3f429a3400822141651486193d6af625eeab05a5 (diff) | |
download | qemu-590790297c0dd2c8e817c7b33daf66862b0ee8ef.zip |
virtio-net: implement RSS configuration command
Optionally report RSS feature.
Handle RSS configuration command and keep RSS parameters
in virtio-net device context.
Signed-off-by: Yuri Benditovich <yuri.benditovich@daynix.com>
Signed-off-by: Jason Wang <jasowang@redhat.com>
Diffstat (limited to 'hw/net/trace-events')
-rw-r--r-- | hw/net/trace-events | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/hw/net/trace-events b/hw/net/trace-events index 26700dad99..e6875c4c0f 100644 --- a/hw/net/trace-events +++ b/hw/net/trace-events @@ -381,6 +381,9 @@ virtio_net_announce_notify(void) "" virtio_net_announce_timer(int round) "%d" virtio_net_handle_announce(int round) "%d" virtio_net_post_load_device(void) +virtio_net_rss_disable(void) +virtio_net_rss_error(const char *msg, uint32_t value) "%s, value 0x%08x" +virtio_net_rss_enable(uint32_t p1, uint16_t p2, uint8_t p3) "hashes 0x%x, table of %d, key of %d" # tulip.c tulip_reg_write(uint64_t addr, const char *name, int size, uint64_t val) "addr 0x%02"PRIx64" (%s) size %d value 0x%08"PRIx64 |