mcdi->proxy_handle = 0;
mcdi->proxy_result = ETIMEDOUT;
- sfc_ev_mgmt_qpoll(sa);
+ mcdi->ops->mgmt_evq_poll(mcdi->ops_cookie);
if (mcdi->proxy_result != ETIMEDOUT)
return B_TRUE;
int rc;
if (ops->dma_alloc == NULL || ops->dma_free == NULL ||
- ops->sched_restart == NULL)
+ ops->sched_restart == NULL || ops->mgmt_evq_poll == NULL)
return EINVAL;
SFC_ASSERT(mcdi->state == SFC_EFX_MCDI_UNINITIALIZED);
sfc_schedule_restart(sa);
}
+static sfc_efx_mcdi_mgmt_evq_poll_cb sfc_mcdi_mgmt_evq_poll;
+static void
+sfc_mcdi_mgmt_evq_poll(void *cookie)
+{
+ struct sfc_adapter *sa = cookie;
+
+ sfc_ev_mgmt_qpoll(sa);
+}
+
static const struct sfc_efx_mcdi_ops sfc_mcdi_ops = {
.dma_alloc = sfc_mcdi_dma_alloc,
.dma_free = sfc_mcdi_dma_free,
.sched_restart = sfc_mcdi_sched_restart,
+ .mgmt_evq_poll = sfc_mcdi_mgmt_evq_poll,
};
int
typedef void (sfc_efx_mcdi_sched_restart_cb)(void *cookie);
+typedef void (sfc_efx_mcdi_mgmt_evq_poll_cb)(void *cookie);
+
struct sfc_efx_mcdi_ops {
sfc_efx_mcdi_dma_alloc_cb *dma_alloc;
sfc_efx_mcdi_dma_free_cb *dma_free;
sfc_efx_mcdi_sched_restart_cb *sched_restart;
+ sfc_efx_mcdi_mgmt_evq_poll_cb *mgmt_evq_poll;
};
struct sfc_efx_mcdi {