summaryrefslogtreecommitdiffstats
path: root/xlators/features/barrier
diff options
context:
space:
mode:
authorAtin Mukherjee <amukherj@redhat.com>2017-08-31 15:03:50 +0530
committerAtin Mukherjee <amukherj@redhat.com>2017-11-17 07:07:47 +0000
commit0161b393c61608cb4ecdf20daff3a1490b3e8ff9 (patch)
tree83ce49cafe099390f53e8a0c8264bba8000aad7e /xlators/features/barrier
parent2bfe2cec0c0832b703f0da472ad6584f9d8898e2 (diff)
barrier: redefine the options
With https://review.gluster.org/18059 introducing new fields into the volume_option structure, this change takes care of the changes required at the barrier side. Updates #302 Change-Id: If991df10b130c762a44883668a00e49943a508f8 Signed-off-by: Atin Mukherjee <amukherj@redhat.com>
Diffstat (limited to 'xlators/features/barrier')
-rw-r--r--xlators/features/barrier/src/barrier.c8
1 files changed, 6 insertions, 2 deletions
diff --git a/xlators/features/barrier/src/barrier.c b/xlators/features/barrier/src/barrier.c
index ce3a255d93e..4401e3459a9 100644
--- a/xlators/features/barrier/src/barrier.c
+++ b/xlators/features/barrier/src/barrier.c
@@ -780,8 +780,10 @@ struct xlator_cbks cbks;
struct volume_options options[] = {
{ .key = {"barrier"},
.type = GF_OPTION_TYPE_BOOL,
- .default_value = "off",
- .description = "When \"on\", blocks acknowledgements to application "
+ .default_value = "disable",
+ .op_version = {GD_OP_VERSION_3_6_0},
+ .flags = OPT_FLAG_SETTABLE,
+ .description = "When \"enabled\", blocks acknowledgements to application "
"for file operations such as rmdir, rename, unlink, "
"removexattr, fremovexattr, truncate, ftruncate, "
"write (with O_SYNC), fsync. It is turned \"off\" by "
@@ -790,6 +792,8 @@ struct volume_options options[] = {
{ .key = {"barrier-timeout"},
.type = GF_OPTION_TYPE_TIME,
.default_value = BARRIER_TIMEOUT,
+ .op_version = {GD_OP_VERSION_3_6_0},
+ .flags = OPT_FLAG_SETTABLE,
.description = "After 'timeout' seconds since the time 'barrier' "
"option was set to \"on\", acknowledgements to file "
"operations are no longer blocked and previously "