Home
last modified time | relevance | path

Searched refs:login (Results 1 – 25 of 46) sorted by relevance

12

/Linux-v4.19/drivers/target/iscsi/
Discsi_target_nego.c188 struct iscsi_login *login) in iscsi_target_check_login_request() argument
194 login_req = (struct iscsi_login_req *) login->req; in iscsi_target_check_login_request()
220 if (req_csg != login->current_stage) { in iscsi_target_check_login_request()
222 " from %d to %d, login failed.\n", login->current_stage, in iscsi_target_check_login_request()
240 if ((login_req->max_version != login->version_max) || in iscsi_target_check_login_request()
241 (login_req->min_version != login->version_min)) { in iscsi_target_check_login_request()
250 if (memcmp(login_req->isid, login->isid, 6) != 0) { in iscsi_target_check_login_request()
258 if (login_req->itt != login->init_task_tag) { in iscsi_target_check_login_request()
279 struct iscsi_login *login) in iscsi_target_check_first_request() argument
284 login->first_request = 0; in iscsi_target_check_first_request()
[all …]
Discsi_target_login.c47 struct iscsi_login *login; in iscsi_login_init_conn() local
49 login = kzalloc(sizeof(struct iscsi_login), GFP_KERNEL); in iscsi_login_init_conn()
50 if (!login) { in iscsi_login_init_conn()
54 conn->login = login; in iscsi_login_init_conn()
55 login->conn = conn; in iscsi_login_init_conn()
56 login->first_request = 1; in iscsi_login_init_conn()
58 login->req_buf = kzalloc(MAX_KEY_VALUE_PAIRS, GFP_KERNEL); in iscsi_login_init_conn()
59 if (!login->req_buf) { in iscsi_login_init_conn()
64 login->rsp_buf = kzalloc(MAX_KEY_VALUE_PAIRS, GFP_KERNEL); in iscsi_login_init_conn()
65 if (!login->rsp_buf) { in iscsi_login_init_conn()
[all …]
Discsi_target_util.c1220 struct iscsi_login *login = conn->conn_login; in iscsit_tx_login_rsp() local
1222 login->login_failed = 1; in iscsit_tx_login_rsp()
1225 memset(&login->rsp[0], 0, ISCSI_HDR_LEN); in iscsit_tx_login_rsp()
1227 hdr = (struct iscsi_login_rsp *)&login->rsp[0]; in iscsit_tx_login_rsp()
1233 return conn->conn_transport->iscsit_put_login_tx(conn, login, 0); in iscsit_tx_login_rsp()
/Linux-v4.19/drivers/target/sbp/
Dsbp_target.c110 struct sbp_login_descriptor *login, *found = NULL; in sbp_login_find_by_lun() local
113 list_for_each_entry(login, &session->login_list, link) { in sbp_login_find_by_lun()
114 if (login->login_lun == unpacked_lun) in sbp_login_find_by_lun()
115 found = login; in sbp_login_find_by_lun()
129 struct sbp_login_descriptor *login; in sbp_login_count_all_by_lun() local
137 list_for_each_entry(login, &sess->login_list, link) { in sbp_login_count_all_by_lun()
138 if (login->login_lun != unpacked_lun) in sbp_login_count_all_by_lun()
141 if (!exclusive || login->exclusive) in sbp_login_count_all_by_lun()
156 struct sbp_login_descriptor *login, *found = NULL; in sbp_login_find_by_id() local
163 list_for_each_entry(login, &sess->login_list, link) { in sbp_login_find_by_id()
[all …]
Dsbp_target.h203 struct sbp_login_descriptor *login; member
211 struct sbp_login_descriptor *login; member
/Linux-v4.19/drivers/target/iscsi/cxgbit/
Dcxgbit_target.c657 if (conn->login->leading_connection) { in cxgbit_set_iso_npdu()
704 if (conn->login->leading_connection) { in cxgbit_seq_pdu_inorder()
750 if (conn->login->leading_connection) { in cxgbit_set_params()
794 cxgbit_put_login_tx(struct iscsi_conn *conn, struct iscsi_login *login, in cxgbit_put_login_tx() argument
805 skb_store_bits(skb, 0, login->rsp, ISCSI_HDR_LEN); in cxgbit_put_login_tx()
806 skb_store_bits(skb, ISCSI_HDR_LEN, login->rsp_buf, length); in cxgbit_put_login_tx()
812 if (login->login_complete) { in cxgbit_put_login_tx()
824 if ((!login->login_complete) && (!login->login_failed)) in cxgbit_put_login_tx()
1330 struct iscsi_login *login = conn->login; in cxgbit_rx_login_pdu() local
1334 login_req = (struct iscsi_login_req *)login->req; in cxgbit_rx_login_pdu()
[all …]
/Linux-v4.19/drivers/infiniband/ulp/isert/
Dib_isert.c997 isert_put_login_tx(struct iscsi_conn *conn, struct iscsi_login *login, in isert_put_login_tx() argument
1008 memcpy(&tx_desc->iscsi_header, &login->rsp[0], in isert_put_login_tx()
1019 memcpy(isert_conn->login_rsp_buf, login->rsp_buf, length); in isert_put_login_tx()
1029 if (!login->login_failed) { in isert_put_login_tx()
1030 if (login->login_complete) { in isert_put_login_tx()
1065 struct iscsi_login *login = conn->conn_login; in isert_rx_login_req() local
1070 WARN_ON_ONCE(!login); in isert_rx_login_req()
1072 if (login->first_request) { in isert_rx_login_req()
1079 login->leading_connection = (!login_req->tsih) ? 1 : 0; in isert_rx_login_req()
1080 login->current_stage = in isert_rx_login_req()
[all …]
/Linux-v4.19/Documentation/ABI/testing/
Dsysfs-bus-fcoe12 'start' attribute to begin the kernel's discovery and login
30 discovery and login. The FCoE Controller is destroyed by
42 initiated and ultimately a fabric login is attempted.
44 FIP VN2VN discovery and login is performed. A FCoE
/Linux-v4.19/drivers/scsi/bnx2i/
Dbnx2i_hwi.c1441 struct bnx2i_login_response *login; in bnx2i_process_login_resp() local
1446 login = (struct bnx2i_login_response *) cqe; in bnx2i_process_login_resp()
1449 login->itt & ISCSI_LOGIN_RESPONSE_INDEX); in bnx2i_process_login_resp()
1455 resp_hdr->opcode = login->op_code; in bnx2i_process_login_resp()
1456 resp_hdr->flags = login->response_flags; in bnx2i_process_login_resp()
1457 resp_hdr->max_version = login->version_max; in bnx2i_process_login_resp()
1458 resp_hdr->active_version = login->version_active; in bnx2i_process_login_resp()
1461 hton24(resp_hdr->dlength, login->data_length); in bnx2i_process_login_resp()
1462 memcpy(resp_hdr->isid, &login->isid_lo, 6); in bnx2i_process_login_resp()
1463 resp_hdr->tsih = cpu_to_be16(login->tsih); in bnx2i_process_login_resp()
[all …]
/Linux-v4.19/Documentation/ia64/
Dserial.txt68 root login).
117 Kernel and init script output works fine, but no "login:" prompt:
123 "login:" prompt, but can't login as root:
/Linux-v4.19/Documentation/isdn/
DsyncPPP.FAQ15 Q12: How can I reduce login delay?
33 If you login into a remote machine using the
215 Q12: How can I reduce login delay?
217 A: Log a login session ('debug' log) and check which options
/Linux-v4.19/Documentation/arm/SA1100/
Dserial_UART45 in /etc/securetty for root to be allowed to login as well.
/Linux-v4.19/drivers/scsi/ibmvscsi/
Dibmvscsi.c1194 struct srp_login_req *login; in send_srp_login() local
1201 login = &evt_struct->iu.srp.login_req; in send_srp_login()
1202 memset(login, 0, sizeof(*login)); in send_srp_login()
1203 login->opcode = SRP_LOGIN_REQ; in send_srp_login()
1204 login->req_it_iu_len = cpu_to_be32(sizeof(union srp_iu)); in send_srp_login()
1205 login->req_buf_fmt = cpu_to_be16(SRP_BUF_FORMAT_DIRECT | in send_srp_login()
/Linux-v4.19/drivers/scsi/csiostor/
Dcsio_lnode.h85 uint8_t login:1; member
/Linux-v4.19/Documentation/
DSAK.txt11 masquerading as login applications. Users need to be taught to enter
/Linux-v4.19/Documentation/s390/
D3270.txt71 3. You should immediately see a Linux login screen.
89 login prompts appear on your 3270s as soon as boot is complete (or
150 3. You should immediately see a login prompt from your
/Linux-v4.19/Documentation/media/dvb-drivers/
Dcontributors.rst31 (in case you are wondering where CyberLogin is, EON changed its login
/Linux-v4.19/Documentation/scsi/
Dcxgb3i.txt76 * The login would fail for a normal session if MaxRecvDataSegmentLength is
/Linux-v4.19/Documentation/filesystems/
Dexofs.txt46 2. Get the OSD initiator and target set up properly, and login to the target.
100 login into an OSD target.
/Linux-v4.19/Documentation/admin-guide/
Dserial-console.rst81 4. Make sure a getty runs on the serial port so that you can login to
Dsysrq.rst160 when you would try to login. It will kill all programs on given console,
161 thus letting you make sure that the login prompt you see is actually
/Linux-v4.19/Documentation/networking/
DREADME.sb100085 already in there. Then modify ppp@gi-on to set the correct login name,
87 to specify your login name and password and any site-specific information
/Linux-v4.19/Documentation/userspace-api/
Dunshare.rst71 module can easily setup a private namespace for a user at login.
75 can benefit from setting up private namespaces at login and
/Linux-v4.19/drivers/uio/
DKconfig134 driver is available from below SVN repo - you may use anonymous login
/Linux-v4.19/drivers/net/ethernet/ibm/
Dibmvnic.c3475 crq.login.first = IBMVNIC_CRQ_CMD; in send_login()
3476 crq.login.cmd = LOGIN; in send_login()
3477 crq.login.ioba = cpu_to_be32(buffer_token); in send_login()
3478 crq.login.len = cpu_to_be32(buffer_size); in send_login()
3984 struct ibmvnic_login_buffer *login = adapter->login_buf; in handle_login_rsp() local
4011 if (login->num_txcomp_subcrqs != login_rsp->num_txsubm_subcrqs || in handle_login_rsp()
4012 (be32_to_cpu(login->num_rxcomp_subcrqs) * in handle_login_rsp()

12