Lines Matching refs:front_len
1348 le32_to_cpu(msg->hdr.front_len), in ceph_con_process_message()
1662 BUG_ON(msg->front.iov_len != le32_to_cpu(msg->hdr.front_len)); in ceph_con_send()
1681 le32_to_cpu(msg->hdr.front_len), in ceph_con_send()
1880 struct ceph_msg *ceph_msg_new2(int type, int front_len, int max_data_items, in ceph_msg_new2() argument
1891 m->hdr.front_len = cpu_to_le32(front_len); in ceph_msg_new2()
1897 if (front_len) { in ceph_msg_new2()
1898 m->front.iov_base = kvmalloc(front_len, flags); in ceph_msg_new2()
1901 front_len); in ceph_msg_new2()
1907 m->front_alloc_len = m->front.iov_len = front_len; in ceph_msg_new2()
1918 dout("ceph_msg_new %p front %d\n", m, front_len); in ceph_msg_new2()
1926 front_len); in ceph_msg_new2()
1930 front_len); in ceph_msg_new2()
1936 struct ceph_msg *ceph_msg_new(int type, int front_len, gfp_t flags, in ceph_msg_new() argument
1939 return ceph_msg_new2(type, front_len, 0, flags, can_fail); in ceph_msg_new()