From f0f3b040dfa062021d3a193e5a19c380eb5e908d Mon Sep 17 00:00:00 2001 From: Amar Tumballi Date: Mon, 29 Aug 2011 17:53:24 +0530 Subject: modify to the way we used XDR definitions files (.x files) Earlier: step 1: copy the existing .x files to /tmp step 2: generate '.[ch]' files using 'rpcgen .x' step 3: check diff with the to the existing files, add only your part of changes back to the original file. (ignore other changes). step 4: there is another file to write wrapper functions to convert structures to/from XDR buffers, update it with your new structure. step 5: use these wrapper functions in the newly written procedures. step 6: commit :-| Now: step 1: update (mostly adding only) the .x file step 2: run '/extras/generate-xdr-files.sh .x' command step 3: implement rpc procedure to handle the request/response. step 4: commit :-) Change-Id: I219f9159fc980438c86e847c6b030be96e595ea2 BUG: 3488 Reviewed-on: http://review.gluster.com/341 Tested-by: Gluster Build System Reviewed-by: Anand Avati --- rpc/xdr/src/Makefile.am | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'rpc/xdr/src/Makefile.am') diff --git a/rpc/xdr/src/Makefile.am b/rpc/xdr/src/Makefile.am index d23970090..cabab3db6 100644 --- a/rpc/xdr/src/Makefile.am +++ b/rpc/xdr/src/Makefile.am @@ -10,15 +10,15 @@ libgfxdr_la_LIBADD = $(top_builddir)/libglusterfs/src/libglusterfs.la \ $(top_builddir)/rpc/rpc-lib/src/libgfrpc.la libgfxdr_la_SOURCES = xdr-generic.c \ - glusterfs3-xdr.c glusterfs3.c \ - cli1-xdr.c cli1.c \ - glusterd1-xdr.c glusterd1.c \ - portmap-xdr.c portmap.c \ + glusterfs3-xdr.c \ + cli1-xdr.c \ + glusterd1-xdr.c \ + portmap-xdr.c \ xdr-nfs3.c msg-nfs3.c noinst_HEADERS = xdr-generic.h \ glusterfs3-xdr.h glusterfs3.h \ - cli1-xdr.h cli1.h \ - glusterd1-xdr.h glusterd1.h \ - portmap-xdr.h portmap.h \ + cli1-xdr.h \ + glusterd1-xdr.h \ + portmap-xdr.h \ xdr-nfs3.h msg-nfs3.h -- cgit