Home
last modified time | relevance | path

Searched refs:treq (Results 1 – 14 of 14) sorted by relevance

/linux-6.1.9/net/ipv4/
Dsyncookies.c288 struct tcp_request_sock *treq; in cookie_tcp_reqsk_alloc() local
299 treq = tcp_rsk(req); in cookie_tcp_reqsk_alloc()
302 treq->af_specific = af_ops; in cookie_tcp_reqsk_alloc()
304 treq->syn_tos = TCP_SKB_CB(skb)->ip_dsfield; in cookie_tcp_reqsk_alloc()
306 treq->is_mptcp = sk_is_mptcp(sk); in cookie_tcp_reqsk_alloc()
307 if (treq->is_mptcp) { in cookie_tcp_reqsk_alloc()
330 struct tcp_request_sock *treq; in cookie_v4_check() local
378 treq = tcp_rsk(req); in cookie_v4_check()
379 treq->rcv_isn = ntohl(th->seq) - 1; in cookie_v4_check()
380 treq->snt_isn = cookie; in cookie_v4_check()
[all …]
Dtcp_minisocks.c476 struct tcp_request_sock *treq = tcp_rsk(req); in tcp_create_openreq_child() local
493 seq = treq->rcv_isn + 1; in tcp_create_openreq_child()
499 seq = treq->snt_isn + 1; in tcp_create_openreq_child()
507 tcp_init_wl(newtp, treq->rcv_isn); in tcp_create_openreq_child()
513 newsk->sk_txhash = treq->txhash; in tcp_create_openreq_child()
517 WRITE_ONCE(newtp->write_seq, newtp->pushed_seq = treq->snt_isn + 1); in tcp_create_openreq_child()
548 newtp->undo_marker = treq->snt_isn; in tcp_create_openreq_child()
549 newtp->retrans_stamp = div_u64(treq->snt_synack, in tcp_create_openreq_child()
552 newtp->tsoffset = treq->ts_off; in tcp_create_openreq_child()
555 if (treq->af_specific->req_md5_lookup(sk, req_to_sk(req))) in tcp_create_openreq_child()
/linux-6.1.9/net/ipv6/
Dsyncookies.c132 struct tcp_request_sock *treq; in cookie_v6_check() local
180 treq = tcp_rsk(req); in cookie_v6_check()
181 treq->tfo_listener = false; in cookie_v6_check()
212 treq->snt_synack = 0; in cookie_v6_check()
213 treq->rcv_isn = ntohl(th->seq) - 1; in cookie_v6_check()
214 treq->snt_isn = cookie; in cookie_v6_check()
215 treq->ts_off = 0; in cookie_v6_check()
216 treq->txhash = net_tx_rndhash(); in cookie_v6_check()
/linux-6.1.9/net/wireless/
Dpmsr.c191 struct nlattr *treq; in pmsr_parse_peer() local
242 nla_for_each_nested(treq, req[NL80211_PMSR_REQ_ATTR_DATA], rem) { in pmsr_parse_peer()
243 switch (nla_type(treq)) { in pmsr_parse_peer()
245 err = pmsr_parse_ftm(rdev, treq, out, info); in pmsr_parse_peer()
248 NL_SET_ERR_MSG_ATTR(info->extack, treq, in pmsr_parse_peer()
/linux-6.1.9/tools/testing/selftests/bpf/progs/
Dbpf_iter_tcp4.c172 static int dump_req_sock(struct seq_file *seq, struct tcp_request_sock *treq, in dump_req_sock() argument
175 struct inet_request_sock *irsk = &treq->req; in dump_req_sock()
Dbpf_iter_tcp6.c181 static int dump_req_sock(struct seq_file *seq, struct tcp_request_sock *treq, in dump_req_sock() argument
184 struct inet_request_sock *irsk = &treq->req; in dump_req_sock()
/linux-6.1.9/drivers/nvme/target/
Dconfigfs.c163 u8 treq = to_nvmet_port(item)->disc_addr.treq & in nvmet_addr_treq_show() local
168 if (treq == nvmet_addr_treq[i].type) in nvmet_addr_treq_show()
180 u8 treq = port->disc_addr.treq & ~NVME_TREQ_SECURE_CHANNEL_MASK; in nvmet_addr_treq_store() local
195 treq |= nvmet_addr_treq[i].type; in nvmet_addr_treq_store()
196 port->disc_addr.treq = treq; in nvmet_addr_treq_store()
1678 port->disc_addr.treq = NVMF_TREQ_DISABLE_SQFLOW; in nvmet_ports_make()
Ddiscovery.c113 e->treq = port->disc_addr.treq; in nvmet_format_discovery_entry()
/linux-6.1.9/drivers/rapidio/
Drio_cm.c707 struct tx_req *treq; in riocm_queue_req() local
709 treq = kzalloc(sizeof(*treq), GFP_KERNEL); in riocm_queue_req()
710 if (treq == NULL) in riocm_queue_req()
713 treq->rdev = rdev; in riocm_queue_req()
714 treq->buffer = buffer; in riocm_queue_req()
715 treq->len = len; in riocm_queue_req()
718 list_add_tail(&treq->node, &cm->tx_reqs); in riocm_queue_req()
/linux-6.1.9/drivers/ufs/core/
Dufshcd.c6742 struct utp_task_req_desc *treq, u8 tm_function) in __ufshcd_issue_tm_cmd() argument
6767 treq->upiu_req.req_header.dword_0 |= cpu_to_be32(task_tag); in __ufshcd_issue_tm_cmd()
6769 memcpy(hba->utmrdl_base_addr + task_tag, treq, sizeof(*treq)); in __ufshcd_issue_tm_cmd()
6796 memcpy(treq, hba->utmrdl_base_addr + task_tag, sizeof(*treq)); in __ufshcd_issue_tm_cmd()
6825 struct utp_task_req_desc treq = { { 0 }, }; in ufshcd_issue_tm_cmd() local
6830 treq.header.dword_0 = cpu_to_le32(UTP_REQ_DESC_INT_CMD); in ufshcd_issue_tm_cmd()
6831 treq.header.dword_2 = cpu_to_le32(OCS_INVALID_COMMAND_STATUS); in ufshcd_issue_tm_cmd()
6834 treq.upiu_req.req_header.dword_0 = cpu_to_be32(lun_id << 8) | in ufshcd_issue_tm_cmd()
6836 treq.upiu_req.req_header.dword_1 = cpu_to_be32(tm_function << 16); in ufshcd_issue_tm_cmd()
6842 treq.upiu_req.input_param1 = cpu_to_be32(lun_id); in ufshcd_issue_tm_cmd()
[all …]
/linux-6.1.9/drivers/net/ethernet/chelsio/inline_crypto/chtls/
Dchtls_cm.c1196 struct inet_request_sock *treq = inet_rsk(oreq); in chtls_recv_sock() local
1202 newsk->sk_v6_daddr = treq->ir_v6_rmt_addr; in chtls_recv_sock()
1203 newsk->sk_v6_rcv_saddr = treq->ir_v6_loc_addr; in chtls_recv_sock()
1204 inet6_sk(newsk)->saddr = treq->ir_v6_loc_addr; in chtls_recv_sock()
1207 newsk->sk_bound_dev_if = treq->ir_iif; in chtls_recv_sock()
/linux-6.1.9/drivers/net/wireless/ath/ath10k/
Dpci.c2115 void *treq, *tresp = NULL; in ath10k_pci_hif_exchange_bmi_msg() local
2126 treq = kmemdup(req, req_len, GFP_KERNEL); in ath10k_pci_hif_exchange_bmi_msg()
2127 if (!treq) in ath10k_pci_hif_exchange_bmi_msg()
2130 req_paddr = dma_map_single(ar->dev, treq, req_len, DMA_TO_DEVICE); in ath10k_pci_hif_exchange_bmi_msg()
2191 kfree(treq); in ath10k_pci_hif_exchange_bmi_msg()
/linux-6.1.9/drivers/usb/dwc2/
Dgadget.c984 struct dwc2_hsotg_req *hs_req, *treq; in dwc2_gadget_start_isoc_ddma() local
1008 list_for_each_entry_safe(hs_req, treq, &hs_ep->queue, queue) { in dwc2_gadget_start_isoc_ddma()
4303 struct dwc2_hsotg_req *req, *treq; in on_list() local
4305 list_for_each_entry_safe(req, treq, &ep->queue, queue) { in on_list()
/linux-6.1.9/include/linux/
Dnvme.h1433 __u8 treq; member