Re: [PATCH] virtio-net: introduce TSO limit feature
Jason Wang <[email protected]> Mon, 20 Oct 2025 14:25:56 +0800
| Newsgroups | dev.linux.lists.virtio-comment |
|---|---|
| Message-ID | <CACGkMEtDwxWXqdN7ESk5QvmLwTg7GnspZJFu0r-o=XpKTzBGyA@mail.gmail.com> |
On Thu, Oct 16, 2025 at 6:03 PM Michael S. Tsirkin <[email protected]> wrote: > > On Thu, Oct 16, 2025 at 02:31:46PM +0800, Jason Wang wrote: > > On Thu, Oct 16, 2025 at 2:17 PM Michael S. Tsirkin <[email protected]> wrote: > > > > > > On Thu, Oct 16, 2025 at 01:57:41PM +0800, Jason Wang wrote: > > > > On Wed, Oct 15, 2025 at 3:27 PM Michael S. Tsirkin <[email protected]> wrote: > > > > > > > > > > Thanks for the answers. Some more comments: > > > > > > > > > > On Wed, Oct 15, 2025 at 12:29:13PM +0800, Jason Wang wrote: > > > > > > > > device-types/net/description.tex | 46 ++++++++++++++++++++++++++++++++ > > > > > > > > 1 file changed, 46 insertions(+) > > > > > > > > > > > > > > > > diff --git a/device-types/net/description.tex b/device-types/net/description.tex > > > > > > > > index 415c7fd..e56df75 100644 > > > > > > > > --- a/device-types/net/description.tex > > > > > > > > +++ b/device-types/net/description.tex > > > > > > > > @@ -146,6 +146,9 @@ \subsection{Feature bits}\label{sec:Device Types / Network Device / Feature bits > > > > > > > > when VIRTIO_NET_F_IPSEC is negotiated. When a device offers IPsec feature, it SHOULD > > > > > > > > also offer the VIRTIO_NET_F_OUT_NET_HEADER feature. > > > > > > > > > > > > > > > > +\item[VIRTIO_NET_F_HOST_TSO_LIMIT(71)] Device limits the maximum TCP > > > > > > > > + length and the number of segments when performing TCP segmentation. > > > > > > > > + > > > > > > > > \end{description} > > > > > > > > > > > > > > > > \subsubsection{Feature bit requirements}\label{sec:Device Types / Network Device / Feature bits / Feature bit requirements} > > > > > > > > @@ -184,6 +187,7 @@ \subsubsection{Feature bit requirements}\label{sec:Device Types / Network Device > > > > > > > > \item[VIRTIO_NET_F_VQ_NOTF_COAL] Requires VIRTIO_NET_F_CTRL_VQ. > > > > > > > > \item[VIRTIO_NET_F_HASH_TUNNEL] Requires VIRTIO_NET_F_CTRL_VQ along with VIRTIO_NET_F_RSS or VIRTIO_NET_F_HASH_REPORT. > > > > > > > > \item[VIRTIO_NET_F_RSS_CONTEXT] Requires VIRTIO_NET_F_CTRL_VQ and VIRTIO_NET_F_RSS. > > > > > > > > +\item[VIRTIO_NET_F_HOST_TSO_LIMIT] Requires VIRTIO_NET_F_HOST_TSO4 or VIRTIO_NET_F_HOST_TSO6 > > > > > > > > \end{description} > > > > > > > > > > > > > > > > \begin{note} > > > > > > > > @@ -220,6 +224,8 @@ \subsection{Device configuration layout}\label{sec:Device Types / Network Device > > > > > > > > le16 rss_max_indirection_table_length; > > > > > > > > le32 supported_hash_types; > > > > > > > > le32 supported_tunnel_types; > > > > > > > > + le32 tso_max_size; > > > > > > > > + le32 tso_max_segs; > > > > > > > > }; > > > > > > > > \end{lstlisting} > > > > > > > > > > > > > > > > @@ -276,6 +282,19 @@ \subsection{Device configuration layout}\label{sec:Device Types / Network Device > > > > > > > > Encapsulation types are defined in \ref{sec:Device Types / Network Device / Device Operation / Processing of Incoming Packets / > > > > > > > > Hash calculation for incoming packets / Encapsulation types supported/enabled for inner header hash}. > > > > > > > > > > > > > > > > +The following field, \field{tso_max_size} only exists if > > > > > > > > +VIRTIO_NET_F_HOST_TSO_LIMIT is set. > > > > > > > > +It specifies the maximum TCP length > > > > > > > > > > > > > > what is TCP length? > > > > > > > > > > > > It's defined in the rfc793: > > > > > > > > > > > > """ > > > > > > The TCP Length is the TCP header length plus the data length in > > > > > > octets (this is not an explicitly transmitted quantity, but is > > > > > > computed), and it does not count the 12 octets of the pseudo > > > > > > header. > > > > > > """ > > > > > > > > > > > > > > > But that one is 16 bit so can not exceed 65535. > > > > > > > > I just reuse the terminology instead of defining something new. > > > > > > Let's use a generic term that will work with big tcp. > > > > After glancing at RFC TCP length seems to be the best as TCP header > > doesn't have a length. > > > > Maybe you have something better in mind? > > > Depends on what do you mean by it, exactly. TCP header length plus the data length. Maybe TCP packet length? > > > > > > > > Note > > > > that it is only used in pseudo header for csum after device has > > > > performed TSO. The value in the pseudo header is capped by MTU/MSS. > > > > > > > > As replied in another thread, BIG TCP requires more work or features. > > > > Driver needs to set ip->tot_len 0 with a new gso type to let the > > > > device know about BIG TCP packet. > > > > > > > > > > > > > > > > > > > > > > > > of a TSO packet > > > > > > > > > > > > > > what is a TSO packet? > > > > > > > > > > > > Packet for device to perform TCP segmentation offload. > > > > > > > > > > pls define terms before use. > > > > > > > > I may miss something but TSO has been widely used in the spec before > > > > this feature: > > > > > > > > """ > > > > \item[VIRTIO_NET_F_GUEST_ECN (9)] Driver can receive TSO with ECN. > > > > ... > > > > \item[VIRTIO_NET_F_HOST_TSO4 (11)] Device can receive TSOv4. > > > > ... > > > > """ > > > > > > > > > Yes but that does not define a "TSO packet". > > > > How about a patch beforehand to explain thing like: > > > > \item[VIRTIO_NET_F_GUEST_ECN (9)] Driver can receive TSO (TCP > > Segmentation Offload) with ECN. > > That does not define is either? > > virtio$ git grep 'TSO packet' > virtio$ Something like this? Maybe "TSO packet is the packet that device may segment it into multiple frames"? > > > > > > > > > > > > > > > > > > > > > > > > that the > > > > > > > > +device can process. > > > > > > > > > > > > > > process in which direction? you mean device can receive? > > > > > > > > > > > > It works only for TX (as TSO works only for TX). > > > > > > > > > > > > > > > rest of spec says "device receives from driver" for this. > > > > > process is ambiguous > > > > > > > > A quick grep doesn't show me things like this, maybe you can point out > > > > the location. Not a native speaker, but using "device receives from > > > > driver" is indeed ambiguous for TX. > > > > > > Well right near the text you quoted: > > > > > > \item[VIRTIO_NET_F_HOST_TSO4 (11)] Device can receive TSOv4. > > > > > > \item[VIRTIO_NET_F_HOST_TSO6 (12)] Device can receive TSOv6. > > > > Okay, I think you want another to to replace it with > > > > \item[VIRTIO_NET_F_HOST_TSO4 (11)] Device can transmit TSOv4. > > > > ? > > > "receive" in this context is "receive from driver". > > > TSO is not something that is transmitted on the wire. Ok. > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > When VIRTIO_NET_F_HOST_UDP_TUNNEL_GSO is set, > > > > > > > > +it specifies the maximum inner TCP length of a UDP tunnel TSO packet > > > > > > > > +that the device can process. > > > > > > > > > > > > > > Rest of spec talks of " GSO over UDP tunnels packets" is this the same? > > > > > > > > > > > > Not exactly the same, this is only for TSO not genreal GSO. > > > > > > > > > > rest of spec mostly talks of GSO. in fact virtio tso is a kind of > > > > > accelerated gso. > > > > > > > > This only applies for some specific software datapath like vhost-net. > > > > But it doesn't apply to others especially the hardware device who will > > > > do real TSO. > > > > > > My point is that once you have said both GSO and TSO in the same > > > sentence, any reader's eyes have glazed over. > > > > > > > > > > > > > > > > > either do the same or add a lot of text > > > > > explaining tso as opposed to gso. > > > > > > > > Is this ok to say "UDP tunnel VIRTIO_NET_HDR_GSO_TCPV4 or > > > > VIRTIO_NET_HDR_GSO_TCPV6 packet"? > > > > > > Do you maybe mean: \field{gso_type} set to VIRTIO_NET_HDR_GSO_TCPV4 > > > or VIRTIO_NET_HDR_GSO_TCPV6 > > > > Yes. > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > even if it's actually unused? > > > > > > > > > > > > > > this, on the assumption that the length for tunnel is smaller? > > > > > > > > > > > > It means the device should have the same limitation for plain TSO and > > > > > > tunnel TSO. > > > > > > > > > > Hmm. I have doubts how it can work given the overhead. > > > > > > > > If a device can't afford the same limitation, it can simply not > > > > advertise this feature. The reason I don't introduce a dedicated > > > > limitation for tunnel is that there could be more tunnel supported in > > > > the future, it would be a burden to have a per tunnel type limitation. > > > > > > Well presumably the feature is needed no? > > > > Yes, but the kernel assumes the same limitation for tunnel and non > > tunnel one. Having a single limitation simply things or if you stick I > > can introduce a dedicated one for UDP tunnels. > > I don't insist, I think it is worth clarifying though. Ok how about this: """ If a device can not have a single limitation for both plain GSO and tunnel GSO, it MUST NOT advertise VIRTIO_NET_F_TSO_LIMIT feature. """ > > > > > > > > > > > > > > > > > > > > > > > > > > > > > I think this kind of things should be explicit. > > > > > > > > > > > > > > > > > > > > > > + > > > > > > > > +The following field, \field{tso_max_segs} only exists if > > > > > > > > +VIRTIO_NET_F_HOST_TSO_LIMIT is set. > > > > > > > > +It specifies the maximum number of segments that can be produced by > > > > > > > > +the device after performing segmentation on TSO packet or a UDP tunnel > > > > > > > > +TSO packet (when VIRTIO_NET_F_HOST_UDP_TUNNEL_GSO is set). > > > > > > > > > > > > > > I don't get this field at all. the assumption is that all segments > > > > > > > are the same size, right? Then it is just based on length? > > > > > > > > > > > > It's the device side limitation, for example a device can produce 100 > > > > > > segments at most, even if the tso_max_size is 256K, when MTU is 1500, > > > > > > the driver can't send a TSO packet whose TCP length is greater than > > > > > > (1500 - 20 - 20) * 100 = 146K. > > > > > > > > > > then "can be produced" is again confusing. device > > > > > transmits packets but it does not "produce" them as such. > > > > > maybe you just mean "supported". > > > > > > > > I think yes. > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > + > > > > > > > > \devicenormative{\subsubsection}{Device configuration layout}{Device Types / Network Device / Device configuration layout} > > > > > > > > > > > > > > > > The device MUST set \field{max_virtqueue_pairs} to between 1 and 0x8000 inclusive, > > > > > > > > @@ -326,6 +345,17 @@ \subsection{Device configuration layout}\label{sec:Device Types / Network Device > > > > > > > > The device SHOULD NOT offer VIRTIO_NET_F_CTRL_RX_EXTRA if it > > > > > > > > does not offer VIRTIO_NET_F_CTRL_VQ. > > > > > > > > > > > > > > > > +If VIRTIO_NET_F_HOST_TSO_LIMIT and VIRTIO_NET_F_MTU have been > > > > > > > > +negotiated, the device SHOULD set \field{tso_max_size} so that a TCP > > > > > > > > +segment that fully utilizes the configured MTU can be processed by TSO > > > > > > > > +(e.g., for IPv4 without options: at least \field{mtu} - 20; for IPv6 > > > > > > > > +without extension headers: at least \field{mtu} - 40). This > > > > > > > > +recommendation does not account for IPv4 options or IPv6 extension > > > > > > > > +headers, which reduce the effective segment size. > > > > > > > > + > > > > > > > > +If VIRTIO_NET_F_HOST_TSO_LIMIT has been negotiated, the device MUST > > > > > > > > +set \field{tso_max_segs} to at least 64. > > > > > > > > > > > > > > where does this 64 come from? pls document. > > > > > > > > > > > > A simple backward compatibility which makes sure the value can make > > > > > > sure 64K TSO can be segmented with 1500 MTU. > > > > > > > > > > 2^16/64 == 1024 > > > > > > > > > > not ~1500 > > > > > > > > Yes, I just choose one that is sufficient. > > > > > > > > > > > > > > And we don't know MTU is 1500, either. > > > > > > > > A typical configuration but I can remove this part. > > > > > > > > Thanks > > > > > > > > > > > > > > > > > > > > > > > > -- > > > > > MST > > > > > > > > > > > > Thanks > Thanks