Home
last modified time | relevance | path

Searched refs:reqlen (Results 1 – 19 of 19) sorted by relevance

/Linux-v5.4/drivers/scsi/
Dqlogicfas408.c96 static int ql_pdma(struct qlogicfas408_priv *priv, int phase, char *request, int reqlen) in ql_pdma() argument
105 if (reqlen >= 128 && (inb(qbase + 8) & 2)) { /* full */ in ql_pdma()
107 reqlen -= 128; in ql_pdma()
110 while (reqlen >= 84 && !(j & 0xc0)) /* 2/3 */ in ql_pdma()
114 reqlen -= 84; in ql_pdma()
117 if (reqlen >= 44 && (inb(qbase + 8) & 8)) { /* 1/3 */ in ql_pdma()
119 reqlen -= 44; in ql_pdma()
126 while (reqlen && !((j & 0x10) && (j & 0xc0))) in ql_pdma()
130 while (reqlen && !((j = inb(qbase + 8)) & 0x10)) in ql_pdma()
133 reqlen--; in ql_pdma()
[all …]
Ddpt_i2o.c321 u32 reqlen; in adpt_inquiry() local
340 reqlen = 17; // SINGLE SGE, 64 bit in adpt_inquiry()
342 reqlen = 14; // SINGLE SGE, 32 bit in adpt_inquiry()
344 msg[0] = reqlen<<16 | SGL_OFFSET_12; in adpt_inquiry()
387 rcode = adpt_i2o_post_wait(pHba, msg, reqlen<<2, 120); in adpt_inquiry()
2200 u32 reqlen; in adpt_scsi_to_i2o() local
2262 reqlen = 16; // SINGLE SGE in adpt_scsi_to_i2o()
2266 reqlen = 14; // SINGLE SGE in adpt_scsi_to_i2o()
2288 reqlen = mptr - msg; in adpt_scsi_to_i2o()
2297 reqlen = 12; in adpt_scsi_to_i2o()
[all …]
Ddc395x.c913 u32 reqlen = scsi_bufflen(cmd); in build_srb() local
921 reqlen, scsi_sglist(cmd), scsi_sg_count(cmd), in build_srb()
937 if (srb->total_xfer_length > reqlen) { in build_srb()
938 sgp->length -= (srb->total_xfer_length - reqlen); in build_srb()
939 srb->total_xfer_length = reqlen; in build_srb()
/Linux-v5.4/drivers/regulator/
Dqcom_smd-regulator.c46 int reqlen = 0; in rpm_reg_write_active() local
50 req[reqlen].key = cpu_to_le32(RPM_KEY_SWEN); in rpm_reg_write_active()
51 req[reqlen].nbytes = cpu_to_le32(sizeof(u32)); in rpm_reg_write_active()
52 req[reqlen].value = cpu_to_le32(vreg->is_enabled); in rpm_reg_write_active()
53 reqlen++; in rpm_reg_write_active()
57 req[reqlen].key = cpu_to_le32(RPM_KEY_UV); in rpm_reg_write_active()
58 req[reqlen].nbytes = cpu_to_le32(sizeof(u32)); in rpm_reg_write_active()
59 req[reqlen].value = cpu_to_le32(vreg->uV); in rpm_reg_write_active()
60 reqlen++; in rpm_reg_write_active()
64 req[reqlen].key = cpu_to_le32(RPM_KEY_MA); in rpm_reg_write_active()
[all …]
/Linux-v5.4/drivers/scsi/pcmcia/
Dsym53c500_cs.c236 SYM53C500_pio_read(int fast_pio, int base, unsigned char *request, unsigned int reqlen) in SYM53C500_pio_read() argument
242 while (reqlen) { in SYM53C500_pio_read()
272 if (len > reqlen) in SYM53C500_pio_read()
273 len = reqlen; in SYM53C500_pio_read()
278 reqlen -= len & 0xfc; in SYM53C500_pio_read()
282 reqlen--; in SYM53C500_pio_read()
291 SYM53C500_pio_write(int fast_pio, int base, unsigned char *request, unsigned int reqlen) in SYM53C500_pio_write() argument
297 while (reqlen && !(i & 0x40)) { in SYM53C500_pio_write()
323 if (len > reqlen) in SYM53C500_pio_write()
324 len = reqlen; in SYM53C500_pio_write()
[all …]
/Linux-v5.4/net/netfilter/
Dnf_conntrack_pptp.c269 unsigned int reqlen, in pptp_inbound_pkt() argument
397 unsigned int reqlen, in pptp_outbound_pkt() argument
520 unsigned int datalen, reqlen, nexthdr_off; in conntrack_pptp_help() local
564 reqlen = datalen; in conntrack_pptp_help()
566 if (msg > 0 && msg <= PPTP_MSG_MAX && reqlen < pptp_msg_size[msg]) in conntrack_pptp_help()
568 if (reqlen > sizeof(*pptpReq)) in conntrack_pptp_help()
569 reqlen = sizeof(*pptpReq); in conntrack_pptp_help()
571 pptpReq = skb_header_pointer(skb, nexthdr_off, reqlen, &_pptpReq); in conntrack_pptp_help()
584 ret = pptp_outbound_pkt(skb, protoff, ctlh, pptpReq, reqlen, ct, in conntrack_pptp_help()
588 ret = pptp_inbound_pkt(skb, protoff, ctlh, pptpReq, reqlen, ct, in conntrack_pptp_help()
/Linux-v5.4/drivers/isdn/mISDN/
Dhwchannel.c470 bchannel_get_rxbuf(struct bchannel *bch, int reqlen) in bchannel_get_rxbuf() argument
476 if (len < reqlen) { in bchannel_get_rxbuf()
478 bch->nr, reqlen, len); in bchannel_get_rxbuf()
495 if (unlikely(reqlen > bch->maxlen)) in bchannel_get_rxbuf()
498 if (reqlen >= bch->minlen) { in bchannel_get_rxbuf()
499 len = reqlen; in bchannel_get_rxbuf()
/Linux-v5.4/drivers/crypto/chelsio/
Dchcr_algo.c139 static int sg_nents_xlen(struct scatterlist *sg, unsigned int reqlen, in sg_nents_xlen() argument
158 while (sg && reqlen) { in sg_nents_xlen()
159 less = min(reqlen, sg_dma_len(sg) - skip_len); in sg_nents_xlen()
161 reqlen -= less; in sg_nents_xlen()
1598 if (nbytes + req_ctx->reqlen >= bs) { in chcr_ahash_update()
1599 remainder = (nbytes + req_ctx->reqlen) % bs; in chcr_ahash_update()
1600 nbytes = nbytes + req_ctx->reqlen - remainder; in chcr_ahash_update()
1603 + req_ctx->reqlen, nbytes, 0); in chcr_ahash_update()
1604 req_ctx->reqlen += nbytes; in chcr_ahash_update()
1630 params.sg_len = chcr_hash_ent_in_wr(req->src, !!req_ctx->reqlen, in chcr_ahash_update()
[all …]
Dchcr_crypto.h282 u8 reqlen; member
/Linux-v5.4/arch/arm64/kvm/
Dguest.c334 unsigned int reqoffset, reqlen; /* User-requested offset and length */ in sve_reg_to_region() local
358 reqlen = KVM_SVE_ZREG_SIZE; in sve_reg_to_region()
368 reqlen = KVM_SVE_PREG_SIZE; in sve_reg_to_region()
379 region->klen = min(maxlen, reqlen); in sve_reg_to_region()
380 region->upad = reqlen - region->klen; in sve_reg_to_region()
/Linux-v5.4/drivers/net/wireless/zydas/
Dzd1201.c514 int reqlen; in zd1201_setconfig() local
533 reqlen = len>12 ? 12 : len; in zd1201_setconfig()
542 memcpy(request+8, buf, reqlen-4); in zd1201_setconfig()
543 buf += reqlen-4; in zd1201_setconfig()
545 memcpy(request+4, buf, reqlen); in zd1201_setconfig()
546 buf += reqlen; in zd1201_setconfig()
549 len -= reqlen; in zd1201_setconfig()
/Linux-v5.4/drivers/scsi/bfa/
Dbfa_fcs.c1326 u16 reqlen; in bfa_fcs_fabric_send_flogi_acc() local
1336 reqlen = fc_flogi_acc_build(&fchs, bfa_fcxp_get_reqbuf(fcxp), in bfa_fcs_fabric_send_flogi_acc()
1345 reqlen, &fchs, bfa_fcs_fabric_flogiacc_comp, fabric, in bfa_fcs_fabric_send_flogi_acc()
Dbfa_svc.c100 static void hal_fcxp_tx_plog(struct bfa_s *bfa, u32 reqlen,
722 hal_fcxp_tx_plog(struct bfa_s *bfa, u32 reqlen, struct bfa_fcxp_s *fcxp, in hal_fcxp_tx_plog() argument
728 if (reqlen > 0) { in hal_fcxp_tx_plog()
735 reqlen + sizeof(struct fchs_s), fchs, in hal_fcxp_tx_plog()
740 reqlen + sizeof(struct fchs_s), in hal_fcxp_tx_plog()
745 reqlen + sizeof(struct fchs_s), fchs); in hal_fcxp_tx_plog()
1007 u32 reqlen, struct fchs_s *fchs, bfa_cb_fcxp_send_t cbfn, in bfa_fcxp_send() argument
1027 reqi->req_tot_len = reqlen; in bfa_fcxp_send()
Dbfa_svc.h630 u32 reqlen, struct fchs_s *fchs,
/Linux-v5.4/drivers/gpu/drm/omapdrm/dss/
Ddsi.c2828 u8 *reqdata, int reqlen) in dsi_vc_generic_send_read_request() argument
2836 channel, reqlen); in dsi_vc_generic_send_read_request()
2838 if (reqlen == 0) { in dsi_vc_generic_send_read_request()
2841 } else if (reqlen == 1) { in dsi_vc_generic_send_read_request()
2844 } else if (reqlen == 2) { in dsi_vc_generic_send_read_request()
2855 " failed\n", channel, reqlen); in dsi_vc_generic_send_read_request()
3001 u8 *reqdata, int reqlen, u8 *buf, int buflen) in dsi_vc_generic_read() argument
3006 r = dsi_vc_generic_send_read_request(dsi, channel, reqdata, reqlen); in dsi_vc_generic_read()
Domapdss.h337 u8 *reqdata, int reqlen,
/Linux-v5.4/drivers/video/fbdev/omap2/omapfb/dss/
Ddsi.c2895 int channel, u8 *reqdata, int reqlen) in dsi_vc_generic_send_read_request() argument
2904 channel, reqlen); in dsi_vc_generic_send_read_request()
2906 if (reqlen == 0) { in dsi_vc_generic_send_read_request()
2909 } else if (reqlen == 1) { in dsi_vc_generic_send_read_request()
2912 } else if (reqlen == 2) { in dsi_vc_generic_send_read_request()
2923 " failed\n", channel, reqlen); in dsi_vc_generic_send_read_request()
3070 u8 *reqdata, int reqlen, u8 *buf, int buflen) in dsi_vc_generic_read() argument
3075 r = dsi_vc_generic_send_read_request(dsidev, channel, reqdata, reqlen); in dsi_vc_generic_read()
/Linux-v5.4/include/video/
Domapfb_dss.h589 u8 *reqdata, int reqlen,
/Linux-v5.4/drivers/scsi/lpfc/
Dlpfc_sli.c5358 uint32_t alloclen, reqlen; in lpfc_sli4_get_ctl_attr() local
5368 reqlen = sizeof(struct lpfc_mbx_get_cntl_attributes); in lpfc_sli4_get_ctl_attr()
5370 LPFC_MBOX_OPCODE_GET_CNTL_ATTRIBUTES, reqlen, in lpfc_sli4_get_ctl_attr()
5373 if (alloclen < reqlen) { in lpfc_sli4_get_ctl_attr()
5377 "(%d)\n", alloclen, reqlen); in lpfc_sli4_get_ctl_attr()
16541 uint32_t reqlen, alloclen, pg_pairs; in lpfc_sli4_post_sgl_list() local
16548 reqlen = post_cnt * sizeof(struct sgl_page_pairs) + in lpfc_sli4_post_sgl_list()
16550 if (reqlen > SLI4_PAGE_SIZE) { in lpfc_sli4_post_sgl_list()
16553 "size (%d) great than a page\n", reqlen); in lpfc_sli4_post_sgl_list()
16563 LPFC_MBOX_OPCODE_FCOE_POST_SGL_PAGES, reqlen, in lpfc_sli4_post_sgl_list()
[all …]