Lines Matching refs:front_len
1374 le32_to_cpu(msg->hdr.front_len), in ceph_con_process_message()
1688 BUG_ON(msg->front.iov_len != le32_to_cpu(msg->hdr.front_len)); in ceph_con_send()
1707 le32_to_cpu(msg->hdr.front_len), in ceph_con_send()
1906 struct ceph_msg *ceph_msg_new2(int type, int front_len, int max_data_items, in ceph_msg_new2() argument
1917 m->hdr.front_len = cpu_to_le32(front_len); in ceph_msg_new2()
1923 if (front_len) { in ceph_msg_new2()
1924 m->front.iov_base = ceph_kvmalloc(front_len, flags); in ceph_msg_new2()
1927 front_len); in ceph_msg_new2()
1933 m->front_alloc_len = m->front.iov_len = front_len; in ceph_msg_new2()
1944 dout("ceph_msg_new %p front %d\n", m, front_len); in ceph_msg_new2()
1952 front_len); in ceph_msg_new2()
1956 front_len); in ceph_msg_new2()
1962 struct ceph_msg *ceph_msg_new(int type, int front_len, gfp_t flags, in ceph_msg_new() argument
1965 return ceph_msg_new2(type, front_len, 0, flags, can_fail); in ceph_msg_new()