Lines Matching refs:__hcb_qe
114 #define bfa_cb_queue(__bfa, __hcb_qe, __cbfn, __cbarg) do { \ argument
115 (__hcb_qe)->cbfn = (__cbfn); \
116 (__hcb_qe)->cbarg = (__cbarg); \
117 (__hcb_qe)->pre_rmv = BFA_FALSE; \
118 list_add_tail(&(__hcb_qe)->qe, &(__bfa)->comp_q); \
121 #define bfa_cb_dequeue(__hcb_qe) list_del(&(__hcb_qe)->qe) argument
123 #define bfa_cb_queue_once(__bfa, __hcb_qe, __cbfn, __cbarg) do { \ argument
124 (__hcb_qe)->cbfn = (__cbfn); \
125 (__hcb_qe)->cbarg = (__cbarg); \
126 if (!(__hcb_qe)->once) { \
127 list_add_tail(&(__hcb_qe)->qe, &(__bfa)->comp_q); \
128 (__hcb_qe)->once = BFA_TRUE; \
132 #define bfa_cb_queue_status(__bfa, __hcb_qe, __status) do { \ argument
133 (__hcb_qe)->fw_status = (__status); \
134 list_add_tail(&(__hcb_qe)->qe, &(__bfa)->comp_q); \
137 #define bfa_cb_queue_done(__hcb_qe) do { \ argument
138 (__hcb_qe)->once = BFA_FALSE; \