Acked-by: Yi Yang <[email protected]> -----邮件原件----- 发件人: dev [mailto:[email protected]] 代表 chengtcli--- via dev 发送时间: 2021年9月13日 21:34 收件人: ovs-dev <[email protected]> 主题: [ovs-dev] [PATCH] correct macro name
From: lic121 <[email protected]> fix macro name from "VLXAN_GPE_FLAGS_P" to "VXLAN_GPE_FLAGS_P" Signed-off-by: lic121 <[email protected]> --- lib/packets.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/packets.h b/lib/packets.h index 515bb59..e8bdf08 100644 --- a/lib/packets.h +++ b/lib/packets.h @@ -1492,7 +1492,7 @@ BUILD_ASSERT_DECL(sizeof(struct vxlanhdr) == 8); /* Fields in struct vxlanhdr.vx_gpe.flags */ #define VXLAN_GPE_FLAGS_VER 0x30 /* Version. */ -#define VLXAN_GPE_FLAGS_P 0x04 /* Next Protocol Bit. */ +#define VXLAN_GPE_FLAGS_P 0x04 /* Next Protocol Bit. */ #define VXLAN_GPE_FLAGS_O 0x01 /* OAM Bit. */ /* VXLAN-GPE header flags. */ -- 1.8.3.1 [email protected] _______________________________________________ dev mailing list [email protected] https://mail.openvswitch.org/mailman/listinfo/ovs-dev _______________________________________________ dev mailing list [email protected] https://mail.openvswitch.org/mailman/listinfo/ovs-dev
