Lines Matching refs:front_len
1420 le32_to_cpu(msg->hdr.front_len), in ceph_con_process_message()
1734 BUG_ON(msg->front.iov_len != le32_to_cpu(msg->hdr.front_len)); in ceph_con_send()
1753 le32_to_cpu(msg->hdr.front_len), in ceph_con_send()
1964 struct ceph_msg *ceph_msg_new2(int type, int front_len, int max_data_items, in ceph_msg_new2() argument
1975 m->hdr.front_len = cpu_to_le32(front_len); in ceph_msg_new2()
1981 if (front_len) { in ceph_msg_new2()
1982 m->front.iov_base = kvmalloc(front_len, flags); in ceph_msg_new2()
1985 front_len); in ceph_msg_new2()
1991 m->front_alloc_len = m->front.iov_len = front_len; in ceph_msg_new2()
2002 dout("ceph_msg_new %p front %d\n", m, front_len); in ceph_msg_new2()
2010 front_len); in ceph_msg_new2()
2014 front_len); in ceph_msg_new2()
2020 struct ceph_msg *ceph_msg_new(int type, int front_len, gfp_t flags, in ceph_msg_new() argument
2023 return ceph_msg_new2(type, front_len, 0, flags, can_fail); in ceph_msg_new()