Home
last modified time | relevance | path

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

/Linux-v5.15/drivers/nvme/host/
Dtcp.c1252 struct nvme_tcp_icreq_pdu *icreq; in nvme_tcp_init_connection() local
1259 icreq = kzalloc(sizeof(*icreq), GFP_KERNEL); in nvme_tcp_init_connection()
1260 if (!icreq) in nvme_tcp_init_connection()
1269 icreq->hdr.type = nvme_tcp_icreq; in nvme_tcp_init_connection()
1270 icreq->hdr.hlen = sizeof(*icreq); in nvme_tcp_init_connection()
1271 icreq->hdr.pdo = 0; in nvme_tcp_init_connection()
1272 icreq->hdr.plen = cpu_to_le32(icreq->hdr.hlen); in nvme_tcp_init_connection()
1273 icreq->pfv = cpu_to_le16(NVME_TCP_PFV_1_0); in nvme_tcp_init_connection()
1274 icreq->maxr2t = 0; /* single inflight r2t supported */ in nvme_tcp_init_connection()
1275 icreq->hpda = 0; /* no alignment constraint */ in nvme_tcp_init_connection()
[all …]
/Linux-v5.15/drivers/nvme/target/
Dtcp.c844 struct nvme_tcp_icreq_pdu *icreq = &queue->pdu.icreq; in nvmet_tcp_handle_icreq() local
850 if (le32_to_cpu(icreq->hdr.plen) != sizeof(struct nvme_tcp_icreq_pdu)) { in nvmet_tcp_handle_icreq()
852 le32_to_cpu(icreq->hdr.plen)); in nvmet_tcp_handle_icreq()
856 if (icreq->pfv != NVME_TCP_PFV_1_0) { in nvmet_tcp_handle_icreq()
857 pr_err("queue %d: bad pfv %d\n", queue->idx, icreq->pfv); in nvmet_tcp_handle_icreq()
861 if (icreq->hpda != 0) { in nvmet_tcp_handle_icreq()
863 icreq->hpda); in nvmet_tcp_handle_icreq()
867 queue->hdr_digest = !!(icreq->digest & NVME_TCP_HDR_DIGEST_ENABLE); in nvmet_tcp_handle_icreq()
868 queue->data_digest = !!(icreq->digest & NVME_TCP_DATA_DIGEST_ENABLE); in nvmet_tcp_handle_icreq()
/Linux-v5.15/include/linux/
Dnvme-tcp.h181 struct nvme_tcp_icreq_pdu icreq; member
/Linux-v5.15/include/linux/netfilter/
Dnf_conntrack_pptp.h294 struct PptpInCallRequest icreq; member
/Linux-v5.15/net/netfilter/
Dnf_conntrack_pptp.c338 cid = pptpReq->icreq.callID; in pptp_inbound_pkt()