Lines Matching refs:cqp_request
1043 struct i40iw_cqp_request *cqp_request; in i40iw_del_macip_entry() local
1047 cqp_request = i40iw_get_cqp_request(iwcqp, true); in i40iw_del_macip_entry()
1048 if (!cqp_request) { in i40iw_del_macip_entry()
1052 cqp_info = &cqp_request->info; in i40iw_del_macip_entry()
1056 cqp_info->in.u.del_local_mac_ipaddr_entry.scratch = (uintptr_t)cqp_request; in i40iw_del_macip_entry()
1059 status = i40iw_handle_cqp_op(iwdev, cqp_request); in i40iw_del_macip_entry()
1076 struct i40iw_cqp_request *cqp_request; in i40iw_add_mac_ipaddr_entry() local
1080 cqp_request = i40iw_get_cqp_request(iwcqp, true); in i40iw_add_mac_ipaddr_entry()
1081 if (!cqp_request) { in i40iw_add_mac_ipaddr_entry()
1086 cqp_info = &cqp_request->info; in i40iw_add_mac_ipaddr_entry()
1092 cqp_info->in.u.add_local_mac_ipaddr_entry.scratch = (uintptr_t)cqp_request; in i40iw_add_mac_ipaddr_entry()
1095 cqp_info->in.u.add_local_mac_ipaddr_entry.scratch = (uintptr_t)cqp_request; in i40iw_add_mac_ipaddr_entry()
1096 status = i40iw_handle_cqp_op(iwdev, cqp_request); in i40iw_add_mac_ipaddr_entry()
1115 struct i40iw_cqp_request *cqp_request; in i40iw_alloc_local_mac_ipaddr_entry() local
1119 cqp_request = i40iw_get_cqp_request(iwcqp, true); in i40iw_alloc_local_mac_ipaddr_entry()
1120 if (!cqp_request) { in i40iw_alloc_local_mac_ipaddr_entry()
1126 atomic_inc(&cqp_request->refcount); in i40iw_alloc_local_mac_ipaddr_entry()
1128 cqp_info = &cqp_request->info; in i40iw_alloc_local_mac_ipaddr_entry()
1132 cqp_info->in.u.alloc_local_mac_ipaddr_entry.scratch = (uintptr_t)cqp_request; in i40iw_alloc_local_mac_ipaddr_entry()
1133 status = i40iw_handle_cqp_op(iwdev, cqp_request); in i40iw_alloc_local_mac_ipaddr_entry()
1135 *mac_ip_tbl_idx = cqp_request->compl_info.op_ret_val; in i40iw_alloc_local_mac_ipaddr_entry()
1139 i40iw_put_cqp_request(iwcqp, cqp_request); in i40iw_alloc_local_mac_ipaddr_entry()