diff options
author | Ravishankar N <ravishankar@redhat.com> | 2018-02-11 06:54:35 +0530 |
---|---|---|
committer | Amar Tumballi <amarts@redhat.com> | 2018-02-19 14:57:12 +0000 |
commit | 6daa6535692b2c68b493636a9bbfdcbc475b3d80 (patch) | |
tree | 7df7839a468dd544103b3e0bc752da718db04fa8 /xlators/mgmt | |
parent | e80c10d5e6fb97e132ff7f1c2846629fb5ad915f (diff) | |
download | glusterfs-6daa6535692b2c68b493636a9bbfdcbc475b3d80.tar.gz glusterfs-6daa6535692b2c68b493636a9bbfdcbc475b3d80.tar.xz glusterfs-6daa6535692b2c68b493636a9bbfdcbc475b3d80.zip |
posix/afr: handle backward compatibility for rchecksum fop
Added a volume option 'fips-mode-rchecksum' tied to op version 4.
If not set, rchecksum fop will use MD5 instead of SHA256.
updates: #230
Change-Id: Id8ea1303777e6450852c0bc25503cda341a6aec2
Signed-off-by: Ravishankar N <ravishankar@redhat.com>
Diffstat (limited to 'xlators/mgmt')
-rw-r--r-- | xlators/mgmt/glusterd/src/glusterd-volume-set.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/xlators/mgmt/glusterd/src/glusterd-volume-set.c b/xlators/mgmt/glusterd/src/glusterd-volume-set.c index e293acfa2c..5cfb1d0a9d 100644 --- a/xlators/mgmt/glusterd/src/glusterd-volume-set.c +++ b/xlators/mgmt/glusterd/src/glusterd-volume-set.c @@ -2898,6 +2898,13 @@ struct volopt_map_entry glusterd_volopt_map[] = { }, { .option = "health-check-timeout", .key = "storage.health-check-timeout", + .type = NO_DOC, + .voltype = "storage/posix", + .op_version = GD_OP_VERSION_4_0_0, + }, + { .option = "fips-mode-rchecksum", + .key = "storage.fips-mode-rchecksum", + .type = NO_DOC, .voltype = "storage/posix", .op_version = GD_OP_VERSION_4_0_0, }, |