net: Move the definition of the default Geneve udp port to public header file
Move the definition of the default Geneve udp port from the geneve source to the header file, so we can re-use it from drivers. Modify existing drivers to use it. Signed-off-by: Moshe Shemesh <moshe@mellanox.com> Reviewed-by: Or Gerlitz <ogerlitz@mellanox.com> Cc: John Hurley <john.hurley@netronome.com> Cc: Jakub Kicinski <jakub.kicinski@netronome.com> Reviewed-by: Tariq Toukan <tariqt@mellanox.com> Acked-by: Jakub Kicinski <jakub.kicinski@netronome.com> Signed-off-by: Saeed Mahameed <saeedm@mellanox.com>
This commit is contained in:
Родитель
bdde931149
Коммит
974eff2b57
|
@ -163,7 +163,7 @@ nfp_fl_get_tun_from_act_l4_port(struct nfp_app *app,
|
|||
switch (tun->key.tp_dst) {
|
||||
case htons(NFP_FL_VXLAN_PORT):
|
||||
return NFP_FL_TUNNEL_VXLAN;
|
||||
case htons(NFP_FL_GENEVE_PORT):
|
||||
case htons(GENEVE_UDP_PORT):
|
||||
if (priv->flower_ext_feats & NFP_FL_FEATS_GENEVE)
|
||||
return NFP_FL_TUNNEL_GENEVE;
|
||||
/* FALLTHROUGH */
|
||||
|
|
|
@ -35,7 +35,6 @@ struct nfp_app;
|
|||
#define NFP_FL_MASK_ID_LOCATION 1
|
||||
|
||||
#define NFP_FL_VXLAN_PORT 4789
|
||||
#define NFP_FL_GENEVE_PORT 6081
|
||||
|
||||
/* Extra features bitmap. */
|
||||
#define NFP_FL_FEATS_GENEVE BIT(0)
|
||||
|
|
|
@ -203,7 +203,7 @@ nfp_flower_calculate_key_layers(struct nfp_app *app,
|
|||
if (enc_op.key)
|
||||
return -EOPNOTSUPP;
|
||||
break;
|
||||
case htons(NFP_FL_GENEVE_PORT):
|
||||
case htons(GENEVE_UDP_PORT):
|
||||
if (!(priv->flower_ext_feats & NFP_FL_FEATS_GENEVE))
|
||||
return -EOPNOTSUPP;
|
||||
*tun_type = NFP_FL_TUNNEL_GENEVE;
|
||||
|
|
|
@ -22,8 +22,6 @@
|
|||
|
||||
#define GENEVE_NETDEV_VER "0.6"
|
||||
|
||||
#define GENEVE_UDP_PORT 6081
|
||||
|
||||
#define GENEVE_N_VID (1u << 24)
|
||||
#define GENEVE_VID_MASK (GENEVE_N_VID - 1)
|
||||
|
||||
|
|
|
@ -4,6 +4,8 @@
|
|||
|
||||
#include <net/udp_tunnel.h>
|
||||
|
||||
#define GENEVE_UDP_PORT 6081
|
||||
|
||||
/* Geneve Header:
|
||||
* +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|
||||
* |Ver| Opt Len |O|C| Rsvd. | Protocol Type |
|
||||
|
|
Загрузка…
Ссылка в новой задаче