write-behind/bit-rot: fix identifier

Rename the identifiers, bit-rot-server to bit-rot in bit-rot.c & write-ahead to
write-behind in write-behind.c to ensure GD2 understands the options

Change-Id: Id271ae97de2e54f4e30174482c4e1fb6afc728d3
Fixes: #164
Signed-off-by: rishubhjain <rishubhjain47@gmail.com>
This commit is contained in:
rishubhjain 2018-12-10 13:04:13 -05:00 committed by Atin Mukherjee
parent f50251daee
commit 08adbfb5d2
2 changed files with 2 additions and 2 deletions

View File

@ -2223,6 +2223,6 @@ xlator_api_t xlator_api = {
.fops = &fops,
.cbks = &cbks,
.options = options,
.identifier = "bit-rot server",
.identifier = "bit-rot",
.category = GF_MAINTAINED,
};

View File

@ -3255,6 +3255,6 @@ xlator_api_t xlator_api = {
.fops = &fops,
.cbks = &cbks,
.options = options,
.identifier = "write-ahead",
.identifier = "write-behind",
.category = GF_MAINTAINED,
};