From 1b3571d38fc789100e2c053750eca1109494596b Mon Sep 17 00:00:00 2001 From: Jeff Darcy Date: Mon, 21 Nov 2011 12:35:34 -0500 Subject: Add command-line support (but no doc) for enforce-quorum option. Change-Id: Ia52ddb551e24c27969f7f5fa0f94c1044789731f BUG: 3823 Reviewed-on: http://review.gluster.com/743 Tested-by: Gluster Build System Reviewed-by: Vijay Bellur --- xlators/cluster/afr/src/afr-inode-write.c | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'xlators/cluster/afr/src/afr-inode-write.c') diff --git a/xlators/cluster/afr/src/afr-inode-write.c b/xlators/cluster/afr/src/afr-inode-write.c index 4135ba947d2..2fd2538cd2b 100644 --- a/xlators/cluster/afr/src/afr-inode-write.c +++ b/xlators/cluster/afr/src/afr-inode-write.c @@ -449,7 +449,7 @@ afr_writev (call_frame_t *frame, xlator_t *this, fd_t *fd, priv = this->private; - QUORUM_CHECK(writev,out); + QUORUM_CHECK(writev,out); ALLOC_OR_GOTO (local, afr_local_t, out); @@ -649,7 +649,7 @@ afr_truncate (call_frame_t *frame, xlator_t *this, priv = this->private; - QUORUM_CHECK(truncate,out); + QUORUM_CHECK(truncate,out); transaction_frame = copy_frame (frame); if (!transaction_frame) { @@ -900,7 +900,7 @@ afr_ftruncate (call_frame_t *frame, xlator_t *this, priv = this->private; - QUORUM_CHECK(ftruncate,out); + QUORUM_CHECK(ftruncate,out); ALLOC_OR_GOTO (local, afr_local_t, out); ret = AFR_LOCAL_INIT (local, priv); @@ -1099,7 +1099,7 @@ afr_setattr (call_frame_t *frame, xlator_t *this, priv = this->private; - QUORUM_CHECK(setattr,out); + QUORUM_CHECK(setattr,out); transaction_frame = copy_frame (frame); if (!transaction_frame) { @@ -1306,7 +1306,7 @@ afr_fsetattr (call_frame_t *frame, xlator_t *this, priv = this->private; - QUORUM_CHECK(fsetattr,out); + QUORUM_CHECK(fsetattr,out); transaction_frame = copy_frame (frame); if (!transaction_frame) { @@ -1497,7 +1497,7 @@ afr_setxattr (call_frame_t *frame, xlator_t *this, priv = this->private; - QUORUM_CHECK(setxattr,out); + QUORUM_CHECK(setxattr,out); ALLOC_OR_GOTO (local, afr_local_t, out); @@ -1683,7 +1683,7 @@ afr_removexattr (call_frame_t *frame, xlator_t *this, priv = this->private; - QUORUM_CHECK(removexattr,out); + QUORUM_CHECK(removexattr,out); transaction_frame = copy_frame (frame); if (!transaction_frame) { -- cgit