Home
last modified time | relevance | path

Searched refs:icreq (Results 1 – 5 of 5) sorted by relevance

/OK3568_Linux_fs/kernel/drivers/nvme/host/
H A Dtcp.c1280 struct nvme_tcp_icreq_pdu *icreq; in nvme_tcp_init_connection() local
1287 icreq = kzalloc(sizeof(*icreq), GFP_KERNEL); in nvme_tcp_init_connection()
1288 if (!icreq) in nvme_tcp_init_connection()
1297 icreq->hdr.type = nvme_tcp_icreq; in nvme_tcp_init_connection()
1298 icreq->hdr.hlen = sizeof(*icreq); in nvme_tcp_init_connection()
1299 icreq->hdr.pdo = 0; in nvme_tcp_init_connection()
1300 icreq->hdr.plen = cpu_to_le32(icreq->hdr.hlen); in nvme_tcp_init_connection()
1301 icreq->pfv = cpu_to_le16(NVME_TCP_PFV_1_0); in nvme_tcp_init_connection()
1302 icreq->maxr2t = 0; /* single inflight r2t supported */ in nvme_tcp_init_connection()
1303 icreq->hpda = 0; /* no alignment constraint */ in nvme_tcp_init_connection()
[all …]
/OK3568_Linux_fs/kernel/drivers/nvme/target/
H A Dtcp.c837 struct nvme_tcp_icreq_pdu *icreq = &queue->pdu.icreq; in nvmet_tcp_handle_icreq() local
843 if (le32_to_cpu(icreq->hdr.plen) != sizeof(struct nvme_tcp_icreq_pdu)) { in nvmet_tcp_handle_icreq()
845 le32_to_cpu(icreq->hdr.plen)); in nvmet_tcp_handle_icreq()
849 if (icreq->pfv != NVME_TCP_PFV_1_0) { in nvmet_tcp_handle_icreq()
850 pr_err("queue %d: bad pfv %d\n", queue->idx, icreq->pfv); in nvmet_tcp_handle_icreq()
854 if (icreq->hpda != 0) { in nvmet_tcp_handle_icreq()
856 icreq->hpda); in nvmet_tcp_handle_icreq()
860 queue->hdr_digest = !!(icreq->digest & NVME_TCP_HDR_DIGEST_ENABLE); in nvmet_tcp_handle_icreq()
861 queue->data_digest = !!(icreq->digest & NVME_TCP_DATA_DIGEST_ENABLE); in nvmet_tcp_handle_icreq()
/OK3568_Linux_fs/kernel/include/linux/
H A Dnvme-tcp.h181 struct nvme_tcp_icreq_pdu icreq; member
/OK3568_Linux_fs/kernel/include/linux/netfilter/
H A Dnf_conntrack_pptp.h294 struct PptpInCallRequest icreq; member
/OK3568_Linux_fs/kernel/net/netfilter/
H A Dnf_conntrack_pptp.c338 cid = pptpReq->icreq.callID; in pptp_inbound_pkt()