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/cli1-xdr.h | 18 ++++++++++++++++-- 1 file changed, 16 insertions(+), 2 deletions(-) (limited to 'rpc/xdr/src/cli1-xdr.h') diff --git a/rpc/xdr/src/cli1-xdr.h b/rpc/xdr/src/cli1-xdr.h index 4863dfa3..085b9f28 100644 --- a/rpc/xdr/src/cli1-xdr.h +++ b/rpc/xdr/src/cli1-xdr.h @@ -16,6 +16,9 @@ along with this program. If not, see . */ + +#include "xdr-common.h" + /* * Please do not edit this file. * It was generated using rpcgen. @@ -26,13 +29,22 @@ #include -#include "xdr-common.h" #ifdef __cplusplus extern "C" { #endif +enum gf_cli_defrag_type { + GF_DEFRAG_CMD_START = 1, + GF_DEFRAG_CMD_STOP = 1 + 1, + GF_DEFRAG_CMD_STATUS = 1 + 2, + GF_DEFRAG_CMD_START_LAYOUT_FIX = 1 + 3, + GF_DEFRAG_CMD_START_MIGRATE_DATA = 1 + 4, + GF_DEFRAG_CMD_START_MIGRATE_DATA_FORCE = 1 + 5, +}; +typedef enum gf_cli_defrag_type gf_cli_defrag_type; + enum gf1_cluster_type { GF_CLUSTER_TYPE_NONE = 0, GF_CLUSTER_TYPE_STRIPE = 0 + 1, @@ -552,6 +564,7 @@ typedef struct gf1_cli_status_volume_rsp gf1_cli_status_volume_rsp; /* the xdr functions */ #if defined(__STDC__) || defined(__cplusplus) +extern bool_t xdr_gf_cli_defrag_type (XDR *, gf_cli_defrag_type*); extern bool_t xdr_gf1_cluster_type (XDR *, gf1_cluster_type*); extern bool_t xdr_gf1_cli_replace_op (XDR *, gf1_cli_replace_op*); extern bool_t xdr_gf_quota_type (XDR *, gf_quota_type*); @@ -617,6 +630,7 @@ extern bool_t xdr_gf1_cli_status_volume_req (XDR *, gf1_cli_status_volume_req*) extern bool_t xdr_gf1_cli_status_volume_rsp (XDR *, gf1_cli_status_volume_rsp*); #else /* K&R C */ +extern bool_t xdr_gf_cli_defrag_type (); extern bool_t xdr_gf1_cluster_type (); extern bool_t xdr_gf1_cli_replace_op (); extern bool_t xdr_gf_quota_type (); @@ -687,4 +701,4 @@ extern bool_t xdr_gf1_cli_status_volume_rsp (); } #endif -#endif /* !_CLI1-XDR_H_RPCGEN */ +#endif /* !_CLI1_XDR_H_RPCGEN */ -- cgit