Lines Matching refs:handler
42 smc_wr_tx_handler handler; member
106 if (pnd_snd.handler) in smc_wr_tx_process_cqe()
107 pnd_snd.handler(&pnd_snd.priv, link, wc->status); in smc_wr_tx_process_cqe()
169 smc_wr_tx_handler handler, in smc_wr_tx_get_free_slot() argument
203 wr_pend->handler = handler; in smc_wr_tx_get_free_slot()
315 int smc_wr_rx_register_handler(struct smc_wr_rx_handler *handler) in smc_wr_rx_register_handler() argument
321 hash_for_each_possible(smc_wr_rx_hash, h_iter, list, handler->type) { in smc_wr_rx_register_handler()
322 if (h_iter->type == handler->type) { in smc_wr_rx_register_handler()
327 hash_add(smc_wr_rx_hash, &handler->list, handler->type); in smc_wr_rx_register_handler()
340 struct smc_wr_rx_handler *handler; in smc_wr_rx_demultiplex() local
350 hash_for_each_possible(smc_wr_rx_hash, handler, list, wr_rx->type) { in smc_wr_rx_demultiplex()
351 if (handler->type == wr_rx->type) in smc_wr_rx_demultiplex()
352 handler->handler(wc, wr_rx); in smc_wr_rx_demultiplex()