Lines Matching refs:new_cmd
2389 struct bnx2x_pending_mcast_cmd *new_cmd; in bnx2x_mcast_enqueue_cmd() local
2399 total_sz = sizeof(*new_cmd) + in bnx2x_mcast_enqueue_cmd()
2403 new_cmd = kzalloc(total_sz, GFP_ATOMIC); in bnx2x_mcast_enqueue_cmd()
2405 if (!new_cmd) in bnx2x_mcast_enqueue_cmd()
2411 INIT_LIST_HEAD(&new_cmd->data.macs_head); in bnx2x_mcast_enqueue_cmd()
2413 new_cmd->type = cmd; in bnx2x_mcast_enqueue_cmd()
2414 new_cmd->done = false; in bnx2x_mcast_enqueue_cmd()
2419 ((u8 *)new_cmd + sizeof(*new_cmd)); in bnx2x_mcast_enqueue_cmd()
2426 list_add_tail(&cur_mac->link, &new_cmd->data.macs_head); in bnx2x_mcast_enqueue_cmd()
2433 new_cmd->data.macs_num = p->mcast_list_len; in bnx2x_mcast_enqueue_cmd()
2437 new_cmd->data.next_bin = 0; in bnx2x_mcast_enqueue_cmd()
2441 kfree(new_cmd); in bnx2x_mcast_enqueue_cmd()
2447 list_add_tail(&new_cmd->link, &o->pending_cmds_head); in bnx2x_mcast_enqueue_cmd()