Lines Matching refs:ucast
7202 struct ecore_filter_ucast ucast; in qlnx_set_ucast_rx_mac() local
7208 bzero(&ucast, sizeof(struct ecore_filter_ucast)); in qlnx_set_ucast_rx_mac()
7210 ucast.opcode = opcode; in qlnx_set_ucast_rx_mac()
7211 ucast.type = ECORE_FILTER_MAC; in qlnx_set_ucast_rx_mac()
7212 ucast.is_rx_filter = 1; in qlnx_set_ucast_rx_mac()
7213 ucast.vport_to_add_to = 0; in qlnx_set_ucast_rx_mac()
7214 memcpy(&ucast.mac[0], mac, ETH_ALEN); in qlnx_set_ucast_rx_mac()
7216 rc = ecore_filter_ucast_cmd(cdev, &ucast, ECORE_SPQ_MODE_CB, NULL); in qlnx_set_ucast_rx_mac()
7224 struct ecore_filter_ucast ucast; in qlnx_remove_all_ucast_mac() local
7228 bzero(&ucast, sizeof(struct ecore_filter_ucast)); in qlnx_remove_all_ucast_mac()
7230 ucast.opcode = ECORE_FILTER_REPLACE; in qlnx_remove_all_ucast_mac()
7231 ucast.type = ECORE_FILTER_MAC; in qlnx_remove_all_ucast_mac()
7232 ucast.is_rx_filter = 1; in qlnx_remove_all_ucast_mac()
7236 rc = ecore_filter_ucast_cmd(cdev, &ucast, ECORE_SPQ_MODE_CB, NULL); in qlnx_remove_all_ucast_mac()