From 40d3ad15856c88d93d16264aa1f6bb55806aafde Mon Sep 17 00:00:00 2001 From: Raghavendra G Date: Wed, 28 Jul 2010 06:23:31 +0000 Subject: changes to rpc - use mem-pool for requests and saved_frames. - preserve the rpc_req structure till rpc invokes program's reply. This will enable us to store transport specific data that has to last till reply has come (eg., memory regions of chunk lists in case of rdma). - change signature of rpc_clnt_submit to accept rsphdr_vector and rsppayload_vector. The buffers pointed by these vectors will be from iobufs and these iobufs are added to an iobref which should also be passed as an arguement to rpc_clnt_submit. Signed-off-by: Raghavendra G Signed-off-by: Anand V. Avati BUG: 875 (Implement a new protocol to provide proper backward/forward compatibility) URL: http://bugs.gluster.com/cgi-bin/bugzilla3/show_bug.cgi?id=875 --- rpc/rpc-transport/socket/src/socket.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'rpc/rpc-transport/socket/src/socket.h') diff --git a/rpc/rpc-transport/socket/src/socket.h b/rpc/rpc-transport/socket/src/socket.h index aa31ee2a7..5078b161e 100644 --- a/rpc/rpc-transport/socket/src/socket.h +++ b/rpc/rpc-transport/socket/src/socket.h @@ -170,8 +170,8 @@ typedef struct { size_t iobuf_size; struct iovec vector[2]; int count; - struct iobuf *vectoriob; - size_t vectoriob_size; + struct iovec payload_vector; + struct iobref *iobref; rpc_request_info_t *request_info; struct iovec *pending_vector; int pending_count; -- cgit