mem_acct : Check return value of xlator_mem_acct_init().
some code does not check xlator_mem_acct_init() return, thus fails to capture wrong memory accounting initialization. This patch fix the same. Change-Id: I01eab19d6cef472afd850b0f964132c01523492a BUG: 1123768 Signed-off-by: Humble Chirammal <hchiramm@redhat.com> Reviewed-on: http://review.gluster.org/7728 Tested-by: Gluster Build System <jenkins@build.gluster.com> Reviewed-by: Niels de Vos <ndevos@redhat.com> Reviewed-by: Kaleb KEITHLEY <kkeithle@redhat.com>
This commit is contained in:
parent
8c4ae34f88
commit
656711d935
@ -66,11 +66,15 @@ glusterfs_ctx_defaults_init (glusterfs_ctx_t *ctx)
|
||||
call_pool_t *pool = NULL;
|
||||
int ret = -1;
|
||||
|
||||
xlator_mem_acct_init (THIS, glfs_mt_end + 1);
|
||||
|
||||
if (!ctx) {
|
||||
goto err;
|
||||
}
|
||||
}
|
||||
ret = xlator_mem_acct_init (THIS, glfs_mt_end + 1);
|
||||
if (ret != 0) {
|
||||
gf_log(THIS->name, GF_LOG_ERROR,
|
||||
"Memory accounting init failed");
|
||||
return ret;
|
||||
}
|
||||
|
||||
ctx->process_uuid = generate_glusterfs_ctx_id ();
|
||||
if (!ctx->process_uuid) {
|
||||
|
@ -97,8 +97,12 @@ glusterfs_ctx_defaults_init (glusterfs_ctx_t *ctx)
|
||||
cmd_args_t *cmd_args = NULL;
|
||||
struct rlimit lim = {0, };
|
||||
call_pool_t *pool = NULL;
|
||||
int ret = -1;
|
||||
|
||||
xlator_mem_acct_init (THIS, cli_mt_end);
|
||||
ret = xlator_mem_acct_init (THIS, cli_mt_end);
|
||||
if (ret != 0) {
|
||||
return ret;
|
||||
}
|
||||
|
||||
ctx->process_uuid = generate_glusterfs_ctx_id ();
|
||||
if (!ctx->process_uuid)
|
||||
|
@ -107,6 +107,8 @@
|
||||
#define glusterfsd_msg_33 (GLFS_COMP_BASE + 33), "obsolete option " \
|
||||
"'--volfile-max-fetch-attempts or fetch-attempts' " \
|
||||
"was provided"
|
||||
#define glusterfsd_msg_34 (GLFS_COMP_BASE + 34), "memory accounting init" \
|
||||
" failed."
|
||||
/*------------*/
|
||||
#define glfs_msg_end_x GLFS_MSGID_END, "Invalid: End of messages"
|
||||
|
||||
|
@ -1314,8 +1314,11 @@ glusterfs_ctx_defaults_init (glusterfs_ctx_t *ctx)
|
||||
struct rlimit lim = {0, };
|
||||
int ret = -1;
|
||||
|
||||
xlator_mem_acct_init (THIS, gfd_mt_end);
|
||||
|
||||
ret = xlator_mem_acct_init (THIS, gfd_mt_end);
|
||||
if (ret != 0) {
|
||||
gf_msg(THIS->name, GF_LOG_CRITICAL, 0, glusterfsd_msg_34);
|
||||
return ret;
|
||||
}
|
||||
ctx->process_uuid = generate_glusterfs_ctx_id ();
|
||||
if (!ctx->process_uuid) {
|
||||
gf_msg ("", GF_LOG_CRITICAL, 0, glusterfsd_msg_13);
|
||||
|
Loading…
x
Reference in New Issue
Block a user