Home
last modified time | relevance | path

Searched refs:flow_type (Results 1 – 59 of 59) sorted by relevance

/linux-4.1.27/arch/powerpc/sysdev/
Dcpm2_pic.c132 static int cpm2_set_irq_type(struct irq_data *d, unsigned int flow_type) in cpm2_set_irq_type() argument
142 if (flow_type == IRQ_TYPE_NONE) in cpm2_set_irq_type()
143 flow_type = IRQ_TYPE_EDGE_BOTH; in cpm2_set_irq_type()
145 if (flow_type != IRQ_TYPE_EDGE_BOTH && in cpm2_set_irq_type()
146 flow_type != IRQ_TYPE_EDGE_FALLING) in cpm2_set_irq_type()
149 if (flow_type == IRQ_TYPE_NONE) in cpm2_set_irq_type()
150 flow_type = IRQ_TYPE_LEVEL_LOW; in cpm2_set_irq_type()
152 if (flow_type & (IRQ_TYPE_EDGE_RISING | IRQ_TYPE_LEVEL_HIGH)) in cpm2_set_irq_type()
156 irqd_set_trigger_type(d, flow_type); in cpm2_set_irq_type()
157 if (flow_type & IRQ_TYPE_LEVEL_LOW) in cpm2_set_irq_type()
[all …]
Dehv_pic.c111 int ehv_pic_set_irq_type(struct irq_data *d, unsigned int flow_type) in ehv_pic_set_irq_type() argument
117 if (flow_type == IRQ_TYPE_NONE) in ehv_pic_set_irq_type()
118 flow_type = IRQ_TYPE_LEVEL_LOW; in ehv_pic_set_irq_type()
120 irqd_set_trigger_type(d, flow_type); in ehv_pic_set_irq_type()
122 vecpri = ehv_pic_type_to_vecpri(flow_type); in ehv_pic_set_irq_type()
Dipic.c601 static int ipic_set_irq_type(struct irq_data *d, unsigned int flow_type) in ipic_set_irq_type() argument
607 if (flow_type == IRQ_TYPE_NONE) in ipic_set_irq_type()
608 flow_type = IRQ_TYPE_LEVEL_LOW; in ipic_set_irq_type()
612 if (!(flow_type & (IRQ_TYPE_LEVEL_LOW | IRQ_TYPE_EDGE_FALLING))) { in ipic_set_irq_type()
614 flow_type); in ipic_set_irq_type()
618 if ((flow_type & IRQ_TYPE_EDGE_FALLING) && !ipic_info[src].ack) { in ipic_set_irq_type()
625 irqd_set_trigger_type(d, flow_type); in ipic_set_irq_type()
626 if (flow_type & IRQ_TYPE_LEVEL_LOW) { in ipic_set_irq_type()
643 return (flow_type & IRQ_TYPE_LEVEL_LOW) ? 0 : -EINVAL; in ipic_set_irq_type()
646 if ((flow_type & IRQ_TYPE_SENSE_MASK) == IRQ_TYPE_EDGE_FALLING) { in ipic_set_irq_type()
Dmpc8xx_pic.c51 static int mpc8xx_set_irq_type(struct irq_data *d, unsigned int flow_type) in mpc8xx_set_irq_type() argument
54 if ((flow_type & IRQ_TYPE_EDGE_FALLING) && !(irqd_to_hwirq(d) & 1)) { in mpc8xx_set_irq_type()
Dmpic.h37 extern int mpic_set_irq_type(struct irq_data *d, unsigned int flow_type);
Dmpic.c867 int mpic_set_irq_type(struct irq_data *d, unsigned int flow_type) in mpic_set_irq_type() argument
874 mpic, d->irq, src, flow_type); in mpic_set_irq_type()
882 if (flow_type == IRQ_TYPE_NONE) in mpic_set_irq_type()
883 flow_type = IRQ_TYPE_DEFAULT; in mpic_set_irq_type()
886 if (flow_type == IRQ_TYPE_DEFAULT) { in mpic_set_irq_type()
894 flow_type = IRQ_TYPE_EDGE_RISING; in mpic_set_irq_type()
897 flow_type = IRQ_TYPE_EDGE_FALLING; in mpic_set_irq_type()
900 flow_type = IRQ_TYPE_LEVEL_HIGH; in mpic_set_irq_type()
903 flow_type = IRQ_TYPE_LEVEL_LOW; in mpic_set_irq_type()
909 irqd_set_trigger_type(d, flow_type); in mpic_set_irq_type()
[all …]
Duic.c122 static int uic_set_irq_type(struct irq_data *d, unsigned int flow_type) in uic_set_irq_type() argument
130 switch (flow_type & IRQ_TYPE_SENSE_MASK) { in uic_set_irq_type()
Dxilinx_intc.c82 static int xilinx_intc_set_type(struct irq_data *d, unsigned int flow_type) in xilinx_intc_set_type() argument
/linux-4.1.27/arch/avr32/mach-at32ap/
Dextint.c89 static int eic_set_irq_type(struct irq_data *d, unsigned int flow_type) in eic_set_irq_type() argument
96 flow_type &= IRQ_TYPE_SENSE_MASK; in eic_set_irq_type()
97 if (flow_type == IRQ_TYPE_NONE) in eic_set_irq_type()
98 flow_type = IRQ_TYPE_LEVEL_LOW; in eic_set_irq_type()
104 switch (flow_type) { in eic_set_irq_type()
129 irqd_set_trigger_type(d, flow_type); in eic_set_irq_type()
130 if (flow_type & (IRQ_TYPE_LEVEL_LOW | IRQ_TYPE_LEVEL_HIGH)) in eic_set_irq_type()
/linux-4.1.27/drivers/irqchip/
Dirq-tb10x.c54 static int tb10x_irq_set_type(struct irq_data *data, unsigned int flow_type) in tb10x_irq_set_type() argument
66 switch (flow_type & IRQF_TRIGGER_MASK) { in tb10x_irq_set_type()
74 flow_type = IRQ_TYPE_LEVEL_LOW; in tb10x_irq_set_type()
88 irqd_set_trigger_type(data, flow_type); in tb10x_irq_set_type()
89 irq_setup_alt_chip(data, flow_type); in tb10x_irq_set_type()
Dirq-sunxi-nmi.c72 static int sunxi_sc_nmi_set_type(struct irq_data *data, unsigned int flow_type) in sunxi_sc_nmi_set_type() argument
83 switch (flow_type & IRQF_TRIGGER_MASK) { in sunxi_sc_nmi_set_type()
104 irqd_set_trigger_type(data, flow_type); in sunxi_sc_nmi_set_type()
105 irq_setup_alt_chip(data, flow_type); in sunxi_sc_nmi_set_type()
108 if (ct->type & flow_type) in sunxi_sc_nmi_set_type()
Dirq-vt8500.c116 static int vt8500_irq_set_type(struct irq_data *d, unsigned int flow_type) in vt8500_irq_set_type() argument
125 switch (flow_type) { in vt8500_irq_set_type()
Dirq-imgpdc.c150 static int syswake_irq_set_type(struct irq_data *data, unsigned int flow_type) in syswake_irq_set_type() argument
158 switch (flow_type) { in syswake_irq_set_type()
188 irq_setup_alt_chip(data, flow_type); in syswake_irq_set_type()
Dirq-metag-ext.c402 static int meta_intc_irq_set_type(struct irq_data *data, unsigned int flow_type) in meta_intc_irq_set_type() argument
415 if (flow_type & IRQ_TYPE_LEVEL_MASK) in meta_intc_irq_set_type()
425 if (flow_type & IRQ_TYPE_LEVEL_MASK) in meta_intc_irq_set_type()
/linux-4.1.27/arch/mips/bcm63xx/
Dirq.c279 unsigned int flow_type) in bcm63xx_external_irq_set_type() argument
286 flow_type &= IRQ_TYPE_SENSE_MASK; in bcm63xx_external_irq_set_type()
288 if (flow_type == IRQ_TYPE_NONE) in bcm63xx_external_irq_set_type()
289 flow_type = IRQ_TYPE_LEVEL_LOW; in bcm63xx_external_irq_set_type()
292 switch (flow_type) { in bcm63xx_external_irq_set_type()
366 irqd_set_trigger_type(d, flow_type); in bcm63xx_external_irq_set_type()
367 if (flow_type & (IRQ_TYPE_LEVEL_LOW | IRQ_TYPE_LEVEL_HIGH)) in bcm63xx_external_irq_set_type()
/linux-4.1.27/drivers/mfd/
Dpm8921-core.c209 static int pm8xxx_irq_set_type(struct irq_data *d, unsigned int flow_type) in pm8xxx_irq_set_type() argument
221 if (flow_type & (IRQF_TRIGGER_RISING | IRQF_TRIGGER_FALLING)) { in pm8xxx_irq_set_type()
222 if (flow_type & IRQF_TRIGGER_RISING) in pm8xxx_irq_set_type()
224 if (flow_type & IRQF_TRIGGER_FALLING) in pm8xxx_irq_set_type()
229 if (flow_type & IRQF_TRIGGER_HIGH) in pm8xxx_irq_set_type()
Dhtc-i2cpld.c61 unsigned int flow_type; member
110 chip->flow_type = flags; in htcpld_set_type()
191 unsigned oldb, newb, type = chip->flow_type; in htcpld_handler()
/linux-4.1.27/arch/mips/kernel/
Dirq_txx9.c112 static int txx9_irq_set_type(struct irq_data *d, unsigned int flow_type) in txx9_irq_set_type() argument
120 if (flow_type & IRQF_TRIGGER_PROBE) in txx9_irq_set_type()
122 switch (flow_type & IRQF_TRIGGER_MASK) { in txx9_irq_set_type()
/linux-4.1.27/arch/mips/txx9/generic/
Dirq_tx4939.c104 static int tx4939_irq_set_type(struct irq_data *d, unsigned int flow_type) in tx4939_irq_set_type() argument
112 if (flow_type & IRQF_TRIGGER_PROBE) in tx4939_irq_set_type()
114 switch (flow_type & IRQF_TRIGGER_MASK) { in tx4939_irq_set_type()
/linux-4.1.27/drivers/gpio/
Dgpio-msm-v2.c272 static int msm_gpio_irq_set_type(struct irq_data *d, unsigned int flow_type) in msm_gpio_irq_set_type() argument
282 if (flow_type & IRQ_TYPE_EDGE_BOTH) { in msm_gpio_irq_set_type()
285 if ((flow_type & IRQ_TYPE_EDGE_BOTH) == IRQ_TYPE_EDGE_BOTH) in msm_gpio_irq_set_type()
295 if (flow_type & (IRQ_TYPE_EDGE_RISING | IRQ_TYPE_LEVEL_HIGH)) in msm_gpio_irq_set_type()
302 if ((flow_type & IRQ_TYPE_EDGE_BOTH) == IRQ_TYPE_EDGE_BOTH) in msm_gpio_irq_set_type()
Dgpio-mpc8xxx.c237 static int mpc8xxx_irq_set_type(struct irq_data *d, unsigned int flow_type) in mpc8xxx_irq_set_type() argument
243 switch (flow_type) { in mpc8xxx_irq_set_type()
265 static int mpc512x_irq_set_type(struct irq_data *d, unsigned int flow_type) in mpc512x_irq_set_type() argument
282 switch (flow_type) { in mpc512x_irq_set_type()
Dgpio-tz1090.c320 static int gpio_set_irq_type(struct irq_data *data, unsigned int flow_type) in gpio_set_irq_type() argument
326 switch (flow_type) { in gpio_set_irq_type()
352 irq_setup_alt_chip(data, flow_type); in gpio_set_irq_type()
354 if (flow_type == IRQ_TYPE_EDGE_BOTH) in gpio_set_irq_type()
Dgpio-sx150x.c377 static int sx150x_irq_set_type(struct irq_data *d, unsigned int flow_type) in sx150x_irq_set_type() argument
382 if (flow_type & (IRQ_TYPE_LEVEL_HIGH | IRQ_TYPE_LEVEL_LOW)) in sx150x_irq_set_type()
387 if (flow_type & IRQ_TYPE_EDGE_RISING) in sx150x_irq_set_type()
389 if (flow_type & IRQ_TYPE_EDGE_FALLING) in sx150x_irq_set_type()
/linux-4.1.27/arch/powerpc/platforms/52xx/
Dmpc52xx_pic.c176 static int mpc52xx_extirq_set_type(struct irq_data *d, unsigned int flow_type) in mpc52xx_extirq_set_type() argument
183 (int) irqd_to_hwirq(d), l2irq, flow_type); in mpc52xx_extirq_set_type()
185 switch (flow_type) { in mpc52xx_extirq_set_type()
215 static int mpc52xx_null_set_type(struct irq_data *d, unsigned int flow_type) in mpc52xx_null_set_type() argument
Dmpc52xx_gpt.c166 static int mpc52xx_gpt_irq_set_type(struct irq_data *d, unsigned int flow_type) in mpc52xx_gpt_irq_set_type() argument
172 dev_dbg(gpt->dev, "%s: virq=%i type=%x\n", __func__, d->irq, flow_type); in mpc52xx_gpt_irq_set_type()
176 if (flow_type & IRQF_TRIGGER_RISING) in mpc52xx_gpt_irq_set_type()
178 if (flow_type & IRQF_TRIGGER_FALLING) in mpc52xx_gpt_irq_set_type()
/linux-4.1.27/arch/mips/jz4740/
Dgpio.c348 static int jz_gpio_irq_set_type(struct irq_data *data, unsigned int flow_type) in jz_gpio_irq_set_type() argument
353 if (flow_type == IRQ_TYPE_EDGE_BOTH) { in jz_gpio_irq_set_type()
356 flow_type = IRQ_TYPE_EDGE_FALLING; in jz_gpio_irq_set_type()
358 flow_type = IRQ_TYPE_EDGE_RISING; in jz_gpio_irq_set_type()
364 switch (flow_type) { in jz_gpio_irq_set_type()
/linux-4.1.27/include/linux/
Dethtool.h21 u32 flow_type; member
32 u32 flow_type; member
Dirq.h347 int (*irq_set_type)(struct irq_data *data, unsigned int flow_type);
/linux-4.1.27/arch/mips/pnx833x/common/
Dinterrupts.c209 static int pnx833x_set_type_gpio_irq(struct irq_data *d, unsigned int flow_type) in pnx833x_set_type_gpio_irq() argument
214 switch (flow_type) { in pnx833x_set_type_gpio_irq()
/linux-4.1.27/arch/arm/mach-davinci/
Dcp_intc.c54 static int cp_intc_set_irq_type(struct irq_data *d, unsigned int flow_type) in cp_intc_set_irq_type() argument
61 switch (flow_type) { in cp_intc_set_irq_type()
/linux-4.1.27/arch/arm/mach-pxa/
Dpxa3xx.c357 static int pxa_set_ext_wakeup_type(struct irq_data *d, unsigned int flow_type) in pxa_set_ext_wakeup_type() argument
359 if (flow_type & IRQ_TYPE_EDGE_RISING) in pxa_set_ext_wakeup_type()
362 if (flow_type & IRQ_TYPE_EDGE_FALLING) in pxa_set_ext_wakeup_type()
/linux-4.1.27/drivers/spmi/
Dspmi-pmic-arb.c549 static int qpnpint_irq_set_type(struct irq_data *d, unsigned int flow_type) in qpnpint_irq_set_type() argument
556 if (flow_type & (IRQF_TRIGGER_RISING | IRQF_TRIGGER_FALLING)) { in qpnpint_irq_set_type()
558 if (flow_type & IRQF_TRIGGER_RISING) in qpnpint_irq_set_type()
560 if (flow_type & IRQF_TRIGGER_FALLING) in qpnpint_irq_set_type()
563 if ((flow_type & (IRQF_TRIGGER_HIGH)) && in qpnpint_irq_set_type()
564 (flow_type & (IRQF_TRIGGER_LOW))) in qpnpint_irq_set_type()
568 if (flow_type & IRQF_TRIGGER_HIGH) in qpnpint_irq_set_type()
/linux-4.1.27/drivers/net/ethernet/intel/ixgbe/
Dixgbe_ethtool.c2350 switch (rule->filter.formatted.flow_type) { in ixgbe_get_ethtool_fdir_entry()
2352 fsp->flow_type = TCP_V4_FLOW; in ixgbe_get_ethtool_fdir_entry()
2355 fsp->flow_type = UDP_V4_FLOW; in ixgbe_get_ethtool_fdir_entry()
2358 fsp->flow_type = SCTP_V4_FLOW; in ixgbe_get_ethtool_fdir_entry()
2361 fsp->flow_type = IP_USER_FLOW; in ixgbe_get_ethtool_fdir_entry()
2384 fsp->flow_type |= FLOW_EXT; in ixgbe_get_ethtool_fdir_entry()
2425 switch (cmd->flow_type) { in ixgbe_get_rss_hash_opts()
2550 u8 *flow_type) in ixgbe_flowspec_to_flow_type() argument
2552 switch (fsp->flow_type & ~FLOW_EXT) { in ixgbe_flowspec_to_flow_type()
2554 *flow_type = IXGBE_ATR_FLOW_TYPE_TCPV4; in ixgbe_flowspec_to_flow_type()
[all …]
Dixgbe_82599.c1525 switch (input.formatted.flow_type) { in ixgbe_fdir_add_signature_filter_82599()
1541 fdircmd |= input.formatted.flow_type << IXGBE_FDIRCMD_FLOW_TYPE_SHIFT; in ixgbe_fdir_add_signature_filter_82599()
1694 switch (input_mask->formatted.flow_type & IXGBE_ATR_L4TYPE_MASK) { in ixgbe_fdir_set_input_mask_82599()
1806 fdircmd |= input->formatted.flow_type << IXGBE_FDIRCMD_FLOW_TYPE_SHIFT; in ixgbe_fdir_write_perfect_filter_82599()
Dixgbe_type.h2716 u8 flow_type; member
2732 u8 flow_type; member
Dixgbe_main.c7218 input.formatted.flow_type = IXGBE_ATR_FLOW_TYPE_TCPV4; in ixgbe_atr()
7221 input.formatted.flow_type = IXGBE_ATR_FLOW_TYPE_TCPV6; in ixgbe_atr()
/linux-4.1.27/drivers/net/ethernet/sfc/
Dethtool.c818 rule->flow_type = ((spec.ip_proto == IPPROTO_TCP) ? in efx_ethtool_get_class_rule()
840 rule->flow_type = ETHER_FLOW; in efx_ethtool_get_class_rule()
865 rule->flow_type |= FLOW_EXT; in efx_ethtool_get_class_rule()
888 switch (info->flow_type) { in efx_ethtool_get_rxnfc()
969 if ((rule->flow_type & FLOW_EXT) && in efx_ethtool_set_class_rule()
979 switch (rule->flow_type & ~FLOW_EXT) { in efx_ethtool_set_class_rule()
985 spec.ip_proto = ((rule->flow_type & ~FLOW_EXT) == TCP_V4_FLOW ? in efx_ethtool_set_class_rule()
1044 if ((rule->flow_type & FLOW_EXT) && rule->m_ext.vlan_tci) { in efx_ethtool_set_class_rule()
/linux-4.1.27/arch/powerpc/platforms/85xx/
Dsocrates_fpga_pic.c191 unsigned int flow_type) in socrates_fpga_pic_set_type() argument
201 switch (flow_type & IRQ_TYPE_SENSE_MASK) { in socrates_fpga_pic_set_type()
/linux-4.1.27/include/uapi/linux/
Dethtool.h790 __u32 flow_type; member
853 __u32 flow_type; member
933 __u32 flow_type; member
/linux-4.1.27/drivers/net/ethernet/samsung/sxgbe/
Dsxgbe_ethtool.c339 switch (cmd->flow_type) { in sxgbe_get_rss_hash_opts()
396 switch (cmd->flow_type) { in sxgbe_set_rss_hash_opt()
/linux-4.1.27/drivers/net/ethernet/intel/i40e/
Di40e_ethtool.c1799 cmd->flow_type = pf->vsi[pf->lan_vsi]->rxnfc.flow_type; in i40e_get_rss_hash_opts()
1803 switch (cmd->flow_type) { in i40e_get_rss_hash_opts()
1896 fsp->flow_type = rule->flow_type; in i40e_get_ethtool_fdir_entry()
1897 if (fsp->flow_type == IP_USER_FLOW) { in i40e_get_ethtool_fdir_entry()
1996 switch (nfc->flow_type) { in i40e_set_rss_hash_opt()
2269 input->flow_type = fsp->flow_type; in i40e_add_fdir_ethtool()
Di40e.h196 u8 flow_type; member
Di40e_txrx.c407 switch (input->flow_type & ~FLOW_EXT) { in i40e_add_del_fdir()
438 input->flow_type); in i40e_add_del_fdir()
/linux-4.1.27/drivers/net/ethernet/sun/
Dniu.c6929 static void niu_ethflow_to_l3proto(int flow_type, u8 *pid) in niu_ethflow_to_l3proto() argument
6931 switch (flow_type) { in niu_ethflow_to_l3proto()
6958 static int niu_class_to_ethflow(u64 class, int *flow_type) in niu_class_to_ethflow() argument
6962 *flow_type = TCP_V4_FLOW; in niu_class_to_ethflow()
6965 *flow_type = UDP_V4_FLOW; in niu_class_to_ethflow()
6968 *flow_type = AH_V4_FLOW; in niu_class_to_ethflow()
6971 *flow_type = SCTP_V4_FLOW; in niu_class_to_ethflow()
6974 *flow_type = TCP_V6_FLOW; in niu_class_to_ethflow()
6977 *flow_type = UDP_V6_FLOW; in niu_class_to_ethflow()
6980 *flow_type = AH_V6_FLOW; in niu_class_to_ethflow()
[all …]
/linux-4.1.27/drivers/net/ethernet/cisco/enic/
Denic_ethtool.c353 fsp->flow_type = TCP_V4_FLOW; in enic_grxclsrule()
356 fsp->flow_type = UDP_V4_FLOW; in enic_grxclsrule()
/linux-4.1.27/drivers/net/ethernet/intel/i40evf/
Di40evf_ethtool.c380 switch (cmd->flow_type) { in i40evf_get_rss_hash_opts()
476 switch (nfc->flow_type) { in i40evf_set_rss_hash_opt()
/linux-4.1.27/drivers/net/ethernet/emulex/benet/
Dbe_ethtool.c986 static u64 be_get_rss_hash_opts(struct be_adapter *adapter, u64 flow_type) in be_get_rss_hash_opts() argument
990 switch (flow_type) { in be_get_rss_hash_opts()
1033 cmd->data = be_get_rss_hash_opts(adapter, cmd->flow_type); in be_get_rxnfc()
1057 switch (cmd->flow_type) { in be_set_rss_hash_opts()
/linux-4.1.27/drivers/net/ethernet/mellanox/mlx4/
Den_ethtool.c1219 if (cmd->fs.flow_type & FLOW_MAC_EXT) { in mlx4_en_validate_flow()
1225 switch (cmd->fs.flow_type & ~(FLOW_EXT | FLOW_MAC_EXT)) { in mlx4_en_validate_flow()
1264 if ((cmd->fs.flow_type & FLOW_EXT)) { in mlx4_en_validate_flow()
1294 if ((cmd->fs.flow_type & FLOW_EXT) && in mlx4_en_ethtool_add_mac_rule()
1315 if (cmd->fs.flow_type & FLOW_MAC_EXT) in mlx4_en_ethtool_add_mac_rule_by_ipv4()
1448 switch (cmd->fs.flow_type & ~(FLOW_EXT | FLOW_MAC_EXT)) { in mlx4_en_ethtool_to_net_trans_rule()
Dmcg.c760 enum mlx4_net_trans_promisc_mode flow_type) in mlx4_map_sw_to_hw_steering_mode() argument
762 if (flow_type >= MLX4_FS_MODE_NUM) { in mlx4_map_sw_to_hw_steering_mode()
763 mlx4_err(dev, "Invalid flow type. type = %d\n", flow_type); in mlx4_map_sw_to_hw_steering_mode()
766 return __promisc_mode[flow_type]; in mlx4_map_sw_to_hw_steering_mode()
/linux-4.1.27/drivers/net/ethernet/freescale/
Dgianfar_ethtool.c858 if (!gfar_ethflow_to_filer_table(priv, cmd->data, cmd->flow_type)) in gfar_set_hash_opts()
1175 if ((rule->flow_type & FLOW_EXT) && in gfar_convert_to_filer()
1200 switch (rule->flow_type & ~FLOW_EXT) { in gfar_convert_to_filer()
1607 if (flow->flow_type & FLOW_EXT) { in gfar_check_capability()
1615 if (flow->flow_type == IP_USER_FLOW) in gfar_check_capability()
/linux-4.1.27/drivers/vlynq/
Dvlynq.c164 static int vlynq_irq_type(struct irq_data *d, unsigned int flow_type) in vlynq_irq_type() argument
173 switch (flow_type & IRQ_TYPE_SENSE_MASK) { in vlynq_irq_type()
/linux-4.1.27/arch/mips/alchemy/common/
Dirq.c426 static int au1x_ic_settype(struct irq_data *d, unsigned int flow_type) in au1x_ic_settype() argument
450 switch (flow_type) { /* cfgregs 2:1:0 */ in au1x_ic_settype()
/linux-4.1.27/drivers/net/ethernet/broadcom/bnx2x/
Dbnx2x_ethtool.c3226 switch (info->flow_type) { in bnx2x_get_rss_flags()
3281 info->flow_type, info->data); in bnx2x_set_rss_flags()
3283 switch (info->flow_type) { in bnx2x_set_rss_flags()
3305 if ((info->flow_type == UDP_V4_FLOW) && in bnx2x_set_rss_flags()
3312 } else if ((info->flow_type == UDP_V6_FLOW) && in bnx2x_set_rss_flags()
/linux-4.1.27/drivers/net/ethernet/intel/fm10k/
Dfm10k_ethtool.c643 switch (cmd->flow_type) { in fm10k_get_rss_hash_opts()
711 switch (nfc->flow_type) { in fm10k_set_rss_hash_opt()
/linux-4.1.27/drivers/net/ethernet/chelsio/cxgb4/
Dcxgb4_ethtool.c827 switch (info->flow_type) { in get_rxnfc()
/linux-4.1.27/drivers/infiniband/hw/mlx4/
Dmain.c1024 enum mlx4_net_trans_promisc_mode flow_type, in __mlx4_ib_create_flow() argument
1052 if (mlx4_map_sw_to_hw_steering_mode(mdev->dev, flow_type) < 0) in __mlx4_ib_create_flow()
1062 ctrl->type = mlx4_map_sw_to_hw_steering_mode(mdev->dev, flow_type); in __mlx4_ib_create_flow()
/linux-4.1.27/include/linux/mlx4/
Ddevice.h1356 enum mlx4_net_trans_promisc_mode flow_type);
/linux-4.1.27/drivers/net/ethernet/intel/igb/
Digb_ethtool.c2417 switch (cmd->flow_type) { in igb_get_rss_hash_opts()
2488 switch (nfc->flow_type) { in igb_set_rss_hash_opt()
/linux-4.1.27/drivers/net/ethernet/intel/e1000e/
Dethtool.c2101 switch (info->flow_type) { in e1000_get_rxnfc()