Home
last modified time | relevance | path

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

/Linux-v5.4/net/ipv6/
Dsyncookies.c132 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-v5.4/net/ipv4/
Dsyncookies.c288 struct tcp_request_sock *treq; in cookie_v4_check() local
334 treq = tcp_rsk(req); in cookie_v4_check()
335 treq->rcv_isn = ntohl(th->seq) - 1; in cookie_v4_check()
336 treq->snt_isn = cookie; in cookie_v4_check()
337 treq->ts_off = 0; in cookie_v4_check()
338 treq->txhash = net_tx_rndhash(); in cookie_v4_check()
350 treq->snt_synack = 0; in cookie_v4_check()
351 treq->tfo_listener = false; in cookie_v4_check()
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()
/Linux-v5.4/drivers/nvme/target/
Dconfigfs.c149 switch (to_nvmet_port(item)->disc_addr.treq & in nvmet_addr_treq_show()
166 u8 treq = port->disc_addr.treq & ~NVME_TREQ_SECURE_CHANNEL_MASK; in nvmet_addr_treq_store() local
175 treq |= NVMF_TREQ_NOT_SPECIFIED; in nvmet_addr_treq_store()
177 treq |= NVMF_TREQ_REQUIRED; in nvmet_addr_treq_store()
179 treq |= NVMF_TREQ_NOT_REQUIRED; in nvmet_addr_treq_store()
184 port->disc_addr.treq = treq; in nvmet_addr_treq_store()
1213 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()
/Linux-v5.4/net/wireless/
Dpmsr.c139 struct nlattr *treq; in pmsr_parse_peer() local
191 nla_for_each_nested(treq, req[NL80211_PMSR_REQ_ATTR_DATA], rem) { in pmsr_parse_peer()
192 switch (nla_type(treq)) { in pmsr_parse_peer()
194 err = pmsr_parse_ftm(rdev, treq, out, info); in pmsr_parse_peer()
197 NL_SET_ERR_MSG_ATTR(info->extack, treq, in pmsr_parse_peer()
/Linux-v5.4/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-v5.4/drivers/scsi/ufs/
Dufshcd.c5645 struct utp_task_req_desc *treq, u8 tm_function) in __ufshcd_issue_tm_cmd() argument
5662 treq->req_header.dword_0 |= cpu_to_be32(task_tag); in __ufshcd_issue_tm_cmd()
5664 memcpy(hba->utmrdl_base_addr + free_slot, treq, sizeof(*treq)); in __ufshcd_issue_tm_cmd()
5695 memcpy(treq, hba->utmrdl_base_addr + free_slot, sizeof(*treq)); in __ufshcd_issue_tm_cmd()
5725 struct utp_task_req_desc treq = { { 0 }, }; in ufshcd_issue_tm_cmd() local
5729 treq.header.dword_0 = cpu_to_le32(UTP_REQ_DESC_INT_CMD); in ufshcd_issue_tm_cmd()
5730 treq.header.dword_2 = cpu_to_le32(OCS_INVALID_COMMAND_STATUS); in ufshcd_issue_tm_cmd()
5733 treq.req_header.dword_0 = cpu_to_be32(lun_id << 8) | in ufshcd_issue_tm_cmd()
5735 treq.req_header.dword_1 = cpu_to_be32(tm_function << 16); in ufshcd_issue_tm_cmd()
5741 treq.input_param1 = cpu_to_be32(lun_id); in ufshcd_issue_tm_cmd()
[all …]
/Linux-v5.4/drivers/net/wireless/ath/ath10k/
Dpci.c2095 void *treq, *tresp = NULL; in ath10k_pci_hif_exchange_bmi_msg() local
2106 treq = kmemdup(req, req_len, GFP_KERNEL); in ath10k_pci_hif_exchange_bmi_msg()
2107 if (!treq) in ath10k_pci_hif_exchange_bmi_msg()
2110 req_paddr = dma_map_single(ar->dev, treq, req_len, DMA_TO_DEVICE); in ath10k_pci_hif_exchange_bmi_msg()
2171 kfree(treq); in ath10k_pci_hif_exchange_bmi_msg()
/Linux-v5.4/include/linux/
Dnvme.h1105 __u8 treq; member
/Linux-v5.4/drivers/usb/dwc2/
Dgadget.c954 struct dwc2_hsotg_req *hs_req, *treq; in dwc2_gadget_start_isoc_ddma() local
978 list_for_each_entry_safe(hs_req, treq, &hs_ep->queue, queue) { in dwc2_gadget_start_isoc_ddma()
4210 struct dwc2_hsotg_req *req, *treq; in on_list() local
4212 list_for_each_entry_safe(req, treq, &ep->queue, queue) { in on_list()