From: "Dr. David Alan Gilbert" <dgilbert@redhat.com>
To: Maxime Coquelin <maxime.coquelin@redhat.com>
Cc: chenbo.xia@intel.com, andrew@daynix.com, quintela@redhat.com,
jasowang@redhat.com, mst@redhat.com, qemu-devel@nongnu.org,
ktraynor@redhat.com, yuri.benditovich@daynix.com,
dmarchan@redhat.com
Subject: Re: [PATCH 4/5] docs: introduce RSS support in Vhost-user specification
Date: Mon, 11 Apr 2022 13:18:33 +0100 [thread overview]
Message-ID: <YlQcmekPCoaZ5Yri@work-vm> (raw)
In-Reply-To: <20220408122813.1357045-5-maxime.coquelin@redhat.com>
* Maxime Coquelin (maxime.coquelin@redhat.com) wrote:
> This patch documents RSS feature in Vhost-user specification.
> Two new requests are introduced backed by a dedicated
> protocol feature.
>
> First one is to query the Vhost-user slave RSS capabilities
> such as supported hash types, maximum key length and
> indirection table size.
>
> The second one is to provide the slave with driver's RSS
> configuration.
>
> Signed-off-by: Maxime Coquelin <maxime.coquelin@redhat.com>
Perhaps it would be worth adding a link to devel/ebpf_rss.rst somewhere
in there; I didn't know what RSS so had to dig.
Also, perhaps it's useful to update that file to point back to the
vhost-user or dpdk implementations.
Dave
> ---
> docs/interop/vhost-user.rst | 57 +++++++++++++++++++++++++++++++++++++
> 1 file changed, 57 insertions(+)
>
> diff --git a/docs/interop/vhost-user.rst b/docs/interop/vhost-user.rst
> index 4dbc84fd00..9de6297568 100644
> --- a/docs/interop/vhost-user.rst
> +++ b/docs/interop/vhost-user.rst
> @@ -258,6 +258,42 @@ Inflight description
>
> :queue size: a 16-bit size of virtqueues
>
> +RSS capabilities description
> +~~~~~~~~~~~~~~~~~~~~~~~~~~~~
> +
> ++----------------------+-------------+---------------+
> +| supported hash types | max key len | max indir len |
> ++----------------------+-------------+---------------+
> +
> +:supported hash types: a 32-bit bitfield of supported hash types as defined
> + in the Virtio specification
> +
> +:max key len: a 8-bit maximum size of the RSS key
> +
> +:max indir len: a 16-bits maximum size of the RSS indirection table
> +
> +RSS data description
> +^^^^^^^^^^^^^^^^^^^^
> +
> ++------------+---------+-----+-----------+-------------+---------------+
> +| hash types | key len | key | indir len | indir table | default queue |
> ++------------+---------+-----+-----------+-------------+---------------+
> +
> +:hash types: a 32-bit bitfield of supported hash types as defined in the
> + Virtio specification
> +
> +:key len: 8-bit size of the RSS key
> +
> +:key: a 8-bit array of 52 elements containing the RSS key
> +
> +:indir len: a 16-bit size of the RSS indirection table
> +
> +:indir table: a 16-bit array of 512 elements containing the hash indirection
> + table
> +
> +:default queue: the default queue index for flows not matching requested hash
> + types
> +
> C structure
> -----------
>
> @@ -858,6 +894,7 @@ Protocol features
> #define VHOST_USER_PROTOCOL_F_INBAND_NOTIFICATIONS 14
> #define VHOST_USER_PROTOCOL_F_CONFIGURE_MEM_SLOTS 15
> #define VHOST_USER_PROTOCOL_F_STATUS 16
> + #define VHOST_USER_PROTOCOL_F_NET_RSS 17
>
> Master message types
> --------------------
> @@ -1371,6 +1408,26 @@ Master message types
> query the backend for its device status as defined in the Virtio
> specification.
>
> +``VHOST_USER_NET_GET_RSS``
> + :id: 41
> + :equivalent ioctl: N/A
> + :slave payload: RSS capabilities description
> + :master payload: N/A
> +
> + When the ``VHOST_USER_PROTOCOL_F_NET_RSS`` protocol has been successfully
> + negotiated, this message is submitted by the master to get the RSS
> + capabilities of the slave.
> +
> +``VHOST_USER_NET_SET_RSS``
> + :id: 42
> + :equivalent ioctl: N/A
> + :slave payload: N/A
> + :master payload: RSS data description
> +
> + When the ``VHOST_USER_PROTOCOL_F_NET_RSS`` protocol has been successfully
> + negotiated, this message is submitted by the master to set the RSS
> + configuration defined by the Virtio driver.
> +
>
> Slave message types
> -------------------
> --
> 2.35.1
>
--
Dr. David Alan Gilbert / dgilbert@redhat.com / Manchester, UK
next prev parent reply other threads:[~2022-04-11 12:19 UTC|newest]
Thread overview: 11+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-04-08 12:28 [PATCH 0/5] Vhost-user: add Virtio RSS support Maxime Coquelin
2022-04-08 12:28 ` [PATCH 1/5] ebpf: pass and check RSS key length to the loader Maxime Coquelin
2022-04-08 12:28 ` [PATCH 2/5] virtio-net: prepare for variable RSS key and indir table lengths Maxime Coquelin
2022-04-15 5:39 ` Jason Wang
2022-05-13 10:49 ` Michael S. Tsirkin
2022-04-08 12:28 ` [PATCH 3/5] virtio-net: add RSS support for Vhost backends Maxime Coquelin
2022-04-15 5:41 ` Jason Wang
2022-04-08 12:28 ` [PATCH 4/5] docs: introduce RSS support in Vhost-user specification Maxime Coquelin
2022-04-11 12:18 ` Dr. David Alan Gilbert [this message]
2022-04-08 12:28 ` [PATCH 5/5] vhost-user: add RSS support Maxime Coquelin
2022-04-15 5:43 ` [PATCH 0/5] Vhost-user: add Virtio " Jason Wang
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=YlQcmekPCoaZ5Yri@work-vm \
--to=dgilbert@redhat.com \
--cc=andrew@daynix.com \
--cc=chenbo.xia@intel.com \
--cc=dmarchan@redhat.com \
--cc=jasowang@redhat.com \
--cc=ktraynor@redhat.com \
--cc=maxime.coquelin@redhat.com \
--cc=mst@redhat.com \
--cc=qemu-devel@nongnu.org \
--cc=quintela@redhat.com \
--cc=yuri.benditovich@daynix.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).