Lines Matching refs:byte_count
298 unsigned int byte_count, total_in_tgt; in coalesce_t2() local
348 byte_count = get_bcc(target_hdr); in coalesce_t2()
349 byte_count += total_in_src; in coalesce_t2()
351 if (byte_count > USHRT_MAX) { in coalesce_t2()
352 cifs_dbg(FYI, "coalesced BCC too large (%u)\n", byte_count); in coalesce_t2()
355 put_bcc(byte_count, target_hdr); in coalesce_t2()
357 byte_count = be32_to_cpu(target_hdr->smb_buf_length); in coalesce_t2()
358 byte_count += total_in_src; in coalesce_t2()
360 if (byte_count > CIFSMaxBufSize + MAX_CIFS_HDR_SIZE - 4) { in coalesce_t2()
362 byte_count); in coalesce_t2()
365 target_hdr->smb_buf_length = cpu_to_be32(byte_count); in coalesce_t2()