Lines Matching refs:mcap
1582 mcst_p->nextp = port->mcap; in vsw_add_rem_mcst()
1583 port->mcap = mcst_p; in vsw_add_rem_mcst()
1824 mcst_addr_t *mcap = NULL; in vsw_del_mcst_port() local
1831 while ((mcap = port->mcap) != NULL) { in vsw_del_mcst_port()
1833 port->mcap = mcap->nextp; in vsw_del_mcst_port()
1838 mcap->addr, port); in vsw_del_mcst_port()
1848 vsw_mac_multicast_remove(vswp, port, mcap, VSW_VNETPORT); in vsw_del_mcst_port()
1849 kmem_free(mcap, sizeof (*mcap)); in vsw_del_mcst_port()
1875 while (vswp->mcap != NULL) { in vsw_del_mcst_vsw()
1877 __func__, vswp->mcap->addr); in vsw_del_mcst_vsw()
1878 (void) vsw_del_mcst(vswp, VSW_LOCALDEV, vswp->mcap->addr, NULL); in vsw_del_mcst_vsw()
1880 next_p = vswp->mcap->nextp; in vsw_del_mcst_vsw()
1881 kmem_free(vswp->mcap, sizeof (mcst_addr_t)); in vsw_del_mcst_vsw()
1882 vswp->mcap = next_p; in vsw_del_mcst_vsw()
1885 vswp->mcap = NULL; in vsw_del_mcst_vsw()