Home
last modified time | relevance | path

Searched refs:connection_handle (Results 1 - 16 of 16) sorted by relevance

/kernel/linux/linux-5.10/drivers/net/ethernet/qlogic/qed/
H A Dqed_ll2.h139 * @param connection_handle LL2 connection's handle obtained from
144 int qed_ll2_establish_connection(void *cxt, u8 connection_handle);
150 * @param connection_handle LL2 connection's handle obtained from
159 u8 connection_handle,
168 * @param connection_handle
175 u8 connection_handle,
184 * @param connection_handle LL2 connection's handle obtained from
187 void qed_ll2_release_connection(void *cxt, u8 connection_handle);
195 * @param connection_handle LL2 connection's handle
204 u8 connection_handle,
[all...]
H A Dqed_ll2.c66 u8 connection_handle, in qed_ll2b_complete_tx_packet()
226 u8 connection_handle, in __qed_ll2_handle_sanity()
232 if (connection_handle >= QED_MAX_NUM_OF_LL2_CONNECTIONS) in __qed_ll2_handle_sanity()
238 p_ll2_conn = &p_hwfn->p_ll2_info[connection_handle]; in __qed_ll2_handle_sanity()
255 u8 connection_handle) in qed_ll2_handle_sanity()
257 return __qed_ll2_handle_sanity(p_hwfn, connection_handle, false, true); in qed_ll2_handle_sanity()
261 u8 connection_handle) in qed_ll2_handle_sanity_lock()
263 return __qed_ll2_handle_sanity(p_hwfn, connection_handle, true, true); in qed_ll2_handle_sanity_lock()
268 u8 connection_handle) in qed_ll2_handle_sanity_inactive()
270 return __qed_ll2_handle_sanity(p_hwfn, connection_handle, fals in qed_ll2_handle_sanity_inactive()
65 qed_ll2b_complete_tx_packet(void *cxt, u8 connection_handle, void *cookie, dma_addr_t first_frag_addr, bool b_last_fragment, bool b_last_packet) qed_ll2b_complete_tx_packet() argument
225 __qed_ll2_handle_sanity(struct qed_hwfn *p_hwfn, u8 connection_handle, bool b_lock, bool b_only_active) __qed_ll2_handle_sanity() argument
254 qed_ll2_handle_sanity(struct qed_hwfn *p_hwfn, u8 connection_handle) qed_ll2_handle_sanity() argument
260 qed_ll2_handle_sanity_lock(struct qed_hwfn *p_hwfn, u8 connection_handle) qed_ll2_handle_sanity_lock() argument
266 qed_ll2_handle_sanity_inactive(struct qed_hwfn *p_hwfn, u8 connection_handle) qed_ll2_handle_sanity_inactive() argument
273 qed_ll2_txq_flush(struct qed_hwfn *p_hwfn, u8 connection_handle) qed_ll2_txq_flush() argument
555 qed_ll2_rxq_flush(struct qed_hwfn *p_hwfn, u8 connection_handle) qed_ll2_rxq_flush() argument
1535 qed_ll2_establish_connection(void *cxt, u8 connection_handle) qed_ll2_establish_connection() argument
1731 qed_ll2_post_rx_buffer(void *cxt, u8 connection_handle, dma_addr_t addr, u16 buf_len, void *cookie, u8 notify_fw) qed_ll2_post_rx_buffer() argument
1953 qed_ll2_prepare_tx_packet(void *cxt, u8 connection_handle, struct qed_ll2_tx_pkt_info *pkt, bool notify_fw) qed_ll2_prepare_tx_packet() argument
2005 qed_ll2_set_fragment_of_tx_packet(void *cxt, u8 connection_handle, dma_addr_t addr, u16 nbytes) qed_ll2_set_fragment_of_tx_packet() argument
2045 qed_ll2_terminate_connection(void *cxt, u8 connection_handle) qed_ll2_terminate_connection() argument
2128 qed_ll2_release_connection(void *cxt, u8 connection_handle) qed_ll2_release_connection() argument
2274 __qed_ll2_get_stats(void *cxt, u8 connection_handle, struct qed_ll2_stats *p_stats) __qed_ll2_get_stats() argument
2308 qed_ll2_get_stats(void *cxt, u8 connection_handle, struct qed_ll2_stats *p_stats) qed_ll2_get_stats() argument
2315 qed_ll2b_release_rx_packet(void *cxt, u8 connection_handle, void *cookie, dma_addr_t rx_buf_addr, bool b_last_packet) qed_ll2b_release_rx_packet() argument
[all...]
H A Dqed_iwarp.c2467 static void qed_iwarp_ll2_rel_rx_pkt(void *cxt, u8 connection_handle, in qed_iwarp_ll2_rel_rx_pkt() argument
2479 static void qed_iwarp_ll2_comp_tx_pkt(void *cxt, u8 connection_handle, in qed_iwarp_ll2_comp_tx_pkt() argument
2494 qed_iwarp_ll2_post_rx(p_hwfn, piggy, connection_handle); in qed_iwarp_ll2_comp_tx_pkt()
2497 qed_iwarp_ll2_post_rx(p_hwfn, buffer, connection_handle); in qed_iwarp_ll2_comp_tx_pkt()
2499 if (connection_handle == p_hwfn->p_rdma_info->iwarp.ll2_mpa_handle) in qed_iwarp_ll2_comp_tx_pkt()
2505 static void qed_iwarp_ll2_rel_tx_pkt(void *cxt, u8 connection_handle, in qed_iwarp_ll2_rel_tx_pkt() argument
2535 u8 connection_handle, in qed_iwarp_ll2_slowpath()
2534 qed_iwarp_ll2_slowpath(void *cxt, u8 connection_handle, u32 opaque_data_0, u32 opaque_data_1) qed_iwarp_ll2_slowpath() argument
/kernel/linux/linux-6.6/drivers/net/ethernet/qlogic/qed/
H A Dqed_ll2.h137 * @connection_handle: LL2 connection's handle obtained from
142 int qed_ll2_establish_connection(void *cxt, u8 connection_handle);
148 * @connection_handle: LL2 connection's handle obtained from
158 u8 connection_handle,
167 * @connection_handle: Connection handle.
174 u8 connection_handle,
183 * @connection_handle: LL2 connection's handle obtained from
188 void qed_ll2_release_connection(void *cxt, u8 connection_handle);
196 * @connection_handle: LL2 connection's handle obtained from
204 u8 connection_handle,
[all...]
H A Dqed_ll2.c92 u8 connection_handle, in qed_ll2b_complete_tx_packet()
252 u8 connection_handle, in __qed_ll2_handle_sanity()
258 if (connection_handle >= QED_MAX_NUM_OF_LL2_CONNECTIONS) in __qed_ll2_handle_sanity()
264 p_ll2_conn = &p_hwfn->p_ll2_info[connection_handle]; in __qed_ll2_handle_sanity()
281 u8 connection_handle) in qed_ll2_handle_sanity()
283 return __qed_ll2_handle_sanity(p_hwfn, connection_handle, false, true); in qed_ll2_handle_sanity()
287 u8 connection_handle) in qed_ll2_handle_sanity_lock()
289 return __qed_ll2_handle_sanity(p_hwfn, connection_handle, true, true); in qed_ll2_handle_sanity_lock()
294 u8 connection_handle) in qed_ll2_handle_sanity_inactive()
296 return __qed_ll2_handle_sanity(p_hwfn, connection_handle, fals in qed_ll2_handle_sanity_inactive()
91 qed_ll2b_complete_tx_packet(void *cxt, u8 connection_handle, void *cookie, dma_addr_t first_frag_addr, bool b_last_fragment, bool b_last_packet) qed_ll2b_complete_tx_packet() argument
251 __qed_ll2_handle_sanity(struct qed_hwfn *p_hwfn, u8 connection_handle, bool b_lock, bool b_only_active) __qed_ll2_handle_sanity() argument
280 qed_ll2_handle_sanity(struct qed_hwfn *p_hwfn, u8 connection_handle) qed_ll2_handle_sanity() argument
286 qed_ll2_handle_sanity_lock(struct qed_hwfn *p_hwfn, u8 connection_handle) qed_ll2_handle_sanity_lock() argument
292 qed_ll2_handle_sanity_inactive(struct qed_hwfn *p_hwfn, u8 connection_handle) qed_ll2_handle_sanity_inactive() argument
299 qed_ll2_txq_flush(struct qed_hwfn *p_hwfn, u8 connection_handle) qed_ll2_txq_flush() argument
581 qed_ll2_rxq_flush(struct qed_hwfn *p_hwfn, u8 connection_handle) qed_ll2_rxq_flush() argument
1561 qed_ll2_establish_connection(void *cxt, u8 connection_handle) qed_ll2_establish_connection() argument
1774 qed_ll2_post_rx_buffer(void *cxt, u8 connection_handle, dma_addr_t addr, u16 buf_len, void *cookie, u8 notify_fw) qed_ll2_post_rx_buffer() argument
1996 qed_ll2_prepare_tx_packet(void *cxt, u8 connection_handle, struct qed_ll2_tx_pkt_info *pkt, bool notify_fw) qed_ll2_prepare_tx_packet() argument
2049 qed_ll2_set_fragment_of_tx_packet(void *cxt, u8 connection_handle, dma_addr_t addr, u16 nbytes) qed_ll2_set_fragment_of_tx_packet() argument
2089 qed_ll2_terminate_connection(void *cxt, u8 connection_handle) qed_ll2_terminate_connection() argument
2172 qed_ll2_release_connection(void *cxt, u8 connection_handle) qed_ll2_release_connection() argument
2318 __qed_ll2_get_stats(void *cxt, u8 connection_handle, struct qed_ll2_stats *p_stats) __qed_ll2_get_stats() argument
2352 qed_ll2_get_stats(void *cxt, u8 connection_handle, struct qed_ll2_stats *p_stats) qed_ll2_get_stats() argument
2359 qed_ll2b_release_rx_packet(void *cxt, u8 connection_handle, void *cookie, dma_addr_t rx_buf_addr, bool b_last_packet) qed_ll2b_release_rx_packet() argument
[all...]
H A Dqed_iwarp.c2467 static void qed_iwarp_ll2_rel_rx_pkt(void *cxt, u8 connection_handle, in qed_iwarp_ll2_rel_rx_pkt() argument
2479 static void qed_iwarp_ll2_comp_tx_pkt(void *cxt, u8 connection_handle, in qed_iwarp_ll2_comp_tx_pkt() argument
2494 qed_iwarp_ll2_post_rx(p_hwfn, piggy, connection_handle); in qed_iwarp_ll2_comp_tx_pkt()
2497 qed_iwarp_ll2_post_rx(p_hwfn, buffer, connection_handle); in qed_iwarp_ll2_comp_tx_pkt()
2499 if (connection_handle == p_hwfn->p_rdma_info->iwarp.ll2_mpa_handle) in qed_iwarp_ll2_comp_tx_pkt()
2505 static void qed_iwarp_ll2_rel_tx_pkt(void *cxt, u8 connection_handle, in qed_iwarp_ll2_rel_tx_pkt() argument
2535 u8 connection_handle, in qed_iwarp_ll2_slowpath()
2534 qed_iwarp_ll2_slowpath(void *cxt, u8 connection_handle, u32 opaque_data_0, u32 opaque_data_1) qed_iwarp_ll2_slowpath() argument
/kernel/linux/linux-5.10/include/linux/qed/
H A Dqed_ll2_if.h88 u8 connection_handle; member
114 u8 connection_handle,
121 u8 connection_handle,
129 u8 connection_handle,
135 void (*qed_ll2_slowpath_cb)(void *cxt, u8 connection_handle,
H A Dqed_rdma_if.h645 int (*ll2_establish_connection)(void *rdma_cxt, u8 connection_handle);
646 int (*ll2_terminate_connection)(void *rdma_cxt, u8 connection_handle);
647 void (*ll2_release_connection)(void *rdma_cxt, u8 connection_handle);
650 u8 connection_handle,
655 u8 connection_handle,
658 int (*ll2_post_rx_buffer)(void *rdma_cxt, u8 connection_handle,
662 u8 connection_handle,
/kernel/linux/linux-6.6/include/linux/qed/
H A Dqed_ll2_if.h87 u8 connection_handle; member
113 u8 connection_handle,
120 u8 connection_handle,
128 u8 connection_handle,
134 void (*qed_ll2_slowpath_cb)(void *cxt, u8 connection_handle,
H A Dqed_rdma_if.h645 int (*ll2_establish_connection)(void *rdma_cxt, u8 connection_handle);
646 int (*ll2_terminate_connection)(void *rdma_cxt, u8 connection_handle);
647 void (*ll2_release_connection)(void *rdma_cxt, u8 connection_handle);
650 u8 connection_handle,
655 u8 connection_handle,
658 int (*ll2_post_rx_buffer)(void *rdma_cxt, u8 connection_handle,
662 u8 connection_handle,
/kernel/linux/linux-5.10/drivers/infiniband/hw/qedr/
H A Dqedr_roce_cm.c67 static void qedr_ll2_complete_tx_packet(void *cxt, u8 connection_handle, in qedr_ll2_complete_tx_packet() argument
125 static void qedr_ll2_release_rx_packet(void *cxt, u8 connection_handle, in qedr_ll2_release_rx_packet() argument
/kernel/linux/linux-6.6/drivers/infiniband/hw/qedr/
H A Dqedr_roce_cm.c67 static void qedr_ll2_complete_tx_packet(void *cxt, u8 connection_handle, in qedr_ll2_complete_tx_packet() argument
125 static void qedr_ll2_release_rx_packet(void *cxt, u8 connection_handle, in qedr_ll2_release_rx_packet() argument
/kernel/linux/linux-5.10/drivers/scsi/be2iscsi/
H A Dbe_cmds.h391 u32 connection_handle; member
1152 u32 connection_handle; member
H A Dbe_iscsi.c1128 beiscsi_ep->fw_handle = ptcpcnct_out->connection_handle; in beiscsi_open_conn()
/kernel/linux/linux-6.6/drivers/scsi/be2iscsi/
H A Dbe_cmds.h391 u32 connection_handle; member
1152 u32 connection_handle; member
H A Dbe_iscsi.c1128 beiscsi_ep->fw_handle = ptcpcnct_out->connection_handle; in beiscsi_open_conn()

Completed in 57 milliseconds