Searched refs:rds_message (Results 1 – 14 of 14) sorted by relevance
| /Linux-v5.4/net/rds/ |
| D | message.c | 51 void rds_message_addref(struct rds_message *rm) in rds_message_addref() 130 static void rds_message_purge(struct rds_message *rm) in rds_message_purge() 173 void rds_message_put(struct rds_message *rm) in rds_message_put() 284 struct rds_message *rds_message_alloc(unsigned int extra_len, gfp_t gfp) in rds_message_alloc() 286 struct rds_message *rm; in rds_message_alloc() 288 if (extra_len > KMALLOC_MAX_SIZE - sizeof(struct rds_message)) in rds_message_alloc() 291 rm = kzalloc(sizeof(struct rds_message) + extra_len, gfp); in rds_message_alloc() 311 struct scatterlist *rds_message_alloc_sgs(struct rds_message *rm, int nents, in rds_message_alloc_sgs() 340 struct rds_message *rds_message_map_pages(unsigned long *page_addrs, unsigned int total_len) in rds_message_map_pages() 342 struct rds_message *rm; in rds_message_map_pages() [all …]
|
| D | rds.h | 105 struct rds_message *cp_xmit_rm; 409 struct rds_message { struct 557 int (*xmit)(struct rds_connection *conn, struct rds_message *rm, 763 struct rds_message *rds_cong_update_alloc(struct rds_connection *conn); 851 struct rds_message *rds_message_alloc(unsigned int nents, gfp_t gfp); 852 struct scatterlist *rds_message_alloc_sgs(struct rds_message *rm, int nents, 854 int rds_message_copy_from_user(struct rds_message *rm, struct iov_iter *from, 856 struct rds_message *rds_message_map_pages(unsigned long *page_addrs, unsigned int total_len); 866 void rds_message_addref(struct rds_message *rm); 867 void rds_message_put(struct rds_message *rm); [all …]
|
| D | send.c | 67 struct rds_message *rm, *tmp; in rds_send_path_reset() 140 struct rds_message *rm; in rds_send_xmit() 256 struct rds_message, in rds_send_xmit() 473 static void rds_send_sndbuf_remove(struct rds_sock *rs, struct rds_message *rm) in rds_send_sndbuf_remove() 486 static inline int rds_send_is_acked(struct rds_message *rm, u64 ack, in rds_send_is_acked() 500 void rds_rdma_send_complete(struct rds_message *rm, int status) in rds_rdma_send_complete() 536 void rds_atomic_send_complete(struct rds_message *rm, int status) in rds_atomic_send_complete() 575 __rds_send_complete(struct rds_sock *rs, struct rds_message *rm, int status) in __rds_send_complete() 609 struct rds_message *rm; in rds_send_remove_from_sock() 614 rm = list_entry(messages->next, struct rds_message, in rds_send_remove_from_sock() [all …]
|
| D | ib_send.c | 47 static void rds_ib_send_complete(struct rds_message *rm, in rds_ib_send_complete() 49 void (*complete)(struct rds_message *rm, int status)) in rds_ib_send_complete() 113 rds_ib_send_complete(container_of(op, struct rds_message, rdma), in rds_ib_send_unmap_rdma() 133 rds_ib_send_complete(container_of(op, struct rds_message, atomic), in rds_ib_send_unmap_atomic() 149 static struct rds_message *rds_ib_send_unmap_op(struct rds_ib_connection *ic, in rds_ib_send_unmap_op() 153 struct rds_message *rm = NULL; in rds_ib_send_unmap_op() 159 rm = container_of(send->s_op, struct rds_message, data); in rds_ib_send_unmap_op() 166 rm = container_of(send->s_op, struct rds_message, rdma); in rds_ib_send_unmap_op() 173 rm = container_of(send->s_op, struct rds_message, atomic); in rds_ib_send_unmap_op() 243 struct rds_message *rm = NULL; in rds_ib_send_cqe_handler() [all …]
|
| D | loop.c | 75 static int rds_loop_xmit(struct rds_connection *conn, struct rds_message *rm, in rds_loop_xmit() 113 struct rds_message *rm = container_of(inc, struct rds_message, m_inc); in rds_loop_inc_free()
|
| D | tcp_send.c | 75 int rds_tcp_xmit(struct rds_connection *conn, struct rds_message *rm, in rds_tcp_xmit() 176 static int rds_tcp_is_acked(struct rds_message *rm, uint64_t ack) in rds_tcp_is_acked()
|
| D | cong.c | 418 struct rds_message *rds_cong_update_alloc(struct rds_connection *conn) in rds_cong_update_alloc() 421 struct rds_message *rm; in rds_cong_update_alloc()
|
| D | rdma.c | 572 int rds_cmsg_rdma_args(struct rds_sock *rs, struct rds_message *rm, in rds_cmsg_rdma_args() 728 int rds_cmsg_rdma_dest(struct rds_sock *rs, struct rds_message *rm, in rds_cmsg_rdma_dest() 770 int rds_cmsg_rdma_map(struct rds_sock *rs, struct rds_message *rm, in rds_cmsg_rdma_map() 784 int rds_cmsg_atomic(struct rds_sock *rs, struct rds_message *rm, in rds_cmsg_atomic()
|
| D | tcp.h | 89 int rds_tcp_xmit(struct rds_connection *conn, struct rds_message *rm,
|
| D | connection.c | 431 struct rds_message *rm, *rtmp; in rds_conn_path_destroy() 530 struct rds_message *rm; in rds_conn_message_info_cmn()
|
| D | ib.h | 431 int rds_ib_xmit(struct rds_connection *conn, struct rds_message *rm,
|
| D | ib_cm.c | 1088 struct rds_message *rm; in rds_ib_conn_path_shutdown() 1090 rm = container_of(ic->i_data_op, struct rds_message, data); in rds_ib_conn_path_shutdown()
|
| D | recv.c | 136 struct rds_message *rm, *tmp; in rds_conn_peer_gen_update()
|
| /Linux-v5.4/Documentation/networking/ |
| D | rds.txt | 279 struct rds_message 320 struct rds_message built from incoming data 323 rds_message placed on send queue 335 maps the rds_message's sg list
|