| /linux/net/ipv4/ |
| A D | syncookies.c | 287 struct tcp_request_sock *treq; in cookie_tcp_reqsk_alloc() local 299 treq = tcp_rsk(req); in cookie_tcp_reqsk_alloc() 302 treq->is_mptcp = sk_is_mptcp(sk); in cookie_tcp_reqsk_alloc() 303 if (treq->is_mptcp) { in cookie_tcp_reqsk_alloc() 326 struct tcp_request_sock *treq; in cookie_v4_check() local 372 treq = tcp_rsk(req); in cookie_v4_check() 374 treq->snt_isn = cookie; in cookie_v4_check() 375 treq->ts_off = 0; in cookie_v4_check() 376 treq->txhash = net_tx_rndhash(); in cookie_v4_check() 388 treq->snt_synack = 0; in cookie_v4_check() [all …]
|
| A D | tcp_minisocks.c | 455 struct tcp_request_sock *treq = tcp_rsk(req); in tcp_create_openreq_child() local 472 seq = treq->rcv_isn + 1; in tcp_create_openreq_child() 478 seq = treq->snt_isn + 1; in tcp_create_openreq_child() 486 tcp_init_wl(newtp, treq->rcv_isn); in tcp_create_openreq_child() 492 newsk->sk_txhash = treq->txhash; in tcp_create_openreq_child() 496 WRITE_ONCE(newtp->write_seq, newtp->pushed_seq = treq->snt_isn + 1); in tcp_create_openreq_child() 527 newtp->undo_marker = treq->snt_isn; in tcp_create_openreq_child() 528 newtp->retrans_stamp = div_u64(treq->snt_synack, in tcp_create_openreq_child() 531 newtp->tsoffset = treq->ts_off; in tcp_create_openreq_child()
|
| /linux/net/ipv6/ |
| A D | syncookies.c | 132 struct tcp_request_sock *treq; in cookie_v6_check() local 178 treq = tcp_rsk(req); in cookie_v6_check() 179 treq->tfo_listener = false; in cookie_v6_check() 210 treq->snt_synack = 0; in cookie_v6_check() 211 treq->rcv_isn = ntohl(th->seq) - 1; in cookie_v6_check() 212 treq->snt_isn = cookie; in cookie_v6_check() 213 treq->ts_off = 0; in cookie_v6_check() 214 treq->txhash = net_tx_rndhash(); in cookie_v6_check()
|
| /linux/net/wireless/ |
| A D | pmsr.c | 193 struct nlattr *treq; in pmsr_parse_peer() local 244 nla_for_each_nested(treq, req[NL80211_PMSR_REQ_ATTR_DATA], rem) { in pmsr_parse_peer() 245 switch (nla_type(treq)) { in pmsr_parse_peer() 247 err = pmsr_parse_ftm(rdev, treq, out, info); in pmsr_parse_peer() 250 NL_SET_ERR_MSG_ATTR(info->extack, treq, in pmsr_parse_peer()
|
| /linux/drivers/nvme/target/ |
| A D | configfs.c | 159 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() 1663 port->disc_addr.treq = NVMF_TREQ_DISABLE_SQFLOW; in nvmet_ports_make()
|
| A D | discovery.c | 113 e->treq = port->disc_addr.treq; in nvmet_format_discovery_entry()
|
| /linux/tools/testing/selftests/bpf/progs/ |
| A D | bpf_iter_tcp4.c | 172 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()
|
| A D | bpf_iter_tcp6.c | 181 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/drivers/rapidio/ |
| A D | rio_cm.c | 707 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/drivers/scsi/ufs/ |
| A D | ufshcd.c | 6575 struct utp_task_req_desc *treq, u8 tm_function) in __ufshcd_issue_tm_cmd() argument 6600 memcpy(hba->utmrdl_base_addr + task_tag, treq, sizeof(*treq)); in __ufshcd_issue_tm_cmd() 6627 memcpy(treq, hba->utmrdl_base_addr + task_tag, sizeof(*treq)); in __ufshcd_issue_tm_cmd() 6656 struct utp_task_req_desc treq = { { 0 }, }; in ufshcd_issue_tm_cmd() local 6673 treq.upiu_req.input_param1 = cpu_to_be32(lun_id); in ufshcd_issue_tm_cmd() 6674 treq.upiu_req.input_param2 = cpu_to_be32(task_id); in ufshcd_issue_tm_cmd() 6676 err = __ufshcd_issue_tm_cmd(hba, &treq, tm_function); in ufshcd_issue_tm_cmd() 6835 struct utp_task_req_desc treq = { { 0 }, }; in ufshcd_exec_raw_upiu_cmd() local 6857 memcpy(&treq.upiu_req, req_upiu, sizeof(*req_upiu)); in ufshcd_exec_raw_upiu_cmd() 6859 err = __ufshcd_issue_tm_cmd(hba, &treq, tm_f); in ufshcd_exec_raw_upiu_cmd() [all …]
|
| /linux/drivers/net/ethernet/chelsio/inline_crypto/chtls/ |
| A D | chtls_cm.c | 1197 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()
|
| /linux/drivers/net/wireless/ath/ath10k/ |
| A D | pci.c | 2115 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/drivers/usb/dwc2/ |
| A D | gadget.c | 984 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() 4302 struct dwc2_hsotg_req *req, *treq; in on_list() local 4304 list_for_each_entry_safe(req, treq, &ep->queue, queue) { in on_list()
|
| /linux/include/linux/ |
| A D | nvme.h | 1332 __u8 treq; member
|