summaryrefslogtreecommitdiffstats
path: root/rpc
diff options
context:
space:
mode:
Diffstat (limited to 'rpc')
-rw-r--r--rpc/rpc-lib/src/protocol-common.h2
-rw-r--r--rpc/xdr/src/glusterfs-fops.x2
-rw-r--r--rpc/xdr/src/glusterfs4-xdr.x27
3 files changed, 31 insertions, 0 deletions
diff --git a/rpc/rpc-lib/src/protocol-common.h b/rpc/rpc-lib/src/protocol-common.h
index ccb3c5002b4..ebfb651c96e 100644
--- a/rpc/rpc-lib/src/protocol-common.h
+++ b/rpc/rpc-lib/src/protocol-common.h
@@ -65,6 +65,8 @@ enum gf_fop_procnum {
GFS3_OP_LEASE,
GFS3_OP_GETACTIVELK,
GFS3_OP_SETACTIVELK,
+ GFS3_OP_ICREATE,
+ GFS3_OP_NAMELINK,
GFS3_OP_MAXVALUE,
};
diff --git a/rpc/xdr/src/glusterfs-fops.x b/rpc/xdr/src/glusterfs-fops.x
index b14a6e6f2e1..5b5c5904678 100644
--- a/rpc/xdr/src/glusterfs-fops.x
+++ b/rpc/xdr/src/glusterfs-fops.x
@@ -75,6 +75,8 @@ enum glusterfs_fop_t {
GF_FOP_GETACTIVELK,
GF_FOP_SETACTIVELK,
GF_FOP_PUT,
+ GF_FOP_ICREATE,
+ GF_FOP_NAMELINK,
GF_FOP_MAXVALUE
};
diff --git a/rpc/xdr/src/glusterfs4-xdr.x b/rpc/xdr/src/glusterfs4-xdr.x
index 6d0c500096b..a4fc9b22850 100644
--- a/rpc/xdr/src/glusterfs4-xdr.x
+++ b/rpc/xdr/src/glusterfs4-xdr.x
@@ -31,3 +31,30 @@
unsigned int len;
opaque xdata<>; /* Extra data */
} ;
+
+struct gfs4_icreate_rsp {
+ int op_ret;
+ int op_errno;
+ gf_iatt stat;
+ opaque xdata<>;
+};
+
+struct gfs4_icreate_req {
+ opaque gfid[16];
+ unsigned int mode;
+ opaque xdata<>;
+};
+
+struct gfs4_namelink_rsp {
+ int op_ret;
+ int op_errno;
+ gf_iatt preparent;
+ gf_iatt postparent;
+ opaque xdata<>;
+};
+
+struct gfs4_namelink_req {
+ opaque pargfid[16];
+ string bname<>;
+ opaque xdata<>;
+};