diff options
| author | Akihiko Odaki <akihiko.odaki@daynix.com> | 2025-05-30 13:33:19 +0900 |
|---|---|---|
| committer | Michael S. Tsirkin <mst@redhat.com> | 2025-07-14 05:25:34 -0400 |
| commit | 7b6e7e49905d0682f67ae4d02fc9edc4a2ec7df5 (patch) | |
| tree | b5e944d7724cda6955c4e33d55ab8107d427ce29 /net/vhost-vdpa.c | |
| parent | 2deec9ab7d25d7cd8f57033bd0421c1f9f28d905 (diff) | |
| download | focaccia-qemu-7b6e7e49905d0682f67ae4d02fc9edc4a2ec7df5.tar.gz focaccia-qemu-7b6e7e49905d0682f67ae4d02fc9edc4a2ec7df5.zip | |
virtio-net: Retrieve peer hashing capability
Retrieve peer hashing capability instead of hardcoding. Signed-off-by: Akihiko Odaki <akihiko.odaki@daynix.com> Message-Id: <20250530-vdpa-v1-4-5af4109b1c19@daynix.com> Reviewed-by: Michael S. Tsirkin <mst@redhat.com> Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
Diffstat (limited to 'net/vhost-vdpa.c')
| -rw-r--r-- | net/vhost-vdpa.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/net/vhost-vdpa.c b/net/vhost-vdpa.c index cb63e09453..3452835ca9 100644 --- a/net/vhost-vdpa.c +++ b/net/vhost-vdpa.c @@ -865,13 +865,13 @@ static int vhost_vdpa_net_load_rss(VhostVDPAState *s, const VirtIONet *n, * configuration only at live migration. */ if (!n->rss_data.enabled || - n->rss_data.hash_types == VIRTIO_NET_HASH_REPORT_NONE) { + n->rss_data.runtime_hash_types == VIRTIO_NET_HASH_REPORT_NONE) { return 0; } table = g_malloc_n(n->rss_data.indirections_len, sizeof(n->rss_data.indirections_table[0])); - cfg.hash_types = cpu_to_le32(n->rss_data.hash_types); + cfg.hash_types = cpu_to_le32(n->rss_data.runtime_hash_types); if (do_rss) { /* |