Searched refs:all_vsi (Results 1 - 4 of 4) sorted by relevance

/freebsd-current/sys/dev/ice/
H A Dice_iflib.h223 * @all_vsi: the array of all allocated VSIs
266 struct ice_vsi **all_vsi; /* Array of VSI pointers */ member in struct:ice_softc
H A Dice_rdma.c210 if (sc->all_vsi[i] &&
211 ice_get_hw_vsi_num(hw, sc->all_vsi[i]->idx) == vsi_id) {
212 vsi = sc->all_vsi[i];
H A Dif_ice_iflib.c619 sc->all_vsi = (struct ice_vsi **)
622 if (!sc->all_vsi) {
651 free(sc->all_vsi, M_ICE);
652 sc->all_vsi = NULL;
976 if (sc->all_vsi[i])
977 ice_release_vsi(sc->all_vsi[i]);
980 if (sc->all_vsi) {
981 free(sc->all_vsi, M_ICE);
982 sc->all_vsi = NULL;
2280 if (sc->all_vsi[
[all...]
H A Dice_lib.c65 static int ice_get_next_vsi(struct ice_vsi **all_vsi, int size);
320 * @all_vsi: the VSI list
327 ice_get_next_vsi(struct ice_vsi **all_vsi, int size) argument
332 if (all_vsi[i] == NULL)
344 * @idx: the index in the all_vsi array to use
358 sc->all_vsi[idx] = vsi;
386 idx = ice_get_next_vsi(sc->all_vsi, sc->num_available_vsi);
807 MPASS(vsi == sc->all_vsi[vsi->idx]);
847 MPASS(vsi == sc->all_vsi[idx]);
868 free(sc->all_vsi[id
[all...]

Completed in 153 milliseconds