diff options
Diffstat (limited to 'libglusterfs/src/call-stub.h')
| -rw-r--r-- | libglusterfs/src/call-stub.h | 28 | 
1 files changed, 28 insertions, 0 deletions
diff --git a/libglusterfs/src/call-stub.h b/libglusterfs/src/call-stub.h index 4a8db9c5f36..07bc92c3107 100644 --- a/libglusterfs/src/call-stub.h +++ b/libglusterfs/src/call-stub.h @@ -568,6 +568,20 @@ typedef struct {  			uint8_t *dir_checksum;  		} checksum_cbk; +		/* rchecksum */ +		struct { +			fop_rchecksum_t fn; +			fd_t *fd; +                        off_t offset; +			int32_t len; +		} rchecksum; +		struct { +			fop_rchecksum_cbk_t fn; +			int32_t op_ret, op_errno; +			uint32_t weak_checksum; +			uint8_t *strong_checksum; +		} rchecksum_cbk; +  		/* xattrop */  		struct {  			fop_xattrop_t fn; @@ -1155,6 +1169,20 @@ fop_checksum_cbk_stub (call_frame_t *frame,  		       uint8_t *dir_checksum);  call_stub_t * +fop_rchecksum_stub (call_frame_t *frame, +                    fop_rchecksum_t fn, +                    fd_t *fd, off_t offset, +                    int32_t len); + +call_stub_t * +fop_rchecksum_cbk_stub (call_frame_t *frame, +                        fop_rchecksum_cbk_t fn, +                        int32_t op_ret, +                        int32_t op_errno, +                        uint32_t weak_checksum, +                        uint8_t *strong_checksum); + +call_stub_t *  fop_xattrop_stub (call_frame_t *frame,  		  fop_xattrop_t fn,  		  loc_t *loc,  | 
