|
|
17b94a |
From 96072cea4da1c2ba5bd87307f20b3ee2cbe6f63d Mon Sep 17 00:00:00 2001
|
|
|
17b94a |
From: Mohammed Rafi KC <rkavunga@redhat.com>
|
|
|
17b94a |
Date: Thu, 11 Jul 2019 12:46:10 +0530
|
|
|
17b94a |
Subject: [PATCH 238/255] Revert "xlator/log: Add more logging in
|
|
|
17b94a |
xlator_is_cleanup_starting"
|
|
|
17b94a |
|
|
|
17b94a |
This reverts commit 9b94397a5a735910fab2a29670146a1feb6d890e.
|
|
|
17b94a |
|
|
|
17b94a |
BUG: 1471742
|
|
|
17b94a |
Change-Id: Icc3f0c8741ed780e265202adbb009063f657c7f7
|
|
|
17b94a |
Signed-off-by: Mohammed Rafi KC <rkavunga@redhat.com>
|
|
|
17b94a |
Reviewed-on: https://code.engineering.redhat.com/gerrit/175947
|
|
|
17b94a |
Tested-by: RHGS Build Bot <nigelb@redhat.com>
|
|
|
17b94a |
Reviewed-by: Sunil Kumar Heggodu Gopala Acharya <sheggodu@redhat.com>
|
|
|
17b94a |
---
|
|
|
17b94a |
libglusterfs/src/xlator.c | 12 +++---------
|
|
|
17b94a |
1 file changed, 3 insertions(+), 9 deletions(-)
|
|
|
17b94a |
|
|
|
17b94a |
diff --git a/libglusterfs/src/xlator.c b/libglusterfs/src/xlator.c
|
|
|
17b94a |
index 71e1ed4..fbfbbe2 100644
|
|
|
17b94a |
--- a/libglusterfs/src/xlator.c
|
|
|
17b94a |
+++ b/libglusterfs/src/xlator.c
|
|
|
17b94a |
@@ -1494,18 +1494,12 @@ xlator_is_cleanup_starting(xlator_t *this)
|
|
|
17b94a |
glusterfs_graph_t *graph = NULL;
|
|
|
17b94a |
xlator_t *xl = NULL;
|
|
|
17b94a |
|
|
|
17b94a |
- if (!this) {
|
|
|
17b94a |
- gf_msg("xlator", GF_LOG_WARNING, EINVAL, LG_MSG_INVALID_ARG,
|
|
|
17b94a |
- "xlator object is null, returning false");
|
|
|
17b94a |
+ if (!this)
|
|
|
17b94a |
goto out;
|
|
|
17b94a |
- }
|
|
|
17b94a |
-
|
|
|
17b94a |
graph = this->graph;
|
|
|
17b94a |
- if (!graph) {
|
|
|
17b94a |
- gf_msg("xlator", GF_LOG_WARNING, EINVAL, LG_MSG_INVALID_ARG,
|
|
|
17b94a |
- "Graph is not set for xlator %s", this->name);
|
|
|
17b94a |
+
|
|
|
17b94a |
+ if (!graph)
|
|
|
17b94a |
goto out;
|
|
|
17b94a |
- }
|
|
|
17b94a |
|
|
|
17b94a |
xl = graph->first;
|
|
|
17b94a |
if (xl && xl->cleanup_starting)
|
|
|
17b94a |
--
|
|
|
17b94a |
1.8.3.1
|
|
|
17b94a |
|