Lines Matching refs:eth_da
70 struct rte_eth_devargs eth_da; in eth_representor_cmp() local
80 memset(ð_da, 0, sizeof(eth_da)); in eth_representor_cmp()
81 ret = rte_eth_devargs_parse_representor_ports(values, ð_da); in eth_representor_cmp()
86 if (eth_da.nb_mh_controllers == 0 && eth_da.nb_ports == 0 && in eth_representor_cmp()
87 eth_da.nb_representor_ports == 0) in eth_representor_cmp()
89 nc = eth_da.nb_mh_controllers > 0 ? eth_da.nb_mh_controllers : 1; in eth_representor_cmp()
90 np = eth_da.nb_ports > 0 ? eth_da.nb_ports : 1; in eth_representor_cmp()
91 nf = eth_da.nb_representor_ports > 0 ? eth_da.nb_representor_ports : 1; in eth_representor_cmp()
99 eth_da.type, in eth_representor_cmp()
100 eth_da.nb_mh_controllers == 0 ? -1 : in eth_representor_cmp()
101 eth_da.mh_controllers[c], in eth_representor_cmp()
102 eth_da.nb_ports == 0 ? -1 : eth_da.ports[p], in eth_representor_cmp()
103 eth_da.nb_representor_ports == 0 ? -1 : in eth_representor_cmp()
104 eth_da.representor_ports[f], in eth_representor_cmp()