Lines Matching refs:vsi

339 #define IXL_SET_IPACKETS(vsi, count)	(vsi)->ipackets = (count)
340 #define IXL_SET_IERRORS(vsi, count) (vsi)->ierrors = (count)
341 #define IXL_SET_OPACKETS(vsi, count) (vsi)->opackets = (count)
342 #define IXL_SET_OERRORS(vsi, count) (vsi)->oerrors = (count)
343 #define IXL_SET_COLLISIONS(vsi, count) /* Do nothing; collisions is always 0. */
344 #define IXL_SET_IBYTES(vsi, count) (vsi)->ibytes = (count)
345 #define IXL_SET_OBYTES(vsi, count) (vsi)->obytes = (count)
346 #define IXL_SET_IMCASTS(vsi, count) (vsi)->imcasts = (count)
347 #define IXL_SET_OMCASTS(vsi, count) (vsi)->omcasts = (count)
348 #define IXL_SET_IQDROPS(vsi, count) (vsi)->iqdrops = (count)
349 #define IXL_SET_OQDROPS(vsi, count) (vsi)->oqdrops = (count)
350 #define IXL_SET_NOPROTO(vsi, count) (vsi)->noproto = (count)
352 #define IXL_SET_IPACKETS(vsi, count) (vsi)->ifp->if_ipackets = (count)
353 #define IXL_SET_IERRORS(vsi, count) (vsi)->ifp->if_ierrors = (count)
354 #define IXL_SET_OPACKETS(vsi, count) (vsi)->ifp->if_opackets = (count)
355 #define IXL_SET_OERRORS(vsi, count) (vsi)->ifp->if_oerrors = (count)
356 #define IXL_SET_COLLISIONS(vsi, count) (vsi)->ifp->if_collisions = (count)
357 #define IXL_SET_IBYTES(vsi, count) (vsi)->ifp->if_ibytes = (count)
358 #define IXL_SET_OBYTES(vsi, count) (vsi)->ifp->if_obytes = (count)
359 #define IXL_SET_IMCASTS(vsi, count) (vsi)->ifp->if_imcasts = (count)
360 #define IXL_SET_OMCASTS(vsi, count) (vsi)->ifp->if_omcasts = (count)
361 #define IXL_SET_IQDROPS(vsi, count) (vsi)->ifp->if_iqdrops = (count)
362 #define IXL_SET_OQDROPS(vsi, odrops) (vsi)->ifp->if_snd.ifq_drops = (odrops)
363 #define IXL_SET_NOPROTO(vsi, count) (vsi)->noproto = (count)
484 struct ixl_vsi *vsi;
590 ixl_get_filter(struct ixl_vsi *vsi)
598 SLIST_INSERT_HEAD(&vsi->ftl, f, next);