summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMohit Agrawal <moagrawal@redhat.com>2019-03-12 13:27:34 +0530
committerMOHIT AGRAWAL <moagrawa@redhat.com>2019-03-13 11:18:23 +0000
commitc7a582818db71d50548a2cfce72ce9402ef5599a (patch)
tree3a7c1aff0ea880987907e1e57b9c5a38b8581f2e
parent3bcf210a5a9b922ea78b31ef0de8eaf97ff4dcb4 (diff)
glusterfsd: Brick is getting crash at the time of startup
Problem: Brick is getting crash because graph was not activated at the time of accessing server_conf Solution: To avoid the crash check ctx->active before processing a request > Change-Id: Ib112e0eace19189e45f430abdac5511c026bed47 > fixes: bz#1687705 >(cherry picked from commit 67f48bfcc16a38052e6c9ae7c25e69b03b8ae008) > (Reviewed on upstream link https://review.gluster.org/#/c/glusterfs/+/22339/) Change-Id: I1367c564f04edbad145575b811c67522cc318851 fixes: bz#1688218 Signed-off-by: Mohit Agrawal <moagrawal@redhat.com>
-rw-r--r--xlators/protocol/server/src/server.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/xlators/protocol/server/src/server.c b/xlators/protocol/server/src/server.c
index 8b89e18d156..b4b447b34fc 100644
--- a/xlators/protocol/server/src/server.c
+++ b/xlators/protocol/server/src/server.c
@@ -436,16 +436,16 @@ server_rpc_notify(rpcsvc_t *rpc, void *xl, rpcsvc_event_t event, void *data)
uint64_t xprtrefcount = 0;
gf_boolean_t fd_exist = _gf_false;
- if (!xl || !data) {
+ this = xl;
+ trans = data;
+ conf = this->private;
+
+ if (!this || !data || !this->ctx || !this->ctx->active) {
gf_msg_callingfn("server", GF_LOG_WARNING, 0, PS_MSG_RPC_NOTIFY_ERROR,
"Calling rpc_notify without initializing");
goto out;
}
- this = xl;
- trans = data;
- conf = this->private;
-
switch (event) {
case RPCSVC_EVENT_ACCEPT: {
/* Have a structure per new connection */