Symbol: flow_hash
drivers/net/ethernet/meta/fbnic/fbnic_rpc.c
320
u32 flow_hash, dest, rss_en_mask;
drivers/net/ethernet/meta/fbnic/fbnic_rpc.c
325
flow_hash = fbn->rss_flow_hash[flow_type];
drivers/net/ethernet/meta/fbnic/fbnic_rpc.c
329
!(RXH_DISCARD & flow_hash) ?
drivers/net/ethernet/meta/fbnic/fbnic_rpc.c
67
u32 flow_hash = fbn->rss_flow_hash[flow_type];
drivers/net/ethernet/meta/fbnic/fbnic_rpc.c
70
rss_en_mask |= FBNIC_FH_2_RSSEM_BIT(L2DA, L2_DA, flow_hash);
drivers/net/ethernet/meta/fbnic/fbnic_rpc.c
71
rss_en_mask |= FBNIC_FH_2_RSSEM_BIT(IP_SRC, IP_SRC, flow_hash);
drivers/net/ethernet/meta/fbnic/fbnic_rpc.c
72
rss_en_mask |= FBNIC_FH_2_RSSEM_BIT(IP_DST, IP_DST, flow_hash);
drivers/net/ethernet/meta/fbnic/fbnic_rpc.c
73
rss_en_mask |= FBNIC_FH_2_RSSEM_BIT(L4_B_0_1, L4_SRC, flow_hash);
drivers/net/ethernet/meta/fbnic/fbnic_rpc.c
74
rss_en_mask |= FBNIC_FH_2_RSSEM_BIT(L4_B_2_3, L4_DST, flow_hash);
drivers/net/ethernet/meta/fbnic/fbnic_rpc.c
75
rss_en_mask |= FBNIC_FH_2_RSSEM_BIT(IP6_FL, OV6_FL_LBL, flow_hash);
drivers/net/ethernet/meta/fbnic/fbnic_rpc.c
76
rss_en_mask |= FBNIC_FH_2_RSSEM_BIT(IP6_FL, IV6_FL_LBL, flow_hash);
net/ethtool/rss.c
105
data->flow_hash[i] = -1; /* Unsupported */
net/ethtool/rss.c
109
data->flow_hash[i] = fields.data;
net/ethtool/rss.c
23
int flow_hash[__ETHTOOL_A_FLOW_CNT];
net/ethtool/rss.c
329
if (data->flow_hash[i] >= 0 &&
net/ethtool/rss.c
330
nla_put_uint(skb, i, data->flow_hash[i])) {
net/ethtool/rss.c
738
if (data->flow_hash[i] >= 0 &&
net/ethtool/rss.c
739
!ethtool_rxfh_config_is_sym(data->flow_hash[i])) {
net/ethtool/rss.c
783
if (data->has_flow_hash && data->flow_hash[i] == fields.data)
net/openvswitch/flow_table.c
1038
flow->flow_table.hash = flow_hash(&flow->key, &flow->mask->range);
net/openvswitch/flow_table.c
707
hash = flow_hash(&masked_key, &mask->range);
net/sched/sch_cake.c
709
u32 flow_hash = 0, srchost_hash = 0, dsthost_hash = 0;
net/sched/sch_cake.c
775
flow_hash = flow_hash_from_keys(&keys);
net/sched/sch_cake.c
779
flow_hash = flow_override - 1;
net/sched/sch_cake.c
781
flow_hash = skb->hash;
net/sched/sch_cake.c
789
flow_hash ^= srchost_hash;
net/sched/sch_cake.c
792
flow_hash ^= dsthost_hash;
net/sched/sch_cake.c
795
reduced_hash = flow_hash % CAKE_QUEUES;
net/sched/sch_cake.c
799
if (likely(q->tags[reduced_hash] == flow_hash &&
net/sched/sch_cake.c
814
if (q->tags[outer_hash + k] == flow_hash) {
net/sched/sch_cake.c
855
q->tags[reduced_hash] = flow_hash;