Home
last modified time | relevance | path

Searched refs:front_len (Results 1 – 12 of 12) sorted by relevance

/linux-6.3-rc2/net/ceph/
A Dmsgpool.c17 msg = ceph_msg_new2(pool->type, pool->front_len, pool->max_data_items, in msgpool_alloc()
39 int front_len, int max_data_items, int size, in ceph_msgpool_init() argument
44 pool->front_len = front_len; in ceph_msgpool_init()
59 struct ceph_msg *ceph_msgpool_get(struct ceph_msgpool *pool, int front_len, in ceph_msgpool_get() argument
64 if (front_len > pool->front_len || in ceph_msgpool_get()
67 __func__, front_len, max_data_items, pool->name, in ceph_msgpool_get()
68 pool->front_len, pool->max_data_items); in ceph_msgpool_get()
72 return ceph_msg_new2(pool->type, front_len, max_data_items, in ceph_msgpool_get()
86 msg->front.iov_len = pool->front_len; in ceph_msgpool_put()
87 msg->hdr.front_len = cpu_to_le32(pool->front_len); in ceph_msgpool_put()
A Dmessenger_v2.c601 hdr->front_len = cpu_to_le32(front_len); in fill_header()
649 if (front_len(con->in_msg)) { in verify_epilogue_crcs()
651 front_len(con->in_msg)); in verify_epilogue_crcs()
973 if (front_len(msg)) in setup_message_sgs()
975 front_len(msg)); in setup_message_sgs()
989 if (front_len(msg)) in setup_message_sgs()
1521 if (front_len(msg)) { in prepare_message_plain()
1523 front_len(msg)); in prepare_message_plain()
1622 front_len(con->out_msg), in prepare_message()
1828 if (front_len(msg)) { in prepare_read_tail_plain()
[all …]
A Dmessenger_v1.c217 WARN_ON(m->front.iov_len != le32_to_cpu(m->hdr.front_len)); in prepare_write_message()
1076 unsigned int front_len, middle_len, data_len; in read_partial_message() local
1098 front_len = le32_to_cpu(con->v1.in_hdr.front_len); in read_partial_message()
1099 if (front_len > CEPH_MSG_MAX_FRONT_LEN) in read_partial_message()
1115 con->v1.in_base_pos = -front_len - middle_len - data_len - in read_partial_message()
1131 front_len, data_len); in read_partial_message()
1140 con->v1.in_base_pos = -front_len - middle_len - in read_partial_message()
1161 ret = read_partial_message_section(con, &m->front, front_len, in read_partial_message()
1201 m, front_len, m->footer.front_crc, middle_len, in read_partial_message()
1513 unsigned int front_len = le32_to_cpu(con->v1.in_hdr.front_len); in ceph_con_v1_revoke_incoming() local
[all …]
A Dmessenger.c1353 le32_to_cpu(msg->hdr.front_len), in ceph_con_process_message()
1686 le32_to_cpu(msg->hdr.front_len), in ceph_con_send()
1896 m->hdr.front_len = cpu_to_le32(front_len); in ceph_msg_new2()
1902 if (front_len) { in ceph_msg_new2()
1903 m->front.iov_base = kvmalloc(front_len, flags); in ceph_msg_new2()
1906 front_len); in ceph_msg_new2()
1912 m->front_alloc_len = m->front.iov_len = front_len; in ceph_msg_new2()
1923 dout("ceph_msg_new %p front %d\n", m, front_len); in ceph_msg_new2()
1931 front_len); in ceph_msg_new2()
1935 front_len); in ceph_msg_new2()
[all …]
A Dmon_client.c179 monc->m_auth->hdr.front_len = cpu_to_le32(len); in __send_prepared_auth_request()
377 msg->hdr.front_len = cpu_to_le32(msg->front.iov_len); in __send_subscribe()
1490 int front_len = le32_to_cpu(hdr->front_len); in mon_alloc_msg() local
1519 m = ceph_msg_new(type, front_len, GFP_NOFS, false); in mon_alloc_msg()
1528 } else if (front_len > m->front_alloc_len) { in mon_alloc_msg()
1530 front_len, m->front_alloc_len, in mon_alloc_msg()
1534 m = ceph_msg_new(type, front_len, GFP_NOFS, false); in mon_alloc_msg()
A Dauth_x.c993 __le32 front_len; in calc_signature() member
1007 sigblock->front_len = msg->hdr.front_len; in calc_signature()
A Dosd_client.c2144 msg->hdr.front_len = cpu_to_le32(msg->front.iov_len); in encode_request_partial()
2241 msg->hdr.front_len = cpu_to_le32(msg->front.iov_len); in encode_request_finish()
2244 le64_to_cpu(msg->hdr.tid), le32_to_cpu(msg->hdr.front_len), in encode_request_finish()
4316 msg->hdr.front_len = cpu_to_le32(msg->front.iov_len); in create_backoff_message()
5356 int front_len = le32_to_cpu(hdr->front_len); in get_reply() local
5379 if (front_len > req->r_reply->front_alloc_len) { in get_reply()
5381 __func__, osd->o_osd, req->r_tid, front_len, in get_reply()
5383 m = ceph_msg_new(CEPH_MSG_OSD_OPREPLY, front_len, GFP_NOFS, in get_reply()
5414 u32 front_len = le32_to_cpu(hdr->front_len); in alloc_msg_with_page_vector() local
5417 m = ceph_msg_new2(type, front_len, 1, GFP_NOIO, false); in alloc_msg_with_page_vector()
/linux-6.3-rc2/include/linux/ceph/
A Dmsgpool.h15 int front_len; /* preallocated payload size */ member
20 int front_len, int max_data_items, int size,
23 struct ceph_msg *ceph_msgpool_get(struct ceph_msgpool *pool, int front_len,
A Dmsgr.h161 __le32 front_len; /* bytes in main payload */ member
179 __le32 front_len; /* bytes in main payload */ member
A Dmessenger.h577 struct ceph_msg *ceph_msg_new2(int type, int front_len, int max_data_items,
579 extern struct ceph_msg *ceph_msg_new(int type, int front_len, gfp_t flags,
/linux-6.3-rc2/fs/ceph/
A Dmetric.c170 msg->hdr.front_len = cpu_to_le32(msg->front.iov_len); in ceph_mdsc_send_metrics()
A Dmds_client.c1467 msg->hdr.front_len = cpu_to_le32(msg->front.iov_len); in create_session_open_msg()
2155 msg->hdr.front_len = cpu_to_le32(msg->front.iov_len); in ceph_send_cap_releases()
2175 msg->hdr.front_len = cpu_to_le32(msg->front.iov_len); in ceph_send_cap_releases()
2678 msg->hdr.front_len = cpu_to_le32(msg->front.iov_len); in create_request_message()
2802 msg->hdr.front_len = cpu_to_le32(msg->front.iov_len); in __prepare_send_request()
5525 int front_len = (int) le32_to_cpu(hdr->front_len); in mds_alloc_msg() local
5531 msg = ceph_msg_new(type, front_len, GFP_NOFS, false); in mds_alloc_msg()
5534 type, front_len); in mds_alloc_msg()

Completed in 44 milliseconds