Home
last modified time | relevance | path

Searched refs:__hcb_qe (Results 1 – 1 of 1) sorted by relevance

/linux-2.6.39/drivers/scsi/bfa/
Dbfa.h143 #define bfa_cb_queue(__bfa, __hcb_qe, __cbfn, __cbarg) do { \ argument
144 (__hcb_qe)->cbfn = (__cbfn); \
145 (__hcb_qe)->cbarg = (__cbarg); \
146 list_add_tail(&(__hcb_qe)->qe, &(__bfa)->comp_q); \
149 #define bfa_cb_dequeue(__hcb_qe) list_del(&(__hcb_qe)->qe) argument
151 #define bfa_cb_queue_once(__bfa, __hcb_qe, __cbfn, __cbarg) do { \ argument
152 (__hcb_qe)->cbfn = (__cbfn); \
153 (__hcb_qe)->cbarg = (__cbarg); \
154 if (!(__hcb_qe)->once) { \
155 list_add_tail(&(__hcb_qe)->qe, &(__bfa)->comp_q); \
[all …]