diff options
| author | Pavan Sondur <pavan@gluster.com> | 2009-10-05 09:45:52 +0000 | 
|---|---|---|
| committer | Anand V. Avati <avati@dev.gluster.com> | 2009-10-06 07:22:16 -0700 | 
| commit | 29f81133a6cd95ebc9fac627a4fb0da73977f5a8 (patch) | |
| tree | bf5a633b59b8bce4a28023f39a35fb5d89dcf4bd /libglusterfs/src/call-stub.h | |
| parent | f3e46f2cb44e95c453bfa20c870dca6e42fc9a7a (diff) | |
Removed remaining references to chmod, chown and utimens as part of setattr changes.
Removed references to chmod, chown and utimes. Removed utimes references in AFR and writebehind.
Signed-off-by: Anand V. Avati <avati@dev.gluster.com>
BUG: 146 (Add setattr FOP)
URL: http://bugs.gluster.com/cgi-bin/bugzilla3/show_bug.cgi?id=146
Diffstat (limited to 'libglusterfs/src/call-stub.h')
| -rw-r--r-- | libglusterfs/src/call-stub.h | 124 | 
1 files changed, 0 insertions, 124 deletions
diff --git a/libglusterfs/src/call-stub.h b/libglusterfs/src/call-stub.h index ae414026fe4..649f9c64a8c 100644 --- a/libglusterfs/src/call-stub.h +++ b/libglusterfs/src/call-stub.h @@ -73,56 +73,6 @@ typedef struct {  			struct stat buf;  		} fstat_cbk; -		/* chmod */ -		struct { -			fop_chmod_t fn; -			loc_t loc; -			mode_t mode; -		} chmod; -		struct { -			fop_chmod_cbk_t fn; -			int32_t op_ret, op_errno; -			struct stat buf; -		} chmod_cbk; - -		/* fchmod */ -		struct { -			fop_fchmod_t fn; -			fd_t *fd; -			mode_t mode; -		} fchmod; -		struct { -			fop_fchmod_cbk_t fn; -			int32_t op_ret, op_errno; -			struct stat buf; -		} fchmod_cbk; - -		/* chown */ -		struct { -			fop_chown_t fn; -			loc_t loc; -			uid_t uid; -			gid_t gid; -		} chown; -		struct { -			fop_chown_cbk_t fn; -			int32_t op_ret, op_errno; -			struct stat buf; -		} chown_cbk; - -		/* fchown */ -		struct { -			fop_fchown_t fn; -			fd_t *fd; -			uid_t uid; -			gid_t gid; -		} fchown; -		struct { -			fop_fchown_cbk_t fn; -			int32_t op_ret, op_errno; -			struct stat buf; -		} fchown_cbk; -  		/* truncate */  		struct {  			fop_truncate_t fn; @@ -149,18 +99,6 @@ typedef struct {                          struct stat postbuf;  		} ftruncate_cbk; -		/* utimens */ -		struct { -			fop_utimens_t fn; -			loc_t loc; -			struct timespec tv[2]; -		} utimens; -		struct { -			fop_utimens_cbk_t fn; -			int32_t op_ret, op_errno; -			struct stat buf; -		} utimens_cbk; -  		/* access */  		struct {  			fop_access_t fn; @@ -739,55 +677,6 @@ fop_fstat_cbk_stub (call_frame_t *frame,  		    int32_t op_ret,  		    int32_t op_errno,  		    struct stat *buf); -call_stub_t * -fop_chmod_stub (call_frame_t *frame, -		fop_chmod_t fn, -		loc_t *loc, -		mode_t mode); -call_stub_t * -fop_chmod_cbk_stub (call_frame_t *frame, -		    fop_chmod_cbk_t fn, -		    int32_t op_ret, -		    int32_t op_errno, -		    struct stat *buf); -call_stub_t * -fop_fchmod_stub (call_frame_t *frame, -		 fop_fchmod_t fn, -		 fd_t *fd, -		 mode_t mode); -call_stub_t * -fop_fchmod_cbk_stub (call_frame_t *frame, -		     fop_fchmod_cbk_t fn, -		     int32_t op_ret, -		     int32_t op_errno, -		     struct stat *buf); -call_stub_t * -fop_chown_stub (call_frame_t *frame, -		fop_chown_t fn, -		loc_t *loc, -		uid_t uid, -		gid_t gid); - -call_stub_t * -fop_chown_cbk_stub (call_frame_t *frame, -		    fop_chown_cbk_t fn, -		    int32_t op_ret, -		    int32_t op_errno, -		    struct stat *buf); - -call_stub_t * -fop_fchown_stub (call_frame_t *frame, -		 fop_fchown_t fn, -		 fd_t *fd, -		 uid_t uid, -		 gid_t gid); - -call_stub_t * -fop_fchown_cbk_stub (call_frame_t *frame, -		     fop_fchown_cbk_t fn, -		     int32_t op_ret, -		     int32_t op_errno, -		     struct stat *buf);  call_stub_t *  fop_truncate_stub (call_frame_t *frame, @@ -818,19 +707,6 @@ fop_ftruncate_cbk_stub (call_frame_t *frame,                          struct stat *postbuf);  call_stub_t * -fop_utimens_stub (call_frame_t *frame, -		  fop_utimens_t fn, -		  loc_t *loc, -		  struct timespec tv[2]); - -call_stub_t * -fop_utimens_cbk_stub (call_frame_t *frame, -		      fop_utimens_cbk_t fn, -		      int32_t op_ret, -		      int32_t op_errno, -		      struct stat *buf); - -call_stub_t *  fop_access_stub (call_frame_t *frame,  		 fop_access_t fn,  		 loc_t *loc,  | 
