Lines Matching refs:new_cmd
2868 struct ecore_pending_mcast_cmd *new_cmd; in ecore_mcast_enqueue_cmd() local
2878 total_sz = sizeof(*new_cmd) + in ecore_mcast_enqueue_cmd()
2882 new_cmd = ECORE_ZALLOC(total_sz, GFP_ATOMIC, sc); in ecore_mcast_enqueue_cmd()
2884 if (!new_cmd) in ecore_mcast_enqueue_cmd()
2890 ECORE_LIST_INIT(&new_cmd->data.macs_head); in ecore_mcast_enqueue_cmd()
2892 new_cmd->type = cmd; in ecore_mcast_enqueue_cmd()
2893 new_cmd->done = FALSE; in ecore_mcast_enqueue_cmd()
2898 ((uint8_t *)new_cmd + sizeof(*new_cmd)); in ecore_mcast_enqueue_cmd()
2907 &new_cmd->data.macs_head); in ecore_mcast_enqueue_cmd()
2914 new_cmd->data.macs_num = p->mcast_list_len; in ecore_mcast_enqueue_cmd()
2918 new_cmd->data.next_bin = 0; in ecore_mcast_enqueue_cmd()
2922 ECORE_FREE(sc, new_cmd, total_sz); in ecore_mcast_enqueue_cmd()
2928 ECORE_LIST_PUSH_TAIL(&new_cmd->link, &o->pending_cmds_head); in ecore_mcast_enqueue_cmd()