Lines Matching refs:remaining_data_length

39 		struct kvec *iov, int n_vec, int remaining_data_length);
42 size_t size, int remaining_data_length);
491 if (le32_to_cpu(data_transfer->remaining_data_length)) in recv_done()
523 le32_to_cpu(data_transfer->remaining_data_length)); in recv_done()
827 struct scatterlist *sgl, int data_length, int remaining_data_length) in smbd_post_send_sgl() argument
900 packet->remaining_data_length = cpu_to_le32(remaining_data_length); in smbd_post_send_sgl()
908 le32_to_cpu(packet->remaining_data_length)); in smbd_post_send_sgl()
986 unsigned long offset, size_t size, int remaining_data_length) in smbd_post_send_page() argument
993 return smbd_post_send_sgl(info, &sgl, size, remaining_data_length); in smbd_post_send_page()
1016 int remaining_data_length) in smbd_post_send_data() argument
1033 return smbd_post_send_sgl(info, sgl, data_length, remaining_data_length); in smbd_post_send_data()
1771 u32 data_length, remaining_data_length, data_offset; in smbd_recv_buf() local
1802 remaining_data_length = in smbd_recv_buf()
1804 data_transfer->remaining_data_length); in smbd_recv_buf()
1817 data_length + remaining_data_length; in smbd_recv_buf()
1991 unsigned int buflen, remaining_data_length; in smbd_send() local
2009 remaining_data_length = 0; in smbd_send()
2011 remaining_data_length += smb_rqst_len(server, &rqst_array[i]); in smbd_send()
2013 if (unlikely(remaining_data_length > info->max_fragmented_send_size)) { in smbd_send()
2016 remaining_data_length, info->max_fragmented_send_size); in smbd_send()
2021 num_rqst, remaining_data_length); in smbd_send()
2068 remaining_data_length -= buflen; in smbd_send()
2073 remaining_data_length); in smbd_send()
2076 rc = smbd_post_send_data(info, vecs, j, remaining_data_length); in smbd_send()
2088 size = min_t(unsigned int, max_iov_size, remaining_data_length); in smbd_send()
2089 remaining_data_length -= size; in smbd_send()
2092 remaining_data_length); in smbd_send()
2096 size, remaining_data_length); in smbd_send()