Home
last modified time | relevance | path

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

12

/Linux-v5.4/drivers/target/iscsi/
Discsi_target_nego.c169 struct iscsi_login *login) in iscsi_target_check_login_request() argument
175 login_req = (struct iscsi_login_req *) login->req; in iscsi_target_check_login_request()
201 if (req_csg != login->current_stage) { in iscsi_target_check_login_request()
203 " from %d to %d, login failed.\n", login->current_stage, in iscsi_target_check_login_request()
221 if ((login_req->max_version != login->version_max) || in iscsi_target_check_login_request()
222 (login_req->min_version != login->version_min)) { in iscsi_target_check_login_request()
231 if (memcmp(login_req->isid, login->isid, 6) != 0) { in iscsi_target_check_login_request()
239 if (login_req->itt != login->init_task_tag) { in iscsi_target_check_login_request()
260 struct iscsi_login *login) in iscsi_target_check_first_request() argument
265 login->first_request = 0; in iscsi_target_check_first_request()
[all …]
Discsi_target_login.c39 struct iscsi_login *login; in iscsi_login_init_conn() local
41 login = kzalloc(sizeof(struct iscsi_login), GFP_KERNEL); in iscsi_login_init_conn()
42 if (!login) { in iscsi_login_init_conn()
46 conn->login = login; in iscsi_login_init_conn()
47 login->conn = conn; in iscsi_login_init_conn()
48 login->first_request = 1; in iscsi_login_init_conn()
50 login->req_buf = kzalloc(MAX_KEY_VALUE_PAIRS, GFP_KERNEL); in iscsi_login_init_conn()
51 if (!login->req_buf) { in iscsi_login_init_conn()
56 login->rsp_buf = kzalloc(MAX_KEY_VALUE_PAIRS, GFP_KERNEL); in iscsi_login_init_conn()
57 if (!login->rsp_buf) { in iscsi_login_init_conn()
[all …]
Discsi_target_util.c1201 struct iscsi_login *login = conn->conn_login; in iscsit_tx_login_rsp() local
1203 login->login_failed = 1; in iscsit_tx_login_rsp()
1206 memset(&login->rsp[0], 0, ISCSI_HDR_LEN); in iscsit_tx_login_rsp()
1208 hdr = (struct iscsi_login_rsp *)&login->rsp[0]; in iscsit_tx_login_rsp()
1214 return conn->conn_transport->iscsit_put_login_tx(conn, login, 0); in iscsit_tx_login_rsp()
/Linux-v5.4/drivers/target/sbp/
Dsbp_target.c97 struct sbp_login_descriptor *login, *found = NULL; in sbp_login_find_by_lun() local
100 list_for_each_entry(login, &session->login_list, link) { in sbp_login_find_by_lun()
101 if (login->login_lun == unpacked_lun) in sbp_login_find_by_lun()
102 found = login; in sbp_login_find_by_lun()
116 struct sbp_login_descriptor *login; in sbp_login_count_all_by_lun() local
124 list_for_each_entry(login, &sess->login_list, link) { in sbp_login_count_all_by_lun()
125 if (login->login_lun != unpacked_lun) in sbp_login_count_all_by_lun()
128 if (!exclusive || login->exclusive) in sbp_login_count_all_by_lun()
143 struct sbp_login_descriptor *login, *found = NULL; in sbp_login_find_by_id() local
150 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-v5.4/drivers/target/iscsi/cxgbit/
Dcxgbit_target.c654 if (conn->login->leading_connection) { in cxgbit_set_iso_npdu()
701 if (conn->login->leading_connection) { in cxgbit_seq_pdu_inorder()
747 if (conn->login->leading_connection) { in cxgbit_set_params()
791 cxgbit_put_login_tx(struct iscsi_conn *conn, struct iscsi_login *login, in cxgbit_put_login_tx() argument
802 skb_store_bits(skb, 0, login->rsp, ISCSI_HDR_LEN); in cxgbit_put_login_tx()
803 skb_store_bits(skb, ISCSI_HDR_LEN, login->rsp_buf, length); in cxgbit_put_login_tx()
809 if (login->login_complete) { in cxgbit_put_login_tx()
821 if ((!login->login_complete) && (!login->login_failed)) in cxgbit_put_login_tx()
1327 struct iscsi_login *login = conn->login; in cxgbit_rx_login_pdu() local
1331 login_req = (struct iscsi_login_req *)login->req; in cxgbit_rx_login_pdu()
[all …]
/Linux-v5.4/drivers/infiniband/ulp/isert/
Dib_isert.c989 isert_put_login_tx(struct iscsi_conn *conn, struct iscsi_login *login, in isert_put_login_tx() argument
1000 memcpy(&tx_desc->iscsi_header, &login->rsp[0], in isert_put_login_tx()
1011 memcpy(isert_conn->login_rsp_buf, login->rsp_buf, length); in isert_put_login_tx()
1021 if (!login->login_failed) { in isert_put_login_tx()
1022 if (login->login_complete) { in isert_put_login_tx()
1057 struct iscsi_login *login = conn->conn_login; in isert_rx_login_req() local
1062 WARN_ON_ONCE(!login); in isert_rx_login_req()
1064 if (login->first_request) { in isert_rx_login_req()
1071 login->leading_connection = (!login_req->tsih) ? 1 : 0; in isert_rx_login_req()
1072 login->current_stage = in isert_rx_login_req()
[all …]
/Linux-v5.4/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-v5.4/drivers/scsi/bnx2i/
Dbnx2i_hwi.c1438 struct bnx2i_login_response *login; in bnx2i_process_login_resp() local
1443 login = (struct bnx2i_login_response *) cqe; in bnx2i_process_login_resp()
1446 login->itt & ISCSI_LOGIN_RESPONSE_INDEX); in bnx2i_process_login_resp()
1452 resp_hdr->opcode = login->op_code; in bnx2i_process_login_resp()
1453 resp_hdr->flags = login->response_flags; in bnx2i_process_login_resp()
1454 resp_hdr->max_version = login->version_max; in bnx2i_process_login_resp()
1455 resp_hdr->active_version = login->version_active; in bnx2i_process_login_resp()
1458 hton24(resp_hdr->dlength, login->data_length); in bnx2i_process_login_resp()
1459 memcpy(resp_hdr->isid, &login->isid_lo, 6); in bnx2i_process_login_resp()
1460 resp_hdr->tsih = cpu_to_be16(login->tsih); in bnx2i_process_login_resp()
[all …]
/Linux-v5.4/Documentation/ia64/
Dserial.rst77 root login).
128 Kernel and init script output works fine, but no "login:" prompt:
134 "login:" prompt, but can't login as root:
/Linux-v5.4/Documentation/arm/sa1100/
Dserial_uart.rst51 in /etc/securetty for root to be allowed to login as well.
/Linux-v5.4/drivers/scsi/ibmvscsi/
Dibmvscsi.c1182 struct srp_login_req *login; in send_srp_login() local
1189 login = &evt_struct->iu.srp.login_req; in send_srp_login()
1190 memset(login, 0, sizeof(*login)); in send_srp_login()
1191 login->opcode = SRP_LOGIN_REQ; in send_srp_login()
1192 login->req_it_iu_len = cpu_to_be32(sizeof(union srp_iu)); in send_srp_login()
1193 login->req_buf_fmt = cpu_to_be16(SRP_BUF_FORMAT_DIRECT | in send_srp_login()
Dibmvfc.h223 struct ibmvfc_npiv_login login; member
/Linux-v5.4/drivers/scsi/csiostor/
Dcsio_lnode.h85 uint8_t login:1; member
/Linux-v5.4/Documentation/security/
Dsak.rst11 masquerading as login applications. Users need to be taught to enter
/Linux-v5.4/Documentation/s390/
D3270.rst78 3. You should immediately see a Linux login screen.
97 login prompts appear on your 3270s as soon as boot is complete (or
165 3. You should immediately see a login prompt from your
/Linux-v5.4/Documentation/media/dvb-drivers/
Dcontributors.rst33 (in case you are wondering where CyberLogin is, EON changed its login
/Linux-v5.4/Documentation/scsi/
Dcxgb3i.txt76 * The login would fail for a normal session if MaxRecvDataSegmentLength is
/Linux-v5.4/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-v5.4/Documentation/networking/device_drivers/
Dsb1000.txt85 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-v5.4/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-v5.4/drivers/uio/
DKconfig135 driver is available from below SVN repo - you may use anonymous login
/Linux-v5.4/drivers/net/ethernet/ibm/
Dibmvnic.c3628 crq.login.first = IBMVNIC_CRQ_CMD; in send_login()
3629 crq.login.cmd = LOGIN; in send_login()
3630 crq.login.ioba = cpu_to_be32(buffer_token); in send_login()
3631 crq.login.len = cpu_to_be32(buffer_size); in send_login()
4155 struct ibmvnic_login_buffer *login = adapter->login_buf; in handle_login_rsp() local
4182 if (login->num_txcomp_subcrqs != login_rsp->num_txsubm_subcrqs || in handle_login_rsp()
4183 (be32_to_cpu(login->num_rxcomp_subcrqs) * in handle_login_rsp()
/Linux-v5.4/include/target/iscsi/
Discsi_target_core.h575 struct iscsi_login *login; member

12