summaryrefslogtreecommitdiffstats
path: root/xlators
diff options
context:
space:
mode:
authorAmar Tumballi <amarts@redhat.com>2018-07-27 23:50:05 +0530
committerAmar Tumballi <amarts@redhat.com>2018-09-04 09:16:36 +0000
commitc25eee58c933a1ada8f5550377081c765ef24213 (patch)
tree37fc1ceac22f713cfea1154018f051e8372b49e8 /xlators
parenta105b25915a2b9c900957c71443e0be2ef5fa9ec (diff)
xlators: add classification flag to some
Add classification to those translators which has `xlator_api_t` already defined and used. Updates: #430 Change-Id: I9d2772cb2c4ed4ab06aaa546500cf3b7d00bddac Signed-off-by: Amar Tumballi <amarts@redhat.com>
Diffstat (limited to 'xlators')
-rw-r--r--xlators/features/cloudsync/src/cloudsync.c1
-rw-r--r--xlators/performance/md-cache/src/md-cache.c1
-rw-r--r--xlators/performance/nl-cache/src/nl-cache.c1
-rw-r--r--xlators/performance/quick-read/src/quick-read.c1
-rw-r--r--xlators/protocol/server/src/server.c1
5 files changed, 5 insertions, 0 deletions
diff --git a/xlators/features/cloudsync/src/cloudsync.c b/xlators/features/cloudsync/src/cloudsync.c
index d1f83f83da5..3e1cd6a7111 100644
--- a/xlators/features/cloudsync/src/cloudsync.c
+++ b/xlators/features/cloudsync/src/cloudsync.c
@@ -1727,4 +1727,5 @@ xlator_api_t xlator_api = {
.cbks = &cs_cbks,
.options = cs_options,
.identifier = "cloudsync",
+ .category = GF_TECH_PREVIEW,
};
diff --git a/xlators/performance/md-cache/src/md-cache.c b/xlators/performance/md-cache/src/md-cache.c
index 1f998cfcf21..1e208b3638f 100644
--- a/xlators/performance/md-cache/src/md-cache.c
+++ b/xlators/performance/md-cache/src/md-cache.c
@@ -3862,4 +3862,5 @@ xlator_api_t xlator_api = {
.cbks = &mdc_cbks,
.options = mdc_options,
.identifier = "md-cache",
+ .category = GF_MAINTAINED,
};
diff --git a/xlators/performance/nl-cache/src/nl-cache.c b/xlators/performance/nl-cache/src/nl-cache.c
index effe91e9798..661f96bec14 100644
--- a/xlators/performance/nl-cache/src/nl-cache.c
+++ b/xlators/performance/nl-cache/src/nl-cache.c
@@ -869,4 +869,5 @@ xlator_api_t xlator_api = {
.cbks = &nlc_cbks,
.options = nlc_options,
.identifier = "nl-cache",
+ .category = GF_TECH_PREVIEW,
};
diff --git a/xlators/performance/quick-read/src/quick-read.c b/xlators/performance/quick-read/src/quick-read.c
index 094609684ff..720c0c4e3b9 100644
--- a/xlators/performance/quick-read/src/quick-read.c
+++ b/xlators/performance/quick-read/src/quick-read.c
@@ -1702,4 +1702,5 @@ xlator_api_t xlator_api = {
.cbks = &qr_cbks,
.options = qr_options,
.identifier = "quick-read",
+ .category = GF_MAINTAINED,
};
diff --git a/xlators/protocol/server/src/server.c b/xlators/protocol/server/src/server.c
index c95a541cbc2..02096b65e2c 100644
--- a/xlators/protocol/server/src/server.c
+++ b/xlators/protocol/server/src/server.c
@@ -1849,4 +1849,5 @@ xlator_api_t xlator_api = {
.cbks = &server_cbks,
.options = server_options,
.identifier = "server",
+ .category = GF_MAINTAINED,
};