Lines Matching refs:byte_count
287 unsigned int byte_count, total_in_tgt; in coalesce_t2() local
337 byte_count = get_bcc(target_hdr); in coalesce_t2()
338 byte_count += total_in_src; in coalesce_t2()
340 if (byte_count > USHRT_MAX) { in coalesce_t2()
341 cifs_dbg(FYI, "coalesced BCC too large (%u)\n", byte_count); in coalesce_t2()
344 put_bcc(byte_count, target_hdr); in coalesce_t2()
346 byte_count = be32_to_cpu(target_hdr->smb_buf_length); in coalesce_t2()
347 byte_count += total_in_src; in coalesce_t2()
349 if (byte_count > CIFSMaxBufSize + MAX_CIFS_HDR_SIZE - 4) { in coalesce_t2()
351 byte_count); in coalesce_t2()
354 target_hdr->smb_buf_length = cpu_to_be32(byte_count); in coalesce_t2()