• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/scsi/be2iscsi/

Lines Matching defs:conn

121 	struct iscsi_conn *conn;
134 conn = cls_conn->dd_data;
135 beiscsi_conn = conn->dd_data;
138 beiscsi_conn->conn = conn;
170 * @cls_conn: pointer to iscsi cls conn
179 struct iscsi_conn *conn = cls_conn->dd_data;
180 struct beiscsi_conn *beiscsi_conn = conn->dd_data;
206 beiscsi_ep->conn = beiscsi_conn;
207 SE_DEBUG(DBG_LVL_8, "beiscsi_conn=%p conn=%p ep_cid=%d\n",
208 beiscsi_conn, conn, beiscsi_ep->ep_cid);
214 * @cls_conn: pointer to iscsi cls conn
224 struct iscsi_conn *conn = cls_conn->dd_data;
225 struct beiscsi_conn *beiscsi_conn = conn->dd_data;
255 struct iscsi_conn *conn = cls_conn->dd_data;
256 struct iscsi_session *session = conn->session;
273 if (conn->max_recv_dlength > 65536)
274 conn->max_recv_dlength = 65536;
281 if ((conn->max_xmit_dlength > 65536) ||
282 (conn->max_xmit_dlength == 0))
283 conn->max_xmit_dlength = 65536;
364 * @cls_conn: pointer to iscsi cls conn
372 struct iscsi_conn *conn = cls_conn->dd_data;
375 stats->txdata_octets = conn->txdata_octets;
376 stats->rxdata_octets = conn->rxdata_octets;
377 stats->dataout_pdus = conn->dataout_pdus_cnt;
378 stats->scsirsp_pdus = conn->scsirsp_pdus_cnt;
379 stats->scsicmd_pdus = conn->scsicmd_pdus_cnt;
380 stats->datain_pdus = conn->datain_pdus_cnt;
381 stats->tmfrsp_pdus = conn->tmfrsp_pdus_cnt;
382 stats->tmfcmd_pdus = conn->tmfcmd_pdus_cnt;
383 stats->r2t_pdus = conn->r2t_pdus_cnt;
388 stats->custom[0].value = conn->eh_abort_cnt;
399 struct iscsi_conn *conn = beiscsi_conn->conn;
400 struct iscsi_session *session = conn->session;
406 conn->max_xmit_dlength);
412 conn->datadgst_en);
414 conn->hdrdgst_en);
420 (conn->exp_statsn - 1));
429 struct iscsi_conn *conn = cls_conn->dd_data;
430 struct beiscsi_conn *beiscsi_conn = conn->dd_data;
684 * beiscsi_unbind_conn_to_cid - Unbind the beiscsi_conn from phba conn table
719 if (!beiscsi_ep->conn) {
724 beiscsi_conn = beiscsi_ep->conn;
725 iscsi_suspend_queue(beiscsi_conn->conn);