Symbol: gre_protocol
drivers/infiniband/hw/mlx5/fs.c
414
MLX5_SET(fte_match_set_misc, misc_params_c, gre_protocol,
drivers/infiniband/hw/mlx5/fs.c
416
MLX5_SET(fte_match_set_misc, misc_params_v, gre_protocol,
drivers/net/ethernet/mellanox/mlx5/core/diag/fs_tracepoint.c
191
PRINT_MASKED_VAL_MISC(u8, gre_protocol, gre_protocol, p, "%u");
drivers/net/ethernet/mellanox/mlx5/core/en/tc_tun_gre.c
73
MLX5_SET_TO_ONES(fte_match_set_misc, misc_c, gre_protocol);
drivers/net/ethernet/mellanox/mlx5/core/en/tc_tun_gre.c
74
MLX5_SET(fte_match_set_misc, misc_v, gre_protocol, ETH_P_TEB);
drivers/net/ethernet/mellanox/mlx5/core/steering/hws/definer.c
1134
if (HWS_IS_FLD_SET(match_param, misc_parameters.gre_protocol)) {
drivers/net/ethernet/mellanox/mlx5/core/steering/hws/definer.c
1138
misc_parameters.gre_protocol,
drivers/net/ethernet/mellanox/mlx5/core/steering/hws/definer.c
1140
curr_fc->bit_mask = __mlx5_mask(header_gre, gre_protocol);
drivers/net/ethernet/mellanox/mlx5/core/steering/hws/definer.c
1141
curr_fc->bit_off = __mlx5_dw_bit_off(header_gre, gre_protocol);
drivers/net/ethernet/mellanox/mlx5/core/steering/hws/definer.h
728
u8 gre_protocol[0x10];
drivers/net/ethernet/mellanox/mlx5/core/steering/sws/dr_matcher.c
84
misc->gre_protocol || misc->gre_c_present ||
drivers/net/ethernet/mellanox/mlx5/core/steering/sws/dr_ste.c
833
spec->gre_protocol = IFC_GET_CLR(fte_match_set_misc, mask, gre_protocol, clr);
drivers/net/ethernet/mellanox/mlx5/core/steering/sws/dr_ste_v0.c
1250
DR_STE_SET_TAG(gre, tag, gre_protocol, misc, gre_protocol);
drivers/net/ethernet/mellanox/mlx5/core/steering/sws/dr_ste_v1.c
1465
DR_STE_SET_TAG(gre_v1, tag, gre_protocol, misc, gre_protocol);
drivers/net/ethernet/mellanox/mlx5/core/steering/sws/dr_types.h
689
u32 gre_protocol:16; /* GRE Protocol (outer) */
drivers/net/ethernet/mellanox/mlx5/core/steering/sws/mlx5_ifc_dr.h
419
u8 gre_protocol[0x10];
drivers/net/ethernet/mellanox/mlx5/core/steering/sws/mlx5_ifc_dr_ste_v1.h
430
u8 gre_protocol[0x10];
drivers/net/ppp/pptp.c
647
static const struct gre_protocol gre_pptp_protocol = {
include/linux/mlx5/mlx5_ifc.h
648
u8 gre_protocol[0x10];
include/net/gre.h
32
int gre_add_protocol(const struct gre_protocol *proto, u8 version);
include/net/gre.h
33
int gre_del_protocol(const struct gre_protocol *proto, u8 version);
net/ipv4/gre_demux.c
148
const struct gre_protocol *proto;
net/ipv4/gre_demux.c
180
const struct gre_protocol *proto;
net/ipv4/gre_demux.c
29
static const struct gre_protocol __rcu *gre_proto[GREPROTO_MAX] __read_mostly;
net/ipv4/gre_demux.c
31
int gre_add_protocol(const struct gre_protocol *proto, u8 version)
net/ipv4/gre_demux.c
36
return (cmpxchg((const struct gre_protocol **)&gre_proto[version], NULL, proto) == NULL) ?
net/ipv4/gre_demux.c
41
int gre_del_protocol(const struct gre_protocol *proto, u8 version)
net/ipv4/gre_demux.c
48
ret = (cmpxchg((const struct gre_protocol **)&gre_proto[version], proto, NULL) == proto) ?
net/ipv4/ip_gre.c
1070
static const struct gre_protocol ipgre_protocol = {