Searched refs:bytes_remain (Results 1 – 3 of 3) sorted by relevance
/linux-6.1.9/drivers/crypto/nx/ |
D | nx-common-pseries.c | 916 int bytes_remain = PAGE_SIZE; in nx842_timehist_show() local 937 bytes = snprintf(p, bytes_remain, "%u-%uus:\t%lld\n", in nx842_timehist_show() 940 bytes_remain -= bytes; in nx842_timehist_show() 945 bytes = snprintf(p, bytes_remain, "%uus - :\t%lld\n", in nx842_timehist_show()
|
/linux-6.1.9/drivers/scsi/lpfc/ |
D | lpfc_els.c | 3941 int desc_cnt = 0, bytes_remain; in lpfc_cmpl_els_edc() local 4003 bytes_remain = be32_to_cpu(edc_rsp->desc_list_len) - in lpfc_cmpl_els_edc() 4005 if (bytes_remain <= 0) in lpfc_cmpl_els_edc() 4014 while (bytes_remain) { in lpfc_cmpl_els_edc() 4015 if (bytes_remain < FC_TLV_DESC_HDR_SZ) { in lpfc_cmpl_els_edc() 4026 if (bytes_remain < FC_TLV_DESC_SZ_FROM_LENGTH(tlv) || in lpfc_cmpl_els_edc() 4033 desc_cnt, bytes_remain, in lpfc_cmpl_els_edc() 4052 if (bytes_remain < FC_TLV_DESC_SZ_FROM_LENGTH(tlv) || in lpfc_cmpl_els_edc() 4059 desc_cnt, bytes_remain, in lpfc_cmpl_els_edc() 4093 bytes_remain -= FC_TLV_DESC_SZ_FROM_LENGTH(tlv); in lpfc_cmpl_els_edc() [all …]
|
/linux-6.1.9/drivers/scsi/ |
D | scsi_transport_fc.c | 906 u32 desc_cnt = 0, bytes_remain; in fc_host_fpin_rcv() local 911 bytes_remain = fpin_len - offsetof(struct fc_els_fpin, fpin_desc); in fc_host_fpin_rcv() 912 bytes_remain = min_t(u32, bytes_remain, be32_to_cpu(fpin->desc_len)); in fc_host_fpin_rcv() 914 while (bytes_remain >= FC_TLV_DESC_HDR_SZ && in fc_host_fpin_rcv() 915 bytes_remain >= FC_TLV_DESC_SZ_FROM_LENGTH(tlv)) { in fc_host_fpin_rcv() 932 bytes_remain -= FC_TLV_DESC_SZ_FROM_LENGTH(tlv); in fc_host_fpin_rcv()
|