summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorCsaba Henk <csaba@gluster.com>2010-06-24 12:41:03 +0000
committerAnand V. Avati <avati@dev.gluster.com>2010-06-25 03:16:39 -0700
commit2c5c3cedc096c36ef9d004ffa0cdb5324d2915e6 (patch)
tree626f99a789cf03ae342f0ddb5ad3823ce135fdf5
parent29893bcba579f7e37a6ace018ffda1c8abe45550 (diff)
OS X: fix up rpc protocol
Signed-off-by: Csaba Henk <csaba@gluster.com> Signed-off-by: Anand V. Avati <avati@dev.gluster.com> 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
-rw-r--r--xlators/protocol/lib/src/glusterfs-xdr.h1
-rw-r--r--xlators/protocol/rpc/rpc-lib/src/rpc-transport.h1
-rw-r--r--xlators/protocol/rpc/rpc-lib/src/rpcsvc.h2
-rw-r--r--xlators/protocol/rpc/rpc-lib/src/xdr-common.h6
-rw-r--r--xlators/protocol/rpc/rpc-lib/src/xdr-rpc.c4
5 files changed, 12 insertions, 2 deletions
diff --git a/xlators/protocol/lib/src/glusterfs-xdr.h b/xlators/protocol/lib/src/glusterfs-xdr.h
index f99335c4..72f131c7 100644
--- a/xlators/protocol/lib/src/glusterfs-xdr.h
+++ b/xlators/protocol/lib/src/glusterfs-xdr.h
@@ -7,6 +7,7 @@
#define _GLUSTERFS3_H_RPCGEN
#include <rpc/rpc.h>
+#include "xdr-common.h"
#include "iatt.h"
#ifdef __cplusplus
diff --git a/xlators/protocol/rpc/rpc-lib/src/rpc-transport.h b/xlators/protocol/rpc/rpc-lib/src/rpc-transport.h
index 06ac34a4..b3c7985e 100644
--- a/xlators/protocol/rpc/rpc-lib/src/rpc-transport.h
+++ b/xlators/protocol/rpc/rpc-lib/src/rpc-transport.h
@@ -26,6 +26,7 @@
#endif
#include <inttypes.h>
+#include <rpc/rpc.h>
#include <rpc/auth.h>
#include <rpc/rpc_msg.h>
diff --git a/xlators/protocol/rpc/rpc-lib/src/rpcsvc.h b/xlators/protocol/rpc/rpc-lib/src/rpcsvc.h
index c3b003f6..10dc3269 100644
--- a/xlators/protocol/rpc/rpc-lib/src/rpcsvc.h
+++ b/xlators/protocol/rpc/rpc-lib/src/rpcsvc.h
@@ -38,8 +38,6 @@
#include <pthread.h>
#include <sys/uio.h>
-
-#include <sys/uio.h>
#include <inttypes.h>
#include "compat.h"
diff --git a/xlators/protocol/rpc/rpc-lib/src/xdr-common.h b/xlators/protocol/rpc/rpc-lib/src/xdr-common.h
index 775beb28..0c9ffb2f 100644
--- a/xlators/protocol/rpc/rpc-lib/src/xdr-common.h
+++ b/xlators/protocol/rpc/rpc-lib/src/xdr-common.h
@@ -27,6 +27,12 @@
#include <rpc/rpc.h>
+#if GF_DARWIN_HOST_OS
+#define xdr_u_quad_t xdr_u_int64_t
+#define xdr_quad_t xdr_int64_t
+#define xdr_uint32_t xdr_u_int32_t
+#endif
+
struct auth_glusterfs_parms {
u_quad_t lk_owner;
u_int pid;
diff --git a/xlators/protocol/rpc/rpc-lib/src/xdr-rpc.c b/xlators/protocol/rpc/rpc-lib/src/xdr-rpc.c
index 1bcd9bba..088bddbf 100644
--- a/xlators/protocol/rpc/rpc-lib/src/xdr-rpc.c
+++ b/xlators/protocol/rpc/rpc-lib/src/xdr-rpc.c
@@ -178,7 +178,11 @@ xdr_to_auth_unix_cred (char *msgbuf, int msglen, struct authunix_parms *au,
return -1;
au->aup_machname = machname;
+#ifdef GF_DARWIN_HOST_OS
+ au->aup_gids = (int *)gids;
+#else
au->aup_gids = gids;
+#endif
xdrmem_create (&xdr, msgbuf, msglen, XDR_DECODE);