git: 44aca0397cc8 - stable/13 - if_vxlan(4): Exclude ETHER_CRC_LEN from macro VXLAN_MAX_MTU
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Wed, 10 Jul 2024 11:45:20 UTC
The branch stable/13 has been updated by zlei:
URL: https://cgit.FreeBSD.org/src/commit/?id=44aca0397cc84e2483bc04b21b3e836aa2ae79c7
commit 44aca0397cc84e2483bc04b21b3e836aa2ae79c7
Author: Zhenlei Huang <zlei@FreeBSD.org>
AuthorDate: 2024-07-02 04:57:01 +0000
Commit: Zhenlei Huang <zlei@FreeBSD.org>
CommitDate: 2024-07-10 11:43:36 +0000
if_vxlan(4): Exclude ETHER_CRC_LEN from macro VXLAN_MAX_MTU
The encapsulated (original) frame does not count in FCS as per Section 5
of RFC 7348.
Reviewed by: afedorov, bryanv, #network
Fixes: b7592822d5de Allow set MTU more than 1500 bytes
MFC after: 1 week
Differential Revision: https://reviews.freebsd.org/D45195
(cherry picked from commit d6963b9ed3287e91db3d1df153861591faff0007)
(cherry picked from commit 7de38cbb5dc4d0a6de65eb562a1b066313dc756a)
---
sys/net/if_vxlan.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/sys/net/if_vxlan.c b/sys/net/if_vxlan.c
index 3802ebe4bfbe..34816ede13a3 100644
--- a/sys/net/if_vxlan.c
+++ b/sys/net/if_vxlan.c
@@ -97,7 +97,7 @@ struct vxlan_socket_mc_info {
60 /* Maximum IPv4 header len */ - \
sizeof(struct udphdr) - \
sizeof(struct vxlan_header) - \
- ETHER_HDR_LEN - ETHER_CRC_LEN - ETHER_VLAN_ENCAP_LEN)
+ ETHER_HDR_LEN - ETHER_VLAN_ENCAP_LEN)
#define VXLAN_BASIC_IFCAPS (IFCAP_LINKSTATE | IFCAP_JUMBO_MTU)
#define VXLAN_SO_MC_MAX_GROUPS 32