Lines Matching defs:rxfh
752 struct ethtool_rxfh_param rxfh = {};
773 rxfh.indir = kcalloc(dev_size, sizeof(rxfh.indir[0]), GFP_USER);
774 if (!rxfh.indir)
778 ret = dev->ethtool_ops->get_rxfh(dev, &rxfh);
786 current_max = max(current_max, rxfh.indir[dev_size]);
789 kfree(rxfh.indir);
910 int ethtool_rxfh_config_is_sym(u64 rxfh)
914 sym = rxfh == (rxfh & (RXH_IP_SRC | RXH_IP_DST |
916 sym &= !!(rxfh & RXH_IP_SRC) == !!(rxfh & RXH_IP_DST);
917 sym &= !!(rxfh & RXH_L4_B_0_1) == !!(rxfh & RXH_L4_B_2_3);