Loading drivers/net/vxlan.c +2 −2 Original line number Original line Diff line number Diff line Loading @@ -70,8 +70,8 @@ struct vxlanhdr { * The IANA assigned port is 4789, but the Linux default is 8472 * The IANA assigned port is 4789, but the Linux default is 8472 * for compatability with early adopters. * for compatability with early adopters. */ */ static unsigned int vxlan_port __read_mostly = 8472; static unsigned short vxlan_port __read_mostly = 8472; module_param_named(udp_port, vxlan_port, uint, 0444); module_param_named(udp_port, vxlan_port, ushort, 0444); MODULE_PARM_DESC(udp_port, "Destination UDP port"); MODULE_PARM_DESC(udp_port, "Destination UDP port"); static bool log_ecn_error = true; static bool log_ecn_error = true; Loading Loading
drivers/net/vxlan.c +2 −2 Original line number Original line Diff line number Diff line Loading @@ -70,8 +70,8 @@ struct vxlanhdr { * The IANA assigned port is 4789, but the Linux default is 8472 * The IANA assigned port is 4789, but the Linux default is 8472 * for compatability with early adopters. * for compatability with early adopters. */ */ static unsigned int vxlan_port __read_mostly = 8472; static unsigned short vxlan_port __read_mostly = 8472; module_param_named(udp_port, vxlan_port, uint, 0444); module_param_named(udp_port, vxlan_port, ushort, 0444); MODULE_PARM_DESC(udp_port, "Destination UDP port"); MODULE_PARM_DESC(udp_port, "Destination UDP port"); static bool log_ecn_error = true; static bool log_ecn_error = true; Loading