diff options
author | Jesse Brandeburg <jesse.brandeburg@intel.com> | 2018-11-07 21:40:17 -0800 |
---|---|---|
committer | Jeff Kirsher <jeffrey.t.kirsher@intel.com> | 2018-11-21 10:30:30 -0800 |
commit | 09e58b2d538cfd4fa3f48bc4fc78ba1c1b28b05a (patch) | |
tree | 27042e868462e87ed403c6dceeee793829eefcd6 /Documentation/networking | |
parent | 4df3c543a72585fdcac8fed9547d2ce395729221 (diff) | |
download | linux-09e58b2d538cfd4fa3f48bc4fc78ba1c1b28b05a.tar.gz linux-09e58b2d538cfd4fa3f48bc4fc78ba1c1b28b05a.tar.bz2 linux-09e58b2d538cfd4fa3f48bc4fc78ba1c1b28b05a.zip |
docs-networking: fix typo in define
The #define for NETIF_F_GSO_UDP_L4 was incorrect in the
documentation, fix it by making it match the actual code.
Signed-off-by: Jesse Brandeburg <jesse.brandeburg@intel.com>
Tested-by: Andrew Bowers <andrewx.bowers@intel.com>
Tested-by: Aaron Brown <aaron.f.brown@intel.com>
Signed-off-by: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
Diffstat (limited to 'Documentation/networking')
-rw-r--r-- | Documentation/networking/netdev-features.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Documentation/networking/netdev-features.txt b/Documentation/networking/netdev-features.txt index c4a54c162547..58dd1c1e3c65 100644 --- a/Documentation/networking/netdev-features.txt +++ b/Documentation/networking/netdev-features.txt @@ -115,7 +115,7 @@ set, be it TCPv4 (when NETIF_F_TSO is enabled) or TCPv6 (NETIF_F_TSO6). * Transmit UDP segmentation offload -NETIF_F_GSO_UDP_GSO_L4 accepts a single UDP header with a payload that exceeds +NETIF_F_GSO_UDP_L4 accepts a single UDP header with a payload that exceeds gso_size. On segmentation, it segments the payload on gso_size boundaries and replicates the network and UDP headers (fixing up the last one if less than gso_size). |