diff options
author | Amar Tumballi <amarts@redhat.com> | 2017-10-10 17:13:25 +0530 |
---|---|---|
committer | Amar Tumballi <amarts@redhat.com> | 2017-11-07 07:53:55 +0000 |
commit | e4240431b033d1f0c351d3d874c248126ca6cadc (patch) | |
tree | d83c1dcb42fb8c6f7bd903422e8c351394124d52 /rpc/xdr/src/glusterfs4-xdr.x | |
parent | 56aef68530b3bab27730aa62e4fbc513d3dba65f (diff) |
rpc: bring a new protocol version
* xdr: add gfid to on wire format for fsetattr/rchecksum
* as it is change in on wire XDR format, needed backward
compatible RPC programs.
Signed-off-by: Amar Tumballi <amarts@redhat.com>
BUG: 827334
Change-Id: Id0a2da3632516dc1a5560dde2b151b2e5f0be8e5
Diffstat (limited to 'rpc/xdr/src/glusterfs4-xdr.x')
-rw-r--r-- | rpc/xdr/src/glusterfs4-xdr.x | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/rpc/xdr/src/glusterfs4-xdr.x b/rpc/xdr/src/glusterfs4-xdr.x new file mode 100644 index 00000000000..6d0c500096b --- /dev/null +++ b/rpc/xdr/src/glusterfs4-xdr.x @@ -0,0 +1,33 @@ +/* + * Copyright (c) 2012 Red Hat, Inc. <http://www.redhat.com> + * This file is part of GlusterFS. + * + * This file is licensed to you under your choice of the GNU Lesser + * General Public License, version 3 or any later version (LGPLv3 or + * later), or the GNU General Public License, version 2 (GPLv2), in all + * cases as published by the Free Software Foundation. + */ + +#ifdef RPC_XDR +%#include "rpc-pragmas.h" +#endif +%#include "compat.h" +%#include "rpc-common-xdr.h" +%#include "glusterfs-fops.h" +%#include "glusterfs3-xdr.h" + + struct gfs3_fsetattr_req_v2 { + opaque gfid[16]; + hyper fd; + struct gf_iatt stbuf; + int valid; + opaque xdata<>; /* Extra data */ +} ; + + struct gfs3_rchecksum_req_v2 { + opaque gfid[16]; + hyper fd; + unsigned hyper offset; + unsigned int len; + opaque xdata<>; /* Extra data */ +} ; |