diff options
| author | Shehjar Tikoo <shehjart@gluster.com> | 2009-10-01 06:58:47 +0000 | 
|---|---|---|
| committer | Anand V. Avati <avati@dev.gluster.com> | 2009-10-01 07:22:46 -0700 | 
| commit | e11d66c8d6dea72d02f9bcdbf65c67bd5c60b5cc (patch) | |
| tree | ffa96a3f78b79db2704a5bc410174714fd66fa67 /xlators/cluster/afr/src/afr-self-heal-data.c | |
| parent | 186a86f342625a9dce53fe537f8237c6099d5c54 (diff) | |
Global: NFS-friendly prototype changes
Signed-off-by: Anand V. Avati <avati@dev.gluster.com>
BUG: 145 (NFSv3 related additions to 2.1 task list)
URL: http://bugs.gluster.com/cgi-bin/bugzilla3/show_bug.cgi?id=145
Diffstat (limited to 'xlators/cluster/afr/src/afr-self-heal-data.c')
| -rw-r--r-- | xlators/cluster/afr/src/afr-self-heal-data.c | 10 | 
1 files changed, 6 insertions, 4 deletions
diff --git a/xlators/cluster/afr/src/afr-self-heal-data.c b/xlators/cluster/afr/src/afr-self-heal-data.c index 576a15e06f2..5300f0a7528 100644 --- a/xlators/cluster/afr/src/afr-self-heal-data.c +++ b/xlators/cluster/afr/src/afr-self-heal-data.c @@ -395,7 +395,8 @@ afr_sh_data_erase_pending (call_frame_t *frame, xlator_t *this)  int  afr_sh_data_trim_cbk (call_frame_t *frame, void *cookie, xlator_t *this, -		      int32_t op_ret, int32_t op_errno, struct stat *buf) +		      int32_t op_ret, int32_t op_errno, struct stat *prebuf, +                      struct stat *postbuf)  {  	afr_private_t * priv = NULL;  	afr_local_t * local  = NULL; @@ -600,7 +601,7 @@ afr_sh_data_open (call_frame_t *frame, xlator_t *this)  			   (void *) (long) source,  			   priv->children[source],  			   priv->children[source]->fops->open, -			   &local->loc, O_RDWR|O_LARGEFILE, fd); +			   &local->loc, O_RDWR|O_LARGEFILE, fd, 0);  	call_count--;  	/* open sinks */ @@ -613,7 +614,7 @@ afr_sh_data_open (call_frame_t *frame, xlator_t *this)  				   priv->children[i],   				   priv->children[i]->fops->open,  				   &local->loc,  -				   O_RDWR|O_LARGEFILE, fd);  +				   O_RDWR|O_LARGEFILE, fd, 0);   		if (!--call_count)  			break; @@ -758,7 +759,8 @@ afr_sh_data_fix (call_frame_t *frame, xlator_t *this)  int  afr_sh_data_lookup_cbk (call_frame_t *frame, void *cookie,  			xlator_t *this, int32_t op_ret, int32_t op_errno, -			inode_t *inode, struct stat *buf, dict_t *xattr) +                        inode_t *inode, struct stat *buf, dict_t *xattr, +                        struct stat *postparent)  {  	afr_private_t   *priv  = NULL;  	afr_local_t     *local = NULL;  | 
