u32 gen2;       /* scratch */
        int rc;
        int retry_count;
-       struct completion comp;
+       struct completion *comp;
        wait_queue_head_t *cwaitq;
        union {
                struct srb_iocb iocb_cmd;
 
        timer_setup(&sp->u.iocb_cmd.timer, qla2x00_sp_timeout, 0);
        sp->u.iocb_cmd.timer.expires = jiffies + tmo * HZ;
        sp->free = qla2x00_sp_free;
-       init_completion(&sp->comp);
        if (IS_QLAFX00(sp->vha->hw) && sp->type == SRB_FXIOCB_DCMD)
                init_completion(&sp->u.iocb_cmd.u.fxiocb.fxiocb_comp);
        add_timer(&sp->u.iocb_cmd.timer);
 
 {
        struct srb *sp = s;
 
-       complete(&sp->comp);
+       if (sp->comp)
+               complete(sp->comp);
        /* don't free sp here. Let the caller do the free */
 }
 
        struct qla_hw_data *ha = vha->hw;
        int     vp_index = vha->vp_idx;
        struct scsi_qla_host *base_vha = pci_get_drvdata(ha->pdev);
+       DECLARE_COMPLETION_ONSTACK(comp);
        srb_t *sp;
 
        ql_dbg(ql_dbg_vport, vha, 0x10c1,
 
        sp->type = SRB_CTRL_VP;
        sp->name = "ctrl_vp";
+       sp->comp = ∁
        sp->done = qla_ctrlvp_sp_done;
        sp->u.iocb_cmd.timeout = qla2x00_async_iocb_timeout;
        qla2x00_init_timer(sp, qla2x00_get_async_timeout(vha) + 2);
        ql_dbg(ql_dbg_vport, vha, 0x113f, "%s hndl %x submitted\n",
            sp->name, sp->handle);
 
-       wait_for_completion(&sp->comp);
+       wait_for_completion(&comp);
+       sp->comp = NULL;
+
        rval = sp->rc;
        switch (rval) {
        case QLA_FUNCTION_TIMEOUT: