Lines Matching defs:section
965 struct kvec *section,
970 BUG_ON(!section);
972 while (section->iov_len < sec_len) {
973 BUG_ON(section->iov_base == NULL);
974 left = sec_len - section->iov_len;
975 ret = ceph_tcp_recvmsg(con->sock, (char *)section->iov_base +
976 section->iov_len, left);
979 section->iov_len += ret;
981 if (section->iov_len == sec_len)
982 *crc = crc32c(*crc, section->iov_base, section->iov_len);
988 struct kvec *section,
992 return read_partial_message_chunk(con, section, sec_len, crc);