Discussion of the implementations of VIRTIO specification
 help / color / mirror / Atom feed
From: "Michael S. Tsirkin" <mst@redhat.com>
To: Heng Qi <hengqi@linux.alibaba.com>
Cc: virtio-comment@lists.oasis-open.org,
	virtio-dev@lists.oasis-open.org, Jason Wang <jasowang@redhat.com>,
	Yuri Benditovich <yuri.benditovich@daynix.com>,
	Cornelia Huck <cohuck@redhat.com>,
	Xuan Zhuo <xuanzhuo@linux.alibaba.com>
Subject: Re: [virtio-comment] Re: [PATCH v7] virtio-net: support inner header hash
Date: Fri, 6 Jan 2023 01:59:38 -0500	[thread overview]
Message-ID: <20230106015425-mutt-send-email-mst@kernel.org> (raw)
In-Reply-To: <20230106064221.GA61196@h68b04307.sqa.eu95>

On Fri, Jan 06, 2023 at 02:42:21PM +0800, Heng Qi wrote:
> On Fri, Jan 06, 2023 at 12:27:04AM -0500, Michael S. Tsirkin wrote:
> > On Wed, Jan 04, 2023 at 03:14:01PM +0800, Heng Qi wrote:
> > > If the tunnel is used to encapsulate the packets, the hash calculated
> > > using the outer header of the receive packets is always fixed for the
> > > same flow packets, i.e. they will be steered to the same receive queue.
> > > 
> > > We add a feature bit VIRTIO_NET_F_HASH_TUNNEL and related bitmasks
> > > in \field{hash_types}, which instructs the device to calculate the
> > > hash using the inner headers of tunnel-encapsulated packets. Besides,
> > > values in \field{hash_report_tunnel} are added to report tunnel types.
> > > 
> > > Fixes: https://github.com/oasis-tcs/virtio-spec/issues/151
> > > 
> > > Reviewed-by: Jason Wang <jasowang@redhat.com>
> > > Signed-off-by: Heng Qi <hengqi@linux.alibaba.com>
> > > Signed-off-by: Xuan Zhuo <xuanzhuo@linux.alibaba.com>
> > 
> > 
> > ok close to being ready. a couple of minor comments.
> > 
> > > ---
> > > v6:
> > > 	1. Modify the wording of some sentences for clarity. @Michael S. Tsirkin
> > > 	2. Fix some syntax issues. @Michael S. Tsirkin
> > > 
> > > v5:
> > > 	1. Fix some syntax and capitalization issues. @Michael S. Tsirkin
> > > 	2. Use encapsulated/encaptulation uniformly. @Michael S. Tsirkin
> > > 	3. Move the links to introduction section. @Michael S. Tsirkin
> > > 	4. Clarify some sentences. @Michael S. Tsirkin
> > > 
> > > v4:
> > > 	1. Clarify some paragraphs. @Cornelia Huck
> > > 	2. Fix the u8 type. @Cornelia Huck
> > > 
> > > v3:
> > > 	1. Rename VIRTIO_NET_F_HASH_GRE_VXLAN_GENEVE_INNER to VIRTIO_NET_F_HASH_TUNNEL. @Jason Wang
> > > 	2. Make things clearer. @Jason Wang @Michael S. Tsirkin
> > > 	3. Keep the possibility to use inner hash for automatic receive steering. @Jason Wang
> > > 	4. Add the "Tunnel packet" paragraph to avoid repeating the GRE etc. many times. @Michael S. Tsirkin
> > > 
> > > v2:
> > > 	1. Add a feature bit for GRE/VXLAN/GENEVE inner hash. @Jason Wang
> > > 	2. Chang \field{hash_tunnel} to \field{hash_report_tunnel}. @Jason Wang, @Michael S. Tsirkin
> > > 
> > > v1:
> > > 	1. Remove the patch for the bitmask fix. @Michael S. Tsirkin
> > > 	2. Clarify some paragraphs. @Jason Wang
> > > 	3. Add \field{hash_tunnel} and VIRTIO_NET_HASH_REPORT_GRE. @Yuri Benditovich
> > > 
> > >  content.tex      | 191 +++++++++++++++++++++++++++++++++++++++++++++--
> > >  introduction.tex |  19 +++++
> > >  2 files changed, 203 insertions(+), 7 deletions(-)
> > > 
> > > diff --git a/content.tex b/content.tex
> > > index e863709..7845f6c 100644
> > > --- a/content.tex
> > > +++ b/content.tex
> > > @@ -3084,6 +3084,9 @@ \subsection{Feature bits}\label{sec:Device Types / Network Device / Feature bits
> > >  \item[VIRTIO_NET_F_CTRL_MAC_ADDR(23)] Set MAC address through control
> > >      channel.
> > >  
> > > +\item[VIRTIO_NET_F_HASH_TUNNEL(52)] Device supports inner
> > > +    header hash for GRE, VXLAN and GENEVE tunnel-encapsulated packets.
> > 
> > I would probably drop the list of tunnel types here.
> 
> Do you mean to use "Device supports inner header hash for
> tunnel-encapsulated packets." instead? Why? We do want to use this
> feature bit to indicate that the device supports inner hashing of
> GRE, VXLAN and GENEVE encapsulated packets. As in the v3 discussion
> https://lists.oasis-open.org/archives/virtio-dev/202212/msg00024.html ,
> we discussed using VIRTIO_NET_F_HASH_TUNNEL to replace
> VIRTIO_NET_F_HASH_GRE_VXLAN_GENEVE_INNER and plan to use
> VIRTIO_NET_F_HASH_TUNNEL_XYZ for future extensions.

So imagine we add a new tunnel type. Let's say there's VXLAN v2.
why would we need a new feature bit? I think a new hash type
will be sufficient. No?

-- 
MST


  reply	other threads:[~2023-01-06  6:59 UTC|newest]

Thread overview: 54+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-01-04  7:14 [PATCH v7] virtio-net: support inner header hash Heng Qi
2023-01-04 12:34 ` [virtio-comment] " Heng Qi
2023-01-04 12:37   ` Michael S. Tsirkin
2023-01-06  5:27 ` Michael S. Tsirkin
2023-01-06  6:42   ` [virtio-comment] " Heng Qi
2023-01-06  6:59     ` Michael S. Tsirkin [this message]
2023-01-09  2:43       ` [virtio-comment] Re: [virtio-dev] " Heng Qi
2023-01-09  8:59         ` Jason Wang
2023-01-09 11:34           ` Michael S. Tsirkin
2023-01-10  2:06             ` Jason Wang
2023-01-10  5:24               ` Michael S. Tsirkin
2023-01-10  5:57                 ` Michael S. Tsirkin
2023-01-10  7:26                   ` Heng Qi
2023-01-11  3:22                     ` [virtio-comment] " Heng Qi
2023-01-11  4:45                       ` Jason Wang
2023-01-11  9:49                         ` Michael S. Tsirkin
2023-01-09 11:36 ` Michael S. Tsirkin
2023-01-10  7:46   ` Heng Qi
2023-01-09 11:39 ` Michael S. Tsirkin
2023-01-10  7:47   ` [virtio-comment] " Heng Qi
2023-01-11  9:45 ` Michael S. Tsirkin
2023-01-16  8:01   ` [virtio-comment] " Heng Qi
2023-01-16  8:18     ` [virtio-dev] " Cornelia Huck
2023-01-31  5:31       ` Heng Qi
2023-01-16  8:42     ` Jason Wang
2023-01-31  5:28       ` [virtio-dev] " Heng Qi
2023-02-08  2:30         ` Heng Qi
2023-02-08  3:19           ` Parav Pandit
2023-02-08  3:24             ` Heng Qi
2023-02-08  5:18               ` Parav Pandit
2023-02-08  6:11                 ` Heng Qi
2023-02-08 12:21                   ` Parav Pandit
2023-02-09  5:20                     ` [virtio-comment] " Heng Qi
2023-02-09  5:34                       ` Parav Pandit
2023-02-09  9:57                         ` Heng Qi
2023-02-11  2:08                           ` [virtio-comment] " Heng Qi
2023-02-08 13:31                 ` [virtio-comment] " Michael S. Tsirkin
2023-02-08 13:38                   ` Parav Pandit
2023-02-08 13:52                     ` Michael S. Tsirkin
2023-02-08 14:00                       ` Parav Pandit
2023-02-08 14:09                         ` Michael S. Tsirkin
2023-02-08 14:29                           ` Parav Pandit
2023-02-09  5:12                           ` Heng Qi
2023-02-09  6:05                             ` [virtio-dev] " Heng Qi
2023-02-08 14:05                       ` Parav Pandit
2023-02-08 14:10                         ` Michael S. Tsirkin
2023-01-18 23:45 ` [virtio-dev] " Parav Pandit
2023-01-31  5:57   ` [virtio-comment] " Heng Qi
2023-02-01  1:51     ` Parav Pandit
2023-02-01  6:47       ` Michael S. Tsirkin
2023-02-01  6:56       ` Michael S. Tsirkin
2023-02-02  3:55         ` Parav Pandit
2023-02-02  6:55           ` Heng Qi
2023-02-01  7:14       ` Heng Qi

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=20230106015425-mutt-send-email-mst@kernel.org \
    --to=mst@redhat.com \
    --cc=cohuck@redhat.com \
    --cc=hengqi@linux.alibaba.com \
    --cc=jasowang@redhat.com \
    --cc=virtio-comment@lists.oasis-open.org \
    --cc=virtio-dev@lists.oasis-open.org \
    --cc=xuanzhuo@linux.alibaba.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