Lines Matching refs:front_len
1373 le32_to_cpu(msg->hdr.front_len), in ceph_con_process_message()
1687 BUG_ON(msg->front.iov_len != le32_to_cpu(msg->hdr.front_len)); in ceph_con_send()
1706 le32_to_cpu(msg->hdr.front_len), in ceph_con_send()
1905 struct ceph_msg *ceph_msg_new2(int type, int front_len, int max_data_items, in ceph_msg_new2() argument
1916 m->hdr.front_len = cpu_to_le32(front_len); in ceph_msg_new2()
1922 if (front_len) { in ceph_msg_new2()
1923 m->front.iov_base = ceph_kvmalloc(front_len, flags); in ceph_msg_new2()
1926 front_len); in ceph_msg_new2()
1932 m->front_alloc_len = m->front.iov_len = front_len; in ceph_msg_new2()
1943 dout("ceph_msg_new %p front %d\n", m, front_len); in ceph_msg_new2()
1951 front_len); in ceph_msg_new2()
1955 front_len); in ceph_msg_new2()
1961 struct ceph_msg *ceph_msg_new(int type, int front_len, gfp_t flags, in ceph_msg_new() argument
1964 return ceph_msg_new2(type, front_len, 0, flags, can_fail); in ceph_msg_new()