Home
last modified time | relevance | path

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

/kernel/linux/linux-5.10/net/ipv4/
Dsyncookies.c290 struct tcp_request_sock *treq; in cookie_tcp_reqsk_alloc() local
301 treq = tcp_rsk(req); in cookie_tcp_reqsk_alloc()
304 treq->af_specific = af_ops; in cookie_tcp_reqsk_alloc()
306 treq->syn_tos = TCP_SKB_CB(skb)->ip_dsfield; in cookie_tcp_reqsk_alloc()
308 treq->is_mptcp = sk_is_mptcp(sk); in cookie_tcp_reqsk_alloc()
309 if (treq->is_mptcp) { in cookie_tcp_reqsk_alloc()
332 struct tcp_request_sock *treq; in cookie_v4_check() local
380 treq = tcp_rsk(req); in cookie_v4_check()
381 treq->rcv_isn = ntohl(th->seq) - 1; in cookie_v4_check()
382 treq->snt_isn = cookie; in cookie_v4_check()
[all …]
Dtcp_minisocks.c462 struct tcp_request_sock *treq = tcp_rsk(req); in tcp_create_openreq_child() local
479 seq = treq->rcv_isn + 1; in tcp_create_openreq_child()
485 seq = treq->snt_isn + 1; in tcp_create_openreq_child()
493 tcp_init_wl(newtp, treq->rcv_isn); in tcp_create_openreq_child()
499 newsk->sk_txhash = treq->txhash; in tcp_create_openreq_child()
503 WRITE_ONCE(newtp->write_seq, newtp->pushed_seq = treq->snt_isn + 1); in tcp_create_openreq_child()
534 newtp->undo_marker = treq->snt_isn; in tcp_create_openreq_child()
535 newtp->retrans_stamp = div_u64(treq->snt_synack, in tcp_create_openreq_child()
538 newtp->tsoffset = treq->ts_off; in tcp_create_openreq_child()
541 if (treq->af_specific->req_md5_lookup(sk, req_to_sk(req))) in tcp_create_openreq_child()
/kernel/linux/linux-5.10/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()
/kernel/linux/linux-5.10/net/wireless/
Dpmsr.c171 struct nlattr *treq; in pmsr_parse_peer() local
222 nla_for_each_nested(treq, req[NL80211_PMSR_REQ_ATTR_DATA], rem) { in pmsr_parse_peer()
223 switch (nla_type(treq)) { in pmsr_parse_peer()
225 err = pmsr_parse_ftm(rdev, treq, out, info); in pmsr_parse_peer()
228 NL_SET_ERR_MSG_ATTR(info->extack, treq, in pmsr_parse_peer()
/kernel/linux/linux-5.10/tools/testing/selftests/bpf/progs/
Dbpf_iter_tcp4.c173 static int dump_req_sock(struct seq_file *seq, struct tcp_request_sock *treq, in dump_req_sock() argument
176 struct inet_request_sock *irsk = &treq->req; in dump_req_sock()
Dbpf_iter_tcp6.c182 static int dump_req_sock(struct seq_file *seq, struct tcp_request_sock *treq, in dump_req_sock() argument
185 struct inet_request_sock *irsk = &treq->req; in dump_req_sock()
/kernel/linux/linux-5.10/drivers/nvme/target/
Dconfigfs.c159 u8 treq = to_nvmet_port(item)->disc_addr.treq & in nvmet_addr_treq_show() local
164 if (treq == nvmet_addr_treq[i].type) in nvmet_addr_treq_show()
175 u8 treq = port->disc_addr.treq & ~NVME_TREQ_SECURE_CHANNEL_MASK; in nvmet_addr_treq_store() local
190 treq |= nvmet_addr_treq[i].type; in nvmet_addr_treq_store()
191 port->disc_addr.treq = treq; in nvmet_addr_treq_store()
1533 port->disc_addr.treq = NVMF_TREQ_DISABLE_SQFLOW; in nvmet_ports_make()
Ddiscovery.c112 e->treq = port->disc_addr.treq; in nvmet_format_discovery_entry()
/kernel/linux/common_modules/newip/third_party/linux-5.10/net/newip/
Dtcp_nip_input.c999 struct tcp_request_sock *treq = tcp_rsk(req); in tcp_nip_create_openreq_child() local
1009 newtp->rcv_wup = treq->rcv_isn + 1; in tcp_nip_create_openreq_child()
1010 newtp->copied_seq = treq->rcv_isn + 1; in tcp_nip_create_openreq_child()
1011 newtp->rcv_nxt = treq->rcv_isn + 1; in tcp_nip_create_openreq_child()
1014 newtp->snd_sml = treq->snt_isn + 1; in tcp_nip_create_openreq_child()
1015 newtp->snd_una = treq->snt_isn + 1; in tcp_nip_create_openreq_child()
1016 newtp->snd_nxt = treq->snt_isn + 1; in tcp_nip_create_openreq_child()
1017 newtp->snd_up = treq->snt_isn + 1; in tcp_nip_create_openreq_child()
1024 tcp_init_wl(newtp, treq->rcv_isn); in tcp_nip_create_openreq_child()
1047 newtp->write_seq = treq->snt_isn + 1; in tcp_nip_create_openreq_child()
[all …]
/kernel/linux/linux-5.10/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()
/kernel/linux/linux-5.10/drivers/scsi/ufs/
Dufshcd.c6242 struct utp_task_req_desc *treq, u8 tm_function) in __ufshcd_issue_tm_cmd() argument
6265 treq->req_header.dword_0 |= cpu_to_be32(task_tag); in __ufshcd_issue_tm_cmd()
6267 memcpy(hba->utmrdl_base_addr + task_tag, treq, sizeof(*treq)); in __ufshcd_issue_tm_cmd()
6297 memcpy(treq, hba->utmrdl_base_addr + task_tag, sizeof(*treq)); in __ufshcd_issue_tm_cmd()
6326 struct utp_task_req_desc treq = { { 0 }, }; in ufshcd_issue_tm_cmd() local
6330 treq.header.dword_0 = cpu_to_le32(UTP_REQ_DESC_INT_CMD); in ufshcd_issue_tm_cmd()
6331 treq.header.dword_2 = cpu_to_le32(OCS_INVALID_COMMAND_STATUS); in ufshcd_issue_tm_cmd()
6334 treq.req_header.dword_0 = cpu_to_be32(lun_id << 8) | in ufshcd_issue_tm_cmd()
6336 treq.req_header.dword_1 = cpu_to_be32(tm_function << 16); in ufshcd_issue_tm_cmd()
6342 treq.input_param1 = cpu_to_be32(lun_id); in ufshcd_issue_tm_cmd()
[all …]
/kernel/linux/linux-5.10/drivers/net/ethernet/chelsio/inline_crypto/chtls/
Dchtls_cm.c1197 struct inet_request_sock *treq = inet_rsk(oreq); in chtls_recv_sock() local
1203 newsk->sk_v6_daddr = treq->ir_v6_rmt_addr; in chtls_recv_sock()
1204 newsk->sk_v6_rcv_saddr = treq->ir_v6_loc_addr; in chtls_recv_sock()
1205 inet6_sk(newsk)->saddr = treq->ir_v6_loc_addr; in chtls_recv_sock()
1208 newsk->sk_bound_dev_if = treq->ir_iif; in chtls_recv_sock()
/kernel/linux/linux-5.10/drivers/net/wireless/ath/ath10k/
Dpci.c2114 void *treq, *tresp = NULL; in ath10k_pci_hif_exchange_bmi_msg() local
2125 treq = kmemdup(req, req_len, GFP_KERNEL); in ath10k_pci_hif_exchange_bmi_msg()
2126 if (!treq) in ath10k_pci_hif_exchange_bmi_msg()
2129 req_paddr = dma_map_single(ar->dev, treq, req_len, DMA_TO_DEVICE); in ath10k_pci_hif_exchange_bmi_msg()
2190 kfree(treq); in ath10k_pci_hif_exchange_bmi_msg()
/kernel/linux/linux-5.10/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()
4301 struct dwc2_hsotg_req *req, *treq; in on_list() local
4303 list_for_each_entry_safe(req, treq, &ep->queue, queue) { in on_list()
/kernel/linux/linux-5.10/include/linux/
Dnvme.h1291 __u8 treq; member