[Gluster-devel] glusterfsd crash when using quota without io-threads

Kinglong Mee kinglongmee at gmail.com
Thu Jun 8 11:21:16 UTC 2017


Maybe it's my fault, I found valgrind can't parse context switch(makecontext/swapcontext) by default.
So, I test with the following patch (tells valgrind new stack by VALGRIND_STACK_DEREGISTER).
With it, only some "Invalid read/write" by __gf_mem_invalidate, Does it right ??
So, there is only one problem, if without io-threads, the stack size is small for marker.
Am I right?

Ps:
valgrind-before.log is the log without the following patch, the valgrind-after.log is with the patch.

==35656== Invalid write of size 8
==35656==    at 0x4E8FFD4: __gf_mem_invalidate (mem-pool.c:278)
==35656==    by 0x4E90313: __gf_free (mem-pool.c:334)
==35656==    by 0x4EA4E5B: synctask_destroy (syncop.c:394)
==35656==    by 0x4EA4EDF: synctask_done (syncop.c:412)
==35656==    by 0x4EA58B3: synctask_switchto (syncop.c:673)
==35656==    by 0x4EA596B: syncenv_processor (syncop.c:704)
==35656==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==35656==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==35656==  Address 0x1b104931 is 2,068,017 bytes inside a block of size 2,097,224 alloc'd
==35656==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==35656==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==35656==    by 0x4EA52F5: synctask_create (syncop.c:500)
==35656==    by 0x4EA55AE: synctask_new1 (syncop.c:576)
==35656==    by 0x143AE0D7: mq_synctask1 (marker-quota.c:1078)
==35656==    by 0x143AE199: mq_synctask (marker-quota.c:1097)
==35656==    by 0x143AE6F6: _mq_create_xattrs_txn (marker-quota.c:1236)
==35656==    by 0x143AE82D: mq_create_xattrs_txn (marker-quota.c:1253)
==35656==    by 0x143B0DCB: mq_inspect_directory_xattr (marker-quota.c:2027)
==35656==    by 0x143B13A8: mq_xattr_state (marker-quota.c:2117)
==35656==    by 0x143A6E80: marker_lookup_cbk (marker.c:2961)
==35656==    by 0x141811E0: up_lookup_cbk (upcall.c:753)

----------------------- valgrind ------------------------------------------

Don't forget install valgrind-devel.

diff --git a/libglusterfs/src/syncop.c b/libglusterfs/src/syncop.c
index 00a9b57..97b1de1 100644
--- a/libglusterfs/src/syncop.c
+++ b/libglusterfs/src/syncop.c
@@ -10,6 +10,7 @@

 #include "syncop.h"
 #include "libglusterfs-messages.h"
+#include <valgrind/valgrind.h>

 int
 syncopctx_setfsuid (void *uid)
@@ -388,6 +389,8 @@ synctask_destroy (struct synctask *task)
         if (!task)
                 return;

+VALGRIND_STACK_DEREGISTER(task->valgrind_ret);
+
         GF_FREE (task->stack);

         if (task->opframe)
@@ -509,6 +512,8 @@ synctask_create (struct syncenv *env, size_t stacksize, sync

         newtask->ctx.uc_stack.ss_sp   = newtask->stack;

+       newtask->valgrind_ret = VALGRIND_STACK_REGISTER(newtask->stack, newtask-
+
         makecontext (&newtask->ctx, (void (*)(void)) synctask_wrap, 2, newtask)

         newtask->state = SYNCTASK_INIT;
diff --git a/libglusterfs/src/syncop.h b/libglusterfs/src/syncop.h
index c2387e6..247325b 100644
--- a/libglusterfs/src/syncop.h
+++ b/libglusterfs/src/syncop.h
@@ -63,6 +63,7 @@ struct synctask {
         int                 woken;
         int                 slept;
         int                 ret;
+       int                 valgrind_ret;

         uid_t               uid;
         gid_t               gid;
diff --git a/xlators/features/marker/src/marker-quota.c b/xlators/features/marke
index 902b8e5..f3d2507 100644
--- a/xlators/features/marker/src/marker-quota.c
+++ b/xlators/features/marker/src/marker-quota.c
@@ -1075,7 +1075,7 @@ mq_synctask1 (xlator_t *this, synctask_fn_t task, gf_boole
         }

         if (spawn) {
-                ret = synctask_new1 (this->ctx->env, 1024 * 16, task,
+                ret = synctask_new1 (this->ctx->env, 0, task,
                                       mq_synctask_cleanup, NULL, args);
                 if (ret) {
                         gf_log (this->name, GF_LOG_ERROR, "Failed to spawn "


On 6/8/2017 19:02, Sanoj Unnikrishnan wrote:
> I would still be worried about the Invalid read/write. IMO whether an illegal access causes a crash depends on whether the page is currently mapped.
> So, it could so happen that there is a use after free / use outside of bounds happening in the code  and  it turns out that this location gets mapped in a different (unmapped) page when IO threads is not loaded.
> 
> Could you please share the valgrind logs as well.
> 
> On Wed, Jun 7, 2017 at 8:22 PM, Kinglong Mee <kinglongmee at gmail.com <mailto:kinglongmee at gmail.com>> wrote:
> 
>     After deleting io-threads from the vols, quota operates (list/set/modify) lets glusterfsd crash.
>     I use it at CentOS 7 (CentOS Linux release 7.3.1611) with glusterfs 3.8.12.
>     It seems the stack corrupt, when testing with the following diff, glusterfsd runs correctly.
> 
>     There are two questions as,
>     1. When using valgrind, it shows there are many "Invalid read/write" when with io-threads.
>        Why glusterfsd runs correctly with io-threads? but crash without io-threads?
> 
>     2. With the following diff, valgrind also shows many "Invalid read/write" when without io-threads?
>        but no any crash.
> 
>     Any comments are welcome.
> 
>     Revert http://review.gluster.org/11499 <http://review.gluster.org/11499> seems better than the diff.
> 
>     diff --git a/xlators/features/marker/src/marker-quota.c b/xlators/features/marke
>     index 902b8e5..f3d2507 100644
>     --- a/xlators/features/marker/src/marker-quota.c
>     +++ b/xlators/features/marker/src/marker-quota.c
>     @@ -1075,7 +1075,7 @@ mq_synctask1 (xlator_t *this, synctask_fn_t task, gf_boole
>              }
> 
>              if (spawn) {
>     -                ret = synctask_new1 (this->ctx->env, 1024 * 16, task,
>     +                ret = synctask_new1 (this->ctx->env, 0, task,
>                                            mq_synctask_cleanup, NULL, args);
>                      if (ret) {
>                              gf_log (this->name, GF_LOG_ERROR, "Failed to spawn "
> 
>     -----------------------------------test steps ----------------------------------
>     1. gluster volume create gvtest node1:/test/ node2:/test/
>     2. gluster volume start gvtest
>     3. gluster volume quota enable gvtest
> 
>     4. "deletes io-threads from all vols"
>     5. reboot node1 and node2.
>     6. sh quota-set.sh
> 
>     # cat quota-set.sh
>     gluster volume quota gvtest list
>     gluster volume quota gvtest limit-usage / 10GB
>     gluster volume quota gvtest limit-usage /1234 1GB
>     gluster volume quota gvtest limit-usage /hello 1GB
>     gluster volume quota gvtest limit-usage /test 1GB
>     gluster volume quota gvtest limit-usage /xyz 1GB
>     gluster volume quota gvtest list
>     gluster volume quota gvtest remove /hello
>     gluster volume quota gvtest remove /test
>     gluster volume quota gvtest list
>     gluster volume quota gvtest limit-usage /test 1GB
>     gluster volume quota gvtest remove /xyz
>     gluster volume quota gvtest list
> 
>     -----------------------glusterfsd crash without the diff--------------------------------
> 
>     /usr/local/lib/libglusterfs.so.0(_gf_msg_backtrace_nomem+0xf5)[0x7f6e1e950af1]
>     /usr/local/lib/libglusterfs.so.0(gf_print_trace+0x21f)[0x7f6e1e956943]
>     /usr/local/sbin/glusterfsd(glusterfsd_print_trace+0x1f)[0x409c83]
>     /lib64/libc.so.6(+0x35250)[0x7f6e1d025250]
>     /lib64/libc.so.6(gsignal+0x37)[0x7f6e1d0251d7]
>     /lib64/libc.so.6(abort+0x148)[0x7f6e1d0268c8]
>     /lib64/libc.so.6(+0x74f07)[0x7f6e1d064f07]
>     /lib64/libc.so.6(+0x7baf5)[0x7f6e1d06baf5]
>     /lib64/libc.so.6(+0x7c3e6)[0x7f6e1d06c3e6]
>     /usr/local/lib/libglusterfs.so.0(__gf_free+0x311)[0x7f6e1e981327]
>     /usr/local/lib/libglusterfs.so.0(synctask_destroy+0x82)[0x7f6e1e995c20]
>     /usr/local/lib/libglusterfs.so.0(synctask_done+0x25)[0x7f6e1e995c47]
>     /usr/local/lib/libglusterfs.so.0(synctask_switchto+0xcf)[0x7f6e1e996585]
>     /usr/local/lib/libglusterfs.so.0(syncenv_processor+0x60)[0x7f6e1e99663d]
>     /lib64/libpthread.so.0(+0x7dc5)[0x7f6e1d7a2dc5]
>     /lib64/libc.so.6(clone+0x6d)[0x7f6e1d0e773d]
> 
>     or
> 
>     package-string: glusterfs 3.8.12
>     /usr/local/lib/libglusterfs.so.0(_gf_msg_backtrace_nomem+0xf5)[0x7fa15e623af1]
>     /usr/local/lib/libglusterfs.so.0(gf_print_trace+0x21f)[0x7fa15e629943]
>     /usr/local/sbin/glusterfsd(glusterfsd_print_trace+0x1f)[0x409c83]
>     /lib64/libc.so.6(+0x35250)[0x7fa15ccf8250]
>     /lib64/libc.so.6(gsignal+0x37)[0x7fa15ccf81d7]
>     /lib64/libc.so.6(abort+0x148)[0x7fa15ccf98c8]
>     /lib64/libc.so.6(+0x74f07)[0x7fa15cd37f07]
>     /lib64/libc.so.6(+0x7dd4d)[0x7fa15cd40d4d]
>     /lib64/libc.so.6(__libc_calloc+0xb4)[0x7fa15cd43a14]
>     /usr/local/lib/libglusterfs.so.0(__gf_calloc+0xa7)[0x7fa15e653a5f]
>     /usr/local/lib/libglusterfs.so.0(iobref_new+0x2b)[0x7fa15e65875a]
>     /usr/local/lib/glusterfs/3.8.12/rpc-transport/socket.so(+0xa98c)[0x7fa153a8398c]
>     /usr/local/lib/glusterfs/3.8.12/rpc-transport/socket.so(+0xacbc)[0x7fa153a83cbc]
>     /usr/local/lib/glusterfs/3.8.12/rpc-transport/socket.so(+0xad10)[0x7fa153a83d10]
>     /usr/local/lib/glusterfs/3.8.12/rpc-transport/socket.so(+0xb2a7)[0x7fa153a842a7]
>     /usr/local/lib/libglusterfs.so.0(+0x97ea9)[0x7fa15e68eea9]
>     /usr/local/lib/libglusterfs.so.0(+0x982c6)[0x7fa15e68f2c6]
>     /lib64/libpthread.so.0(+0x7dc5)[0x7fa15d475dc5]
>     /lib64/libc.so.6(clone+0x6d)[0x7fa15cdba73d]
> 
>     _______________________________________________
>     Gluster-devel mailing list
>     Gluster-devel at gluster.org <mailto:Gluster-devel at gluster.org>
>     http://lists.gluster.org/mailman/listinfo/gluster-devel <http://lists.gluster.org/mailman/listinfo/gluster-devel>
> 
> 
-------------- next part --------------
==35637== Memcheck, a memory error detector
==35637== Copyright (C) 2002-2015, and GNU GPL'd, by Julian Seward et al.
==35637== Using Valgrind-3.11.0 and LibVEX; rerun with -h for copyright info
==35637== Command: /usr/local/sbin/glusterfsd -s 192.168.21.129 --volfile-id gvtest.192.168.21.129.root-rpmbuild-gvtest -p /var/lib/glusterd/vols/gvtest/run/192.168.21.129-root-rpmbuild-gvtest.pid -S /var/run/gluster/5c43a398fb7c84b5cce4ebedd73680c5.socket --brick-name /root/rpmbuild/gvtest -l /var/log/glusterfs/bricks/root-rpmbuild-gvtest.log --xlator-option *-posix.glusterd-uuid=369656c9-ffb8-467a-a35d-2fdb33ec9048 --brick-port 49163 --xlator-option gvtest-server.listen-port=49163
==35637== Parent PID: 35540
==35637== 
==35637== 
==35637== HEAP SUMMARY:
==35637==     in use at exit: 246,367 bytes in 66 blocks
==35637==   total heap usage: 111 allocs, 45 frees, 258,312 bytes allocated
==35637== 
==35637== 77 bytes in 1 blocks are definitely lost in loss record 2 of 48
==35637==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==35637==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==35637==    by 0x4E5D949: gf_strdup (mem-pool.h:187)
==35637==    by 0x4E5DF57: log_buf_init (logging.c:317)
==35637==    by 0x4E61F6B: _gf_msg_internal (logging.c:1966)
==35637==    by 0x4E624BB: _gf_msg (logging.c:2081)
==35637==    by 0x40A77B: main (glusterfsd.c:2453)
==35637== 
==35637== 85 bytes in 1 blocks are definitely lost in loss record 3 of 48
==35637==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==35637==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==35637==    by 0x4E5D949: gf_strdup (mem-pool.h:187)
==35637==    by 0x4E5DF34: log_buf_init (logging.c:313)
==35637==    by 0x4E61F6B: _gf_msg_internal (logging.c:1966)
==35637==    by 0x4E624BB: _gf_msg (logging.c:2081)
==35637==    by 0x40A77B: main (glusterfsd.c:2453)
==35637== 
==35637== 87 bytes in 1 blocks are possibly lost in loss record 4 of 48
==35637==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==35637==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==35637==    by 0x4052E4: gf_strdup (mem-pool.h:187)
==35637==    by 0x40690C: gf_remember_backup_volfile_server (glusterfsd.c:688)
==35637==    by 0x4070DB: parse_opts (glusterfsd.c:836)
==35637==    by 0x67B4F7C: argp_parse (in /usr/lib64/libc-2.17.so)
==35637==    by 0x4092D4: parse_cmdline (glusterfsd.c:1866)
==35637==    by 0x40A5E5: main (glusterfsd.c:2417)
==35637== 
==35637== 89 bytes in 1 blocks are possibly lost in loss record 5 of 48
==35637==    at 0x4C27BE3: malloc (vg_replace_malloc.c:299)
==35637==    by 0x4E8FB45: __gf_malloc (mem-pool.c:142)
==35637==    by 0x4E8FDF0: gf_vasprintf (mem-pool.c:221)
==35637==    by 0x4E8FEDF: gf_asprintf (mem-pool.c:240)
==35637==    by 0x4E904D2: mem_pool_new_fn (mem-pool.c:385)
==35637==    by 0x40886F: glusterfs_ctx_defaults_init (glusterfsd.c:1514)
==35637==    by 0x40A5BC: main (glusterfsd.c:2413)
==35637== 
==35637== 89 bytes in 1 blocks are possibly lost in loss record 6 of 48
==35637==    at 0x4C27BE3: malloc (vg_replace_malloc.c:299)
==35637==    by 0x4E8FB45: __gf_malloc (mem-pool.c:142)
==35637==    by 0x4E8FDF0: gf_vasprintf (mem-pool.c:221)
==35637==    by 0x4E8FEDF: gf_asprintf (mem-pool.c:240)
==35637==    by 0x4E904D2: mem_pool_new_fn (mem-pool.c:385)
==35637==    by 0x4088D7: glusterfs_ctx_defaults_init (glusterfsd.c:1523)
==35637==    by 0x40A5BC: main (glusterfsd.c:2413)
==35637== 
==35637== 92 bytes in 1 blocks are possibly lost in loss record 7 of 48
==35637==    at 0x4C27BE3: malloc (vg_replace_malloc.c:299)
==35637==    by 0x4E8FB45: __gf_malloc (mem-pool.c:142)
==35637==    by 0x4E8FDF0: gf_vasprintf (mem-pool.c:221)
==35637==    by 0x4E8FEDF: gf_asprintf (mem-pool.c:240)
==35637==    by 0x4E904D2: mem_pool_new_fn (mem-pool.c:385)
==35637==    by 0x40890B: glusterfs_ctx_defaults_init (glusterfsd.c:1527)
==35637==    by 0x40A5BC: main (glusterfsd.c:2413)
==35637== 
==35637== 93 bytes in 1 blocks are possibly lost in loss record 8 of 48
==35637==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==35637==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==35637==    by 0x4E5D949: gf_strdup (mem-pool.h:187)
==35637==    by 0x4E5EA2C: gf_log_init (logging.c:685)
==35637==    by 0x408CCA: logging_init (glusterfsd.c:1628)
==35637==    by 0x40A65E: main (glusterfsd.c:2438)
==35637== 
==35637== 94 bytes in 1 blocks are possibly lost in loss record 9 of 48
==35637==    at 0x4C27BE3: malloc (vg_replace_malloc.c:299)
==35637==    by 0x4E8FB45: __gf_malloc (mem-pool.c:142)
==35637==    by 0x4E8FDF0: gf_vasprintf (mem-pool.c:221)
==35637==    by 0x4E8FEDF: gf_asprintf (mem-pool.c:240)
==35637==    by 0x4E904D2: mem_pool_new_fn (mem-pool.c:385)
==35637==    by 0x4087EF: glusterfs_ctx_defaults_init (glusterfsd.c:1508)
==35637==    by 0x40A5BC: main (glusterfsd.c:2413)
==35637== 
==35637== 94 bytes in 1 blocks are possibly lost in loss record 10 of 48
==35637==    at 0x4C27BE3: malloc (vg_replace_malloc.c:299)
==35637==    by 0x4E8FB45: __gf_malloc (mem-pool.c:142)
==35637==    by 0x4E8FDF0: gf_vasprintf (mem-pool.c:221)
==35637==    by 0x4E8FEDF: gf_asprintf (mem-pool.c:240)
==35637==    by 0x4E904D2: mem_pool_new_fn (mem-pool.c:385)
==35637==    by 0x4088A3: glusterfs_ctx_defaults_init (glusterfsd.c:1518)
==35637==    by 0x40A5BC: main (glusterfsd.c:2413)
==35637== 
==35637== 94 bytes in 1 blocks are possibly lost in loss record 11 of 48
==35637==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==35637==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==35637==    by 0x4052E4: gf_strdup (mem-pool.h:187)
==35637==    by 0x407942: parse_opts (glusterfsd.c:1095)
==35637==    by 0x67B5412: argp_parse (in /usr/lib64/libc-2.17.so)
==35637==    by 0x4092D4: parse_cmdline (glusterfsd.c:1866)
==35637==    by 0x40A5E5: main (glusterfsd.c:2417)
==35637== 
==35637== 95 bytes in 1 blocks are possibly lost in loss record 12 of 48
==35637==    at 0x4C27BE3: malloc (vg_replace_malloc.c:299)
==35637==    by 0x4E8FB45: __gf_malloc (mem-pool.c:142)
==35637==    by 0x4E8FDF0: gf_vasprintf (mem-pool.c:221)
==35637==    by 0x4E8FEDF: gf_asprintf (mem-pool.c:240)
==35637==    by 0x4E904D2: mem_pool_new_fn (mem-pool.c:385)
==35637==    by 0x4086EA: glusterfs_ctx_defaults_init (glusterfsd.c:1496)
==35637==    by 0x40A5BC: main (glusterfsd.c:2413)
==35637== 
==35637== 95 bytes in 1 blocks are possibly lost in loss record 13 of 48
==35637==    at 0x4C27BE3: malloc (vg_replace_malloc.c:299)
==35637==    by 0x4E8FB45: __gf_malloc (mem-pool.c:142)
==35637==    by 0x4E8FDF0: gf_vasprintf (mem-pool.c:221)
==35637==    by 0x4E8FEDF: gf_asprintf (mem-pool.c:240)
==35637==    by 0x4E904D2: mem_pool_new_fn (mem-pool.c:385)
==35637==    by 0x408772: glusterfs_ctx_defaults_init (glusterfsd.c:1502)
==35637==    by 0x40A5BC: main (glusterfsd.c:2413)
==35637== 
==35637== 97 bytes in 1 blocks are possibly lost in loss record 14 of 48
==35637==    at 0x4C27BE3: malloc (vg_replace_malloc.c:299)
==35637==    by 0x4E8FB45: __gf_malloc (mem-pool.c:142)
==35637==    by 0x4E8FDF0: gf_vasprintf (mem-pool.c:221)
==35637==    by 0x4E8FEDF: gf_asprintf (mem-pool.c:240)
==35637==    by 0x4E6BA5F: gf_set_log_ident (common-utils.c:3491)
==35637==    by 0x408C34: logging_init (glusterfsd.c:1609)
==35637==    by 0x40A65E: main (glusterfsd.c:2438)
==35637== 
==35637== 99 bytes in 1 blocks are definitely lost in loss record 15 of 48
==35637==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==35637==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==35637==    by 0x4E5D949: gf_strdup (mem-pool.h:187)
==35637==    by 0x4E5DF0E: log_buf_init (logging.c:309)
==35637==    by 0x4E61F6B: _gf_msg_internal (logging.c:1966)
==35637==    by 0x4E624BB: _gf_msg (logging.c:2081)
==35637==    by 0x40A77B: main (glusterfsd.c:2453)
==35637== 
==35637== 112 bytes in 1 blocks are possibly lost in loss record 16 of 48
==35637==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==35637==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==35637==    by 0x4068D5: gf_remember_backup_volfile_server (glusterfsd.c:681)
==35637==    by 0x4070DB: parse_opts (glusterfsd.c:836)
==35637==    by 0x67B4F7C: argp_parse (in /usr/lib64/libc-2.17.so)
==35637==    by 0x4092D4: parse_cmdline (glusterfsd.c:1866)
==35637==    by 0x40A5E5: main (glusterfsd.c:2417)
==35637== 
==35637== 115 bytes in 1 blocks are possibly lost in loss record 17 of 48
==35637==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==35637==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==35637==    by 0x4052E4: gf_strdup (mem-pool.h:187)
==35637==    by 0x4074EC: parse_opts (glusterfsd.c:966)
==35637==    by 0x67B5412: argp_parse (in /usr/lib64/libc-2.17.so)
==35637==    by 0x4092D4: parse_cmdline (glusterfsd.c:1866)
==35637==    by 0x40A5E5: main (glusterfsd.c:2417)
==35637== 
==35637== 118 bytes in 1 blocks are possibly lost in loss record 18 of 48
==35637==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==35637==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==35637==    by 0x4E63EFC: gf_strdup (mem-pool.h:187)
==35637==    by 0x4E6A501: generate_glusterfs_ctx_id (common-utils.c:2941)
==35637==    by 0x408478: glusterfs_ctx_defaults_init (glusterfsd.c:1465)
==35637==    by 0x40A5BC: main (glusterfsd.c:2413)
==35637== 
==35637== 123 bytes in 1 blocks are possibly lost in loss record 19 of 48
==35637==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==35637==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==35637==    by 0x4052E4: gf_strdup (mem-pool.h:187)
==35637==    by 0x407452: parse_opts (glusterfsd.c:946)
==35637==    by 0x67B4F7C: argp_parse (in /usr/lib64/libc-2.17.so)
==35637==    by 0x4092D4: parse_cmdline (glusterfsd.c:1866)
==35637==    by 0x40A5E5: main (glusterfsd.c:2417)
==35637== 
==35637== 123 bytes in 1 blocks are possibly lost in loss record 20 of 48
==35637==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==35637==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==35637==    by 0x4E5D949: gf_strdup (mem-pool.h:187)
==35637==    by 0x4E5EC50: gf_log_init (logging.c:735)
==35637==    by 0x408CCA: logging_init (glusterfsd.c:1628)
==35637==    by 0x40A65E: main (glusterfsd.c:2438)
==35637== 
==35637== 129 bytes in 1 blocks are possibly lost in loss record 21 of 48
==35637==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==35637==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==35637==    by 0x4052E4: gf_strdup (mem-pool.h:187)
==35637==    by 0x40752A: parse_opts (glusterfsd.c:974)
==35637==    by 0x67B4F7C: argp_parse (in /usr/lib64/libc-2.17.so)
==35637==    by 0x4092D4: parse_cmdline (glusterfsd.c:1866)
==35637==    by 0x40A5E5: main (glusterfsd.c:2417)
==35637== 
==35637== 144 bytes in 1 blocks are possibly lost in loss record 22 of 48
==35637==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==35637==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==35637==    by 0x4EC6949: gf_clienttable_alloc (client_t.c:97)
==35637==    by 0x408998: glusterfs_ctx_defaults_init (glusterfsd.c:1536)
==35637==    by 0x40A5BC: main (glusterfsd.c:2413)
==35637== 
==35637== 146 bytes in 1 blocks are possibly lost in loss record 23 of 48
==35637==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==35637==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==35637==    by 0x4052E4: gf_strdup (mem-pool.h:187)
==35637==    by 0x40750B: parse_opts (glusterfsd.c:970)
==35637==    by 0x67B4F7C: argp_parse (in /usr/lib64/libc-2.17.so)
==35637==    by 0x4092D4: parse_cmdline (glusterfsd.c:1866)
==35637==    by 0x40A5E5: main (glusterfsd.c:2417)
==35637== 
==35637== 152 bytes in 1 blocks are possibly lost in loss record 24 of 48
==35637==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==35637==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==35637==    by 0x4085EF: glusterfs_ctx_defaults_init (glusterfsd.c:1486)
==35637==    by 0x40A5BC: main (glusterfsd.c:2413)
==35637== 
==35637== 166 bytes in 2 blocks are possibly lost in loss record 25 of 48
==35637==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==35637==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==35637==    by 0x406B0A: gf_remember_xlator_option (glusterfsd.c:742)
==35637==    by 0x40789D: parse_opts (glusterfsd.c:1075)
==35637==    by 0x67B5412: argp_parse (in /usr/lib64/libc-2.17.so)
==35637==    by 0x4092D4: parse_cmdline (glusterfsd.c:1866)
==35637==    by 0x40A5E5: main (glusterfsd.c:2417)
==35637== 
==35637== 172 bytes in 2 blocks are possibly lost in loss record 26 of 48
==35637==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==35637==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==35637==    by 0x406BE2: gf_remember_xlator_option (glusterfsd.c:755)
==35637==    by 0x40789D: parse_opts (glusterfsd.c:1075)
==35637==    by 0x67B5412: argp_parse (in /usr/lib64/libc-2.17.so)
==35637==    by 0x4092D4: parse_cmdline (glusterfsd.c:1866)
==35637==    by 0x40A5E5: main (glusterfsd.c:2417)
==35637== 
==35637== 187 bytes in 2 blocks are possibly lost in loss record 27 of 48
==35637==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==35637==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==35637==    by 0x4052E4: gf_strdup (mem-pool.h:187)
==35637==    by 0x406C99: gf_remember_xlator_option (glusterfsd.c:767)
==35637==    by 0x40789D: parse_opts (glusterfsd.c:1075)
==35637==    by 0x67B5412: argp_parse (in /usr/lib64/libc-2.17.so)
==35637==    by 0x4092D4: parse_cmdline (glusterfsd.c:1866)
==35637==    by 0x40A5E5: main (glusterfsd.c:2417)
==35637== 
==35637== 212 bytes in 1 blocks are possibly lost in loss record 28 of 48
==35637==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==35637==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==35637==    by 0x4E908B0: mem_get (mem-pool.c:513)
==35637==    by 0x4E906CE: mem_get0 (mem-pool.c:446)
==35637==    by 0x4E5DE4D: log_buf_new (logging.c:284)
==35637==    by 0x4E61F12: _gf_msg_internal (logging.c:1961)
==35637==    by 0x4E624BB: _gf_msg (logging.c:2081)
==35637==    by 0x40A77B: main (glusterfsd.c:2453)
==35637== 
==35637== 224 bytes in 1 blocks are possibly lost in loss record 29 of 48
==35637==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==35637==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==35637==    by 0x4E90487: mem_pool_new_fn (mem-pool.c:381)
==35637==    by 0x4086EA: glusterfs_ctx_defaults_init (glusterfsd.c:1496)
==35637==    by 0x40A5BC: main (glusterfsd.c:2413)
==35637== 
==35637== 224 bytes in 1 blocks are possibly lost in loss record 30 of 48
==35637==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==35637==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==35637==    by 0x4E90487: mem_pool_new_fn (mem-pool.c:381)
==35637==    by 0x408772: glusterfs_ctx_defaults_init (glusterfsd.c:1502)
==35637==    by 0x40A5BC: main (glusterfsd.c:2413)
==35637== 
==35637== 224 bytes in 1 blocks are possibly lost in loss record 31 of 48
==35637==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==35637==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==35637==    by 0x4E90487: mem_pool_new_fn (mem-pool.c:381)
==35637==    by 0x4087EF: glusterfs_ctx_defaults_init (glusterfsd.c:1508)
==35637==    by 0x40A5BC: main (glusterfsd.c:2413)
==35637== 
==35637== 224 bytes in 1 blocks are possibly lost in loss record 32 of 48
==35637==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==35637==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==35637==    by 0x4E90487: mem_pool_new_fn (mem-pool.c:381)
==35637==    by 0x40886F: glusterfs_ctx_defaults_init (glusterfsd.c:1514)
==35637==    by 0x40A5BC: main (glusterfsd.c:2413)
==35637== 
==35637== 224 bytes in 1 blocks are possibly lost in loss record 33 of 48
==35637==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==35637==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==35637==    by 0x4E90487: mem_pool_new_fn (mem-pool.c:381)
==35637==    by 0x4088A3: glusterfs_ctx_defaults_init (glusterfsd.c:1518)
==35637==    by 0x40A5BC: main (glusterfsd.c:2413)
==35637== 
==35637== 224 bytes in 1 blocks are possibly lost in loss record 34 of 48
==35637==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==35637==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==35637==    by 0x4E90487: mem_pool_new_fn (mem-pool.c:381)
==35637==    by 0x4088D7: glusterfs_ctx_defaults_init (glusterfsd.c:1523)
==35637==    by 0x40A5BC: main (glusterfsd.c:2413)
==35637== 
==35637== 224 bytes in 1 blocks are possibly lost in loss record 35 of 48
==35637==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==35637==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==35637==    by 0x4E90487: mem_pool_new_fn (mem-pool.c:381)
==35637==    by 0x40890B: glusterfs_ctx_defaults_init (glusterfsd.c:1527)
==35637==    by 0x40A5BC: main (glusterfsd.c:2413)
==35637== 
==35637== 224 bytes in 2 blocks are possibly lost in loss record 36 of 48
==35637==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==35637==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==35637==    by 0x406A49: gf_remember_xlator_option (glusterfsd.c:729)
==35637==    by 0x40789D: parse_opts (glusterfsd.c:1075)
==35637==    by 0x67B5412: argp_parse (in /usr/lib64/libc-2.17.so)
==35637==    by 0x4092D4: parse_cmdline (glusterfsd.c:1866)
==35637==    by 0x40A5E5: main (glusterfsd.c:2417)
==35637== 
==35637== 360 bytes in 1 blocks are possibly lost in loss record 37 of 48
==35637==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==35637==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==35637==    by 0x4E93243: iobuf_create_stdalloc_arena (iobuf.c:367)
==35637==    by 0x4E935BB: iobuf_pool_new (iobuf.c:431)
==35637==    by 0x4084EF: glusterfs_ctx_defaults_init (glusterfsd.c:1473)
==35637==    by 0x40A5BC: main (glusterfsd.c:2413)
==35637== 
==35637== 541 bytes in 1 blocks are possibly lost in loss record 38 of 48
==35637==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==35637==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==35637==    by 0x4052E4: gf_strdup (mem-pool.h:187)
==35637==    by 0x40A78A: main (glusterfsd.c:2456)
==35637== 
==35637== 607 bytes in 1 blocks are definitely lost in loss record 41 of 48
==35637==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==35637==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==35637==    by 0x4E5D949: gf_strdup (mem-pool.h:187)
==35637==    by 0x4E5DED4: log_buf_init (logging.c:303)
==35637==    by 0x4E61F6B: _gf_msg_internal (logging.c:1966)
==35637==    by 0x4E624BB: _gf_msg (logging.c:2081)
==35637==    by 0x40A77B: main (glusterfsd.c:2453)
==35637== 
==35637== 1,848 bytes in 1 blocks are possibly lost in loss record 42 of 48
==35637==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==35637==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==35637==    by 0x4E93338: iobuf_pool_new (iobuf.c:396)
==35637==    by 0x4084EF: glusterfs_ctx_defaults_init (glusterfsd.c:1473)
==35637==    by 0x40A5BC: main (glusterfsd.c:2413)
==35637== 
==35637== 2,120 bytes in 1 blocks are possibly lost in loss record 43 of 48
==35637==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==35637==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==35637==    by 0x4EC687D: gf_client_clienttable_expand (client_t.c:61)
==35637==    by 0x4EC69A8: gf_clienttable_alloc (client_t.c:104)
==35637==    by 0x408998: glusterfs_ctx_defaults_init (glusterfsd.c:1536)
==35637==    by 0x40A5BC: main (glusterfsd.c:2413)
==35637== 
==35637== 2,880 bytes in 8 blocks are possibly lost in loss record 44 of 48
==35637==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==35637==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==35637==    by 0x4E929B4: __iobuf_arena_alloc (iobuf.c:174)
==35637==    by 0x4E92E47: __iobuf_pool_add_arena (iobuf.c:272)
==35637==    by 0x4E92F7E: iobuf_pool_add_arena (iobuf.c:297)
==35637==    by 0x4E93595: iobuf_pool_new (iobuf.c:425)
==35637==    by 0x4084EF: glusterfs_ctx_defaults_init (glusterfsd.c:1473)
==35637==    by 0x40A5BC: main (glusterfsd.c:2413)
==35637== 
==35637== 12,768 bytes in 1 blocks are possibly lost in loss record 47 of 48
==35637==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==35637==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==35637==    by 0x4ECA5AB: event_pool_new_epoll (event-epoll.c:243)
==35637==    by 0x4E8EAED: event_pool_new (event.c:37)
==35637==    by 0x40856A: glusterfs_ctx_defaults_init (glusterfsd.c:1479)
==35637==    by 0x40A5BC: main (glusterfsd.c:2413)
==35637== 
==35637== 201,392 bytes in 8 blocks are possibly lost in loss record 48 of 48
==35637==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==35637==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==35637==    by 0x4E92574: __iobuf_arena_init_iobufs (iobuf.c:84)
==35637==    by 0x4E92B8D: __iobuf_arena_alloc (iobuf.c:208)
==35637==    by 0x4E92E47: __iobuf_pool_add_arena (iobuf.c:272)
==35637==    by 0x4E92F7E: iobuf_pool_add_arena (iobuf.c:297)
==35637==    by 0x4E93595: iobuf_pool_new (iobuf.c:425)
==35637==    by 0x4084EF: glusterfs_ctx_defaults_init (glusterfsd.c:1473)
==35637==    by 0x40A5BC: main (glusterfsd.c:2413)
==35637== 
==35637== LEAK SUMMARY:
==35637==    definitely lost: 868 bytes in 4 blocks
==35637==    indirectly lost: 0 bytes in 0 blocks
==35637==      possibly lost: 226,619 bytes in 57 blocks
==35637==    still reachable: 18,880 bytes in 5 blocks
==35637==         suppressed: 0 bytes in 0 blocks
==35637== Reachable blocks (those to which a pointer was found) are not shown.
==35637== To see them, rerun with: --leak-check=full --show-leak-kinds=all
==35637== 
==35637== For counts of detected and suppressed errors, rerun with: -v
==35637== ERROR SUMMARY: 43 errors from 43 contexts (suppressed: 0 from 0)
==35656== Thread 4:
==35656== Invalid write of size 8
==35656==    at 0x4E8FFCC: __gf_mem_invalidate (mem-pool.c:278)
==35656==    by 0x4E90313: __gf_free (mem-pool.c:334)
==35656==    by 0x4EA4E5B: synctask_destroy (syncop.c:394)
==35656==    by 0x4EA4EDF: synctask_done (syncop.c:412)
==35656==    by 0x4EA58B3: synctask_switchto (syncop.c:673)
==35656==    by 0x4EA596B: syncenv_processor (syncop.c:704)
==35656==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==35656==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==35656==  Address 0x1b104929 is 2,068,009 bytes inside a block of size 2,097,224 alloc'd
==35656==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==35656==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==35656==    by 0x4EA52F5: synctask_create (syncop.c:500)
==35656==    by 0x4EA55AE: synctask_new1 (syncop.c:576)
==35656==    by 0x143AE0D7: mq_synctask1 (marker-quota.c:1078)
==35656==    by 0x143AE199: mq_synctask (marker-quota.c:1097)
==35656==    by 0x143AE6F6: _mq_create_xattrs_txn (marker-quota.c:1236)
==35656==    by 0x143AE82D: mq_create_xattrs_txn (marker-quota.c:1253)
==35656==    by 0x143B0DCB: mq_inspect_directory_xattr (marker-quota.c:2027)
==35656==    by 0x143B13A8: mq_xattr_state (marker-quota.c:2117)
==35656==    by 0x143A6E80: marker_lookup_cbk (marker.c:2961)
==35656==    by 0x141811E0: up_lookup_cbk (upcall.c:753)
==35656== 
==35656== Invalid write of size 8
==35656==    at 0x4E8FFD4: __gf_mem_invalidate (mem-pool.c:278)
==35656==    by 0x4E90313: __gf_free (mem-pool.c:334)
==35656==    by 0x4EA4E5B: synctask_destroy (syncop.c:394)
==35656==    by 0x4EA4EDF: synctask_done (syncop.c:412)
==35656==    by 0x4EA58B3: synctask_switchto (syncop.c:673)
==35656==    by 0x4EA596B: syncenv_processor (syncop.c:704)
==35656==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==35656==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==35656==  Address 0x1b104931 is 2,068,017 bytes inside a block of size 2,097,224 alloc'd
==35656==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==35656==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==35656==    by 0x4EA52F5: synctask_create (syncop.c:500)
==35656==    by 0x4EA55AE: synctask_new1 (syncop.c:576)
==35656==    by 0x143AE0D7: mq_synctask1 (marker-quota.c:1078)
==35656==    by 0x143AE199: mq_synctask (marker-quota.c:1097)
==35656==    by 0x143AE6F6: _mq_create_xattrs_txn (marker-quota.c:1236)
==35656==    by 0x143AE82D: mq_create_xattrs_txn (marker-quota.c:1253)
==35656==    by 0x143B0DCB: mq_inspect_directory_xattr (marker-quota.c:2027)
==35656==    by 0x143B13A8: mq_xattr_state (marker-quota.c:2117)
==35656==    by 0x143A6E80: marker_lookup_cbk (marker.c:2961)
==35656==    by 0x141811E0: up_lookup_cbk (upcall.c:753)
==35656== 
==35656== Invalid write of size 8
==35656==    at 0x4E8FFB5: __gf_mem_invalidate (mem-pool.c:278)
==35656==    by 0x4E90313: __gf_free (mem-pool.c:334)
==35656==    by 0x4EA4E5B: synctask_destroy (syncop.c:394)
==35656==    by 0x4EA4EDF: synctask_done (syncop.c:412)
==35656==    by 0x4EA58B3: synctask_switchto (syncop.c:673)
==35656==    by 0x4EA596B: syncenv_processor (syncop.c:704)
==35656==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==35656==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==35656==  Address 0x1b104939 is 2,068,025 bytes inside a block of size 2,097,224 alloc'd
==35656==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==35656==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==35656==    by 0x4EA52F5: synctask_create (syncop.c:500)
==35656==    by 0x4EA55AE: synctask_new1 (syncop.c:576)
==35656==    by 0x143AE0D7: mq_synctask1 (marker-quota.c:1078)
==35656==    by 0x143AE199: mq_synctask (marker-quota.c:1097)
==35656==    by 0x143AE6F6: _mq_create_xattrs_txn (marker-quota.c:1236)
==35656==    by 0x143AE82D: mq_create_xattrs_txn (marker-quota.c:1253)
==35656==    by 0x143B0DCB: mq_inspect_directory_xattr (marker-quota.c:2027)
==35656==    by 0x143B13A8: mq_xattr_state (marker-quota.c:2117)
==35656==    by 0x143A6E80: marker_lookup_cbk (marker.c:2961)
==35656==    by 0x141811E0: up_lookup_cbk (upcall.c:753)
==35656== 
==35656== Invalid write of size 8
==35656==    at 0x4E8FFBC: __gf_mem_invalidate (mem-pool.c:278)
==35656==    by 0x4E90313: __gf_free (mem-pool.c:334)
==35656==    by 0x4EA4E5B: synctask_destroy (syncop.c:394)
==35656==    by 0x4EA4EDF: synctask_done (syncop.c:412)
==35656==    by 0x4EA58B3: synctask_switchto (syncop.c:673)
==35656==    by 0x4EA596B: syncenv_processor (syncop.c:704)
==35656==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==35656==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==35656==  Address 0x1b104941 is 2,068,033 bytes inside a block of size 2,097,224 alloc'd
==35656==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==35656==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==35656==    by 0x4EA52F5: synctask_create (syncop.c:500)
==35656==    by 0x4EA55AE: synctask_new1 (syncop.c:576)
==35656==    by 0x143AE0D7: mq_synctask1 (marker-quota.c:1078)
==35656==    by 0x143AE199: mq_synctask (marker-quota.c:1097)
==35656==    by 0x143AE6F6: _mq_create_xattrs_txn (marker-quota.c:1236)
==35656==    by 0x143AE82D: mq_create_xattrs_txn (marker-quota.c:1253)
==35656==    by 0x143B0DCB: mq_inspect_directory_xattr (marker-quota.c:2027)
==35656==    by 0x143B13A8: mq_xattr_state (marker-quota.c:2117)
==35656==    by 0x143A6E80: marker_lookup_cbk (marker.c:2961)
==35656==    by 0x141811E0: up_lookup_cbk (upcall.c:753)
==35656== 
==35656== Invalid write of size 8
==35656==    at 0x4E8FFC4: __gf_mem_invalidate (mem-pool.c:278)
==35656==    by 0x4E90313: __gf_free (mem-pool.c:334)
==35656==    by 0x4EA4E5B: synctask_destroy (syncop.c:394)
==35656==    by 0x4EA4EDF: synctask_done (syncop.c:412)
==35656==    by 0x4EA58B3: synctask_switchto (syncop.c:673)
==35656==    by 0x4EA596B: syncenv_processor (syncop.c:704)
==35656==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==35656==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==35656==  Address 0x1b104949 is 2,068,041 bytes inside a block of size 2,097,224 alloc'd
==35656==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==35656==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==35656==    by 0x4EA52F5: synctask_create (syncop.c:500)
==35656==    by 0x4EA55AE: synctask_new1 (syncop.c:576)
==35656==    by 0x143AE0D7: mq_synctask1 (marker-quota.c:1078)
==35656==    by 0x143AE199: mq_synctask (marker-quota.c:1097)
==35656==    by 0x143AE6F6: _mq_create_xattrs_txn (marker-quota.c:1236)
==35656==    by 0x143AE82D: mq_create_xattrs_txn (marker-quota.c:1253)
==35656==    by 0x143B0DCB: mq_inspect_directory_xattr (marker-quota.c:2027)
==35656==    by 0x143B13A8: mq_xattr_state (marker-quota.c:2117)
==35656==    by 0x143A6E80: marker_lookup_cbk (marker.c:2961)
==35656==    by 0x141811E0: up_lookup_cbk (upcall.c:753)
==35656== 
==35656== 
==35656== HEAP SUMMARY:
==35656==     in use at exit: 17,341,158 bytes in 4,118 blocks
==35656==   total heap usage: 13,038 allocs, 8,920 frees, 40,337,280 bytes allocated
==35656== 
==35656== Thread 1:
==35656== 16 bytes in 1 blocks are possibly lost in loss record 11 of 704
==35656==    at 0x4C27BE3: malloc (vg_replace_malloc.c:299)
==35656==    by 0x130402E6: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==35656==    by 0x1301B6A9: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==35656==    by 0x13023A25: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==35656==    by 0x1303409C: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==35656==    by 0x1303424B: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==35656==    by 0x1309E40A: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==35656==    by 0x12E01B48: gf_open_sqlite3_conn (gfdb_sqlite3.c:192)
==35656==    by 0x12E02CAF: gf_sqlite3_init (gfdb_sqlite3.c:440)
==35656==    by 0x12DF97B5: init_db (gfdb_data_store.c:270)
==35656==    by 0x12BEA41F: init (changetimerecorder.c:2118)
==35656==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==35656== 
==35656== 16 bytes in 1 blocks are possibly lost in loss record 12 of 704
==35656==    at 0x4C27BE3: malloc (vg_replace_malloc.c:299)
==35656==    by 0x130402E6: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==35656==    by 0x1301B6A9: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==35656==    by 0x13023A25: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==35656==    by 0x1303409C: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==35656==    by 0x1303424B: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==35656==    by 0x1309E47D: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==35656==    by 0x12E01B48: gf_open_sqlite3_conn (gfdb_sqlite3.c:192)
==35656==    by 0x12E02CAF: gf_sqlite3_init (gfdb_sqlite3.c:440)
==35656==    by 0x12DF97B5: init_db (gfdb_data_store.c:270)
==35656==    by 0x12BEA41F: init (changetimerecorder.c:2118)
==35656==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==35656== 
==35656== 24 bytes in 1 blocks are possibly lost in loss record 154 of 704
==35656==    at 0x4C27BE3: malloc (vg_replace_malloc.c:299)
==35656==    by 0x130402E6: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==35656==    by 0x1301B6A9: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==35656==    by 0x13023A25: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==35656==    by 0x1303F007: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==35656==    by 0x1305A2B1: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==35656==    by 0x1309E1B6: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==35656==    by 0x12E01B48: gf_open_sqlite3_conn (gfdb_sqlite3.c:192)
==35656==    by 0x12E02CAF: gf_sqlite3_init (gfdb_sqlite3.c:440)
==35656==    by 0x12DF97B5: init_db (gfdb_data_store.c:270)
==35656==    by 0x12BEA41F: init (changetimerecorder.c:2118)
==35656==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==35656== 
==35656== 40 bytes in 1 blocks are possibly lost in loss record 160 of 704
==35656==    at 0x4C27BE3: malloc (vg_replace_malloc.c:299)
==35656==    by 0x130402E6: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==35656==    by 0x1301B6A9: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==35656==    by 0x13023A25: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==35656==    by 0x1309E3BE: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==35656==    by 0x12E01B48: gf_open_sqlite3_conn (gfdb_sqlite3.c:192)
==35656==    by 0x12E02CAF: gf_sqlite3_init (gfdb_sqlite3.c:440)
==35656==    by 0x12DF97B5: init_db (gfdb_data_store.c:270)
==35656==    by 0x12BEA41F: init (changetimerecorder.c:2118)
==35656==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==35656==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==35656==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==35656== 
==35656== 48 bytes in 1 blocks are possibly lost in loss record 164 of 704
==35656==    at 0x4C27BE3: malloc (vg_replace_malloc.c:299)
==35656==    by 0x130402E6: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==35656==    by 0x1301B6A9: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==35656==    by 0x13023A25: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==35656==    by 0x13023A4C: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==35656==    by 0x1302BFE7: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==35656==    by 0x1309E162: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==35656==    by 0x12E01B48: gf_open_sqlite3_conn (gfdb_sqlite3.c:192)
==35656==    by 0x12E02CAF: gf_sqlite3_init (gfdb_sqlite3.c:440)
==35656==    by 0x12DF97B5: init_db (gfdb_data_store.c:270)
==35656==    by 0x12BEA41F: init (changetimerecorder.c:2118)
==35656==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==35656== 
==35656== 48 bytes in 1 blocks are possibly lost in loss record 165 of 704
==35656==    at 0x4C27BE3: malloc (vg_replace_malloc.c:299)
==35656==    by 0x130402E6: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==35656==    by 0x1301B6A9: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==35656==    by 0x13023A25: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==35656==    by 0x13025BCA: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==35656==    by 0x1302D752: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==35656==    by 0x1304A432: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==35656==    by 0x1309E02E: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==35656==    by 0x12E01B48: gf_open_sqlite3_conn (gfdb_sqlite3.c:192)
==35656==    by 0x12E02CAF: gf_sqlite3_init (gfdb_sqlite3.c:440)
==35656==    by 0x12DF97B5: init_db (gfdb_data_store.c:270)
==35656==    by 0x12BEA41F: init (changetimerecorder.c:2118)
==35656== 
==35656== 48 bytes in 1 blocks are possibly lost in loss record 166 of 704
==35656==    at 0x4C27BE3: malloc (vg_replace_malloc.c:299)
==35656==    by 0x130402E6: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==35656==    by 0x1301B6A9: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==35656==    by 0x13023A25: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==35656==    by 0x13025BCA: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==35656==    by 0x1302D752: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==35656==    by 0x1304A432: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==35656==    by 0x1309E091: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==35656==    by 0x12E01B48: gf_open_sqlite3_conn (gfdb_sqlite3.c:192)
==35656==    by 0x12E02CAF: gf_sqlite3_init (gfdb_sqlite3.c:440)
==35656==    by 0x12DF97B5: init_db (gfdb_data_store.c:270)
==35656==    by 0x12BEA41F: init (changetimerecorder.c:2118)
==35656== 
==35656== 48 bytes in 1 blocks are possibly lost in loss record 167 of 704
==35656==    at 0x4C27BE3: malloc (vg_replace_malloc.c:299)
==35656==    by 0x130402E6: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==35656==    by 0x1301B6A9: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==35656==    by 0x13023A25: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==35656==    by 0x13025BCA: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==35656==    by 0x1302D752: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==35656==    by 0x1304A432: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==35656==    by 0x1309E0F1: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==35656==    by 0x12E01B48: gf_open_sqlite3_conn (gfdb_sqlite3.c:192)
==35656==    by 0x12E02CAF: gf_sqlite3_init (gfdb_sqlite3.c:440)
==35656==    by 0x12DF97B5: init_db (gfdb_data_store.c:270)
==35656==    by 0x12BEA41F: init (changetimerecorder.c:2118)
==35656== 
==35656== 48 bytes in 1 blocks are possibly lost in loss record 168 of 704
==35656==    at 0x4C27BE3: malloc (vg_replace_malloc.c:299)
==35656==    by 0x130402E6: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==35656==    by 0x1301B6A9: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==35656==    by 0x13023A25: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==35656==    by 0x13023B60: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==35656==    by 0x130496CA: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==35656==    by 0x1309E3AC: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==35656==    by 0x12E01B48: gf_open_sqlite3_conn (gfdb_sqlite3.c:192)
==35656==    by 0x12E02CAF: gf_sqlite3_init (gfdb_sqlite3.c:440)
==35656==    by 0x12DF97B5: init_db (gfdb_data_store.c:270)
==35656==    by 0x12BEA41F: init (changetimerecorder.c:2118)
==35656==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==35656== 
==35656== 48 bytes in 1 blocks are possibly lost in loss record 169 of 704
==35656==    at 0x4C27BE3: malloc (vg_replace_malloc.c:299)
==35656==    by 0x130402E6: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==35656==    by 0x1301B6A9: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==35656==    by 0x13023A25: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==35656==    by 0x13025BCA: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==35656==    by 0x13049711: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==35656==    by 0x1309E3AC: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==35656==    by 0x12E01B48: gf_open_sqlite3_conn (gfdb_sqlite3.c:192)
==35656==    by 0x12E02CAF: gf_sqlite3_init (gfdb_sqlite3.c:440)
==35656==    by 0x12DF97B5: init_db (gfdb_data_store.c:270)
==35656==    by 0x12BEA41F: init (changetimerecorder.c:2118)
==35656==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==35656== 
==35656== 48 bytes in 1 blocks are possibly lost in loss record 170 of 704
==35656==    at 0x4C27BE3: malloc (vg_replace_malloc.c:299)
==35656==    by 0x130402E6: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==35656==    by 0x1301B6A9: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==35656==    by 0x13023A25: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==35656==    by 0x1303409C: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==35656==    by 0x13034224: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==35656==    by 0x1309E40A: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==35656==    by 0x12E01B48: gf_open_sqlite3_conn (gfdb_sqlite3.c:192)
==35656==    by 0x12E02CAF: gf_sqlite3_init (gfdb_sqlite3.c:440)
==35656==    by 0x12DF97B5: init_db (gfdb_data_store.c:270)
==35656==    by 0x12BEA41F: init (changetimerecorder.c:2118)
==35656==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==35656== 
==35656== 48 bytes in 1 blocks are possibly lost in loss record 171 of 704
==35656==    at 0x4C27BE3: malloc (vg_replace_malloc.c:299)
==35656==    by 0x130402E6: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==35656==    by 0x1301B6A9: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==35656==    by 0x13023A25: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==35656==    by 0x1303409C: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==35656==    by 0x13034224: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==35656==    by 0x1309E47D: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==35656==    by 0x12E01B48: gf_open_sqlite3_conn (gfdb_sqlite3.c:192)
==35656==    by 0x12E02CAF: gf_sqlite3_init (gfdb_sqlite3.c:440)
==35656==    by 0x12DF97B5: init_db (gfdb_data_store.c:270)
==35656==    by 0x12BEA41F: init (changetimerecorder.c:2118)
==35656==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==35656== 
==35656== 48 bytes in 1 blocks are possibly lost in loss record 172 of 704
==35656==    at 0x4C27BE3: malloc (vg_replace_malloc.c:299)
==35656==    by 0x130402E6: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==35656==    by 0x1301B6A9: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==35656==    by 0x13023A25: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==35656==    by 0x13023B60: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==35656==    by 0x130496CA: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==35656==    by 0x1309E5A4: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==35656==    by 0x12E01B48: gf_open_sqlite3_conn (gfdb_sqlite3.c:192)
==35656==    by 0x12E02CAF: gf_sqlite3_init (gfdb_sqlite3.c:440)
==35656==    by 0x12DF97B5: init_db (gfdb_data_store.c:270)
==35656==    by 0x12BEA41F: init (changetimerecorder.c:2118)
==35656==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==35656== 
==35656== 48 bytes in 1 blocks are possibly lost in loss record 173 of 704
==35656==    at 0x4C27BE3: malloc (vg_replace_malloc.c:299)
==35656==    by 0x130402E6: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==35656==    by 0x1301B6A9: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==35656==    by 0x13023A25: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==35656==    by 0x13025BCA: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==35656==    by 0x13049711: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==35656==    by 0x1309E5A4: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==35656==    by 0x12E01B48: gf_open_sqlite3_conn (gfdb_sqlite3.c:192)
==35656==    by 0x12E02CAF: gf_sqlite3_init (gfdb_sqlite3.c:440)
==35656==    by 0x12DF97B5: init_db (gfdb_data_store.c:270)
==35656==    by 0x12BEA41F: init (changetimerecorder.c:2118)
==35656==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==35656== 
==35656== 48 bytes in 1 blocks are possibly lost in loss record 174 of 704
==35656==    at 0x4C27BE3: malloc (vg_replace_malloc.c:299)
==35656==    by 0x130402E6: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==35656==    by 0x1301B6A9: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==35656==    by 0x13023A25: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==35656==    by 0x13023B60: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==35656==    by 0x130496CA: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==35656==    by 0x1309E5C8: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==35656==    by 0x12E01B48: gf_open_sqlite3_conn (gfdb_sqlite3.c:192)
==35656==    by 0x12E02CAF: gf_sqlite3_init (gfdb_sqlite3.c:440)
==35656==    by 0x12DF97B5: init_db (gfdb_data_store.c:270)
==35656==    by 0x12BEA41F: init (changetimerecorder.c:2118)
==35656==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==35656== 
==35656== 48 bytes in 1 blocks are possibly lost in loss record 175 of 704
==35656==    at 0x4C27BE3: malloc (vg_replace_malloc.c:299)
==35656==    by 0x130402E6: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==35656==    by 0x1301B6A9: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==35656==    by 0x13023A25: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==35656==    by 0x13025BCA: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==35656==    by 0x13049711: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==35656==    by 0x1309E5C8: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==35656==    by 0x12E01B48: gf_open_sqlite3_conn (gfdb_sqlite3.c:192)
==35656==    by 0x12E02CAF: gf_sqlite3_init (gfdb_sqlite3.c:440)
==35656==    by 0x12DF97B5: init_db (gfdb_data_store.c:270)
==35656==    by 0x12BEA41F: init (changetimerecorder.c:2118)
==35656==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==35656== 
==35656== 48 bytes in 1 blocks are possibly lost in loss record 176 of 704
==35656==    at 0x4C27BE3: malloc (vg_replace_malloc.c:299)
==35656==    by 0x130402E6: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==35656==    by 0x1301B6A9: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==35656==    by 0x13023A25: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==35656==    by 0x13025BCA: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==35656==    by 0x13049711: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==35656==    by 0x1309E5E9: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==35656==    by 0x12E01B48: gf_open_sqlite3_conn (gfdb_sqlite3.c:192)
==35656==    by 0x12E02CAF: gf_sqlite3_init (gfdb_sqlite3.c:440)
==35656==    by 0x12DF97B5: init_db (gfdb_data_store.c:270)
==35656==    by 0x12BEA41F: init (changetimerecorder.c:2118)
==35656==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==35656== 
==35656== 48 bytes in 1 blocks are possibly lost in loss record 177 of 704
==35656==    at 0x4C27BE3: malloc (vg_replace_malloc.c:299)
==35656==    by 0x130402E6: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==35656==    by 0x1301B6A9: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==35656==    by 0x13023A25: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==35656==    by 0x13023B60: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==35656==    by 0x130496CA: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==35656==    by 0x1309E68E: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==35656==    by 0x12E01B48: gf_open_sqlite3_conn (gfdb_sqlite3.c:192)
==35656==    by 0x12E02CAF: gf_sqlite3_init (gfdb_sqlite3.c:440)
==35656==    by 0x12DF97B5: init_db (gfdb_data_store.c:270)
==35656==    by 0x12BEA41F: init (changetimerecorder.c:2118)
==35656==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==35656== 
==35656== 48 bytes in 1 blocks are possibly lost in loss record 178 of 704
==35656==    at 0x4C27BE3: malloc (vg_replace_malloc.c:299)
==35656==    by 0x130402E6: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==35656==    by 0x1301B6A9: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==35656==    by 0x13023A25: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==35656==    by 0x13025BCA: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==35656==    by 0x13049711: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==35656==    by 0x1309E68E: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==35656==    by 0x12E01B48: gf_open_sqlite3_conn (gfdb_sqlite3.c:192)
==35656==    by 0x12E02CAF: gf_sqlite3_init (gfdb_sqlite3.c:440)
==35656==    by 0x12DF97B5: init_db (gfdb_data_store.c:270)
==35656==    by 0x12BEA41F: init (changetimerecorder.c:2118)
==35656==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==35656== 
==35656== 48 bytes in 1 blocks are possibly lost in loss record 179 of 704
==35656==    at 0x4C27BE3: malloc (vg_replace_malloc.c:299)
==35656==    by 0x130402E6: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==35656==    by 0x1301B6A9: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==35656==    by 0x13023A25: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==35656==    by 0x13025BCA: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==35656==    by 0x13049711: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==35656==    by 0x1309E6B4: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==35656==    by 0x12E01B48: gf_open_sqlite3_conn (gfdb_sqlite3.c:192)
==35656==    by 0x12E02CAF: gf_sqlite3_init (gfdb_sqlite3.c:440)
==35656==    by 0x12DF97B5: init_db (gfdb_data_store.c:270)
==35656==    by 0x12BEA41F: init (changetimerecorder.c:2118)
==35656==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==35656== 
==35656== 56 bytes in 1 blocks are possibly lost in loss record 185 of 704
==35656==    at 0x4C27BE3: malloc (vg_replace_malloc.c:299)
==35656==    by 0x130402E6: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==35656==    by 0x1301B6A9: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==35656==    by 0x13023A25: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==35656==    by 0x13023B60: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==35656==    by 0x130496CA: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==35656==    by 0x1309E5E9: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==35656==    by 0x12E01B48: gf_open_sqlite3_conn (gfdb_sqlite3.c:192)
==35656==    by 0x12E02CAF: gf_sqlite3_init (gfdb_sqlite3.c:440)
==35656==    by 0x12DF97B5: init_db (gfdb_data_store.c:270)
==35656==    by 0x12BEA41F: init (changetimerecorder.c:2118)
==35656==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==35656== 
==35656== 56 bytes in 1 blocks are possibly lost in loss record 186 of 704
==35656==    at 0x4C27BE3: malloc (vg_replace_malloc.c:299)
==35656==    by 0x130402E6: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==35656==    by 0x1301B6A9: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==35656==    by 0x13023A25: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==35656==    by 0x13023B60: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==35656==    by 0x130496CA: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==35656==    by 0x1309E6B4: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==35656==    by 0x12E01B48: gf_open_sqlite3_conn (gfdb_sqlite3.c:192)
==35656==    by 0x12E02CAF: gf_sqlite3_init (gfdb_sqlite3.c:440)
==35656==    by 0x12DF97B5: init_db (gfdb_data_store.c:270)
==35656==    by 0x12BEA41F: init (changetimerecorder.c:2118)
==35656==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==35656== 
==35656== 64 bytes in 1 blocks are possibly lost in loss record 187 of 704
==35656==    at 0x4C27BE3: malloc (vg_replace_malloc.c:299)
==35656==    by 0x678DF3C: gaih_inet (in /usr/lib64/libc-2.17.so)
==35656==    by 0x6791A3C: getaddrinfo (in /usr/lib64/libc-2.17.so)
==35656==    by 0x4E64B96: gf_resolve_ip6 (common-utils.c:291)
==35656==    by 0xFEAFDCE: af_inet_client_get_remote_sockaddr (name.c:258)
==35656==    by 0xFEB0857: socket_client_get_remote_sockaddr (name.c:530)
==35656==    by 0xFEABB53: socket_connect (socket.c:2955)
==35656==    by 0x514C7A1: rpc_transport_connect (rpc-transport.c:422)
==35656==    by 0x514FA2D: rpc_clnt_reconnect (rpc-clnt.c:423)
==35656==    by 0x51512AC: rpc_clnt_start (rpc-clnt.c:1201)
==35656==    by 0x40FF84: glusterfs_mgmt_init (glusterfsd-mgmt.c:2184)
==35656==    by 0x40A412: glusterfs_volumes_init (glusterfsd.c:2365)
==35656== 
==35656== 64 bytes in 1 blocks are possibly lost in loss record 188 of 704
==35656==    at 0x4C27BE3: malloc (vg_replace_malloc.c:299)
==35656==    by 0x130402E6: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==35656==    by 0x1301B6A9: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==35656==    by 0x13023A25: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==35656==    by 0x13023B60: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==35656==    by 0x13023BDC: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==35656==    by 0x13023C0D: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==35656==    by 0x13049553: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==35656==    by 0x1304A467: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==35656==    by 0x1309E02E: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==35656==    by 0x12E01B48: gf_open_sqlite3_conn (gfdb_sqlite3.c:192)
==35656==    by 0x12E02CAF: gf_sqlite3_init (gfdb_sqlite3.c:440)
==35656== 
==35656== 74 bytes in 1 blocks are definitely lost in loss record 193 of 704
==35656==    at 0x4C27BE3: malloc (vg_replace_malloc.c:299)
==35656==    by 0x4E8FB45: __gf_malloc (mem-pool.c:142)
==35656==    by 0x4E8FDF0: gf_vasprintf (mem-pool.c:221)
==35656==    by 0x4E8FEDF: gf_asprintf (mem-pool.c:240)
==35656==    by 0x4E5558B: int_to_data (dict.c:665)
==35656==    by 0x147D54D8: index_make_xattrop_watchlist (index.c:2208)
==35656==    by 0x147D5A4E: init (index.c:2334)
==35656==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==35656==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==35656==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==35656==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==35656==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==35656== 
==35656== 74 bytes in 1 blocks are definitely lost in loss record 194 of 704
==35656==    at 0x4C27BE3: malloc (vg_replace_malloc.c:299)
==35656==    by 0x4E8FB45: __gf_malloc (mem-pool.c:142)
==35656==    by 0x4E8FDF0: gf_vasprintf (mem-pool.c:221)
==35656==    by 0x4E8FEDF: gf_asprintf (mem-pool.c:240)
==35656==    by 0x4E5558B: int_to_data (dict.c:665)
==35656==    by 0x147D54D8: index_make_xattrop_watchlist (index.c:2208)
==35656==    by 0x147D5ACA: init (index.c:2340)
==35656==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==35656==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==35656==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==35656==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==35656==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==35656== 
==35656== 76 bytes in 1 blocks are definitely lost in loss record 195 of 704
==35656==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==35656==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==35656==    by 0x5145846: gf_strdup (mem-pool.h:187)
==35656==    by 0x5149466: rpcsvc_create_listeners (rpcsvc.c:1726)
==35656==    by 0x1506250B: init (server.c:1056)
==35656==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==35656==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==35656==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==35656==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==35656==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==35656==    by 0x40ECA5: mgmt_getspec_cbk (glusterfsd-mgmt.c:1648)
==35656==    by 0x51505D2: rpc_clnt_handle_reply (rpc-clnt.c:791)
==35656== 
==35656== 78 bytes in 1 blocks are definitely lost in loss record 196 of 704
==35656==    at 0x4C27BE3: malloc (vg_replace_malloc.c:299)
==35656==    by 0x4E8FB45: __gf_malloc (mem-pool.c:142)
==35656==    by 0x4E8FDF0: gf_vasprintf (mem-pool.c:221)
==35656==    by 0x4E8FEDF: gf_asprintf (mem-pool.c:240)
==35656==    by 0x4E5572E: data_from_int32 (dict.c:703)
==35656==    by 0x4E57BB4: dict_set_int32 (dict.c:1771)
==35656==    by 0x514D1CD: rpc_transport_inet_options_build (rpc-transport.c:684)
==35656==    by 0x40FD9D: glusterfs_mgmt_init (glusterfsd-mgmt.c:2139)
==35656==    by 0x40A412: glusterfs_volumes_init (glusterfsd.c:2365)
==35656==    by 0x40A892: main (glusterfsd.c:2488)
==35656== 
==35656== 79 bytes in 1 blocks are definitely lost in loss record 197 of 704
==35656==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==35656==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==35656==    by 0x5145846: gf_strdup (mem-pool.h:187)
==35656==    by 0x5149466: rpcsvc_create_listeners (rpcsvc.c:1726)
==35656==    by 0x40F98A: glusterfs_listener_init (glusterfsd-mgmt.c:2037)
==35656==    by 0x40A3EC: glusterfs_volumes_init (glusterfsd.c:2359)
==35656==    by 0x40A892: main (glusterfsd.c:2488)
==35656== 
==35656== 80 bytes in 1 blocks are possibly lost in loss record 199 of 704
==35656==    at 0x4C27BE3: malloc (vg_replace_malloc.c:299)
==35656==    by 0x130402E6: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==35656==    by 0x1301B6A9: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==35656==    by 0x13023A25: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==35656==    by 0x13023A4C: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==35656==    by 0x13059689: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==35656==    by 0x1309E1B6: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==35656==    by 0x12E01B48: gf_open_sqlite3_conn (gfdb_sqlite3.c:192)
==35656==    by 0x12E02CAF: gf_sqlite3_init (gfdb_sqlite3.c:440)
==35656==    by 0x12DF97B5: init_db (gfdb_data_store.c:270)
==35656==    by 0x12BEA41F: init (changetimerecorder.c:2118)
==35656==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==35656== 
==35656== 82 bytes in 1 blocks are possibly lost in loss record 200 of 704
==35656==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==35656==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==35656==    by 0x514E36C: gf_strdup (mem-pool.h:187)
==35656==    by 0x5150CA3: rpc_clnt_connection_init (rpc-clnt.c:1036)
==35656==    by 0x5151169: rpc_clnt_new (rpc-clnt.c:1159)
==35656==    by 0x40FE46: glusterfs_mgmt_init (glusterfsd-mgmt.c:2157)
==35656==    by 0x40A412: glusterfs_volumes_init (glusterfsd.c:2365)
==35656==    by 0x40A892: main (glusterfsd.c:2488)
==35656== 
==35656== 82 bytes in 1 blocks are possibly lost in loss record 201 of 704
==35656==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==35656==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==35656==    by 0x514B4A5: gf_strdup (mem-pool.h:187)
==35656==    by 0x514BC2B: rpc_transport_load (rpc-transport.c:191)
==35656==    by 0x5150E30: rpc_clnt_connection_init (rpc-clnt.c:1067)
==35656==    by 0x5151169: rpc_clnt_new (rpc-clnt.c:1159)
==35656==    by 0x40FE46: glusterfs_mgmt_init (glusterfsd-mgmt.c:2157)
==35656==    by 0x40A412: glusterfs_volumes_init (glusterfsd.c:2365)
==35656==    by 0x40A892: main (glusterfsd.c:2488)
==35656== 
==35656== 82 bytes in 1 blocks are definitely lost in loss record 202 of 704
==35656==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==35656==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==35656==    by 0x129B752F: gf_strdup (mem-pool.h:187)
==35656==    by 0x129BDE68: extract_trash_directory (trash.c:82)
==35656==    by 0x129CF5F1: notify (trash.c:2215)
==35656==    by 0x4E5BEC3: xlator_notify (xlator.c:496)
==35656==    by 0x4F12DCF: default_notify (defaults.c:3114)
==35656==    by 0x1218A501: notify (posix.c:6596)
==35656==    by 0x4E5BEC3: xlator_notify (xlator.c:496)
==35656==    by 0x4F12CE8: default_notify (defaults.c:3090)
==35656==    by 0x129D019E: notify (trash.c:2307)
==35656==    by 0x4E5BEC3: xlator_notify (xlator.c:496)
==35656== 
==35656== 84 bytes in 1 blocks are possibly lost in loss record 203 of 704
==35656==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==35656==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==35656==    by 0x129B752F: gf_strdup (mem-pool.h:187)
==35656==    by 0x129D066C: init (trash.c:2396)
==35656==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==35656==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==35656==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==35656==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==35656==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==35656==    by 0x40ECA5: mgmt_getspec_cbk (glusterfsd-mgmt.c:1648)
==35656==    by 0x51505D2: rpc_clnt_handle_reply (rpc-clnt.c:791)
==35656==    by 0x5150B34: rpc_clnt_notify (rpc-clnt.c:971)
==35656== 
==35656== 84 bytes in 1 blocks are definitely lost in loss record 204 of 704
==35656==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==35656==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==35656==    by 0x4E5499E: dict_set_lk (dict.c:378)
==35656==    by 0x4E54B82: dict_set (dict.c:424)
==35656==    by 0x4E585B1: dict_set_dynstr (dict.c:2205)
==35656==    by 0x514D164: rpc_transport_inet_options_build (rpc-transport.c:677)
==35656==    by 0x40FD9D: glusterfs_mgmt_init (glusterfsd-mgmt.c:2139)
==35656==    by 0x40A412: glusterfs_volumes_init (glusterfsd.c:2365)
==35656==    by 0x40A892: main (glusterfsd.c:2488)
==35656== 
==35656== 84 bytes in 1 blocks are definitely lost in loss record 205 of 704
==35656==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==35656==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==35656==    by 0x4E5499E: dict_set_lk (dict.c:378)
==35656==    by 0x4E54B82: dict_set (dict.c:424)
==35656==    by 0x4E57BDF: dict_set_int32 (dict.c:1777)
==35656==    by 0x514D1CD: rpc_transport_inet_options_build (rpc-transport.c:684)
==35656==    by 0x40FD9D: glusterfs_mgmt_init (glusterfsd-mgmt.c:2139)
==35656==    by 0x40A412: glusterfs_volumes_init (glusterfsd.c:2365)
==35656==    by 0x40A892: main (glusterfsd.c:2488)
==35656== 
==35656== 84 bytes in 1 blocks are definitely lost in loss record 206 of 704
==35656==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==35656==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==35656==    by 0x129B752F: gf_strdup (mem-pool.h:187)
==35656==    by 0x129BEEBC: trash_notify_mkdir_cbk (trash.c:430)
==35656==    by 0x1216EB15: posix_mkdir (posix.c:1693)
==35656==    by 0x129CFA85: notify (trash.c:2246)
==35656==    by 0x4E5BEC3: xlator_notify (xlator.c:496)
==35656==    by 0x4F12DCF: default_notify (defaults.c:3114)
==35656==    by 0x1218A501: notify (posix.c:6596)
==35656==    by 0x4E5BEC3: xlator_notify (xlator.c:496)
==35656==    by 0x4F12CE8: default_notify (defaults.c:3090)
==35656==    by 0x129D019E: notify (trash.c:2307)
==35656== 
==35656== 85 bytes in 1 blocks are possibly lost in loss record 207 of 704
==35656==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==35656==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==35656==    by 0x514E36C: gf_strdup (mem-pool.h:187)
==35656==    by 0x5150CA3: rpc_clnt_connection_init (rpc-clnt.c:1036)
==35656==    by 0x5151169: rpc_clnt_new (rpc-clnt.c:1159)
==35656==    by 0x14A014DE: quota_enforcer_init (quota-enforcer-client.c:451)
==35656==    by 0x149FF51D: init (quota.c:5127)
==35656==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==35656==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==35656==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==35656==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==35656==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==35656== 
==35656== 85 bytes in 1 blocks are possibly lost in loss record 208 of 704
==35656==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==35656==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==35656==    by 0x514B4A5: gf_strdup (mem-pool.h:187)
==35656==    by 0x514BC2B: rpc_transport_load (rpc-transport.c:191)
==35656==    by 0x5150E30: rpc_clnt_connection_init (rpc-clnt.c:1067)
==35656==    by 0x5151169: rpc_clnt_new (rpc-clnt.c:1159)
==35656==    by 0x14A014DE: quota_enforcer_init (quota-enforcer-client.c:451)
==35656==    by 0x149FF51D: init (quota.c:5127)
==35656==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==35656==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==35656==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==35656==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==35656== 
==35656== 86 bytes in 1 blocks are definitely lost in loss record 209 of 704
==35656==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==35656==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==35656==    by 0x4E5499E: dict_set_lk (dict.c:378)
==35656==    by 0x4E54B82: dict_set (dict.c:424)
==35656==    by 0x4E584CB: dict_set_str (dict.c:2168)
==35656==    by 0x4EA196E: gf_add_cmdline_options (graph.c:260)
==35656==    by 0x4EA2394: glusterfs_graph_prepare (graph.c:523)
==35656==    by 0x40A2F9: glusterfs_process_volfp (glusterfsd.c:2319)
==35656==    by 0x40ECA5: mgmt_getspec_cbk (glusterfsd-mgmt.c:1648)
==35656==    by 0x51505D2: rpc_clnt_handle_reply (rpc-clnt.c:791)
==35656==    by 0x5150B34: rpc_clnt_notify (rpc-clnt.c:971)
==35656==    by 0x514CD1D: rpc_transport_notify (rpc-transport.c:541)
==35656== 
==35656== 87 bytes in 1 blocks are possibly lost in loss record 210 of 704
==35656==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==35656==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==35656==    by 0x4052E4: gf_strdup (mem-pool.h:187)
==35656==    by 0x40690C: gf_remember_backup_volfile_server (glusterfsd.c:688)
==35656==    by 0x4070DB: parse_opts (glusterfsd.c:836)
==35656==    by 0x67B4F7C: argp_parse (in /usr/lib64/libc-2.17.so)
==35656==    by 0x4092D4: parse_cmdline (glusterfsd.c:1866)
==35656==    by 0x40A5E5: main (glusterfsd.c:2417)
==35656== 
==35656== 87 bytes in 1 blocks are definitely lost in loss record 211 of 704
==35656==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==35656==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==35656==    by 0x4E5499E: dict_set_lk (dict.c:378)
==35656==    by 0x4E54B82: dict_set (dict.c:424)
==35656==    by 0x4E584CB: dict_set_str (dict.c:2168)
==35656==    by 0x514A3AC: rpcsvc_transport_unix_options_build (rpcsvc.c:2188)
==35656==    by 0x40F909: glusterfs_listener_init (glusterfsd-mgmt.c:2022)
==35656==    by 0x40A3EC: glusterfs_volumes_init (glusterfsd.c:2359)
==35656==    by 0x40A892: main (glusterfsd.c:2488)
==35656== 
==35656== 87 bytes in 1 blocks are definitely lost in loss record 212 of 704
==35656==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==35656==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==35656==    by 0x514B4A5: gf_strdup (mem-pool.h:187)
==35656==    by 0x514D136: rpc_transport_inet_options_build (rpc-transport.c:671)
==35656==    by 0x40FD9D: glusterfs_mgmt_init (glusterfsd-mgmt.c:2139)
==35656==    by 0x40A412: glusterfs_volumes_init (glusterfsd.c:2365)
==35656==    by 0x40A892: main (glusterfsd.c:2488)
==35656== 
==35656== 87 bytes in 1 blocks are definitely lost in loss record 213 of 704
==35656==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==35656==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==35656==    by 0x4E5499E: dict_set_lk (dict.c:378)
==35656==    by 0x4E54B82: dict_set (dict.c:424)
==35656==    by 0x4E584CB: dict_set_str (dict.c:2168)
==35656==    by 0x514D235: rpc_transport_inet_options_build (rpc-transport.c:691)
==35656==    by 0x40FD9D: glusterfs_mgmt_init (glusterfsd-mgmt.c:2139)
==35656==    by 0x40A412: glusterfs_volumes_init (glusterfsd.c:2365)
==35656==    by 0x40A892: main (glusterfsd.c:2488)
==35656== 
==35656== 87 bytes in 1 blocks are definitely lost in loss record 214 of 704
==35656==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==35656==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==35656==    by 0x4E5499E: dict_set_lk (dict.c:378)
==35656==    by 0x4E54B82: dict_set (dict.c:424)
==35656==    by 0x4E584CB: dict_set_str (dict.c:2168)
==35656==    by 0x14A0148C: quota_enforcer_init (quota-enforcer-client.c:442)
==35656==    by 0x149FF51D: init (quota.c:5127)
==35656==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==35656==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==35656==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==35656==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==35656==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==35656== 
==35656== 88 bytes in 1 blocks are possibly lost in loss record 215 of 704
==35656==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==35656==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==35656==    by 0x4E649E6: gf_resolve_ip6 (common-utils.c:265)
==35656==    by 0xFEAFDCE: af_inet_client_get_remote_sockaddr (name.c:258)
==35656==    by 0xFEB0857: socket_client_get_remote_sockaddr (name.c:530)
==35656==    by 0xFEABB53: socket_connect (socket.c:2955)
==35656==    by 0x514C7A1: rpc_transport_connect (rpc-transport.c:422)
==35656==    by 0x514FA2D: rpc_clnt_reconnect (rpc-clnt.c:423)
==35656==    by 0x51512AC: rpc_clnt_start (rpc-clnt.c:1201)
==35656==    by 0x40FF84: glusterfs_mgmt_init (glusterfsd-mgmt.c:2184)
==35656==    by 0x40A412: glusterfs_volumes_init (glusterfsd.c:2365)
==35656==    by 0x40A892: main (glusterfsd.c:2488)
==35656== 
==35656== 88 bytes in 1 blocks are possibly lost in loss record 216 of 704
==35656==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==35656==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==35656==    by 0x4ECB6BB: event_dispatch_epoll (event-epoll.c:709)
==35656==    by 0x4E8EEB9: event_dispatch (event.c:124)
==35656==    by 0x40A8B0: main (glusterfsd.c:2492)
==35656== 
==35656== 88 bytes in 1 blocks are possibly lost in loss record 217 of 704
==35656==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==35656==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==35656==    by 0x4ECB947: event_reconfigure_threads_epoll (event-epoll.c:824)
==35656==    by 0x4E8EF5B: event_reconfigure_threads (event.c:140)
==35656==    by 0x150611A3: server_check_event_threads (server.c:702)
==35656==    by 0x15061F17: init (server.c:946)
==35656==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==35656==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==35656==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==35656==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==35656==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==35656==    by 0x40ECA5: mgmt_getspec_cbk (glusterfsd-mgmt.c:1648)
==35656== 
==35656== 88 bytes in 1 blocks are possibly lost in loss record 218 of 704
==35656==    at 0x4C27BE3: malloc (vg_replace_malloc.c:299)
==35656==    by 0x4E8FB45: __gf_malloc (mem-pool.c:142)
==35656==    by 0x4E64F44: gf_dnscache_init (common-utils.c:366)
==35656==    by 0x14C2835B: init (io-stats.c:3686)
==35656==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==35656==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==35656==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==35656==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==35656==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==35656==    by 0x40ECA5: mgmt_getspec_cbk (glusterfsd-mgmt.c:1648)
==35656==    by 0x51505D2: rpc_clnt_handle_reply (rpc-clnt.c:791)
==35656==    by 0x5150B34: rpc_clnt_notify (rpc-clnt.c:971)
==35656== 
==35656== 88 bytes in 1 blocks are possibly lost in loss record 219 of 704
==35656==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==35656==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==35656==    by 0x1393505F: init (posix.c:3665)
==35656==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==35656==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==35656==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==35656==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==35656==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==35656==    by 0x40ECA5: mgmt_getspec_cbk (glusterfsd-mgmt.c:1648)
==35656==    by 0x51505D2: rpc_clnt_handle_reply (rpc-clnt.c:791)
==35656==    by 0x5150B34: rpc_clnt_notify (rpc-clnt.c:971)
==35656==    by 0x514CD1D: rpc_transport_notify (rpc-transport.c:541)
==35656== 
==35656== 88 bytes in 1 blocks are possibly lost in loss record 220 of 704
==35656==    at 0x4C27BE3: malloc (vg_replace_malloc.c:299)
==35656==    by 0x130402E6: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==35656==    by 0x1301B6A9: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==35656==    by 0x13023A25: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==35656==    by 0x13023B60: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==35656==    by 0x13023BDC: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==35656==    by 0x13028E1A: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==35656==    by 0x13049880: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==35656==    by 0x13049C5E: sqlite3_overload_function (in /usr/lib64/libsqlite3.so.0.8.6)
==35656==    by 0x1309E271: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==35656==    by 0x12E01B48: gf_open_sqlite3_conn (gfdb_sqlite3.c:192)
==35656==    by 0x12E02CAF: gf_sqlite3_init (gfdb_sqlite3.c:440)
==35656== 
==35656== 88 bytes in 1 blocks are possibly lost in loss record 221 of 704
==35656==    at 0x4C27BE3: malloc (vg_replace_malloc.c:299)
==35656==    by 0x130402E6: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==35656==    by 0x1301B6A9: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==35656==    by 0x13023A25: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==35656==    by 0x13023B60: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==35656==    by 0x13023BDC: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==35656==    by 0x13028E1A: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==35656==    by 0x13049880: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==35656==    by 0x13049C5E: sqlite3_overload_function (in /usr/lib64/libsqlite3.so.0.8.6)
==35656==    by 0x1309E50C: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==35656==    by 0x12E01B48: gf_open_sqlite3_conn (gfdb_sqlite3.c:192)
==35656==    by 0x12E02CAF: gf_sqlite3_init (gfdb_sqlite3.c:440)
==35656== 
==35656== 88 bytes in 1 blocks are possibly lost in loss record 222 of 704
==35656==    at 0x4C27BE3: malloc (vg_replace_malloc.c:299)
==35656==    by 0x130402E6: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==35656==    by 0x1301B6A9: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==35656==    by 0x13023A25: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==35656==    by 0x13023B60: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==35656==    by 0x13023BDC: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==35656==    by 0x13028E1A: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==35656==    by 0x13049880: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==35656==    by 0x13049C5E: sqlite3_overload_function (in /usr/lib64/libsqlite3.so.0.8.6)
==35656==    by 0x1309E528: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==35656==    by 0x12E01B48: gf_open_sqlite3_conn (gfdb_sqlite3.c:192)
==35656==    by 0x12E02CAF: gf_sqlite3_init (gfdb_sqlite3.c:440)
==35656== 
==35656== 89 bytes in 1 blocks are possibly lost in loss record 223 of 704
==35656==    at 0x4C27BE3: malloc (vg_replace_malloc.c:299)
==35656==    by 0x4E8FB45: __gf_malloc (mem-pool.c:142)
==35656==    by 0x4E8FDF0: gf_vasprintf (mem-pool.c:221)
==35656==    by 0x4E8FEDF: gf_asprintf (mem-pool.c:240)
==35656==    by 0x4E904D2: mem_pool_new_fn (mem-pool.c:385)
==35656==    by 0x40886F: glusterfs_ctx_defaults_init (glusterfsd.c:1514)
==35656==    by 0x40A5BC: main (glusterfsd.c:2413)
==35656== 
==35656== 89 bytes in 1 blocks are possibly lost in loss record 224 of 704
==35656==    at 0x4C27BE3: malloc (vg_replace_malloc.c:299)
==35656==    by 0x4E8FB45: __gf_malloc (mem-pool.c:142)
==35656==    by 0x4E8FDF0: gf_vasprintf (mem-pool.c:221)
==35656==    by 0x4E8FEDF: gf_asprintf (mem-pool.c:240)
==35656==    by 0x4E904D2: mem_pool_new_fn (mem-pool.c:385)
==35656==    by 0x4088D7: glusterfs_ctx_defaults_init (glusterfsd.c:1523)
==35656==    by 0x40A5BC: main (glusterfsd.c:2413)
==35656== 
==35656== 89 bytes in 1 blocks are possibly lost in loss record 225 of 704
==35656==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==35656==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==35656==    by 0x1505E939: gf_strdup (mem-pool.h:187)
==35656==    by 0x1506202C: init (server.c:973)
==35656==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==35656==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==35656==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==35656==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==35656==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==35656==    by 0x40ECA5: mgmt_getspec_cbk (glusterfsd-mgmt.c:1648)
==35656==    by 0x51505D2: rpc_clnt_handle_reply (rpc-clnt.c:791)
==35656==    by 0x5150B34: rpc_clnt_notify (rpc-clnt.c:971)
==35656== 
==35656== 90 bytes in 1 blocks are possibly lost in loss record 226 of 704
==35656==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==35656==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==35656==    by 0x514B4A5: gf_strdup (mem-pool.h:187)
==35656==    by 0x514BC2B: rpc_transport_load (rpc-transport.c:191)
==35656==    by 0x5149213: rpcsvc_create_listener (rpcsvc.c:1664)
==35656==    by 0x514955C: rpcsvc_create_listeners (rpcsvc.c:1757)
==35656==    by 0x40F98A: glusterfs_listener_init (glusterfsd-mgmt.c:2037)
==35656==    by 0x40A3EC: glusterfs_volumes_init (glusterfsd.c:2359)
==35656==    by 0x40A892: main (glusterfsd.c:2488)
==35656== 
==35656== 90 bytes in 1 blocks are possibly lost in loss record 227 of 704
==35656==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==35656==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==35656==    by 0x514B4A5: gf_strdup (mem-pool.h:187)
==35656==    by 0x514BC2B: rpc_transport_load (rpc-transport.c:191)
==35656==    by 0x5149213: rpcsvc_create_listener (rpcsvc.c:1664)
==35656==    by 0x514955C: rpcsvc_create_listeners (rpcsvc.c:1757)
==35656==    by 0x1506250B: init (server.c:1056)
==35656==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==35656==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==35656==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==35656==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==35656==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==35656== 
==35656== 90 bytes in 1 blocks are possibly lost in loss record 228 of 704
==35656==    at 0x4C27BE3: malloc (vg_replace_malloc.c:299)
==35656==    by 0x4E8FB45: __gf_malloc (mem-pool.c:142)
==35656==    by 0x4E8FDF0: gf_vasprintf (mem-pool.c:221)
==35656==    by 0x4E8FEDF: gf_asprintf (mem-pool.c:240)
==35656==    by 0x4E904D2: mem_pool_new_fn (mem-pool.c:385)
==35656==    by 0x129BB514: inode_table_new (inode.c:1617)
==35656==    by 0x129CF039: notify (trash.c:2172)
==35656==    by 0x4E5BEC3: xlator_notify (xlator.c:496)
==35656==    by 0x4F12DCF: default_notify (defaults.c:3114)
==35656==    by 0x1218A501: notify (posix.c:6596)
==35656==    by 0x4E5BEC3: xlator_notify (xlator.c:496)
==35656==    by 0x4F12CE8: default_notify (defaults.c:3090)
==35656== 
==35656== 90 bytes in 1 blocks are definitely lost in loss record 229 of 704
==35656==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==35656==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==35656==    by 0x4E5499E: dict_set_lk (dict.c:378)
==35656==    by 0x4E54B82: dict_set (dict.c:424)
==35656==    by 0x147D5551: index_make_xattrop_watchlist (index.c:2224)
==35656==    by 0x147D5A4E: init (index.c:2334)
==35656==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==35656==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==35656==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==35656==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==35656==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==35656==    by 0x40ECA5: mgmt_getspec_cbk (glusterfsd-mgmt.c:1648)
==35656== 
==35656== 90 bytes in 1 blocks are definitely lost in loss record 230 of 704
==35656==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==35656==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==35656==    by 0x4E5499E: dict_set_lk (dict.c:378)
==35656==    by 0x4E54B82: dict_set (dict.c:424)
==35656==    by 0x4E56CD3: dict_copy_one (dict.c:1314)
==35656==    by 0x4E56B26: dict_foreach_match (dict.c:1236)
==35656==    by 0x4E56A12: dict_foreach (dict.c:1194)
==35656==    by 0x4E56F16: dict_copy_with_ref (dict.c:1364)
==35656==    by 0x147D5B09: init (index.c:2346)
==35656==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==35656==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==35656==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==35656== 
==35656== 91 bytes in 1 blocks are possibly lost in loss record 233 of 704
==35656==    at 0x4C27BE3: malloc (vg_replace_malloc.c:299)
==35656==    by 0x4E8FB45: __gf_malloc (mem-pool.c:142)
==35656==    by 0x4E8FDF0: gf_vasprintf (mem-pool.c:221)
==35656==    by 0x4E8FEDF: gf_asprintf (mem-pool.c:240)
==35656==    by 0x129BB698: inode_table_new (inode.c:1635)
==35656==    by 0x129CF039: notify (trash.c:2172)
==35656==    by 0x4E5BEC3: xlator_notify (xlator.c:496)
==35656==    by 0x4F12DCF: default_notify (defaults.c:3114)
==35656==    by 0x1218A501: notify (posix.c:6596)
==35656==    by 0x4E5BEC3: xlator_notify (xlator.c:496)
==35656==    by 0x4F12CE8: default_notify (defaults.c:3090)
==35656==    by 0x129D019E: notify (trash.c:2307)
==35656== 
==35656== 91 bytes in 1 blocks are possibly lost in loss record 234 of 704
==35656==    at 0x4C27BE3: malloc (vg_replace_malloc.c:299)
==35656==    by 0x4E8FB45: __gf_malloc (mem-pool.c:142)
==35656==    by 0x4E8FDF0: gf_vasprintf (mem-pool.c:221)
==35656==    by 0x4E8FEDF: gf_asprintf (mem-pool.c:240)
==35656==    by 0x4E904D2: mem_pool_new_fn (mem-pool.c:385)
==35656==    by 0x4E72042: inode_table_new (inode.c:1617)
==35656==    by 0x15096890: server_setvolume (server-handshake.c:740)
==35656==    by 0x514731B: rpcsvc_handle_rpc_call (rpcsvc.c:701)
==35656==    by 0x514766E: rpcsvc_notify (rpcsvc.c:795)
==35656==    by 0x514CD1D: rpc_transport_notify (rpc-transport.c:541)
==35656==    by 0xFEA9D43: socket_event_poll_in (socket.c:2267)
==35656==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==35656== 
==35656== 91 bytes in 1 blocks are definitely lost in loss record 235 of 704
==35656==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==35656==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==35656==    by 0x4E5499E: dict_set_lk (dict.c:378)
==35656==    by 0x4E54B82: dict_set (dict.c:424)
==35656==    by 0x4E584CB: dict_set_str (dict.c:2168)
==35656==    by 0x5144A44: rpcsvc_auth_init_auths (rpcsvc-auth.c:148)
==35656==    by 0x5144FDA: rpcsvc_auth_init (rpcsvc-auth.c:292)
==35656==    by 0x514A796: rpcsvc_init (rpcsvc.c:2334)
==35656==    by 0x40F93C: glusterfs_listener_init (glusterfsd-mgmt.c:2027)
==35656==    by 0x40A3EC: glusterfs_volumes_init (glusterfsd.c:2359)
==35656==    by 0x40A892: main (glusterfsd.c:2488)
==35656== 
==35656== 91 bytes in 1 blocks are definitely lost in loss record 236 of 704
==35656==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==35656==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==35656==    by 0x4E5499E: dict_set_lk (dict.c:378)
==35656==    by 0x4E54B82: dict_set (dict.c:424)
==35656==    by 0x4E584CB: dict_set_str (dict.c:2168)
==35656==    by 0x5144AB0: rpcsvc_auth_init_auths (rpcsvc-auth.c:155)
==35656==    by 0x5144FDA: rpcsvc_auth_init (rpcsvc-auth.c:292)
==35656==    by 0x514A796: rpcsvc_init (rpcsvc.c:2334)
==35656==    by 0x40F93C: glusterfs_listener_init (glusterfsd-mgmt.c:2027)
==35656==    by 0x40A3EC: glusterfs_volumes_init (glusterfsd.c:2359)
==35656==    by 0x40A892: main (glusterfsd.c:2488)
==35656== 
==35656== 91 bytes in 1 blocks are definitely lost in loss record 237 of 704
==35656==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==35656==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==35656==    by 0x4E5499E: dict_set_lk (dict.c:378)
==35656==    by 0x4E54B82: dict_set (dict.c:424)
==35656==    by 0x4E584CB: dict_set_str (dict.c:2168)
==35656==    by 0x5144A44: rpcsvc_auth_init_auths (rpcsvc-auth.c:148)
==35656==    by 0x5144FDA: rpcsvc_auth_init (rpcsvc-auth.c:292)
==35656==    by 0x514A796: rpcsvc_init (rpcsvc.c:2334)
==35656==    by 0x150622FC: init (server.c:1019)
==35656==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==35656==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==35656==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==35656== 
==35656== 91 bytes in 1 blocks are definitely lost in loss record 238 of 704
==35656==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==35656==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==35656==    by 0x4E5499E: dict_set_lk (dict.c:378)
==35656==    by 0x4E54B82: dict_set (dict.c:424)
==35656==    by 0x4E584CB: dict_set_str (dict.c:2168)
==35656==    by 0x5144AB0: rpcsvc_auth_init_auths (rpcsvc-auth.c:155)
==35656==    by 0x5144FDA: rpcsvc_auth_init (rpcsvc-auth.c:292)
==35656==    by 0x514A796: rpcsvc_init (rpcsvc.c:2334)
==35656==    by 0x150622FC: init (server.c:1019)
==35656==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==35656==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==35656==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==35656== 
==35656== 92 bytes in 1 blocks are possibly lost in loss record 239 of 704
==35656==    at 0x4C27BE3: malloc (vg_replace_malloc.c:299)
==35656==    by 0x4E8FB45: __gf_malloc (mem-pool.c:142)
==35656==    by 0x4E8FDF0: gf_vasprintf (mem-pool.c:221)
==35656==    by 0x4E8FEDF: gf_asprintf (mem-pool.c:240)
==35656==    by 0x4E904D2: mem_pool_new_fn (mem-pool.c:385)
==35656==    by 0x40890B: glusterfs_ctx_defaults_init (glusterfsd.c:1527)
==35656==    by 0x40A5BC: main (glusterfsd.c:2413)
==35656== 
==35656== 92 bytes in 1 blocks are definitely lost in loss record 240 of 704
==35656==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==35656==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==35656==    by 0x4E5499E: dict_set_lk (dict.c:378)
==35656==    by 0x4E54B82: dict_set (dict.c:424)
==35656==    by 0x147D5551: index_make_xattrop_watchlist (index.c:2224)
==35656==    by 0x147D5ACA: init (index.c:2340)
==35656==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==35656==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==35656==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==35656==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==35656==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==35656==    by 0x40ECA5: mgmt_getspec_cbk (glusterfsd-mgmt.c:1648)
==35656== 
==35656== 92 bytes in 1 blocks are definitely lost in loss record 241 of 704
==35656==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==35656==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==35656==    by 0x4E5499E: dict_set_lk (dict.c:378)
==35656==    by 0x4E54B82: dict_set (dict.c:424)
==35656==    by 0x4E56CD3: dict_copy_one (dict.c:1314)
==35656==    by 0x4E56B26: dict_foreach_match (dict.c:1236)
==35656==    by 0x4E56A12: dict_foreach (dict.c:1194)
==35656==    by 0x4E56F16: dict_copy_with_ref (dict.c:1364)
==35656==    by 0x147D5B45: init (index.c:2349)
==35656==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==35656==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==35656==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==35656== 
==35656== 93 bytes in 1 blocks are possibly lost in loss record 242 of 704
==35656==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==35656==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==35656==    by 0x4E5D949: gf_strdup (mem-pool.h:187)
==35656==    by 0x4E5EA2C: gf_log_init (logging.c:685)
==35656==    by 0x408CCA: logging_init (glusterfsd.c:1628)
==35656==    by 0x40A65E: main (glusterfsd.c:2438)
==35656== 
==35656== 93 bytes in 1 blocks are possibly lost in loss record 243 of 704
==35656==    at 0x4C27BE3: malloc (vg_replace_malloc.c:299)
==35656==    by 0x4E8FB45: __gf_malloc (mem-pool.c:142)
==35656==    by 0x4E8FDF0: gf_vasprintf (mem-pool.c:221)
==35656==    by 0x4E8FEDF: gf_asprintf (mem-pool.c:240)
==35656==    by 0x4E904D2: mem_pool_new_fn (mem-pool.c:385)
==35656==    by 0x129BB436: inode_table_new (inode.c:1593)
==35656==    by 0x129CF039: notify (trash.c:2172)
==35656==    by 0x4E5BEC3: xlator_notify (xlator.c:496)
==35656==    by 0x4F12DCF: default_notify (defaults.c:3114)
==35656==    by 0x1218A501: notify (posix.c:6596)
==35656==    by 0x4E5BEC3: xlator_notify (xlator.c:496)
==35656==    by 0x4F12CE8: default_notify (defaults.c:3090)
==35656== 
==35656== 94 bytes in 1 blocks are possibly lost in loss record 244 of 704
==35656==    at 0x4C27BE3: malloc (vg_replace_malloc.c:299)
==35656==    by 0x4E8FB45: __gf_malloc (mem-pool.c:142)
==35656==    by 0x4E8FDF0: gf_vasprintf (mem-pool.c:221)
==35656==    by 0x4E8FEDF: gf_asprintf (mem-pool.c:240)
==35656==    by 0x4E904D2: mem_pool_new_fn (mem-pool.c:385)
==35656==    by 0x4087EF: glusterfs_ctx_defaults_init (glusterfsd.c:1508)
==35656==    by 0x40A5BC: main (glusterfsd.c:2413)
==35656== 
==35656== 94 bytes in 1 blocks are possibly lost in loss record 245 of 704
==35656==    at 0x4C27BE3: malloc (vg_replace_malloc.c:299)
==35656==    by 0x4E8FB45: __gf_malloc (mem-pool.c:142)
==35656==    by 0x4E8FDF0: gf_vasprintf (mem-pool.c:221)
==35656==    by 0x4E8FEDF: gf_asprintf (mem-pool.c:240)
==35656==    by 0x4E904D2: mem_pool_new_fn (mem-pool.c:385)
==35656==    by 0x4088A3: glusterfs_ctx_defaults_init (glusterfsd.c:1518)
==35656==    by 0x40A5BC: main (glusterfsd.c:2413)
==35656== 
==35656== 94 bytes in 1 blocks are possibly lost in loss record 246 of 704
==35656==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==35656==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==35656==    by 0x4052E4: gf_strdup (mem-pool.h:187)
==35656==    by 0x407942: parse_opts (glusterfsd.c:1095)
==35656==    by 0x67B5412: argp_parse (in /usr/lib64/libc-2.17.so)
==35656==    by 0x4092D4: parse_cmdline (glusterfsd.c:1866)
==35656==    by 0x40A5E5: main (glusterfsd.c:2417)
==35656== 
==35656== 94 bytes in 1 blocks are possibly lost in loss record 247 of 704
==35656==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==35656==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==35656==    by 0xFEA28F8: gf_strdup (mem-pool.h:187)
==35656==    by 0xFEAE929: socket_init (socket.c:4005)
==35656==    by 0xFEAF578: init (socket.c:4290)
==35656==    by 0x514C3DE: rpc_transport_load (rpc-transport.c:351)
==35656==    by 0x5149213: rpcsvc_create_listener (rpcsvc.c:1664)
==35656==    by 0x514955C: rpcsvc_create_listeners (rpcsvc.c:1757)
==35656==    by 0x40F98A: glusterfs_listener_init (glusterfsd-mgmt.c:2037)
==35656==    by 0x40A3EC: glusterfs_volumes_init (glusterfsd.c:2359)
==35656==    by 0x40A892: main (glusterfsd.c:2488)
==35656== 
==35656== 94 bytes in 1 blocks are possibly lost in loss record 248 of 704
==35656==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==35656==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==35656==    by 0xFEA28F8: gf_strdup (mem-pool.h:187)
==35656==    by 0xFEAE929: socket_init (socket.c:4005)
==35656==    by 0xFEAF578: init (socket.c:4290)
==35656==    by 0x514C3DE: rpc_transport_load (rpc-transport.c:351)
==35656==    by 0x5150E30: rpc_clnt_connection_init (rpc-clnt.c:1067)
==35656==    by 0x5151169: rpc_clnt_new (rpc-clnt.c:1159)
==35656==    by 0x40FE46: glusterfs_mgmt_init (glusterfsd-mgmt.c:2157)
==35656==    by 0x40A412: glusterfs_volumes_init (glusterfsd.c:2365)
==35656==    by 0x40A892: main (glusterfsd.c:2488)
==35656== 
==35656== 94 bytes in 1 blocks are possibly lost in loss record 249 of 704
==35656==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==35656==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==35656==    by 0xFEA28F8: gf_strdup (mem-pool.h:187)
==35656==    by 0xFEAE929: socket_init (socket.c:4005)
==35656==    by 0xFEAF578: init (socket.c:4290)
==35656==    by 0x514C3DE: rpc_transport_load (rpc-transport.c:351)
==35656==    by 0x5149213: rpcsvc_create_listener (rpcsvc.c:1664)
==35656==    by 0x514955C: rpcsvc_create_listeners (rpcsvc.c:1757)
==35656==    by 0x1506250B: init (server.c:1056)
==35656==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==35656==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==35656==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==35656== 
==35656== 94 bytes in 1 blocks are possibly lost in loss record 250 of 704
==35656==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==35656==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==35656==    by 0xFEA28F8: gf_strdup (mem-pool.h:187)
==35656==    by 0xFEAE929: socket_init (socket.c:4005)
==35656==    by 0xFEAF578: init (socket.c:4290)
==35656==    by 0x514C3DE: rpc_transport_load (rpc-transport.c:351)
==35656==    by 0x5150E30: rpc_clnt_connection_init (rpc-clnt.c:1067)
==35656==    by 0x5151169: rpc_clnt_new (rpc-clnt.c:1159)
==35656==    by 0x14A014DE: quota_enforcer_init (quota-enforcer-client.c:451)
==35656==    by 0x149FF51D: init (quota.c:5127)
==35656==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==35656==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==35656== 
==35656== 94 bytes in 1 blocks are possibly lost in loss record 251 of 704
==35656==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==35656==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==35656==    by 0x132C5046: gf_strdup (mem-pool.h:187)
==35656==    by 0x132D6700: changelog_init_options (changelog.c:2663)
==35656==    by 0x132D706A: init (changelog.c:2823)
==35656==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==35656==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==35656==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==35656==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==35656==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==35656==    by 0x40ECA5: mgmt_getspec_cbk (glusterfsd-mgmt.c:1648)
==35656==    by 0x51505D2: rpc_clnt_handle_reply (rpc-clnt.c:791)
==35656== 
==35656== 94 bytes in 1 blocks are possibly lost in loss record 252 of 704
==35656==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==35656==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==35656==    by 0xFEA28F8: gf_strdup (mem-pool.h:187)
==35656==    by 0xFEAE929: socket_init (socket.c:4005)
==35656==    by 0xFEAF578: init (socket.c:4290)
==35656==    by 0x514C3DE: rpc_transport_load (rpc-transport.c:351)
==35656==    by 0x5149213: rpcsvc_create_listener (rpcsvc.c:1664)
==35656==    by 0x514955C: rpcsvc_create_listeners (rpcsvc.c:1757)
==35656==    by 0x132DF1E6: changelog_rpc_server_init (changelog-rpc-common.c:318)
==35656==    by 0x132DDC27: changelog_init_rpc_listner (changelog-rpc.c:175)
==35656==    by 0x132D6D70: changelog_init_rpc (changelog.c:2768)
==35656==    by 0x132D71B1: init (changelog.c:2850)
==35656== 
==35656== 94 bytes in 1 blocks are possibly lost in loss record 253 of 704
==35656==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==35656==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==35656==    by 0x129B752F: gf_strdup (mem-pool.h:187)
==35656==    by 0x129D0A12: init (trash.c:2457)
==35656==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==35656==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==35656==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==35656==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==35656==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==35656==    by 0x40ECA5: mgmt_getspec_cbk (glusterfsd-mgmt.c:1648)
==35656==    by 0x51505D2: rpc_clnt_handle_reply (rpc-clnt.c:791)
==35656==    by 0x5150B34: rpc_clnt_notify (rpc-clnt.c:971)
==35656== 
==35656== 94 bytes in 1 blocks are possibly lost in loss record 254 of 704
==35656==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==35656==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==35656==    by 0x1216314A: gf_strdup (mem-pool.h:187)
==35656==    by 0x1218BBA6: init (posix.c:7090)
==35656==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==35656==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==35656==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==35656==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==35656==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==35656==    by 0x40ECA5: mgmt_getspec_cbk (glusterfsd-mgmt.c:1648)
==35656==    by 0x51505D2: rpc_clnt_handle_reply (rpc-clnt.c:791)
==35656==    by 0x5150B34: rpc_clnt_notify (rpc-clnt.c:971)
==35656== 
==35656== 94 bytes in 1 blocks are possibly lost in loss record 255 of 704
==35656==    at 0x4C27BE3: malloc (vg_replace_malloc.c:299)
==35656==    by 0x4E8FB45: __gf_malloc (mem-pool.c:142)
==35656==    by 0x4E8FDF0: gf_vasprintf (mem-pool.c:221)
==35656==    by 0x4E8FEDF: gf_asprintf (mem-pool.c:240)
==35656==    by 0x4E904D2: mem_pool_new_fn (mem-pool.c:385)
==35656==    by 0x129BB46E: inode_table_new (inode.c:1598)
==35656==    by 0x129CF039: notify (trash.c:2172)
==35656==    by 0x4E5BEC3: xlator_notify (xlator.c:496)
==35656==    by 0x4F12DCF: default_notify (defaults.c:3114)
==35656==    by 0x1218A501: notify (posix.c:6596)
==35656==    by 0x4E5BEC3: xlator_notify (xlator.c:496)
==35656==    by 0x4F12CE8: default_notify (defaults.c:3090)
==35656== 
==35656== 94 bytes in 1 blocks are possibly lost in loss record 256 of 704
==35656==    at 0x4C27BE3: malloc (vg_replace_malloc.c:299)
==35656==    by 0x4E8FB45: __gf_malloc (mem-pool.c:142)
==35656==    by 0x4E8FDF0: gf_vasprintf (mem-pool.c:221)
==35656==    by 0x4E8FEDF: gf_asprintf (mem-pool.c:240)
==35656==    by 0x4E904D2: mem_pool_new_fn (mem-pool.c:385)
==35656==    by 0x4E71F64: inode_table_new (inode.c:1593)
==35656==    by 0x15096890: server_setvolume (server-handshake.c:740)
==35656==    by 0x514731B: rpcsvc_handle_rpc_call (rpcsvc.c:701)
==35656==    by 0x514766E: rpcsvc_notify (rpcsvc.c:795)
==35656==    by 0x514CD1D: rpc_transport_notify (rpc-transport.c:541)
==35656==    by 0xFEA9D43: socket_event_poll_in (socket.c:2267)
==35656==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==35656== 
==35656== 95 bytes in 1 blocks are possibly lost in loss record 257 of 704
==35656==    at 0x4C27BE3: malloc (vg_replace_malloc.c:299)
==35656==    by 0x4E8FB45: __gf_malloc (mem-pool.c:142)
==35656==    by 0x4E8FDF0: gf_vasprintf (mem-pool.c:221)
==35656==    by 0x4E8FEDF: gf_asprintf (mem-pool.c:240)
==35656==    by 0x4E904D2: mem_pool_new_fn (mem-pool.c:385)
==35656==    by 0x4086EA: glusterfs_ctx_defaults_init (glusterfsd.c:1496)
==35656==    by 0x40A5BC: main (glusterfsd.c:2413)
==35656== 
==35656== 95 bytes in 1 blocks are possibly lost in loss record 258 of 704
==35656==    at 0x4C27BE3: malloc (vg_replace_malloc.c:299)
==35656==    by 0x4E8FB45: __gf_malloc (mem-pool.c:142)
==35656==    by 0x4E8FDF0: gf_vasprintf (mem-pool.c:221)
==35656==    by 0x4E8FEDF: gf_asprintf (mem-pool.c:240)
==35656==    by 0x4E904D2: mem_pool_new_fn (mem-pool.c:385)
==35656==    by 0x408772: glusterfs_ctx_defaults_init (glusterfsd.c:1502)
==35656==    by 0x40A5BC: main (glusterfsd.c:2413)
==35656== 
==35656== 95 bytes in 1 blocks are possibly lost in loss record 259 of 704
==35656==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==35656==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==35656==    by 0xFEA28F8: gf_strdup (mem-pool.h:187)
==35656==    by 0xFEAE7AD: socket_init (socket.c:3983)
==35656==    by 0xFEAF578: init (socket.c:4290)
==35656==    by 0x514C3DE: rpc_transport_load (rpc-transport.c:351)
==35656==    by 0x5149213: rpcsvc_create_listener (rpcsvc.c:1664)
==35656==    by 0x514955C: rpcsvc_create_listeners (rpcsvc.c:1757)
==35656==    by 0x40F98A: glusterfs_listener_init (glusterfsd-mgmt.c:2037)
==35656==    by 0x40A3EC: glusterfs_volumes_init (glusterfsd.c:2359)
==35656==    by 0x40A892: main (glusterfsd.c:2488)
==35656== 
==35656== 95 bytes in 1 blocks are possibly lost in loss record 260 of 704
==35656==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==35656==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==35656==    by 0xFEA28F8: gf_strdup (mem-pool.h:187)
==35656==    by 0xFEAE86B: socket_init (socket.c:3994)
==35656==    by 0xFEAF578: init (socket.c:4290)
==35656==    by 0x514C3DE: rpc_transport_load (rpc-transport.c:351)
==35656==    by 0x5149213: rpcsvc_create_listener (rpcsvc.c:1664)
==35656==    by 0x514955C: rpcsvc_create_listeners (rpcsvc.c:1757)
==35656==    by 0x40F98A: glusterfs_listener_init (glusterfsd-mgmt.c:2037)
==35656==    by 0x40A3EC: glusterfs_volumes_init (glusterfsd.c:2359)
==35656==    by 0x40A892: main (glusterfsd.c:2488)
==35656== 
==35656== 95 bytes in 1 blocks are possibly lost in loss record 261 of 704
==35656==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==35656==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==35656==    by 0xFEA28F8: gf_strdup (mem-pool.h:187)
==35656==    by 0xFEAE7AD: socket_init (socket.c:3983)
==35656==    by 0xFEAF578: init (socket.c:4290)
==35656==    by 0x514C3DE: rpc_transport_load (rpc-transport.c:351)
==35656==    by 0x5150E30: rpc_clnt_connection_init (rpc-clnt.c:1067)
==35656==    by 0x5151169: rpc_clnt_new (rpc-clnt.c:1159)
==35656==    by 0x40FE46: glusterfs_mgmt_init (glusterfsd-mgmt.c:2157)
==35656==    by 0x40A412: glusterfs_volumes_init (glusterfsd.c:2365)
==35656==    by 0x40A892: main (glusterfsd.c:2488)
==35656== 
==35656== 95 bytes in 1 blocks are possibly lost in loss record 262 of 704
==35656==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==35656==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==35656==    by 0xFEA28F8: gf_strdup (mem-pool.h:187)
==35656==    by 0xFEAE86B: socket_init (socket.c:3994)
==35656==    by 0xFEAF578: init (socket.c:4290)
==35656==    by 0x514C3DE: rpc_transport_load (rpc-transport.c:351)
==35656==    by 0x5150E30: rpc_clnt_connection_init (rpc-clnt.c:1067)
==35656==    by 0x5151169: rpc_clnt_new (rpc-clnt.c:1159)
==35656==    by 0x40FE46: glusterfs_mgmt_init (glusterfsd-mgmt.c:2157)
==35656==    by 0x40A412: glusterfs_volumes_init (glusterfsd.c:2365)
==35656==    by 0x40A892: main (glusterfsd.c:2488)
==35656== 
==35656== 95 bytes in 1 blocks are possibly lost in loss record 263 of 704
==35656==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==35656==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==35656==    by 0xFEA28F8: gf_strdup (mem-pool.h:187)
==35656==    by 0xFEAE7AD: socket_init (socket.c:3983)
==35656==    by 0xFEAF578: init (socket.c:4290)
==35656==    by 0x514C3DE: rpc_transport_load (rpc-transport.c:351)
==35656==    by 0x5149213: rpcsvc_create_listener (rpcsvc.c:1664)
==35656==    by 0x514955C: rpcsvc_create_listeners (rpcsvc.c:1757)
==35656==    by 0x1506250B: init (server.c:1056)
==35656==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==35656==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==35656==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==35656== 
==35656== 95 bytes in 1 blocks are possibly lost in loss record 264 of 704
==35656==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==35656==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==35656==    by 0xFEA28F8: gf_strdup (mem-pool.h:187)
==35656==    by 0xFEAE86B: socket_init (socket.c:3994)
==35656==    by 0xFEAF578: init (socket.c:4290)
==35656==    by 0x514C3DE: rpc_transport_load (rpc-transport.c:351)
==35656==    by 0x5149213: rpcsvc_create_listener (rpcsvc.c:1664)
==35656==    by 0x514955C: rpcsvc_create_listeners (rpcsvc.c:1757)
==35656==    by 0x1506250B: init (server.c:1056)
==35656==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==35656==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==35656==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==35656== 
==35656== 95 bytes in 1 blocks are possibly lost in loss record 265 of 704
==35656==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==35656==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==35656==    by 0xFEA28F8: gf_strdup (mem-pool.h:187)
==35656==    by 0xFEAE7AD: socket_init (socket.c:3983)
==35656==    by 0xFEAF578: init (socket.c:4290)
==35656==    by 0x514C3DE: rpc_transport_load (rpc-transport.c:351)
==35656==    by 0x5150E30: rpc_clnt_connection_init (rpc-clnt.c:1067)
==35656==    by 0x5151169: rpc_clnt_new (rpc-clnt.c:1159)
==35656==    by 0x14A014DE: quota_enforcer_init (quota-enforcer-client.c:451)
==35656==    by 0x149FF51D: init (quota.c:5127)
==35656==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==35656==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==35656== 
==35656== 95 bytes in 1 blocks are possibly lost in loss record 266 of 704
==35656==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==35656==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==35656==    by 0xFEA28F8: gf_strdup (mem-pool.h:187)
==35656==    by 0xFEAE86B: socket_init (socket.c:3994)
==35656==    by 0xFEAF578: init (socket.c:4290)
==35656==    by 0x514C3DE: rpc_transport_load (rpc-transport.c:351)
==35656==    by 0x5150E30: rpc_clnt_connection_init (rpc-clnt.c:1067)
==35656==    by 0x5151169: rpc_clnt_new (rpc-clnt.c:1159)
==35656==    by 0x14A014DE: quota_enforcer_init (quota-enforcer-client.c:451)
==35656==    by 0x149FF51D: init (quota.c:5127)
==35656==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==35656==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==35656== 
==35656== 95 bytes in 1 blocks are possibly lost in loss record 267 of 704
==35656==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==35656==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==35656==    by 0xFEA28F8: gf_strdup (mem-pool.h:187)
==35656==    by 0xFEAE7AD: socket_init (socket.c:3983)
==35656==    by 0xFEAF578: init (socket.c:4290)
==35656==    by 0x514C3DE: rpc_transport_load (rpc-transport.c:351)
==35656==    by 0x5149213: rpcsvc_create_listener (rpcsvc.c:1664)
==35656==    by 0x514955C: rpcsvc_create_listeners (rpcsvc.c:1757)
==35656==    by 0x132DF1E6: changelog_rpc_server_init (changelog-rpc-common.c:318)
==35656==    by 0x132DDC27: changelog_init_rpc_listner (changelog-rpc.c:175)
==35656==    by 0x132D6D70: changelog_init_rpc (changelog.c:2768)
==35656==    by 0x132D71B1: init (changelog.c:2850)
==35656== 
==35656== 95 bytes in 1 blocks are possibly lost in loss record 268 of 704
==35656==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==35656==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==35656==    by 0xFEA28F8: gf_strdup (mem-pool.h:187)
==35656==    by 0xFEAE86B: socket_init (socket.c:3994)
==35656==    by 0xFEAF578: init (socket.c:4290)
==35656==    by 0x514C3DE: rpc_transport_load (rpc-transport.c:351)
==35656==    by 0x5149213: rpcsvc_create_listener (rpcsvc.c:1664)
==35656==    by 0x514955C: rpcsvc_create_listeners (rpcsvc.c:1757)
==35656==    by 0x132DF1E6: changelog_rpc_server_init (changelog-rpc-common.c:318)
==35656==    by 0x132DDC27: changelog_init_rpc_listner (changelog-rpc.c:175)
==35656==    by 0x132D6D70: changelog_init_rpc (changelog.c:2768)
==35656==    by 0x132D71B1: init (changelog.c:2850)
==35656== 
==35656== 95 bytes in 1 blocks are possibly lost in loss record 269 of 704
==35656==    at 0x4C27BE3: malloc (vg_replace_malloc.c:299)
==35656==    by 0x4E8FB45: __gf_malloc (mem-pool.c:142)
==35656==    by 0x4E8FDF0: gf_vasprintf (mem-pool.c:221)
==35656==    by 0x4E8FEDF: gf_asprintf (mem-pool.c:240)
==35656==    by 0x4E904D2: mem_pool_new_fn (mem-pool.c:385)
==35656==    by 0x4E71F9C: inode_table_new (inode.c:1598)
==35656==    by 0x15096890: server_setvolume (server-handshake.c:740)
==35656==    by 0x514731B: rpcsvc_handle_rpc_call (rpcsvc.c:701)
==35656==    by 0x514766E: rpcsvc_notify (rpcsvc.c:795)
==35656==    by 0x514CD1D: rpc_transport_notify (rpc-transport.c:541)
==35656==    by 0xFEA9D43: socket_event_poll_in (socket.c:2267)
==35656==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==35656== 
==35656== 95 bytes in 1 blocks are definitely lost in loss record 270 of 704
==35656==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==35656==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==35656==    by 0x129B752F: gf_strdup (mem-pool.h:187)
==35656==    by 0x129BEF4B: trash_notify_mkdir_cbk (trash.c:441)
==35656==    by 0x1216EB15: posix_mkdir (posix.c:1693)
==35656==    by 0x129CFA85: notify (trash.c:2246)
==35656==    by 0x4E5BEC3: xlator_notify (xlator.c:496)
==35656==    by 0x4F12DCF: default_notify (defaults.c:3114)
==35656==    by 0x1218A501: notify (posix.c:6596)
==35656==    by 0x4E5BEC3: xlator_notify (xlator.c:496)
==35656==    by 0x4F12CE8: default_notify (defaults.c:3090)
==35656==    by 0x129D019E: notify (trash.c:2307)
==35656== 
==35656== 96 bytes in 1 blocks are possibly lost in loss record 274 of 704
==35656==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==35656==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==35656==    by 0x514C293: rpc_transport_load (rpc-transport.c:324)
==35656==    by 0x5149213: rpcsvc_create_listener (rpcsvc.c:1664)
==35656==    by 0x514955C: rpcsvc_create_listeners (rpcsvc.c:1757)
==35656==    by 0x40F98A: glusterfs_listener_init (glusterfsd-mgmt.c:2037)
==35656==    by 0x40A3EC: glusterfs_volumes_init (glusterfsd.c:2359)
==35656==    by 0x40A892: main (glusterfsd.c:2488)
==35656== 
==35656== 96 bytes in 1 blocks are possibly lost in loss record 275 of 704
==35656==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==35656==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==35656==    by 0x514C293: rpc_transport_load (rpc-transport.c:324)
==35656==    by 0x5150E30: rpc_clnt_connection_init (rpc-clnt.c:1067)
==35656==    by 0x5151169: rpc_clnt_new (rpc-clnt.c:1159)
==35656==    by 0x40FE46: glusterfs_mgmt_init (glusterfsd-mgmt.c:2157)
==35656==    by 0x40A412: glusterfs_volumes_init (glusterfsd.c:2365)
==35656==    by 0x40A892: main (glusterfsd.c:2488)
==35656== 
==35656== 96 bytes in 1 blocks are possibly lost in loss record 276 of 704
==35656==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==35656==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==35656==    by 0x514C293: rpc_transport_load (rpc-transport.c:324)
==35656==    by 0x5149213: rpcsvc_create_listener (rpcsvc.c:1664)
==35656==    by 0x514955C: rpcsvc_create_listeners (rpcsvc.c:1757)
==35656==    by 0x1506250B: init (server.c:1056)
==35656==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==35656==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==35656==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==35656==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==35656==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==35656==    by 0x40ECA5: mgmt_getspec_cbk (glusterfsd-mgmt.c:1648)
==35656== 
==35656== 96 bytes in 1 blocks are possibly lost in loss record 277 of 704
==35656==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==35656==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==35656==    by 0x514C293: rpc_transport_load (rpc-transport.c:324)
==35656==    by 0x5150E30: rpc_clnt_connection_init (rpc-clnt.c:1067)
==35656==    by 0x5151169: rpc_clnt_new (rpc-clnt.c:1159)
==35656==    by 0x14A014DE: quota_enforcer_init (quota-enforcer-client.c:451)
==35656==    by 0x149FF51D: init (quota.c:5127)
==35656==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==35656==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==35656==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==35656==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==35656==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==35656== 
==35656== 96 bytes in 1 blocks are possibly lost in loss record 278 of 704
==35656==    at 0x4C27BE3: malloc (vg_replace_malloc.c:299)
==35656==    by 0x4E8FB45: __gf_malloc (mem-pool.c:142)
==35656==    by 0x4E8FDF0: gf_vasprintf (mem-pool.c:221)
==35656==    by 0x4E8FEDF: gf_asprintf (mem-pool.c:240)
==35656==    by 0x4E904D2: mem_pool_new_fn (mem-pool.c:385)
==35656==    by 0x13935190: init (posix.c:3681)
==35656==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==35656==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==35656==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==35656==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==35656==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==35656==    by 0x40ECA5: mgmt_getspec_cbk (glusterfsd-mgmt.c:1648)
==35656== 
==35656== 96 bytes in 1 blocks are possibly lost in loss record 279 of 704
==35656==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==35656==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==35656==    by 0x132DD888: changelog_init_rpc_threads (changelog-rpc.c:105)
==35656==    by 0x132DDB5E: changelog_init_rpc_listner (changelog-rpc.c:169)
==35656==    by 0x132D6D70: changelog_init_rpc (changelog.c:2768)
==35656==    by 0x132D71B1: init (changelog.c:2850)
==35656==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==35656==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==35656==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==35656==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==35656==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==35656==    by 0x40ECA5: mgmt_getspec_cbk (glusterfsd-mgmt.c:1648)
==35656== 
==35656== 96 bytes in 1 blocks are possibly lost in loss record 280 of 704
==35656==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==35656==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==35656==    by 0x514B4A5: gf_strdup (mem-pool.h:187)
==35656==    by 0x514BC2B: rpc_transport_load (rpc-transport.c:191)
==35656==    by 0x5149213: rpcsvc_create_listener (rpcsvc.c:1664)
==35656==    by 0x514955C: rpcsvc_create_listeners (rpcsvc.c:1757)
==35656==    by 0x132DF1E6: changelog_rpc_server_init (changelog-rpc-common.c:318)
==35656==    by 0x132DDC27: changelog_init_rpc_listner (changelog-rpc.c:175)
==35656==    by 0x132D6D70: changelog_init_rpc (changelog.c:2768)
==35656==    by 0x132D71B1: init (changelog.c:2850)
==35656==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==35656==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==35656== 
==35656== 96 bytes in 1 blocks are possibly lost in loss record 281 of 704
==35656==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==35656==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==35656==    by 0x514C293: rpc_transport_load (rpc-transport.c:324)
==35656==    by 0x5149213: rpcsvc_create_listener (rpcsvc.c:1664)
==35656==    by 0x514955C: rpcsvc_create_listeners (rpcsvc.c:1757)
==35656==    by 0x132DF1E6: changelog_rpc_server_init (changelog-rpc-common.c:318)
==35656==    by 0x132DDC27: changelog_init_rpc_listner (changelog-rpc.c:175)
==35656==    by 0x132D6D70: changelog_init_rpc (changelog.c:2768)
==35656==    by 0x132D71B1: init (changelog.c:2850)
==35656==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==35656==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==35656==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==35656== 
==35656== 96 bytes in 1 blocks are possibly lost in loss record 282 of 704
==35656==    at 0x4C27BE3: malloc (vg_replace_malloc.c:299)
==35656==    by 0x130402E6: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==35656==    by 0x1301B6A9: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==35656==    by 0x13023A25: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==35656==    by 0x13023B60: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==35656==    by 0x13023BDC: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==35656==    by 0x13028E1A: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==35656==    by 0x13049880: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==35656==    by 0x1304999B: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==35656==    by 0x13049B4C: sqlite3_create_function_v2 (in /usr/lib64/libsqlite3.so.0.8.6)
==35656==    by 0x13049B94: sqlite3_create_function (in /usr/lib64/libsqlite3.so.0.8.6)
==35656==    by 0x1309E4B6: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==35656== 
==35656== 96 bytes in 1 blocks are possibly lost in loss record 283 of 704
==35656==    at 0x4C27BE3: malloc (vg_replace_malloc.c:299)
==35656==    by 0x130402E6: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==35656==    by 0x1301B6A9: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==35656==    by 0x13023A25: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==35656==    by 0x13023B60: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==35656==    by 0x13023BDC: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==35656==    by 0x13028E1A: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==35656==    by 0x13049880: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==35656==    by 0x130499DF: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==35656==    by 0x13049B4C: sqlite3_create_function_v2 (in /usr/lib64/libsqlite3.so.0.8.6)
==35656==    by 0x13049B94: sqlite3_create_function (in /usr/lib64/libsqlite3.so.0.8.6)
==35656==    by 0x1309E4B6: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==35656== 
==35656== 96 bytes in 1 blocks are possibly lost in loss record 284 of 704
==35656==    at 0x4C27BE3: malloc (vg_replace_malloc.c:299)
==35656==    by 0x130402E6: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==35656==    by 0x1301B6A9: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==35656==    by 0x13023A25: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==35656==    by 0x13023B60: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==35656==    by 0x13023BDC: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==35656==    by 0x13028E1A: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==35656==    by 0x13049880: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==35656==    by 0x13049B4C: sqlite3_create_function_v2 (in /usr/lib64/libsqlite3.so.0.8.6)
==35656==    by 0x13049B94: sqlite3_create_function (in /usr/lib64/libsqlite3.so.0.8.6)
==35656==    by 0x1309E4B6: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==35656==    by 0x12E01B48: gf_open_sqlite3_conn (gfdb_sqlite3.c:192)
==35656== 
==35656== 96 bytes in 1 blocks are possibly lost in loss record 285 of 704
==35656==    at 0x4C27BE3: malloc (vg_replace_malloc.c:299)
==35656==    by 0x130402E6: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==35656==    by 0x1301B6A9: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==35656==    by 0x13023A25: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==35656==    by 0x13023B60: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==35656==    by 0x13023BDC: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==35656==    by 0x13028E1A: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==35656==    by 0x13049880: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==35656==    by 0x1304999B: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==35656==    by 0x13049B4C: sqlite3_create_function_v2 (in /usr/lib64/libsqlite3.so.0.8.6)
==35656==    by 0x13049B94: sqlite3_create_function (in /usr/lib64/libsqlite3.so.0.8.6)
==35656==    by 0x1309E4F2: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==35656== 
==35656== 96 bytes in 1 blocks are possibly lost in loss record 286 of 704
==35656==    at 0x4C27BE3: malloc (vg_replace_malloc.c:299)
==35656==    by 0x130402E6: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==35656==    by 0x1301B6A9: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==35656==    by 0x13023A25: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==35656==    by 0x13023B60: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==35656==    by 0x13023BDC: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==35656==    by 0x13028E1A: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==35656==    by 0x13049880: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==35656==    by 0x130499DF: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==35656==    by 0x13049B4C: sqlite3_create_function_v2 (in /usr/lib64/libsqlite3.so.0.8.6)
==35656==    by 0x13049B94: sqlite3_create_function (in /usr/lib64/libsqlite3.so.0.8.6)
==35656==    by 0x1309E4F2: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==35656== 
==35656== 96 bytes in 1 blocks are possibly lost in loss record 287 of 704
==35656==    at 0x4C27BE3: malloc (vg_replace_malloc.c:299)
==35656==    by 0x130402E6: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==35656==    by 0x1301B6A9: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==35656==    by 0x13023A25: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==35656==    by 0x13023B60: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==35656==    by 0x13023BDC: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==35656==    by 0x13028E1A: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==35656==    by 0x13049880: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==35656==    by 0x13049B4C: sqlite3_create_function_v2 (in /usr/lib64/libsqlite3.so.0.8.6)
==35656==    by 0x13049B94: sqlite3_create_function (in /usr/lib64/libsqlite3.so.0.8.6)
==35656==    by 0x1309E4F2: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==35656==    by 0x12E01B48: gf_open_sqlite3_conn (gfdb_sqlite3.c:192)
==35656== 
==35656== 96 bytes in 1 blocks are possibly lost in loss record 288 of 704
==35656==    at 0x4C27BE3: malloc (vg_replace_malloc.c:299)
==35656==    by 0x130402E6: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==35656==    by 0x1301B6A9: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==35656==    by 0x13023A25: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==35656==    by 0x13023B60: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==35656==    by 0x13023BDC: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==35656==    by 0x13028E1A: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==35656==    by 0x13049880: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==35656==    by 0x13049C5E: sqlite3_overload_function (in /usr/lib64/libsqlite3.so.0.8.6)
==35656==    by 0x1309E544: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==35656==    by 0x12E01B48: gf_open_sqlite3_conn (gfdb_sqlite3.c:192)
==35656==    by 0x12E02CAF: gf_sqlite3_init (gfdb_sqlite3.c:440)
==35656== 
==35656== 96 bytes in 1 blocks are possibly lost in loss record 289 of 704
==35656==    at 0x4C27BE3: malloc (vg_replace_malloc.c:299)
==35656==    by 0x130402E6: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==35656==    by 0x1301B6A9: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==35656==    by 0x13023A25: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==35656==    by 0x13023B60: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==35656==    by 0x13023BDC: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==35656==    by 0x13028E1A: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==35656==    by 0x13049880: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==35656==    by 0x13049C5E: sqlite3_overload_function (in /usr/lib64/libsqlite3.so.0.8.6)
==35656==    by 0x1309E560: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==35656==    by 0x12E01B48: gf_open_sqlite3_conn (gfdb_sqlite3.c:192)
==35656==    by 0x12E02CAF: gf_sqlite3_init (gfdb_sqlite3.c:440)
==35656== 
==35656== 96 bytes in 1 blocks are possibly lost in loss record 290 of 704
==35656==    at 0x4C27BE3: malloc (vg_replace_malloc.c:299)
==35656==    by 0x130402E6: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==35656==    by 0x1301B6A9: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==35656==    by 0x13023A25: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==35656==    by 0x13023B60: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==35656==    by 0x13023BDC: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==35656==    by 0x13028E1A: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==35656==    by 0x13049880: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==35656==    by 0x13049C5E: sqlite3_overload_function (in /usr/lib64/libsqlite3.so.0.8.6)
==35656==    by 0x1309E57C: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==35656==    by 0x12E01B48: gf_open_sqlite3_conn (gfdb_sqlite3.c:192)
==35656==    by 0x12E02CAF: gf_sqlite3_init (gfdb_sqlite3.c:440)
==35656== 
==35656== 96 bytes in 1 blocks are possibly lost in loss record 291 of 704
==35656==    at 0x4C27BE3: malloc (vg_replace_malloc.c:299)
==35656==    by 0x130402E6: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==35656==    by 0x1301B6A9: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==35656==    by 0x13023A25: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==35656==    by 0x13023B60: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==35656==    by 0x13023BDC: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==35656==    by 0x13028E1A: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==35656==    by 0x13049880: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==35656==    by 0x13049B4C: sqlite3_create_function_v2 (in /usr/lib64/libsqlite3.so.0.8.6)
==35656==    by 0x13049B94: sqlite3_create_function (in /usr/lib64/libsqlite3.so.0.8.6)
==35656==    by 0x1309E62F: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==35656==    by 0x12E01B48: gf_open_sqlite3_conn (gfdb_sqlite3.c:192)
==35656== 
==35656== 96 bytes in 1 blocks are possibly lost in loss record 292 of 704
==35656==    at 0x4C27BE3: malloc (vg_replace_malloc.c:299)
==35656==    by 0x130402E6: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==35656==    by 0x1301B6A9: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==35656==    by 0x13023A25: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==35656==    by 0x13023B60: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==35656==    by 0x13023BDC: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==35656==    by 0x13028E1A: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==35656==    by 0x13049880: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==35656==    by 0x13049B4C: sqlite3_create_function_v2 (in /usr/lib64/libsqlite3.so.0.8.6)
==35656==    by 0x13049B94: sqlite3_create_function (in /usr/lib64/libsqlite3.so.0.8.6)
==35656==    by 0x1309E66B: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==35656==    by 0x12E01B48: gf_open_sqlite3_conn (gfdb_sqlite3.c:192)
==35656== 
==35656== 96 bytes in 1 blocks are definitely lost in loss record 293 of 704
==35656==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==35656==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==35656==    by 0x4E5499E: dict_set_lk (dict.c:378)
==35656==    by 0x4E54B82: dict_set (dict.c:424)
==35656==    by 0x4E584CB: dict_set_str (dict.c:2168)
==35656==    by 0x5144D69: rpcsvc_set_allow_insecure (rpcsvc-auth.c:231)
==35656==    by 0x5144F59: rpcsvc_auth_init (rpcsvc-auth.c:283)
==35656==    by 0x514A796: rpcsvc_init (rpcsvc.c:2334)
==35656==    by 0x40F93C: glusterfs_listener_init (glusterfsd-mgmt.c:2027)
==35656==    by 0x40A3EC: glusterfs_volumes_init (glusterfsd.c:2359)
==35656==    by 0x40A892: main (glusterfsd.c:2488)
==35656== 
==35656== 96 bytes in 1 blocks are definitely lost in loss record 294 of 704
==35656==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==35656==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==35656==    by 0x4E5499E: dict_set_lk (dict.c:378)
==35656==    by 0x4E54B82: dict_set (dict.c:424)
==35656==    by 0x4E584CB: dict_set_str (dict.c:2168)
==35656==    by 0x5144B1C: rpcsvc_auth_init_auths (rpcsvc-auth.c:162)
==35656==    by 0x5144FDA: rpcsvc_auth_init (rpcsvc-auth.c:292)
==35656==    by 0x514A796: rpcsvc_init (rpcsvc.c:2334)
==35656==    by 0x40F93C: glusterfs_listener_init (glusterfsd-mgmt.c:2027)
==35656==    by 0x40A3EC: glusterfs_volumes_init (glusterfsd.c:2359)
==35656==    by 0x40A892: main (glusterfsd.c:2488)
==35656== 
==35656== 96 bytes in 1 blocks are definitely lost in loss record 295 of 704
==35656==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==35656==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==35656==    by 0x4E5499E: dict_set_lk (dict.c:378)
==35656==    by 0x4E54B82: dict_set (dict.c:424)
==35656==    by 0x4E584CB: dict_set_str (dict.c:2168)
==35656==    by 0x5144D69: rpcsvc_set_allow_insecure (rpcsvc-auth.c:231)
==35656==    by 0x5144F59: rpcsvc_auth_init (rpcsvc-auth.c:283)
==35656==    by 0x514A796: rpcsvc_init (rpcsvc.c:2334)
==35656==    by 0x150622FC: init (server.c:1019)
==35656==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==35656==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==35656==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==35656== 
==35656== 96 bytes in 1 blocks are definitely lost in loss record 296 of 704
==35656==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==35656==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==35656==    by 0x4E5499E: dict_set_lk (dict.c:378)
==35656==    by 0x4E54B82: dict_set (dict.c:424)
==35656==    by 0x4E584CB: dict_set_str (dict.c:2168)
==35656==    by 0x5144B1C: rpcsvc_auth_init_auths (rpcsvc-auth.c:162)
==35656==    by 0x5144FDA: rpcsvc_auth_init (rpcsvc-auth.c:292)
==35656==    by 0x514A796: rpcsvc_init (rpcsvc.c:2334)
==35656==    by 0x150622FC: init (server.c:1019)
==35656==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==35656==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==35656==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==35656== 
==35656== 97 bytes in 1 blocks are possibly lost in loss record 297 of 704
==35656==    at 0x4C27BE3: malloc (vg_replace_malloc.c:299)
==35656==    by 0x4E8FB45: __gf_malloc (mem-pool.c:142)
==35656==    by 0x4E8FDF0: gf_vasprintf (mem-pool.c:221)
==35656==    by 0x4E8FEDF: gf_asprintf (mem-pool.c:240)
==35656==    by 0x4E6BA5F: gf_set_log_ident (common-utils.c:3491)
==35656==    by 0x408C34: logging_init (glusterfsd.c:1609)
==35656==    by 0x40A65E: main (glusterfsd.c:2438)
==35656== 
==35656== 97 bytes in 1 blocks are possibly lost in loss record 298 of 704
==35656==    at 0x4C27BE3: malloc (vg_replace_malloc.c:299)
==35656==    by 0x4E8FB45: __gf_malloc (mem-pool.c:142)
==35656==    by 0x4E8FDF0: gf_vasprintf (mem-pool.c:221)
==35656==    by 0x4E8FEDF: gf_asprintf (mem-pool.c:240)
==35656==    by 0x4E904D2: mem_pool_new_fn (mem-pool.c:385)
==35656==    by 0x5151087: rpc_clnt_new (rpc-clnt.c:1139)
==35656==    by 0x40FE46: glusterfs_mgmt_init (glusterfsd-mgmt.c:2157)
==35656==    by 0x40A412: glusterfs_volumes_init (glusterfsd.c:2365)
==35656==    by 0x40A892: main (glusterfsd.c:2488)
==35656== 
==35656== 97 bytes in 1 blocks are definitely lost in loss record 299 of 704
==35656==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==35656==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==35656==    by 0x4E5499E: dict_set_lk (dict.c:378)
==35656==    by 0x4E54B82: dict_set (dict.c:424)
==35656==    by 0x4E584CB: dict_set_str (dict.c:2168)
==35656==    by 0x514A362: rpcsvc_transport_unix_options_build (rpcsvc.c:2180)
==35656==    by 0x40F909: glusterfs_listener_init (glusterfsd-mgmt.c:2022)
==35656==    by 0x40A3EC: glusterfs_volumes_init (glusterfsd.c:2359)
==35656==    by 0x40A892: main (glusterfsd.c:2488)
==35656== 
==35656== 97 bytes in 1 blocks are definitely lost in loss record 300 of 704
==35656==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==35656==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==35656==    by 0x4E5499E: dict_set_lk (dict.c:378)
==35656==    by 0x4E54B82: dict_set (dict.c:424)
==35656==    by 0x4E584CB: dict_set_str (dict.c:2168)
==35656==    by 0x514A387: rpcsvc_transport_unix_options_build (rpcsvc.c:2184)
==35656==    by 0x40F909: glusterfs_listener_init (glusterfsd-mgmt.c:2022)
==35656==    by 0x40A3EC: glusterfs_volumes_init (glusterfsd.c:2359)
==35656==    by 0x40A892: main (glusterfsd.c:2488)
==35656== 
==35656== 97 bytes in 1 blocks are definitely lost in loss record 301 of 704
==35656==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==35656==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==35656==    by 0x4E5499E: dict_set_lk (dict.c:378)
==35656==    by 0x4E54B82: dict_set (dict.c:424)
==35656==    by 0x4E584CB: dict_set_str (dict.c:2168)
==35656==    by 0x14A01464: quota_enforcer_init (quota-enforcer-client.c:438)
==35656==    by 0x149FF51D: init (quota.c:5127)
==35656==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==35656==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==35656==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==35656==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==35656==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==35656== 
==35656== 99 bytes in 1 blocks are possibly lost in loss record 302 of 704
==35656==    at 0x4C27BE3: malloc (vg_replace_malloc.c:299)
==35656==    by 0x4E8FB45: __gf_malloc (mem-pool.c:142)
==35656==    by 0x4E8FDF0: gf_vasprintf (mem-pool.c:221)
==35656==    by 0x4E8FEDF: gf_asprintf (mem-pool.c:240)
==35656==    by 0x4E904D2: mem_pool_new_fn (mem-pool.c:385)
==35656==    by 0x514A732: rpcsvc_init (rpcsvc.c:2327)
==35656==    by 0x40F93C: glusterfs_listener_init (glusterfsd-mgmt.c:2027)
==35656==    by 0x40A3EC: glusterfs_volumes_init (glusterfsd.c:2359)
==35656==    by 0x40A892: main (glusterfsd.c:2488)
==35656== 
==35656== 99 bytes in 1 blocks are possibly lost in loss record 303 of 704
==35656==    at 0x4C27BE3: malloc (vg_replace_malloc.c:299)
==35656==    by 0x4E8FB45: __gf_malloc (mem-pool.c:142)
==35656==    by 0x4E8FDF0: gf_vasprintf (mem-pool.c:221)
==35656==    by 0x4E8FEDF: gf_asprintf (mem-pool.c:240)
==35656==    by 0x4E904D2: mem_pool_new_fn (mem-pool.c:385)
==35656==    by 0x149FF481: init (quota.c:5118)
==35656==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==35656==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==35656==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==35656==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==35656==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==35656==    by 0x40ECA5: mgmt_getspec_cbk (glusterfsd-mgmt.c:1648)
==35656== 
==35656== 99 bytes in 1 blocks are possibly lost in loss record 304 of 704
==35656==    at 0x4C27BE3: malloc (vg_replace_malloc.c:299)
==35656==    by 0x4E8FB45: __gf_malloc (mem-pool.c:142)
==35656==    by 0x4E8FDF0: gf_vasprintf (mem-pool.c:221)
==35656==    by 0x4E8FEDF: gf_asprintf (mem-pool.c:240)
==35656==    by 0x4E904D2: mem_pool_new_fn (mem-pool.c:385)
==35656==    by 0x147D5BD2: init (index.c:2357)
==35656==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==35656==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==35656==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==35656==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==35656==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==35656==    by 0x40ECA5: mgmt_getspec_cbk (glusterfsd-mgmt.c:1648)
==35656== 
==35656== 99 bytes in 1 blocks are possibly lost in loss record 305 of 704
==35656==    at 0x4C27BE3: malloc (vg_replace_malloc.c:299)
==35656==    by 0x4E8FB45: __gf_malloc (mem-pool.c:142)
==35656==    by 0x4E8FDF0: gf_vasprintf (mem-pool.c:221)
==35656==    by 0x4E8FEDF: gf_asprintf (mem-pool.c:240)
==35656==    by 0x4E904D2: mem_pool_new_fn (mem-pool.c:385)
==35656==    by 0x129D0936: init (trash.c:2438)
==35656==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==35656==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==35656==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==35656==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==35656==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==35656==    by 0x40ECA5: mgmt_getspec_cbk (glusterfsd-mgmt.c:1648)
==35656== 
==35656== 100 bytes in 1 blocks are possibly lost in loss record 306 of 704
==35656==    at 0x4C27BE3: malloc (vg_replace_malloc.c:299)
==35656==    by 0x4E8FB45: __gf_malloc (mem-pool.c:142)
==35656==    by 0x4E8FDF0: gf_vasprintf (mem-pool.c:221)
==35656==    by 0x4E8FEDF: gf_asprintf (mem-pool.c:240)
==35656==    by 0x4E904D2: mem_pool_new_fn (mem-pool.c:385)
==35656==    by 0x5151087: rpc_clnt_new (rpc-clnt.c:1139)
==35656==    by 0x14A014DE: quota_enforcer_init (quota-enforcer-client.c:451)
==35656==    by 0x149FF51D: init (quota.c:5127)
==35656==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==35656==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==35656==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==35656==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==35656== 
==35656== 100 bytes in 1 blocks are possibly lost in loss record 307 of 704
==35656==    at 0x4C27BE3: malloc (vg_replace_malloc.c:299)
==35656==    by 0x4E8FB45: __gf_malloc (mem-pool.c:142)
==35656==    by 0x4E8FDF0: gf_vasprintf (mem-pool.c:221)
==35656==    by 0x4E8FEDF: gf_asprintf (mem-pool.c:240)
==35656==    by 0x4E721C6: inode_table_new (inode.c:1635)
==35656==    by 0x15096890: server_setvolume (server-handshake.c:740)
==35656==    by 0x514731B: rpcsvc_handle_rpc_call (rpcsvc.c:701)
==35656==    by 0x514766E: rpcsvc_notify (rpcsvc.c:795)
==35656==    by 0x514CD1D: rpc_transport_notify (rpc-transport.c:541)
==35656==    by 0xFEA9D43: socket_event_poll_in (socket.c:2267)
==35656==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==35656==    by 0x4ECB1D7: event_dispatch_epoll_handler (event-epoll.c:571)
==35656== 
==35656== 101 bytes in 1 blocks are possibly lost in loss record 308 of 704
==35656==    at 0x4C27BE3: malloc (vg_replace_malloc.c:299)
==35656==    by 0x4E8FB45: __gf_malloc (mem-pool.c:142)
==35656==    by 0x4E8FDF0: gf_vasprintf (mem-pool.c:221)
==35656==    by 0x4E8FEDF: gf_asprintf (mem-pool.c:240)
==35656==    by 0x4E904D2: mem_pool_new_fn (mem-pool.c:385)
==35656==    by 0x51510EE: rpc_clnt_new (rpc-clnt.c:1148)
==35656==    by 0x40FE46: glusterfs_mgmt_init (glusterfsd-mgmt.c:2157)
==35656==    by 0x40A412: glusterfs_volumes_init (glusterfsd.c:2365)
==35656==    by 0x40A892: main (glusterfsd.c:2488)
==35656== 
==35656== 101 bytes in 1 blocks are possibly lost in loss record 309 of 704
==35656==    at 0x4C27BE3: malloc (vg_replace_malloc.c:299)
==35656==    by 0x4E8FB45: __gf_malloc (mem-pool.c:142)
==35656==    by 0x4E8FDF0: gf_vasprintf (mem-pool.c:221)
==35656==    by 0x4E8FEDF: gf_asprintf (mem-pool.c:240)
==35656==    by 0x4E904D2: mem_pool_new_fn (mem-pool.c:385)
==35656==    by 0x143A9945: init (marker.c:3443)
==35656==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==35656==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==35656==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==35656==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==35656==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==35656==    by 0x40ECA5: mgmt_getspec_cbk (glusterfsd-mgmt.c:1648)
==35656== 
==35656== 101 bytes in 1 blocks are possibly lost in loss record 310 of 704
==35656==    at 0x4C27BE3: malloc (vg_replace_malloc.c:299)
==35656==    by 0x4E8FB45: __gf_malloc (mem-pool.c:142)
==35656==    by 0x4E8FDF0: gf_vasprintf (mem-pool.c:221)
==35656==    by 0x4E8FEDF: gf_asprintf (mem-pool.c:240)
==35656==    by 0x4E904D2: mem_pool_new_fn (mem-pool.c:385)
==35656==    by 0x1418A79B: init (upcall.c:1693)
==35656==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==35656==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==35656==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==35656==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==35656==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==35656==    by 0x40ECA5: mgmt_getspec_cbk (glusterfsd-mgmt.c:1648)
==35656== 
==35656== 101 bytes in 1 blocks are possibly lost in loss record 311 of 704
==35656==    at 0x4C27BE3: malloc (vg_replace_malloc.c:299)
==35656==    by 0x4E8FB45: __gf_malloc (mem-pool.c:142)
==35656==    by 0x4E8FDF0: gf_vasprintf (mem-pool.c:221)
==35656==    by 0x4E8FEDF: gf_asprintf (mem-pool.c:240)
==35656==    by 0x4E904D2: mem_pool_new_fn (mem-pool.c:385)
==35656==    by 0x13B50CF0: init (worm.c:504)
==35656==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==35656==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==35656==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==35656==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==35656==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==35656==    by 0x40ECA5: mgmt_getspec_cbk (glusterfsd-mgmt.c:1648)
==35656== 
==35656== 101 bytes in 1 blocks are definitely lost in loss record 312 of 704
==35656==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==35656==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==35656==    by 0x4E5499E: dict_set_lk (dict.c:378)
==35656==    by 0x4E54B82: dict_set (dict.c:424)
==35656==    by 0x4E585B1: dict_set_dynstr (dict.c:2205)
==35656==    by 0x514A33D: rpcsvc_transport_unix_options_build (rpcsvc.c:2176)
==35656==    by 0x40F909: glusterfs_listener_init (glusterfsd-mgmt.c:2022)
==35656==    by 0x40A3EC: glusterfs_volumes_init (glusterfsd.c:2359)
==35656==    by 0x40A892: main (glusterfsd.c:2488)
==35656== 
==35656== 101 bytes in 1 blocks are definitely lost in loss record 313 of 704
==35656==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==35656==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==35656==    by 0x4E5499E: dict_set_lk (dict.c:378)
==35656==    by 0x4E54B82: dict_set (dict.c:424)
==35656==    by 0x4EBE088: xl_opt_validate (options.c:955)
==35656==    by 0x4E56B26: dict_foreach_match (dict.c:1236)
==35656==    by 0x4E56A12: dict_foreach (dict.c:1194)
==35656==    by 0x4EBE0F0: xlator_options_validate_list (options.c:977)
==35656==    by 0x514C360: rpc_transport_load (rpc-transport.c:338)
==35656==    by 0x5149213: rpcsvc_create_listener (rpcsvc.c:1664)
==35656==    by 0x514955C: rpcsvc_create_listeners (rpcsvc.c:1757)
==35656==    by 0x1506250B: init (server.c:1056)
==35656== 
==35656== 102 bytes in 1 blocks are definitely lost in loss record 314 of 704
==35656==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==35656==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==35656==    by 0x4E5499E: dict_set_lk (dict.c:378)
==35656==    by 0x4E54B82: dict_set (dict.c:424)
==35656==    by 0x4E584CB: dict_set_str (dict.c:2168)
==35656==    by 0x14A014B4: quota_enforcer_init (quota-enforcer-client.c:446)
==35656==    by 0x149FF51D: init (quota.c:5127)
==35656==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==35656==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==35656==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==35656==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==35656==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==35656== 
==35656== 103 bytes in 1 blocks are possibly lost in loss record 315 of 704
==35656==    at 0x4C27BE3: malloc (vg_replace_malloc.c:299)
==35656==    by 0x4E8FB45: __gf_malloc (mem-pool.c:142)
==35656==    by 0x4E8FDF0: gf_vasprintf (mem-pool.c:221)
==35656==    by 0x4E8FEDF: gf_asprintf (mem-pool.c:240)
==35656==    by 0x4E904D2: mem_pool_new_fn (mem-pool.c:385)
==35656==    by 0x514A732: rpcsvc_init (rpcsvc.c:2327)
==35656==    by 0x150622FC: init (server.c:1019)
==35656==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==35656==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==35656==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==35656==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==35656==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==35656== 
==35656== 104 bytes in 1 blocks are possibly lost in loss record 316 of 704
==35656==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==35656==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==35656==    by 0x5145E8F: rpcsvc_notify_wrapper_alloc (rpcsvc.c:66)
==35656==    by 0x51496F5: rpcsvc_register_notify (rpcsvc.c:1824)
==35656==    by 0x40F967: glusterfs_listener_init (glusterfsd-mgmt.c:2032)
==35656==    by 0x40A3EC: glusterfs_volumes_init (glusterfsd.c:2359)
==35656==    by 0x40A892: main (glusterfsd.c:2488)
==35656== 
==35656== 104 bytes in 1 blocks are possibly lost in loss record 317 of 704
==35656==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==35656==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==35656==    by 0x5145E8F: rpcsvc_notify_wrapper_alloc (rpcsvc.c:66)
==35656==    by 0x51496F5: rpcsvc_register_notify (rpcsvc.c:1824)
==35656==    by 0x150625FA: init (server.c:1072)
==35656==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==35656==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==35656==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==35656==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==35656==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==35656==    by 0x40ECA5: mgmt_getspec_cbk (glusterfsd-mgmt.c:1648)
==35656==    by 0x51505D2: rpc_clnt_handle_reply (rpc-clnt.c:791)
==35656== 
==35656== 104 bytes in 1 blocks are possibly lost in loss record 318 of 704
==35656==    at 0x4C27BE3: malloc (vg_replace_malloc.c:299)
==35656==    by 0x4E8FB45: __gf_malloc (mem-pool.c:142)
==35656==    by 0x4E8FDF0: gf_vasprintf (mem-pool.c:221)
==35656==    by 0x4E8FEDF: gf_asprintf (mem-pool.c:240)
==35656==    by 0x4E904D2: mem_pool_new_fn (mem-pool.c:385)
==35656==    by 0x51510EE: rpc_clnt_new (rpc-clnt.c:1148)
==35656==    by 0x14A014DE: quota_enforcer_init (quota-enforcer-client.c:451)
==35656==    by 0x149FF51D: init (quota.c:5127)
==35656==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==35656==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==35656==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==35656==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==35656== 
==35656== 104 bytes in 1 blocks are possibly lost in loss record 319 of 704
==35656==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==35656==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==35656==    by 0x13707A66: posix_acl_new (posix-acl.c:428)
==35656==    by 0x13716BE3: init (posix-acl.c:2316)
==35656==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==35656==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==35656==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==35656==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==35656==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==35656==    by 0x40ECA5: mgmt_getspec_cbk (glusterfsd-mgmt.c:1648)
==35656==    by 0x51505D2: rpc_clnt_handle_reply (rpc-clnt.c:791)
==35656==    by 0x5150B34: rpc_clnt_notify (rpc-clnt.c:971)
==35656== 
==35656== 104 bytes in 1 blocks are possibly lost in loss record 320 of 704
==35656==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==35656==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==35656==    by 0x5145E8F: rpcsvc_notify_wrapper_alloc (rpcsvc.c:66)
==35656==    by 0x51496F5: rpcsvc_register_notify (rpcsvc.c:1824)
==35656==    by 0x132DF16F: changelog_rpc_server_init (changelog-rpc-common.c:310)
==35656==    by 0x132DDC27: changelog_init_rpc_listner (changelog-rpc.c:175)
==35656==    by 0x132D6D70: changelog_init_rpc (changelog.c:2768)
==35656==    by 0x132D71B1: init (changelog.c:2850)
==35656==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==35656==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==35656==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==35656==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==35656== 
==35656== 106 bytes in 1 blocks are possibly lost in loss record 321 of 704
==35656==    at 0x4C27BE3: malloc (vg_replace_malloc.c:299)
==35656==    by 0x4E8FB45: __gf_malloc (mem-pool.c:142)
==35656==    by 0x4E8FDF0: gf_vasprintf (mem-pool.c:221)
==35656==    by 0x4E8FEDF: gf_asprintf (mem-pool.c:240)
==35656==    by 0x4E904D2: mem_pool_new_fn (mem-pool.c:385)
==35656==    by 0x514A732: rpcsvc_init (rpcsvc.c:2327)
==35656==    by 0x132DF0F9: changelog_rpc_server_init (changelog-rpc-common.c:302)
==35656==    by 0x132DDC27: changelog_init_rpc_listner (changelog-rpc.c:175)
==35656==    by 0x132D6D70: changelog_init_rpc (changelog.c:2768)
==35656==    by 0x132D71B1: init (changelog.c:2850)
==35656==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==35656==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==35656== 
==35656== 107 bytes in 1 blocks are possibly lost in loss record 322 of 704
==35656==    at 0x4C27BE3: malloc (vg_replace_malloc.c:299)
==35656==    by 0x4E8FB45: __gf_malloc (mem-pool.c:142)
==35656==    by 0x4E8FDF0: gf_vasprintf (mem-pool.c:221)
==35656==    by 0x4E8FEDF: gf_asprintf (mem-pool.c:240)
==35656==    by 0x4E904D2: mem_pool_new_fn (mem-pool.c:385)
==35656==    by 0x134EF2D6: init (bit-rot-stub.c:135)
==35656==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==35656==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==35656==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==35656==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==35656==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==35656==    by 0x40ECA5: mgmt_getspec_cbk (glusterfsd-mgmt.c:1648)
==35656== 
==35656== 107 bytes in 1 blocks are possibly lost in loss record 323 of 704
==35656==    at 0x4C27BE3: malloc (vg_replace_malloc.c:299)
==35656==    by 0x4E8FB45: __gf_malloc (mem-pool.c:142)
==35656==    by 0x4E8FDF0: gf_vasprintf (mem-pool.c:221)
==35656==    by 0x4E8FEDF: gf_asprintf (mem-pool.c:240)
==35656==    by 0x4E904D2: mem_pool_new_fn (mem-pool.c:385)
==35656==    by 0x132D6F76: init (changelog.c:2812)
==35656==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==35656==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==35656==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==35656==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==35656==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==35656==    by 0x40ECA5: mgmt_getspec_cbk (glusterfsd-mgmt.c:1648)
==35656== 
==35656== 112 bytes in 1 blocks are possibly lost in loss record 324 of 704
==35656==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==35656==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==35656==    by 0x4068D5: gf_remember_backup_volfile_server (glusterfsd.c:681)
==35656==    by 0x4070DB: parse_opts (glusterfsd.c:836)
==35656==    by 0x67B4F7C: argp_parse (in /usr/lib64/libc-2.17.so)
==35656==    by 0x4092D4: parse_cmdline (glusterfsd.c:1866)
==35656==    by 0x40A5E5: main (glusterfsd.c:2417)
==35656== 
==35656== 112 bytes in 1 blocks are possibly lost in loss record 325 of 704
==35656==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==35656==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==35656==    by 0x14C0CBA1: ios_create_sample_buf (io-stats.c:480)
==35656==    by 0x14C0CCCA: ios_init_sample_buf (io-stats.c:519)
==35656==    by 0x14C282AF: init (io-stats.c:3678)
==35656==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==35656==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==35656==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==35656==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==35656==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==35656==    by 0x40ECA5: mgmt_getspec_cbk (glusterfsd-mgmt.c:1648)
==35656==    by 0x51505D2: rpc_clnt_handle_reply (rpc-clnt.c:791)
==35656== 
==35656== 112 bytes in 1 blocks are possibly lost in loss record 326 of 704
==35656==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==35656==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==35656==    by 0x13D561C0: init (read-only.c:45)
==35656==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==35656==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==35656==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==35656==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==35656==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==35656==    by 0x40ECA5: mgmt_getspec_cbk (glusterfsd-mgmt.c:1648)
==35656==    by 0x51505D2: rpc_clnt_handle_reply (rpc-clnt.c:791)
==35656==    by 0x5150B34: rpc_clnt_notify (rpc-clnt.c:971)
==35656==    by 0x514CD1D: rpc_transport_notify (rpc-transport.c:541)
==35656== 
==35656== 112 bytes in 1 blocks are possibly lost in loss record 327 of 704
==35656==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==35656==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==35656==    by 0x132D736A: changelog_rt_init (changelog-rt.c:23)
==35656==    by 0x132D6C28: changelog_init_options (changelog.c:2722)
==35656==    by 0x132D706A: init (changelog.c:2823)
==35656==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==35656==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==35656==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==35656==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==35656==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==35656==    by 0x40ECA5: mgmt_getspec_cbk (glusterfsd-mgmt.c:1648)
==35656==    by 0x51505D2: rpc_clnt_handle_reply (rpc-clnt.c:791)
==35656== 
==35656== 113 bytes in 1 blocks are possibly lost in loss record 328 of 704
==35656==    at 0x4C27BE3: malloc (vg_replace_malloc.c:299)
==35656==    by 0x4E8FB45: __gf_malloc (mem-pool.c:142)
==35656==    by 0x4E8FDF0: gf_vasprintf (mem-pool.c:221)
==35656==    by 0x4E8FEDF: gf_asprintf (mem-pool.c:240)
==35656==    by 0x4E904D2: mem_pool_new_fn (mem-pool.c:385)
==35656==    by 0x12BEA39B: init (changetimerecorder.c:2109)
==35656==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==35656==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==35656==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==35656==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==35656==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==35656==    by 0x40ECA5: mgmt_getspec_cbk (glusterfsd-mgmt.c:1648)
==35656== 
==35656== 114 bytes in 1 blocks are possibly lost in loss record 329 of 704
==35656==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==35656==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==35656==    by 0x12195452: posix_handle_trash_init (posix-handle.c:674)
==35656==    by 0x1218C5A8: init (posix.c:7278)
==35656==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==35656==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==35656==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==35656==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==35656==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==35656==    by 0x40ECA5: mgmt_getspec_cbk (glusterfsd-mgmt.c:1648)
==35656==    by 0x51505D2: rpc_clnt_handle_reply (rpc-clnt.c:791)
==35656==    by 0x5150B34: rpc_clnt_notify (rpc-clnt.c:971)
==35656== 
==35656== 115 bytes in 1 blocks are possibly lost in loss record 330 of 704
==35656==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==35656==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==35656==    by 0x4052E4: gf_strdup (mem-pool.h:187)
==35656==    by 0x4074EC: parse_opts (glusterfsd.c:966)
==35656==    by 0x67B5412: argp_parse (in /usr/lib64/libc-2.17.so)
==35656==    by 0x4092D4: parse_cmdline (glusterfsd.c:1866)
==35656==    by 0x40A5E5: main (glusterfsd.c:2417)
==35656== 
==35656== 116 bytes in 1 blocks are possibly lost in loss record 331 of 704
==35656==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==35656==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==35656==    by 0x132C5046: gf_strdup (mem-pool.h:187)
==35656==    by 0x132D6780: changelog_init_options (changelog.c:2670)
==35656==    by 0x132D706A: init (changelog.c:2823)
==35656==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==35656==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==35656==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==35656==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==35656==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==35656==    by 0x40ECA5: mgmt_getspec_cbk (glusterfsd-mgmt.c:1648)
==35656==    by 0x51505D2: rpc_clnt_handle_reply (rpc-clnt.c:791)
==35656== 
==35656== 116 bytes in 1 blocks are definitely lost in loss record 332 of 704
==35656==    at 0x4C27BE3: malloc (vg_replace_malloc.c:299)
==35656==    by 0x4E8FB45: __gf_malloc (mem-pool.c:142)
==35656==    by 0x4E8FDF0: gf_vasprintf (mem-pool.c:221)
==35656==    by 0x4E8FEDF: gf_asprintf (mem-pool.c:240)
==35656==    by 0x12BEBBFE: extract_sql_params (ctr-helper.c:189)
==35656==    by 0x12BEBE3D: extract_db_params (ctr-helper.c:229)
==35656==    by 0x12BEA328: init (changetimerecorder.c:2100)
==35656==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==35656==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==35656==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==35656==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==35656==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==35656== 
==35656== 118 bytes in 1 blocks are possibly lost in loss record 333 of 704
==35656==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==35656==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==35656==    by 0x4E63EFC: gf_strdup (mem-pool.h:187)
==35656==    by 0x4E6A501: generate_glusterfs_ctx_id (common-utils.c:2941)
==35656==    by 0x408478: glusterfs_ctx_defaults_init (glusterfsd.c:1465)
==35656==    by 0x40A5BC: main (glusterfsd.c:2413)
==35656== 
==35656== 123 bytes in 1 blocks are possibly lost in loss record 335 of 704
==35656==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==35656==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==35656==    by 0x4052E4: gf_strdup (mem-pool.h:187)
==35656==    by 0x407452: parse_opts (glusterfsd.c:946)
==35656==    by 0x67B4F7C: argp_parse (in /usr/lib64/libc-2.17.so)
==35656==    by 0x4092D4: parse_cmdline (glusterfsd.c:1866)
==35656==    by 0x40A5E5: main (glusterfsd.c:2417)
==35656== 
==35656== 123 bytes in 1 blocks are possibly lost in loss record 336 of 704
==35656==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==35656==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==35656==    by 0x4E5D949: gf_strdup (mem-pool.h:187)
==35656==    by 0x4E5EC50: gf_log_init (logging.c:735)
==35656==    by 0x408CCA: logging_init (glusterfsd.c:1628)
==35656==    by 0x40A65E: main (glusterfsd.c:2438)
==35656== 
==35656== 128 bytes in 1 blocks are possibly lost in loss record 337 of 704
==35656==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==35656==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==35656==    by 0x13716B49: init (posix-acl.c:2305)
==35656==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==35656==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==35656==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==35656==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==35656==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==35656==    by 0x40ECA5: mgmt_getspec_cbk (glusterfsd-mgmt.c:1648)
==35656==    by 0x51505D2: rpc_clnt_handle_reply (rpc-clnt.c:791)
==35656==    by 0x5150B34: rpc_clnt_notify (rpc-clnt.c:971)
==35656==    by 0x514CD1D: rpc_transport_notify (rpc-transport.c:541)
==35656== 
==35656== 128 bytes in 1 blocks are possibly lost in loss record 338 of 704
==35656==    at 0x4C27BE3: malloc (vg_replace_malloc.c:299)
==35656==    by 0x130402E6: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==35656==    by 0x1301B6A9: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==35656==    by 0x13023A25: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==35656==    by 0x13023BDC: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==35656==    by 0x1302EDCB: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==35656==    by 0x1309E1F9: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==35656==    by 0x12E01B48: gf_open_sqlite3_conn (gfdb_sqlite3.c:192)
==35656==    by 0x12E02CAF: gf_sqlite3_init (gfdb_sqlite3.c:440)
==35656==    by 0x12DF97B5: init_db (gfdb_data_store.c:270)
==35656==    by 0x12BEA41F: init (changetimerecorder.c:2118)
==35656==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==35656== 
==35656== 128 bytes in 1 blocks are possibly lost in loss record 339 of 704
==35656==    at 0x4C27BE3: malloc (vg_replace_malloc.c:299)
==35656==    by 0x130402E6: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==35656==    by 0x1301B6A9: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==35656==    by 0x13023A25: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==35656==    by 0x13023BDC: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==35656==    by 0x1302EDEB: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==35656==    by 0x1309E20C: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==35656==    by 0x12E01B48: gf_open_sqlite3_conn (gfdb_sqlite3.c:192)
==35656==    by 0x12E02CAF: gf_sqlite3_init (gfdb_sqlite3.c:440)
==35656==    by 0x12DF97B5: init_db (gfdb_data_store.c:270)
==35656==    by 0x12BEA41F: init (changetimerecorder.c:2118)
==35656==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==35656== 
==35656== 129 bytes in 1 blocks are possibly lost in loss record 341 of 704
==35656==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==35656==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==35656==    by 0x4052E4: gf_strdup (mem-pool.h:187)
==35656==    by 0x40752A: parse_opts (glusterfsd.c:974)
==35656==    by 0x67B4F7C: argp_parse (in /usr/lib64/libc-2.17.so)
==35656==    by 0x4092D4: parse_cmdline (glusterfsd.c:1866)
==35656==    by 0x40A5E5: main (glusterfsd.c:2417)
==35656== 
==35656== 129 bytes in 1 blocks are definitely lost in loss record 342 of 704
==35656==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==35656==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==35656==    by 0x5145846: gf_strdup (mem-pool.h:187)
==35656==    by 0x514A30F: rpcsvc_transport_unix_options_build (rpcsvc.c:2170)
==35656==    by 0x40F909: glusterfs_listener_init (glusterfsd-mgmt.c:2022)
==35656==    by 0x40A3EC: glusterfs_volumes_init (glusterfsd.c:2359)
==35656==    by 0x40A892: main (glusterfsd.c:2488)
==35656== 
==35656== 136 bytes in 1 blocks are possibly lost in loss record 343 of 704
==35656==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==35656==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==35656==    by 0x4EE1D68: rbuf_init (rot-buffs.c:190)
==35656==    by 0x132D6D33: changelog_init_rpc (changelog.c:2764)
==35656==    by 0x132D71B1: init (changelog.c:2850)
==35656==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==35656==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==35656==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==35656==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==35656==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==35656==    by 0x40ECA5: mgmt_getspec_cbk (glusterfsd-mgmt.c:1648)
==35656==    by 0x51505D2: rpc_clnt_handle_reply (rpc-clnt.c:791)
==35656== 
==35656== 136 bytes in 1 blocks are possibly lost in loss record 344 of 704
==35656==    at 0x4C27BE3: malloc (vg_replace_malloc.c:299)
==35656==    by 0x130402E6: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==35656==    by 0x1301B6A9: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==35656==    by 0x13023A25: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==35656==    by 0x13023B60: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==35656==    by 0x13023BDC: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==35656==    by 0x1302D6FF: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==35656==    by 0x1304A432: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==35656==    by 0x1309E02E: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==35656==    by 0x12E01B48: gf_open_sqlite3_conn (gfdb_sqlite3.c:192)
==35656==    by 0x12E02CAF: gf_sqlite3_init (gfdb_sqlite3.c:440)
==35656==    by 0x12DF97B5: init_db (gfdb_data_store.c:270)
==35656== 
==35656== 136 bytes in 1 blocks are possibly lost in loss record 345 of 704
==35656==    at 0x4C27BE3: malloc (vg_replace_malloc.c:299)
==35656==    by 0x130402E6: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==35656==    by 0x1301B6A9: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==35656==    by 0x13023A25: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==35656==    by 0x13023B60: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==35656==    by 0x13023BDC: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==35656==    by 0x1302D6FF: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==35656==    by 0x1304A432: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==35656==    by 0x1309E091: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==35656==    by 0x12E01B48: gf_open_sqlite3_conn (gfdb_sqlite3.c:192)
==35656==    by 0x12E02CAF: gf_sqlite3_init (gfdb_sqlite3.c:440)
==35656==    by 0x12DF97B5: init_db (gfdb_data_store.c:270)
==35656== 
==35656== 136 bytes in 1 blocks are possibly lost in loss record 346 of 704
==35656==    at 0x4C27BE3: malloc (vg_replace_malloc.c:299)
==35656==    by 0x130402E6: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==35656==    by 0x1301B6A9: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==35656==    by 0x13023A25: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==35656==    by 0x13023B60: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==35656==    by 0x13023BDC: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==35656==    by 0x1302D6FF: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==35656==    by 0x1304A432: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==35656==    by 0x1309E0F1: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==35656==    by 0x12E01B48: gf_open_sqlite3_conn (gfdb_sqlite3.c:192)
==35656==    by 0x12E02CAF: gf_sqlite3_init (gfdb_sqlite3.c:440)
==35656==    by 0x12DF97B5: init_db (gfdb_data_store.c:270)
==35656== 
==35656== 136 bytes in 1 blocks are possibly lost in loss record 347 of 704
==35656==    at 0x4C27BE3: malloc (vg_replace_malloc.c:299)
==35656==    by 0x130402E6: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==35656==    by 0x1301B6A9: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==35656==    by 0x13023A25: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==35656==    by 0x1303409C: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==35656==    by 0x130340DD: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==35656==    by 0x13034382: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==35656==    by 0x1309E40A: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==35656==    by 0x12E01B48: gf_open_sqlite3_conn (gfdb_sqlite3.c:192)
==35656==    by 0x12E02CAF: gf_sqlite3_init (gfdb_sqlite3.c:440)
==35656==    by 0x12DF97B5: init_db (gfdb_data_store.c:270)
==35656==    by 0x12BEA41F: init (changetimerecorder.c:2118)
==35656== 
==35656== 136 bytes in 1 blocks are possibly lost in loss record 348 of 704
==35656==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==35656==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==35656==    by 0x129D04A8: init (trash.c:2369)
==35656==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==35656==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==35656==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==35656==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==35656==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==35656==    by 0x40ECA5: mgmt_getspec_cbk (glusterfsd-mgmt.c:1648)
==35656==    by 0x51505D2: rpc_clnt_handle_reply (rpc-clnt.c:791)
==35656==    by 0x5150B34: rpc_clnt_notify (rpc-clnt.c:971)
==35656==    by 0x514CD1D: rpc_transport_notify (rpc-transport.c:541)
==35656== 
==35656== 136 bytes in 1 blocks are possibly lost in loss record 349 of 704
==35656==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==35656==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==35656==    by 0x4E6DB96: gf_timer_call_after (timer.c:48)
==35656==    by 0x514FA65: rpc_clnt_reconnect (rpc-clnt.c:427)
==35656==    by 0x4E6E0EC: gf_timer_proc (timer.c:167)
==35656==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==35656==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==35656== 
==35656== 136 bytes in 1 blocks are possibly lost in loss record 350 of 704
==35656==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==35656==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==35656==    by 0x4E6DB96: gf_timer_call_after (timer.c:48)
==35656==    by 0x514F2AF: __save_frame (rpc-clnt.c:241)
==35656==    by 0x515231E: rpc_clnt_submit (rpc-clnt.c:1662)
==35656==    by 0x14A005AA: quota_enforcer_submit_request (quota-enforcer-client.c:101)
==35656==    by 0x14A00FA4: _quota_enforcer_lookup (quota-enforcer-client.c:298)
==35656==    by 0x14A010EE: quota_enforcer_lookup (quota-enforcer-client.c:339)
==35656==    by 0x149E1998: quota_validate (quota.c:1002)
==35656==    by 0x149FBCD6: quota_statfs_continue (quota.c:4494)
==35656==    by 0x149FBEA3: quota_get_limit_dir (quota.c:4539)
==35656==    by 0x149FC262: quota_statfs (quota.c:4609)
==35656== 
==35656== 136 bytes in 1 blocks are possibly lost in loss record 351 of 704
==35656==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==35656==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==35656==    by 0x4E6DB96: gf_timer_call_after (timer.c:48)
==35656==    by 0x514EEF0: call_bail (rpc-clnt.c:160)
==35656==    by 0x4E6E0EC: gf_timer_proc (timer.c:167)
==35656==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==35656==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==35656== 
==35656== 140 bytes in 1 blocks are possibly lost in loss record 352 of 704
==35656==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==35656==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==35656==    by 0x4E908B0: mem_get (mem-pool.c:513)
==35656==    by 0x4E906CE: mem_get0 (mem-pool.c:446)
==35656==    by 0x13B50D5E: init (worm.c:512)
==35656==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==35656==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==35656==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==35656==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==35656==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==35656==    by 0x40ECA5: mgmt_getspec_cbk (glusterfsd-mgmt.c:1648)
==35656==    by 0x51505D2: rpc_clnt_handle_reply (rpc-clnt.c:791)
==35656== 
==35656== 140 bytes in 1 blocks are definitely lost in loss record 353 of 704
==35656==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==35656==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==35656==    by 0x4E908B0: mem_get (mem-pool.c:513)
==35656==    by 0x4E906CE: mem_get0 (mem-pool.c:446)
==35656==    by 0x4E54919: dict_set_lk (dict.c:360)
==35656==    by 0x4E54B82: dict_set (dict.c:424)
==35656==    by 0x4E584CB: dict_set_str (dict.c:2168)
==35656==    by 0x514A362: rpcsvc_transport_unix_options_build (rpcsvc.c:2180)
==35656==    by 0x40F909: glusterfs_listener_init (glusterfsd-mgmt.c:2022)
==35656==    by 0x40A3EC: glusterfs_volumes_init (glusterfsd.c:2359)
==35656==    by 0x40A892: main (glusterfsd.c:2488)
==35656== 
==35656== 140 bytes in 1 blocks are definitely lost in loss record 354 of 704
==35656==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==35656==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==35656==    by 0x4E908B0: mem_get (mem-pool.c:513)
==35656==    by 0x4E906CE: mem_get0 (mem-pool.c:446)
==35656==    by 0x4E54919: dict_set_lk (dict.c:360)
==35656==    by 0x4E54B82: dict_set (dict.c:424)
==35656==    by 0x4E584CB: dict_set_str (dict.c:2168)
==35656==    by 0x514A387: rpcsvc_transport_unix_options_build (rpcsvc.c:2184)
==35656==    by 0x40F909: glusterfs_listener_init (glusterfsd-mgmt.c:2022)
==35656==    by 0x40A3EC: glusterfs_volumes_init (glusterfsd.c:2359)
==35656==    by 0x40A892: main (glusterfsd.c:2488)
==35656== 
==35656== 140 bytes in 1 blocks are definitely lost in loss record 355 of 704
==35656==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==35656==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==35656==    by 0x4E908B0: mem_get (mem-pool.c:513)
==35656==    by 0x4E906CE: mem_get0 (mem-pool.c:446)
==35656==    by 0x4E54919: dict_set_lk (dict.c:360)
==35656==    by 0x4E54B82: dict_set (dict.c:424)
==35656==    by 0x4E584CB: dict_set_str (dict.c:2168)
==35656==    by 0x514A3AC: rpcsvc_transport_unix_options_build (rpcsvc.c:2188)
==35656==    by 0x40F909: glusterfs_listener_init (glusterfsd-mgmt.c:2022)
==35656==    by 0x40A3EC: glusterfs_volumes_init (glusterfsd.c:2359)
==35656==    by 0x40A892: main (glusterfsd.c:2488)
==35656== 
==35656== 140 bytes in 1 blocks are definitely lost in loss record 356 of 704
==35656==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==35656==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==35656==    by 0x4E908B0: mem_get (mem-pool.c:513)
==35656==    by 0x4E906CE: mem_get0 (mem-pool.c:446)
==35656==    by 0x4E54919: dict_set_lk (dict.c:360)
==35656==    by 0x4E54B82: dict_set (dict.c:424)
==35656==    by 0x4E584CB: dict_set_str (dict.c:2168)
==35656==    by 0x5144D69: rpcsvc_set_allow_insecure (rpcsvc-auth.c:231)
==35656==    by 0x5144F59: rpcsvc_auth_init (rpcsvc-auth.c:283)
==35656==    by 0x514A796: rpcsvc_init (rpcsvc.c:2334)
==35656==    by 0x40F93C: glusterfs_listener_init (glusterfsd-mgmt.c:2027)
==35656==    by 0x40A3EC: glusterfs_volumes_init (glusterfsd.c:2359)
==35656== 
==35656== 140 bytes in 1 blocks are definitely lost in loss record 357 of 704
==35656==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==35656==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==35656==    by 0x4E908B0: mem_get (mem-pool.c:513)
==35656==    by 0x4E906CE: mem_get0 (mem-pool.c:446)
==35656==    by 0x4E54919: dict_set_lk (dict.c:360)
==35656==    by 0x4E54B82: dict_set (dict.c:424)
==35656==    by 0x4E584CB: dict_set_str (dict.c:2168)
==35656==    by 0x5144A44: rpcsvc_auth_init_auths (rpcsvc-auth.c:148)
==35656==    by 0x5144FDA: rpcsvc_auth_init (rpcsvc-auth.c:292)
==35656==    by 0x514A796: rpcsvc_init (rpcsvc.c:2334)
==35656==    by 0x40F93C: glusterfs_listener_init (glusterfsd-mgmt.c:2027)
==35656==    by 0x40A3EC: glusterfs_volumes_init (glusterfsd.c:2359)
==35656== 
==35656== 140 bytes in 1 blocks are definitely lost in loss record 358 of 704
==35656==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==35656==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==35656==    by 0x4E908B0: mem_get (mem-pool.c:513)
==35656==    by 0x4E906CE: mem_get0 (mem-pool.c:446)
==35656==    by 0x4E54919: dict_set_lk (dict.c:360)
==35656==    by 0x4E54B82: dict_set (dict.c:424)
==35656==    by 0x4E584CB: dict_set_str (dict.c:2168)
==35656==    by 0x5144AB0: rpcsvc_auth_init_auths (rpcsvc-auth.c:155)
==35656==    by 0x5144FDA: rpcsvc_auth_init (rpcsvc-auth.c:292)
==35656==    by 0x514A796: rpcsvc_init (rpcsvc.c:2334)
==35656==    by 0x40F93C: glusterfs_listener_init (glusterfsd-mgmt.c:2027)
==35656==    by 0x40A3EC: glusterfs_volumes_init (glusterfsd.c:2359)
==35656== 
==35656== 140 bytes in 1 blocks are definitely lost in loss record 359 of 704
==35656==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==35656==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==35656==    by 0x4E908B0: mem_get (mem-pool.c:513)
==35656==    by 0x4E906CE: mem_get0 (mem-pool.c:446)
==35656==    by 0x4E54919: dict_set_lk (dict.c:360)
==35656==    by 0x4E54B82: dict_set (dict.c:424)
==35656==    by 0x4E584CB: dict_set_str (dict.c:2168)
==35656==    by 0x5144B1C: rpcsvc_auth_init_auths (rpcsvc-auth.c:162)
==35656==    by 0x5144FDA: rpcsvc_auth_init (rpcsvc-auth.c:292)
==35656==    by 0x514A796: rpcsvc_init (rpcsvc.c:2334)
==35656==    by 0x40F93C: glusterfs_listener_init (glusterfsd-mgmt.c:2027)
==35656==    by 0x40A3EC: glusterfs_volumes_init (glusterfsd.c:2359)
==35656== 
==35656== 140 bytes in 1 blocks are definitely lost in loss record 360 of 704
==35656==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==35656==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==35656==    by 0x4E908B0: mem_get (mem-pool.c:513)
==35656==    by 0x4E906CE: mem_get0 (mem-pool.c:446)
==35656==    by 0x4E54919: dict_set_lk (dict.c:360)
==35656==    by 0x4E54B82: dict_set (dict.c:424)
==35656==    by 0x4E57BDF: dict_set_int32 (dict.c:1777)
==35656==    by 0x514D1CD: rpc_transport_inet_options_build (rpc-transport.c:684)
==35656==    by 0x40FD9D: glusterfs_mgmt_init (glusterfsd-mgmt.c:2139)
==35656==    by 0x40A412: glusterfs_volumes_init (glusterfsd.c:2365)
==35656==    by 0x40A892: main (glusterfsd.c:2488)
==35656== 
==35656== 140 bytes in 1 blocks are definitely lost in loss record 361 of 704
==35656==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==35656==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==35656==    by 0x4E908B0: mem_get (mem-pool.c:513)
==35656==    by 0x4E906CE: mem_get0 (mem-pool.c:446)
==35656==    by 0x4E54919: dict_set_lk (dict.c:360)
==35656==    by 0x4E54B82: dict_set (dict.c:424)
==35656==    by 0x4E584CB: dict_set_str (dict.c:2168)
==35656==    by 0x514D235: rpc_transport_inet_options_build (rpc-transport.c:691)
==35656==    by 0x40FD9D: glusterfs_mgmt_init (glusterfsd-mgmt.c:2139)
==35656==    by 0x40A412: glusterfs_volumes_init (glusterfsd.c:2365)
==35656==    by 0x40A892: main (glusterfsd.c:2488)
==35656== 
==35656== 140 bytes in 1 blocks are definitely lost in loss record 362 of 704
==35656==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==35656==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==35656==    by 0x4E908B0: mem_get (mem-pool.c:513)
==35656==    by 0x4E906CE: mem_get0 (mem-pool.c:446)
==35656==    by 0x4E54919: dict_set_lk (dict.c:360)
==35656==    by 0x4E54B82: dict_set (dict.c:424)
==35656==    by 0x4E584CB: dict_set_str (dict.c:2168)
==35656==    by 0x4EA196E: gf_add_cmdline_options (graph.c:260)
==35656==    by 0x4EA2394: glusterfs_graph_prepare (graph.c:523)
==35656==    by 0x40A2F9: glusterfs_process_volfp (glusterfsd.c:2319)
==35656==    by 0x40ECA5: mgmt_getspec_cbk (glusterfsd-mgmt.c:1648)
==35656==    by 0x51505D2: rpc_clnt_handle_reply (rpc-clnt.c:791)
==35656== 
==35656== 140 bytes in 1 blocks are definitely lost in loss record 363 of 704
==35656==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==35656==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==35656==    by 0x4E908B0: mem_get (mem-pool.c:513)
==35656==    by 0x4E906CE: mem_get0 (mem-pool.c:446)
==35656==    by 0x4E54919: dict_set_lk (dict.c:360)
==35656==    by 0x4E54B82: dict_set (dict.c:424)
==35656==    by 0x4E58200: dict_set_dynptr (dict.c:2042)
==35656==    by 0x150603EC: get_auth_types (server.c:367)
==35656==    by 0x4E56B26: dict_foreach_match (dict.c:1236)
==35656==    by 0x4E56A12: dict_foreach (dict.c:1194)
==35656==    by 0x15062130: init (server.c:986)
==35656==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==35656== 
==35656== 140 bytes in 1 blocks are definitely lost in loss record 364 of 704
==35656==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==35656==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==35656==    by 0x4E908B0: mem_get (mem-pool.c:513)
==35656==    by 0x4E906CE: mem_get0 (mem-pool.c:446)
==35656==    by 0x4E54919: dict_set_lk (dict.c:360)
==35656==    by 0x4E54B82: dict_set (dict.c:424)
==35656==    by 0x4E584CB: dict_set_str (dict.c:2168)
==35656==    by 0x5144D69: rpcsvc_set_allow_insecure (rpcsvc-auth.c:231)
==35656==    by 0x5144F59: rpcsvc_auth_init (rpcsvc-auth.c:283)
==35656==    by 0x514A796: rpcsvc_init (rpcsvc.c:2334)
==35656==    by 0x150622FC: init (server.c:1019)
==35656==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==35656== 
==35656== 140 bytes in 1 blocks are definitely lost in loss record 365 of 704
==35656==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==35656==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==35656==    by 0x4E908B0: mem_get (mem-pool.c:513)
==35656==    by 0x4E906CE: mem_get0 (mem-pool.c:446)
==35656==    by 0x4E54919: dict_set_lk (dict.c:360)
==35656==    by 0x4E54B82: dict_set (dict.c:424)
==35656==    by 0x4E584CB: dict_set_str (dict.c:2168)
==35656==    by 0x5144A44: rpcsvc_auth_init_auths (rpcsvc-auth.c:148)
==35656==    by 0x5144FDA: rpcsvc_auth_init (rpcsvc-auth.c:292)
==35656==    by 0x514A796: rpcsvc_init (rpcsvc.c:2334)
==35656==    by 0x150622FC: init (server.c:1019)
==35656==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==35656== 
==35656== 140 bytes in 1 blocks are definitely lost in loss record 366 of 704
==35656==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==35656==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==35656==    by 0x4E908B0: mem_get (mem-pool.c:513)
==35656==    by 0x4E906CE: mem_get0 (mem-pool.c:446)
==35656==    by 0x4E54919: dict_set_lk (dict.c:360)
==35656==    by 0x4E54B82: dict_set (dict.c:424)
==35656==    by 0x4E584CB: dict_set_str (dict.c:2168)
==35656==    by 0x5144AB0: rpcsvc_auth_init_auths (rpcsvc-auth.c:155)
==35656==    by 0x5144FDA: rpcsvc_auth_init (rpcsvc-auth.c:292)
==35656==    by 0x514A796: rpcsvc_init (rpcsvc.c:2334)
==35656==    by 0x150622FC: init (server.c:1019)
==35656==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==35656== 
==35656== 140 bytes in 1 blocks are definitely lost in loss record 367 of 704
==35656==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==35656==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==35656==    by 0x4E908B0: mem_get (mem-pool.c:513)
==35656==    by 0x4E906CE: mem_get0 (mem-pool.c:446)
==35656==    by 0x4E54919: dict_set_lk (dict.c:360)
==35656==    by 0x4E54B82: dict_set (dict.c:424)
==35656==    by 0x4E584CB: dict_set_str (dict.c:2168)
==35656==    by 0x5144B1C: rpcsvc_auth_init_auths (rpcsvc-auth.c:162)
==35656==    by 0x5144FDA: rpcsvc_auth_init (rpcsvc-auth.c:292)
==35656==    by 0x514A796: rpcsvc_init (rpcsvc.c:2334)
==35656==    by 0x150622FC: init (server.c:1019)
==35656==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==35656== 
==35656== 140 bytes in 1 blocks are definitely lost in loss record 368 of 704
==35656==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==35656==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==35656==    by 0x4E908B0: mem_get (mem-pool.c:513)
==35656==    by 0x4E906CE: mem_get0 (mem-pool.c:446)
==35656==    by 0x4E54919: dict_set_lk (dict.c:360)
==35656==    by 0x4E54B82: dict_set (dict.c:424)
==35656==    by 0x4EBE088: xl_opt_validate (options.c:955)
==35656==    by 0x4E56B26: dict_foreach_match (dict.c:1236)
==35656==    by 0x4E56A12: dict_foreach (dict.c:1194)
==35656==    by 0x4EBE0F0: xlator_options_validate_list (options.c:977)
==35656==    by 0x514C360: rpc_transport_load (rpc-transport.c:338)
==35656==    by 0x5149213: rpcsvc_create_listener (rpcsvc.c:1664)
==35656== 
==35656== 140 bytes in 1 blocks are definitely lost in loss record 369 of 704
==35656==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==35656==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==35656==    by 0x4E908B0: mem_get (mem-pool.c:513)
==35656==    by 0x4E906CE: mem_get0 (mem-pool.c:446)
==35656==    by 0x4E54919: dict_set_lk (dict.c:360)
==35656==    by 0x4E54B82: dict_set (dict.c:424)
==35656==    by 0x4E584CB: dict_set_str (dict.c:2168)
==35656==    by 0x14A01464: quota_enforcer_init (quota-enforcer-client.c:438)
==35656==    by 0x149FF51D: init (quota.c:5127)
==35656==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==35656==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==35656==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==35656== 
==35656== 140 bytes in 1 blocks are definitely lost in loss record 370 of 704
==35656==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==35656==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==35656==    by 0x4E908B0: mem_get (mem-pool.c:513)
==35656==    by 0x4E906CE: mem_get0 (mem-pool.c:446)
==35656==    by 0x4E54919: dict_set_lk (dict.c:360)
==35656==    by 0x4E54B82: dict_set (dict.c:424)
==35656==    by 0x4E584CB: dict_set_str (dict.c:2168)
==35656==    by 0x14A0148C: quota_enforcer_init (quota-enforcer-client.c:442)
==35656==    by 0x149FF51D: init (quota.c:5127)
==35656==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==35656==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==35656==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==35656== 
==35656== 140 bytes in 1 blocks are definitely lost in loss record 371 of 704
==35656==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==35656==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==35656==    by 0x4E908B0: mem_get (mem-pool.c:513)
==35656==    by 0x4E906CE: mem_get0 (mem-pool.c:446)
==35656==    by 0x4E54919: dict_set_lk (dict.c:360)
==35656==    by 0x4E54B82: dict_set (dict.c:424)
==35656==    by 0x4E584CB: dict_set_str (dict.c:2168)
==35656==    by 0x14A014B4: quota_enforcer_init (quota-enforcer-client.c:446)
==35656==    by 0x149FF51D: init (quota.c:5127)
==35656==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==35656==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==35656==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==35656== 
==35656== 140 bytes in 1 blocks are definitely lost in loss record 372 of 704
==35656==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==35656==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==35656==    by 0x4E908B0: mem_get (mem-pool.c:513)
==35656==    by 0x4E906CE: mem_get0 (mem-pool.c:446)
==35656==    by 0x4E54919: dict_set_lk (dict.c:360)
==35656==    by 0x4E54B82: dict_set (dict.c:424)
==35656==    by 0x4E56CD3: dict_copy_one (dict.c:1314)
==35656==    by 0x4E56B26: dict_foreach_match (dict.c:1236)
==35656==    by 0x4E56A12: dict_foreach (dict.c:1194)
==35656==    by 0x4E56F16: dict_copy_with_ref (dict.c:1364)
==35656==    by 0x147D5B45: init (index.c:2349)
==35656==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==35656== 
==35656== 140 bytes in 1 blocks are definitely lost in loss record 373 of 704
==35656==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==35656==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==35656==    by 0x4E908B0: mem_get (mem-pool.c:513)
==35656==    by 0x4E906CE: mem_get0 (mem-pool.c:446)
==35656==    by 0x13B50DB5: init (worm.c:518)
==35656==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==35656==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==35656==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==35656==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==35656==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==35656==    by 0x40ECA5: mgmt_getspec_cbk (glusterfsd-mgmt.c:1648)
==35656==    by 0x51505D2: rpc_clnt_handle_reply (rpc-clnt.c:791)
==35656== 
==35656== 144 bytes in 1 blocks are possibly lost in loss record 375 of 704
==35656==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==35656==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==35656==    by 0x4EC6949: gf_clienttable_alloc (client_t.c:97)
==35656==    by 0x408998: glusterfs_ctx_defaults_init (glusterfsd.c:1536)
==35656==    by 0x40A5BC: main (glusterfsd.c:2413)
==35656== 
==35656== 144 bytes in 1 blocks are possibly lost in loss record 376 of 704
==35656==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==35656==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==35656==    by 0x5144636: rpcsvc_auth_add_initer (rpcsvc-auth.c:35)
==35656==    by 0x51446D9: rpcsvc_auth_add_initers (rpcsvc-auth.c:54)
==35656==    by 0x5144F8B: rpcsvc_auth_init (rpcsvc-auth.c:286)
==35656==    by 0x514A796: rpcsvc_init (rpcsvc.c:2334)
==35656==    by 0x40F93C: glusterfs_listener_init (glusterfsd-mgmt.c:2027)
==35656==    by 0x40A3EC: glusterfs_volumes_init (glusterfsd.c:2359)
==35656==    by 0x40A892: main (glusterfsd.c:2488)
==35656== 
==35656== 144 bytes in 1 blocks are possibly lost in loss record 377 of 704
==35656==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==35656==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==35656==    by 0x5144636: rpcsvc_auth_add_initer (rpcsvc-auth.c:35)
==35656==    by 0x5144739: rpcsvc_auth_add_initers (rpcsvc-auth.c:63)
==35656==    by 0x5144F8B: rpcsvc_auth_init (rpcsvc-auth.c:286)
==35656==    by 0x514A796: rpcsvc_init (rpcsvc.c:2334)
==35656==    by 0x40F93C: glusterfs_listener_init (glusterfsd-mgmt.c:2027)
==35656==    by 0x40A3EC: glusterfs_volumes_init (glusterfsd.c:2359)
==35656==    by 0x40A892: main (glusterfsd.c:2488)
==35656== 
==35656== 144 bytes in 1 blocks are possibly lost in loss record 378 of 704
==35656==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==35656==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==35656==    by 0x5144636: rpcsvc_auth_add_initer (rpcsvc-auth.c:35)
==35656==    by 0x5144799: rpcsvc_auth_add_initers (rpcsvc-auth.c:72)
==35656==    by 0x5144F8B: rpcsvc_auth_init (rpcsvc-auth.c:286)
==35656==    by 0x514A796: rpcsvc_init (rpcsvc.c:2334)
==35656==    by 0x40F93C: glusterfs_listener_init (glusterfsd-mgmt.c:2027)
==35656==    by 0x40A3EC: glusterfs_volumes_init (glusterfsd.c:2359)
==35656==    by 0x40A892: main (glusterfsd.c:2488)
==35656== 
==35656== 144 bytes in 1 blocks are possibly lost in loss record 379 of 704
==35656==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==35656==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==35656==    by 0x5144636: rpcsvc_auth_add_initer (rpcsvc-auth.c:35)
==35656==    by 0x51447F6: rpcsvc_auth_add_initers (rpcsvc-auth.c:80)
==35656==    by 0x5144F8B: rpcsvc_auth_init (rpcsvc-auth.c:286)
==35656==    by 0x514A796: rpcsvc_init (rpcsvc.c:2334)
==35656==    by 0x40F93C: glusterfs_listener_init (glusterfsd-mgmt.c:2027)
==35656==    by 0x40A3EC: glusterfs_volumes_init (glusterfsd.c:2359)
==35656==    by 0x40A892: main (glusterfsd.c:2488)
==35656== 
==35656== 144 bytes in 1 blocks are possibly lost in loss record 380 of 704
==35656==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==35656==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==35656==    by 0x5144636: rpcsvc_auth_add_initer (rpcsvc-auth.c:35)
==35656==    by 0x51446D9: rpcsvc_auth_add_initers (rpcsvc-auth.c:54)
==35656==    by 0x5144F8B: rpcsvc_auth_init (rpcsvc-auth.c:286)
==35656==    by 0x514A796: rpcsvc_init (rpcsvc.c:2334)
==35656==    by 0x150622FC: init (server.c:1019)
==35656==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==35656==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==35656==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==35656==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==35656==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==35656== 
==35656== 144 bytes in 1 blocks are possibly lost in loss record 381 of 704
==35656==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==35656==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==35656==    by 0x5144636: rpcsvc_auth_add_initer (rpcsvc-auth.c:35)
==35656==    by 0x5144739: rpcsvc_auth_add_initers (rpcsvc-auth.c:63)
==35656==    by 0x5144F8B: rpcsvc_auth_init (rpcsvc-auth.c:286)
==35656==    by 0x514A796: rpcsvc_init (rpcsvc.c:2334)
==35656==    by 0x150622FC: init (server.c:1019)
==35656==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==35656==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==35656==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==35656==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==35656==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==35656== 
==35656== 144 bytes in 1 blocks are possibly lost in loss record 382 of 704
==35656==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==35656==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==35656==    by 0x5144636: rpcsvc_auth_add_initer (rpcsvc-auth.c:35)
==35656==    by 0x5144799: rpcsvc_auth_add_initers (rpcsvc-auth.c:72)
==35656==    by 0x5144F8B: rpcsvc_auth_init (rpcsvc-auth.c:286)
==35656==    by 0x514A796: rpcsvc_init (rpcsvc.c:2334)
==35656==    by 0x150622FC: init (server.c:1019)
==35656==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==35656==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==35656==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==35656==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==35656==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==35656== 
==35656== 144 bytes in 1 blocks are possibly lost in loss record 383 of 704
==35656==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==35656==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==35656==    by 0x5144636: rpcsvc_auth_add_initer (rpcsvc-auth.c:35)
==35656==    by 0x51447F6: rpcsvc_auth_add_initers (rpcsvc-auth.c:80)
==35656==    by 0x5144F8B: rpcsvc_auth_init (rpcsvc-auth.c:286)
==35656==    by 0x514A796: rpcsvc_init (rpcsvc.c:2334)
==35656==    by 0x150622FC: init (server.c:1019)
==35656==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==35656==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==35656==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==35656==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==35656==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==35656== 
==35656== 144 bytes in 1 blocks are possibly lost in loss record 384 of 704
==35656==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==35656==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==35656==    by 0x5144636: rpcsvc_auth_add_initer (rpcsvc-auth.c:35)
==35656==    by 0x51446D9: rpcsvc_auth_add_initers (rpcsvc-auth.c:54)
==35656==    by 0x5144F8B: rpcsvc_auth_init (rpcsvc-auth.c:286)
==35656==    by 0x514A796: rpcsvc_init (rpcsvc.c:2334)
==35656==    by 0x132DF0F9: changelog_rpc_server_init (changelog-rpc-common.c:302)
==35656==    by 0x132DDC27: changelog_init_rpc_listner (changelog-rpc.c:175)
==35656==    by 0x132D6D70: changelog_init_rpc (changelog.c:2768)
==35656==    by 0x132D71B1: init (changelog.c:2850)
==35656==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==35656==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==35656== 
==35656== 144 bytes in 1 blocks are possibly lost in loss record 385 of 704
==35656==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==35656==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==35656==    by 0x5144636: rpcsvc_auth_add_initer (rpcsvc-auth.c:35)
==35656==    by 0x5144739: rpcsvc_auth_add_initers (rpcsvc-auth.c:63)
==35656==    by 0x5144F8B: rpcsvc_auth_init (rpcsvc-auth.c:286)
==35656==    by 0x514A796: rpcsvc_init (rpcsvc.c:2334)
==35656==    by 0x132DF0F9: changelog_rpc_server_init (changelog-rpc-common.c:302)
==35656==    by 0x132DDC27: changelog_init_rpc_listner (changelog-rpc.c:175)
==35656==    by 0x132D6D70: changelog_init_rpc (changelog.c:2768)
==35656==    by 0x132D71B1: init (changelog.c:2850)
==35656==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==35656==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==35656== 
==35656== 144 bytes in 1 blocks are possibly lost in loss record 386 of 704
==35656==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==35656==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==35656==    by 0x5144636: rpcsvc_auth_add_initer (rpcsvc-auth.c:35)
==35656==    by 0x5144799: rpcsvc_auth_add_initers (rpcsvc-auth.c:72)
==35656==    by 0x5144F8B: rpcsvc_auth_init (rpcsvc-auth.c:286)
==35656==    by 0x514A796: rpcsvc_init (rpcsvc.c:2334)
==35656==    by 0x132DF0F9: changelog_rpc_server_init (changelog-rpc-common.c:302)
==35656==    by 0x132DDC27: changelog_init_rpc_listner (changelog-rpc.c:175)
==35656==    by 0x132D6D70: changelog_init_rpc (changelog.c:2768)
==35656==    by 0x132D71B1: init (changelog.c:2850)
==35656==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==35656==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==35656== 
==35656== 144 bytes in 1 blocks are possibly lost in loss record 387 of 704
==35656==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==35656==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==35656==    by 0x5144636: rpcsvc_auth_add_initer (rpcsvc-auth.c:35)
==35656==    by 0x51447F6: rpcsvc_auth_add_initers (rpcsvc-auth.c:80)
==35656==    by 0x5144F8B: rpcsvc_auth_init (rpcsvc-auth.c:286)
==35656==    by 0x514A796: rpcsvc_init (rpcsvc.c:2334)
==35656==    by 0x132DF0F9: changelog_rpc_server_init (changelog-rpc-common.c:302)
==35656==    by 0x132DDC27: changelog_init_rpc_listner (changelog-rpc.c:175)
==35656==    by 0x132D6D70: changelog_init_rpc (changelog.c:2768)
==35656==    by 0x132D71B1: init (changelog.c:2850)
==35656==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==35656==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==35656== 
==35656== 144 bytes in 1 blocks are possibly lost in loss record 388 of 704
==35656==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==35656==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==35656==    by 0x12BEA176: init (changetimerecorder.c:2061)
==35656==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==35656==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==35656==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==35656==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==35656==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==35656==    by 0x40ECA5: mgmt_getspec_cbk (glusterfsd-mgmt.c:1648)
==35656==    by 0x51505D2: rpc_clnt_handle_reply (rpc-clnt.c:791)
==35656==    by 0x5150B34: rpc_clnt_notify (rpc-clnt.c:971)
==35656==    by 0x514CD1D: rpc_transport_notify (rpc-transport.c:541)
==35656== 
==35656== 144 bytes in 1 blocks are possibly lost in loss record 389 of 704
==35656==    at 0x4C27BE3: malloc (vg_replace_malloc.c:299)
==35656==    by 0x130402E6: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==35656==    by 0x1301B6A9: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==35656==    by 0x13023A25: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==35656==    by 0x13023A4C: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==35656==    by 0x130596C0: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==35656==    by 0x1309E1B6: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==35656==    by 0x12E01B48: gf_open_sqlite3_conn (gfdb_sqlite3.c:192)
==35656==    by 0x12E02CAF: gf_sqlite3_init (gfdb_sqlite3.c:440)
==35656==    by 0x12DF97B5: init_db (gfdb_data_store.c:270)
==35656==    by 0x12BEA41F: init (changetimerecorder.c:2118)
==35656==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==35656== 
==35656== 146 bytes in 1 blocks are definitely lost in loss record 390 of 704
==35656==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==35656==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==35656==    by 0x4052E4: gf_strdup (mem-pool.h:187)
==35656==    by 0x40750B: parse_opts (glusterfsd.c:970)
==35656==    by 0x67B4F7C: argp_parse (in /usr/lib64/libc-2.17.so)
==35656==    by 0x4092D4: parse_cmdline (glusterfsd.c:1866)
==35656==    by 0x40A5E5: main (glusterfsd.c:2417)
==35656== 
==35656== 152 bytes in 1 blocks are possibly lost in loss record 391 of 704
==35656==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==35656==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==35656==    by 0x4085EF: glusterfs_ctx_defaults_init (glusterfsd.c:1486)
==35656==    by 0x40A5BC: main (glusterfsd.c:2413)
==35656== 
==35656== 154 bytes in 2 blocks are definitely lost in loss record 392 of 704
==35656==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==35656==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==35656==    by 0x4E6E844: gf_strdup (mem-pool.h:187)
==35656==    by 0x4E6FD0A: __dentry_create (inode.c:570)
==35656==    by 0x4E70B3B: __inode_link (inode.c:1016)
==35656==    by 0x4E70D02: inode_link (inode.c:1060)
==35656==    by 0x149E0E73: quota_build_ancestry_cbk (quota.c:778)
==35656==    by 0x143A79A9: marker_build_ancestry_cbk (marker.c:3055)
==35656==    by 0x14186A63: up_readdir_cbk (upcall.c:1264)
==35656==    by 0x13931DF5: pl_readdirp_cbk (posix.c:2700)
==35656==    by 0x137121B8: posix_acl_readdirp_cbk (posix-acl.c:1714)
==35656==    by 0x134FC918: br_stub_readdirp_cbk (bit-rot-stub.c:2543)
==35656== 
==35656== 154 bytes in 2 blocks are definitely lost in loss record 393 of 704
==35656==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==35656==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==35656==    by 0x4E6E844: gf_strdup (mem-pool.h:187)
==35656==    by 0x4E6FD0A: __dentry_create (inode.c:570)
==35656==    by 0x4E70B3B: __inode_link (inode.c:1016)
==35656==    by 0x4E70D02: inode_link (inode.c:1060)
==35656==    by 0x15098AD5: server_post_lookup (server-common.c:462)
==35656==    by 0x15077078: server_lookup_cbk (server-rpc-fops.c:141)
==35656==    by 0x14C16C3F: io_stats_lookup_cbk (io-stats.c:2115)
==35656==    by 0x149E3453: quota_lookup_cbk (quota.c:1612)
==35656==    by 0x4F0100E: default_lookup_cbk (defaults.c:1265)
==35656==    by 0x143A6D7B: marker_lookup_cbk (marker.c:2945)
==35656== 
==35656== 155 bytes in 2 blocks are definitely lost in loss record 394 of 704
==35656==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==35656==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==35656==    by 0x4E5499E: dict_set_lk (dict.c:378)
==35656==    by 0x4E54B82: dict_set (dict.c:424)
==35656==    by 0x4E58200: dict_set_dynptr (dict.c:2042)
==35656==    by 0x150603EC: get_auth_types (server.c:367)
==35656==    by 0x4E56B26: dict_foreach_match (dict.c:1236)
==35656==    by 0x4E56A12: dict_foreach (dict.c:1194)
==35656==    by 0x15062130: init (server.c:986)
==35656==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==35656==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==35656==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==35656== 
==35656== 160 bytes in 1 blocks are possibly lost in loss record 395 of 704
==35656==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==35656==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==35656==    by 0x5151DF3: rpcclnt_cbk_program_register (rpc-clnt.c:1524)
==35656==    by 0x40FF17: glusterfs_mgmt_init (glusterfsd-mgmt.c:2171)
==35656==    by 0x40A412: glusterfs_volumes_init (glusterfsd.c:2365)
==35656==    by 0x40A892: main (glusterfsd.c:2488)
==35656== 
==35656== 160 bytes in 1 blocks are possibly lost in loss record 396 of 704
==35656==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==35656==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==35656==    by 0x1418A60F: init (upcall.c:1672)
==35656==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==35656==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==35656==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==35656==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==35656==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==35656==    by 0x40ECA5: mgmt_getspec_cbk (glusterfsd-mgmt.c:1648)
==35656==    by 0x51505D2: rpc_clnt_handle_reply (rpc-clnt.c:791)
==35656==    by 0x5150B34: rpc_clnt_notify (rpc-clnt.c:971)
==35656==    by 0x514CD1D: rpc_transport_notify (rpc-transport.c:541)
==35656== 
==35656== 164 bytes in 1 blocks are definitely lost in loss record 397 of 704
==35656==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==35656==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==35656==    by 0x4E908B0: mem_get (mem-pool.c:513)
==35656==    by 0x4E906CE: mem_get0 (mem-pool.c:446)
==35656==    by 0x4E53E07: get_new_data (dict.c:40)
==35656==    by 0x4E55D8E: data_from_dynstr (dict.c:882)
==35656==    by 0x4E58586: dict_set_dynstr (dict.c:2199)
==35656==    by 0x514A33D: rpcsvc_transport_unix_options_build (rpcsvc.c:2176)
==35656==    by 0x40F909: glusterfs_listener_init (glusterfsd-mgmt.c:2022)
==35656==    by 0x40A3EC: glusterfs_volumes_init (glusterfsd.c:2359)
==35656==    by 0x40A892: main (glusterfsd.c:2488)
==35656== 
==35656== 164 bytes in 1 blocks are definitely lost in loss record 398 of 704
==35656==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==35656==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==35656==    by 0x4E908B0: mem_get (mem-pool.c:513)
==35656==    by 0x4E906CE: mem_get0 (mem-pool.c:446)
==35656==    by 0x4E53E07: get_new_data (dict.c:40)
==35656==    by 0x4E55CD6: str_to_data (dict.c:860)
==35656==    by 0x4E584A0: dict_set_str (dict.c:2162)
==35656==    by 0x514A362: rpcsvc_transport_unix_options_build (rpcsvc.c:2180)
==35656==    by 0x40F909: glusterfs_listener_init (glusterfsd-mgmt.c:2022)
==35656==    by 0x40A3EC: glusterfs_volumes_init (glusterfsd.c:2359)
==35656==    by 0x40A892: main (glusterfsd.c:2488)
==35656== 
==35656== 164 bytes in 1 blocks are definitely lost in loss record 399 of 704
==35656==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==35656==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==35656==    by 0x4E908B0: mem_get (mem-pool.c:513)
==35656==    by 0x4E906CE: mem_get0 (mem-pool.c:446)
==35656==    by 0x4E53E07: get_new_data (dict.c:40)
==35656==    by 0x4E55CD6: str_to_data (dict.c:860)
==35656==    by 0x4E584A0: dict_set_str (dict.c:2162)
==35656==    by 0x514A387: rpcsvc_transport_unix_options_build (rpcsvc.c:2184)
==35656==    by 0x40F909: glusterfs_listener_init (glusterfsd-mgmt.c:2022)
==35656==    by 0x40A3EC: glusterfs_volumes_init (glusterfsd.c:2359)
==35656==    by 0x40A892: main (glusterfsd.c:2488)
==35656== 
==35656== 164 bytes in 1 blocks are definitely lost in loss record 400 of 704
==35656==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==35656==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==35656==    by 0x4E908B0: mem_get (mem-pool.c:513)
==35656==    by 0x4E906CE: mem_get0 (mem-pool.c:446)
==35656==    by 0x4E53E07: get_new_data (dict.c:40)
==35656==    by 0x4E55CD6: str_to_data (dict.c:860)
==35656==    by 0x4E584A0: dict_set_str (dict.c:2162)
==35656==    by 0x5144D69: rpcsvc_set_allow_insecure (rpcsvc-auth.c:231)
==35656==    by 0x5144F59: rpcsvc_auth_init (rpcsvc-auth.c:283)
==35656==    by 0x514A796: rpcsvc_init (rpcsvc.c:2334)
==35656==    by 0x40F93C: glusterfs_listener_init (glusterfsd-mgmt.c:2027)
==35656==    by 0x40A3EC: glusterfs_volumes_init (glusterfsd.c:2359)
==35656== 
==35656== 164 bytes in 1 blocks are definitely lost in loss record 401 of 704
==35656==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==35656==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==35656==    by 0x4E908B0: mem_get (mem-pool.c:513)
==35656==    by 0x4E906CE: mem_get0 (mem-pool.c:446)
==35656==    by 0x4E53E07: get_new_data (dict.c:40)
==35656==    by 0x4E55CD6: str_to_data (dict.c:860)
==35656==    by 0x4E584A0: dict_set_str (dict.c:2162)
==35656==    by 0x5144A44: rpcsvc_auth_init_auths (rpcsvc-auth.c:148)
==35656==    by 0x5144FDA: rpcsvc_auth_init (rpcsvc-auth.c:292)
==35656==    by 0x514A796: rpcsvc_init (rpcsvc.c:2334)
==35656==    by 0x40F93C: glusterfs_listener_init (glusterfsd-mgmt.c:2027)
==35656==    by 0x40A3EC: glusterfs_volumes_init (glusterfsd.c:2359)
==35656== 
==35656== 164 bytes in 1 blocks are definitely lost in loss record 402 of 704
==35656==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==35656==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==35656==    by 0x4E908B0: mem_get (mem-pool.c:513)
==35656==    by 0x4E906CE: mem_get0 (mem-pool.c:446)
==35656==    by 0x4E53E07: get_new_data (dict.c:40)
==35656==    by 0x4E55CD6: str_to_data (dict.c:860)
==35656==    by 0x4E584A0: dict_set_str (dict.c:2162)
==35656==    by 0x5144AB0: rpcsvc_auth_init_auths (rpcsvc-auth.c:155)
==35656==    by 0x5144FDA: rpcsvc_auth_init (rpcsvc-auth.c:292)
==35656==    by 0x514A796: rpcsvc_init (rpcsvc.c:2334)
==35656==    by 0x40F93C: glusterfs_listener_init (glusterfsd-mgmt.c:2027)
==35656==    by 0x40A3EC: glusterfs_volumes_init (glusterfsd.c:2359)
==35656== 
==35656== 164 bytes in 1 blocks are definitely lost in loss record 403 of 704
==35656==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==35656==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==35656==    by 0x4E908B0: mem_get (mem-pool.c:513)
==35656==    by 0x4E906CE: mem_get0 (mem-pool.c:446)
==35656==    by 0x4E53E07: get_new_data (dict.c:40)
==35656==    by 0x4E55CD6: str_to_data (dict.c:860)
==35656==    by 0x4E584A0: dict_set_str (dict.c:2162)
==35656==    by 0x5144B1C: rpcsvc_auth_init_auths (rpcsvc-auth.c:162)
==35656==    by 0x5144FDA: rpcsvc_auth_init (rpcsvc-auth.c:292)
==35656==    by 0x514A796: rpcsvc_init (rpcsvc.c:2334)
==35656==    by 0x40F93C: glusterfs_listener_init (glusterfsd-mgmt.c:2027)
==35656==    by 0x40A3EC: glusterfs_volumes_init (glusterfsd.c:2359)
==35656== 
==35656== 164 bytes in 1 blocks are definitely lost in loss record 404 of 704
==35656==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==35656==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==35656==    by 0x4E908B0: mem_get (mem-pool.c:513)
==35656==    by 0x4E906CE: mem_get0 (mem-pool.c:446)
==35656==    by 0x4E53E07: get_new_data (dict.c:40)
==35656==    by 0x4E55D8E: data_from_dynstr (dict.c:882)
==35656==    by 0x4E58586: dict_set_dynstr (dict.c:2199)
==35656==    by 0x51495A1: rpcsvc_create_listeners (rpcsvc.c:1767)
==35656==    by 0x40F98A: glusterfs_listener_init (glusterfsd-mgmt.c:2037)
==35656==    by 0x40A3EC: glusterfs_volumes_init (glusterfsd.c:2359)
==35656==    by 0x40A892: main (glusterfsd.c:2488)
==35656== 
==35656== 164 bytes in 1 blocks are definitely lost in loss record 405 of 704
==35656==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==35656==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==35656==    by 0x4E908B0: mem_get (mem-pool.c:513)
==35656==    by 0x4E906CE: mem_get0 (mem-pool.c:446)
==35656==    by 0x4E53E07: get_new_data (dict.c:40)
==35656==    by 0x4E55D8E: data_from_dynstr (dict.c:882)
==35656==    by 0x4E58586: dict_set_dynstr (dict.c:2199)
==35656==    by 0x514D164: rpc_transport_inet_options_build (rpc-transport.c:677)
==35656==    by 0x40FD9D: glusterfs_mgmt_init (glusterfsd-mgmt.c:2139)
==35656==    by 0x40A412: glusterfs_volumes_init (glusterfsd.c:2365)
==35656==    by 0x40A892: main (glusterfsd.c:2488)
==35656== 
==35656== 164 bytes in 1 blocks are definitely lost in loss record 406 of 704
==35656==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==35656==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==35656==    by 0x4E908B0: mem_get (mem-pool.c:513)
==35656==    by 0x4E906CE: mem_get0 (mem-pool.c:446)
==35656==    by 0x4E53E07: get_new_data (dict.c:40)
==35656==    by 0x4E556F8: data_from_int32 (dict.c:698)
==35656==    by 0x4E57BB4: dict_set_int32 (dict.c:1771)
==35656==    by 0x514D1CD: rpc_transport_inet_options_build (rpc-transport.c:684)
==35656==    by 0x40FD9D: glusterfs_mgmt_init (glusterfsd-mgmt.c:2139)
==35656==    by 0x40A412: glusterfs_volumes_init (glusterfsd.c:2365)
==35656==    by 0x40A892: main (glusterfsd.c:2488)
==35656== 
==35656== 164 bytes in 1 blocks are definitely lost in loss record 407 of 704
==35656==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==35656==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==35656==    by 0x4E908B0: mem_get (mem-pool.c:513)
==35656==    by 0x4E906CE: mem_get0 (mem-pool.c:446)
==35656==    by 0x4E53E07: get_new_data (dict.c:40)
==35656==    by 0x4E55CD6: str_to_data (dict.c:860)
==35656==    by 0x4E584A0: dict_set_str (dict.c:2162)
==35656==    by 0x514D235: rpc_transport_inet_options_build (rpc-transport.c:691)
==35656==    by 0x40FD9D: glusterfs_mgmt_init (glusterfsd-mgmt.c:2139)
==35656==    by 0x40A412: glusterfs_volumes_init (glusterfsd.c:2365)
==35656==    by 0x40A892: main (glusterfsd.c:2488)
==35656== 
==35656== 164 bytes in 1 blocks are definitely lost in loss record 408 of 704
==35656==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==35656==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==35656==    by 0x4E908B0: mem_get (mem-pool.c:513)
==35656==    by 0x4E906CE: mem_get0 (mem-pool.c:446)
==35656==    by 0x4E53E07: get_new_data (dict.c:40)
==35656==    by 0x4E55CD6: str_to_data (dict.c:860)
==35656==    by 0x4E584A0: dict_set_str (dict.c:2162)
==35656==    by 0x5144D69: rpcsvc_set_allow_insecure (rpcsvc-auth.c:231)
==35656==    by 0x5144F59: rpcsvc_auth_init (rpcsvc-auth.c:283)
==35656==    by 0x514A796: rpcsvc_init (rpcsvc.c:2334)
==35656==    by 0x150622FC: init (server.c:1019)
==35656==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==35656== 
==35656== 164 bytes in 1 blocks are definitely lost in loss record 409 of 704
==35656==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==35656==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==35656==    by 0x4E908B0: mem_get (mem-pool.c:513)
==35656==    by 0x4E906CE: mem_get0 (mem-pool.c:446)
==35656==    by 0x4E53E07: get_new_data (dict.c:40)
==35656==    by 0x4E55CD6: str_to_data (dict.c:860)
==35656==    by 0x4E584A0: dict_set_str (dict.c:2162)
==35656==    by 0x5144A44: rpcsvc_auth_init_auths (rpcsvc-auth.c:148)
==35656==    by 0x5144FDA: rpcsvc_auth_init (rpcsvc-auth.c:292)
==35656==    by 0x514A796: rpcsvc_init (rpcsvc.c:2334)
==35656==    by 0x150622FC: init (server.c:1019)
==35656==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==35656== 
==35656== 164 bytes in 1 blocks are definitely lost in loss record 410 of 704
==35656==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==35656==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==35656==    by 0x4E908B0: mem_get (mem-pool.c:513)
==35656==    by 0x4E906CE: mem_get0 (mem-pool.c:446)
==35656==    by 0x4E53E07: get_new_data (dict.c:40)
==35656==    by 0x4E55CD6: str_to_data (dict.c:860)
==35656==    by 0x4E584A0: dict_set_str (dict.c:2162)
==35656==    by 0x5144AB0: rpcsvc_auth_init_auths (rpcsvc-auth.c:155)
==35656==    by 0x5144FDA: rpcsvc_auth_init (rpcsvc-auth.c:292)
==35656==    by 0x514A796: rpcsvc_init (rpcsvc.c:2334)
==35656==    by 0x150622FC: init (server.c:1019)
==35656==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==35656== 
==35656== 164 bytes in 1 blocks are definitely lost in loss record 411 of 704
==35656==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==35656==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==35656==    by 0x4E908B0: mem_get (mem-pool.c:513)
==35656==    by 0x4E906CE: mem_get0 (mem-pool.c:446)
==35656==    by 0x4E53E07: get_new_data (dict.c:40)
==35656==    by 0x4E55CD6: str_to_data (dict.c:860)
==35656==    by 0x4E584A0: dict_set_str (dict.c:2162)
==35656==    by 0x5144B1C: rpcsvc_auth_init_auths (rpcsvc-auth.c:162)
==35656==    by 0x5144FDA: rpcsvc_auth_init (rpcsvc-auth.c:292)
==35656==    by 0x514A796: rpcsvc_init (rpcsvc.c:2334)
==35656==    by 0x150622FC: init (server.c:1019)
==35656==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==35656== 
==35656== 164 bytes in 1 blocks are definitely lost in loss record 412 of 704
==35656==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==35656==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==35656==    by 0x4E908B0: mem_get (mem-pool.c:513)
==35656==    by 0x4E906CE: mem_get0 (mem-pool.c:446)
==35656==    by 0x4E53E07: get_new_data (dict.c:40)
==35656==    by 0x4E55D8E: data_from_dynstr (dict.c:882)
==35656==    by 0x4E58586: dict_set_dynstr (dict.c:2199)
==35656==    by 0x51495A1: rpcsvc_create_listeners (rpcsvc.c:1767)
==35656==    by 0x1506250B: init (server.c:1056)
==35656==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==35656==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==35656==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==35656== 
==35656== 164 bytes in 1 blocks are definitely lost in loss record 413 of 704
==35656==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==35656==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==35656==    by 0x4E908B0: mem_get (mem-pool.c:513)
==35656==    by 0x4E906CE: mem_get0 (mem-pool.c:446)
==35656==    by 0x4E53E07: get_new_data (dict.c:40)
==35656==    by 0x4E55CD6: str_to_data (dict.c:860)
==35656==    by 0x4E584A0: dict_set_str (dict.c:2162)
==35656==    by 0x14A01464: quota_enforcer_init (quota-enforcer-client.c:438)
==35656==    by 0x149FF51D: init (quota.c:5127)
==35656==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==35656==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==35656==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==35656== 
==35656== 164 bytes in 1 blocks are definitely lost in loss record 414 of 704
==35656==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==35656==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==35656==    by 0x4E908B0: mem_get (mem-pool.c:513)
==35656==    by 0x4E906CE: mem_get0 (mem-pool.c:446)
==35656==    by 0x4E53E07: get_new_data (dict.c:40)
==35656==    by 0x4E55CD6: str_to_data (dict.c:860)
==35656==    by 0x4E584A0: dict_set_str (dict.c:2162)
==35656==    by 0x14A0148C: quota_enforcer_init (quota-enforcer-client.c:442)
==35656==    by 0x149FF51D: init (quota.c:5127)
==35656==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==35656==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==35656==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==35656== 
==35656== 164 bytes in 1 blocks are definitely lost in loss record 415 of 704
==35656==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==35656==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==35656==    by 0x4E908B0: mem_get (mem-pool.c:513)
==35656==    by 0x4E906CE: mem_get0 (mem-pool.c:446)
==35656==    by 0x4E53E07: get_new_data (dict.c:40)
==35656==    by 0x4E55CD6: str_to_data (dict.c:860)
==35656==    by 0x4E584A0: dict_set_str (dict.c:2162)
==35656==    by 0x14A014B4: quota_enforcer_init (quota-enforcer-client.c:446)
==35656==    by 0x149FF51D: init (quota.c:5127)
==35656==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==35656==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==35656==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==35656== 
==35656== 164 bytes in 1 blocks are definitely lost in loss record 416 of 704
==35656==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==35656==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==35656==    by 0x4E908B0: mem_get (mem-pool.c:513)
==35656==    by 0x4E906CE: mem_get0 (mem-pool.c:446)
==35656==    by 0x4E53E07: get_new_data (dict.c:40)
==35656==    by 0x4E55553: int_to_data (dict.c:659)
==35656==    by 0x147D54D8: index_make_xattrop_watchlist (index.c:2208)
==35656==    by 0x147D5A4E: init (index.c:2334)
==35656==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==35656==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==35656==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==35656==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==35656== 
==35656== 164 bytes in 1 blocks are definitely lost in loss record 417 of 704
==35656==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==35656==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==35656==    by 0x4E908B0: mem_get (mem-pool.c:513)
==35656==    by 0x4E906CE: mem_get0 (mem-pool.c:446)
==35656==    by 0x4E53E07: get_new_data (dict.c:40)
==35656==    by 0x4E55553: int_to_data (dict.c:659)
==35656==    by 0x147D54D8: index_make_xattrop_watchlist (index.c:2208)
==35656==    by 0x147D5ACA: init (index.c:2340)
==35656==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==35656==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==35656==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==35656==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==35656== 
==35656== 166 bytes in 2 blocks are possibly lost in loss record 418 of 704
==35656==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==35656==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==35656==    by 0x406B0A: gf_remember_xlator_option (glusterfsd.c:742)
==35656==    by 0x40789D: parse_opts (glusterfsd.c:1075)
==35656==    by 0x67B5412: argp_parse (in /usr/lib64/libc-2.17.so)
==35656==    by 0x4092D4: parse_cmdline (glusterfsd.c:1866)
==35656==    by 0x40A5E5: main (glusterfsd.c:2417)
==35656== 
==35656== 168 bytes in 1 blocks are possibly lost in loss record 421 of 704
==35656==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==35656==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==35656==    by 0x145C3789: init (barrier.c:625)
==35656==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==35656==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==35656==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==35656==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==35656==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==35656==    by 0x40ECA5: mgmt_getspec_cbk (glusterfsd-mgmt.c:1648)
==35656==    by 0x51505D2: rpc_clnt_handle_reply (rpc-clnt.c:791)
==35656==    by 0x5150B34: rpc_clnt_notify (rpc-clnt.c:971)
==35656==    by 0x514CD1D: rpc_transport_notify (rpc-transport.c:541)
==35656== 
==35656== 172 bytes in 2 blocks are possibly lost in loss record 422 of 704
==35656==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==35656==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==35656==    by 0x406BE2: gf_remember_xlator_option (glusterfsd.c:755)
==35656==    by 0x40789D: parse_opts (glusterfsd.c:1075)
==35656==    by 0x67B5412: argp_parse (in /usr/lib64/libc-2.17.so)
==35656==    by 0x4092D4: parse_cmdline (glusterfsd.c:1866)
==35656==    by 0x40A5E5: main (glusterfsd.c:2417)
==35656== 
==35656== 187 bytes in 2 blocks are possibly lost in loss record 425 of 704
==35656==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==35656==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==35656==    by 0x4052E4: gf_strdup (mem-pool.h:187)
==35656==    by 0x406C99: gf_remember_xlator_option (glusterfsd.c:767)
==35656==    by 0x40789D: parse_opts (glusterfsd.c:1075)
==35656==    by 0x67B5412: argp_parse (in /usr/lib64/libc-2.17.so)
==35656==    by 0x4092D4: parse_cmdline (glusterfsd.c:1866)
==35656==    by 0x40A5E5: main (glusterfsd.c:2417)
==35656== 
==35656== 192 bytes in 1 blocks are possibly lost in loss record 428 of 704
==35656==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==35656==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==35656==    by 0x4E6E372: gf_timer_registry_init (timer.c:222)
==35656==    by 0x4E6DB1A: gf_timer_call_after (timer.c:40)
==35656==    by 0x4E61A3D: __gf_log_inject_timer_event (logging.c:1792)
==35656==    by 0x4E61AA5: gf_log_inject_timer_event (logging.c:1814)
==35656==    by 0x40A0DA: daemonize (glusterfsd.c:2247)
==35656==    by 0x40A7C5: main (glusterfsd.c:2465)
==35656== 
==35656== 192 bytes in 1 blocks are possibly lost in loss record 429 of 704
==35656==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==35656==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==35656==    by 0x5149865: rpcsvc_program_register (rpcsvc.c:1877)
==35656==    by 0x514A859: rpcsvc_init (rpcsvc.c:2349)
==35656==    by 0x40F93C: glusterfs_listener_init (glusterfsd-mgmt.c:2027)
==35656==    by 0x40A3EC: glusterfs_volumes_init (glusterfsd.c:2359)
==35656==    by 0x40A892: main (glusterfsd.c:2488)
==35656== 
==35656== 192 bytes in 1 blocks are possibly lost in loss record 430 of 704
==35656==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==35656==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==35656==    by 0x5149865: rpcsvc_program_register (rpcsvc.c:1877)
==35656==    by 0x40F9AD: glusterfs_listener_init (glusterfsd-mgmt.c:2043)
==35656==    by 0x40A3EC: glusterfs_volumes_init (glusterfsd.c:2359)
==35656==    by 0x40A892: main (glusterfsd.c:2488)
==35656== 
==35656== 192 bytes in 1 blocks are possibly lost in loss record 431 of 704
==35656==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==35656==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==35656==    by 0x5149865: rpcsvc_program_register (rpcsvc.c:1877)
==35656==    by 0x514A859: rpcsvc_init (rpcsvc.c:2349)
==35656==    by 0x150622FC: init (server.c:1019)
==35656==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==35656==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==35656==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==35656==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==35656==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==35656==    by 0x40ECA5: mgmt_getspec_cbk (glusterfsd-mgmt.c:1648)
==35656==    by 0x51505D2: rpc_clnt_handle_reply (rpc-clnt.c:791)
==35656== 
==35656== 192 bytes in 1 blocks are possibly lost in loss record 432 of 704
==35656==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==35656==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==35656==    by 0x5149865: rpcsvc_program_register (rpcsvc.c:1877)
==35656==    by 0x15062683: init (server.c:1080)
==35656==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==35656==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==35656==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==35656==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==35656==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==35656==    by 0x40ECA5: mgmt_getspec_cbk (glusterfsd-mgmt.c:1648)
==35656==    by 0x51505D2: rpc_clnt_handle_reply (rpc-clnt.c:791)
==35656==    by 0x5150B34: rpc_clnt_notify (rpc-clnt.c:971)
==35656== 
==35656== 192 bytes in 1 blocks are possibly lost in loss record 433 of 704
==35656==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==35656==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==35656==    by 0x5149865: rpcsvc_program_register (rpcsvc.c:1877)
==35656==    by 0x15062734: init (server.c:1091)
==35656==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==35656==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==35656==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==35656==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==35656==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==35656==    by 0x40ECA5: mgmt_getspec_cbk (glusterfsd-mgmt.c:1648)
==35656==    by 0x51505D2: rpc_clnt_handle_reply (rpc-clnt.c:791)
==35656==    by 0x5150B34: rpc_clnt_notify (rpc-clnt.c:971)
==35656== 
==35656== 192 bytes in 1 blocks are possibly lost in loss record 434 of 704
==35656==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==35656==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==35656==    by 0x143A965E: init (marker.c:3391)
==35656==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==35656==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==35656==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==35656==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==35656==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==35656==    by 0x40ECA5: mgmt_getspec_cbk (glusterfsd-mgmt.c:1648)
==35656==    by 0x51505D2: rpc_clnt_handle_reply (rpc-clnt.c:791)
==35656==    by 0x5150B34: rpc_clnt_notify (rpc-clnt.c:971)
==35656==    by 0x514CD1D: rpc_transport_notify (rpc-transport.c:541)
==35656== 
==35656== 192 bytes in 1 blocks are possibly lost in loss record 435 of 704
==35656==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==35656==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==35656==    by 0x5149865: rpcsvc_program_register (rpcsvc.c:1877)
==35656==    by 0x514A859: rpcsvc_init (rpcsvc.c:2349)
==35656==    by 0x132DF0F9: changelog_rpc_server_init (changelog-rpc-common.c:302)
==35656==    by 0x132DDC27: changelog_init_rpc_listner (changelog-rpc.c:175)
==35656==    by 0x132D6D70: changelog_init_rpc (changelog.c:2768)
==35656==    by 0x132D71B1: init (changelog.c:2850)
==35656==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==35656==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==35656==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==35656==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==35656== 
==35656== 192 bytes in 1 blocks are possibly lost in loss record 436 of 704
==35656==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==35656==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==35656==    by 0x5149865: rpcsvc_program_register (rpcsvc.c:1877)
==35656==    by 0x132DF266: changelog_rpc_server_init (changelog-rpc-common.c:327)
==35656==    by 0x132DDC27: changelog_init_rpc_listner (changelog-rpc.c:175)
==35656==    by 0x132D6D70: changelog_init_rpc (changelog.c:2768)
==35656==    by 0x132D71B1: init (changelog.c:2850)
==35656==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==35656==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==35656==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==35656==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==35656==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==35656== 
==35656== 192 bytes in 2 blocks are possibly lost in loss record 437 of 704
==35656==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==35656==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==35656==    by 0x4EE88A9: gf_strdup (mem-pool.h:187)
==35656==    by 0x4EE9822: volume_option (graph.y:240)
==35656==    by 0x4EE8D57: graphyyparse (graph.y:69)
==35656==    by 0x4EEA75C: glusterfs_graph_construct (graph.y:590)
==35656==    by 0x40A211: glusterfs_process_volfp (glusterfsd.c:2305)
==35656==    by 0x40ECA5: mgmt_getspec_cbk (glusterfsd-mgmt.c:1648)
==35656==    by 0x51505D2: rpc_clnt_handle_reply (rpc-clnt.c:791)
==35656==    by 0x5150B34: rpc_clnt_notify (rpc-clnt.c:971)
==35656==    by 0x514CD1D: rpc_transport_notify (rpc-transport.c:541)
==35656==    by 0xFEA9D43: socket_event_poll_in (socket.c:2267)
==35656== 
==35656== 192 bytes in 2 blocks are possibly lost in loss record 438 of 704
==35656==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==35656==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==35656==    by 0x15097220: init (authenticate.c:85)
==35656==    by 0x4E56B26: dict_foreach_match (dict.c:1236)
==35656==    by 0x4E56A12: dict_foreach (dict.c:1194)
==35656==    by 0x150974B9: gf_auth_init (authenticate.c:149)
==35656==    by 0x1506216C: init (server.c:993)
==35656==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==35656==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==35656==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==35656==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==35656==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==35656== 
==35656== 192 bytes in 2 blocks are definitely lost in loss record 439 of 704
==35656==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==35656==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==35656==    by 0x150971B5: init (authenticate.c:77)
==35656==    by 0x4E56B26: dict_foreach_match (dict.c:1236)
==35656==    by 0x4E56A12: dict_foreach (dict.c:1194)
==35656==    by 0x150974B9: gf_auth_init (authenticate.c:149)
==35656==    by 0x1506216C: init (server.c:993)
==35656==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==35656==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==35656==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==35656==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==35656==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==35656== 
==35656== 196 bytes in 1 blocks are possibly lost in loss record 440 of 704
==35656==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==35656==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==35656==    by 0x4E908B0: mem_get (mem-pool.c:513)
==35656==    by 0x514EBD8: __saved_frames_put (rpc-clnt.c:82)
==35656==    by 0x514F250: __save_frame (rpc-clnt.c:230)
==35656==    by 0x515231E: rpc_clnt_submit (rpc-clnt.c:1662)
==35656==    by 0x40E934: mgmt_submit_request (glusterfsd-mgmt.c:1541)
==35656==    by 0x41079F: glusterfs_mgmt_pmap_signout (glusterfsd-mgmt.c:2399)
==35656==    by 0x4080C9: cleanup_and_exit (glusterfsd.c:1333)
==35656==    by 0x409C1A: glusterfs_sigwaiter (glusterfsd.c:2102)
==35656==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==35656==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==35656== 
==35656== 208 bytes in 1 blocks are possibly lost in loss record 441 of 704
==35656==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==35656==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==35656==    by 0x149FF194: init (quota.c:5103)
==35656==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==35656==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==35656==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==35656==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==35656==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==35656==    by 0x40ECA5: mgmt_getspec_cbk (glusterfsd-mgmt.c:1648)
==35656==    by 0x51505D2: rpc_clnt_handle_reply (rpc-clnt.c:791)
==35656==    by 0x5150B34: rpc_clnt_notify (rpc-clnt.c:971)
==35656==    by 0x514CD1D: rpc_transport_notify (rpc-transport.c:541)
==35656== 
==35656== 208 bytes in 1 blocks are possibly lost in loss record 442 of 704
==35656==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==35656==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==35656==    by 0x12DF9600: init_db (gfdb_data_store.c:234)
==35656==    by 0x12BEA41F: init (changetimerecorder.c:2118)
==35656==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==35656==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==35656==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==35656==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==35656==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==35656==    by 0x40ECA5: mgmt_getspec_cbk (glusterfsd-mgmt.c:1648)
==35656==    by 0x51505D2: rpc_clnt_handle_reply (rpc-clnt.c:791)
==35656==    by 0x5150B34: rpc_clnt_notify (rpc-clnt.c:971)
==35656== 
==35656== 208 bytes in 2 blocks are possibly lost in loss record 443 of 704
==35656==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==35656==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==35656==    by 0x14C2707D: ios_init_top_stats (io-stats.c:3343)
==35656==    by 0x14C280A3: init (io-stats.c:3658)
==35656==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==35656==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==35656==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==35656==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==35656==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==35656==    by 0x40ECA5: mgmt_getspec_cbk (glusterfsd-mgmt.c:1648)
==35656==    by 0x51505D2: rpc_clnt_handle_reply (rpc-clnt.c:791)
==35656==    by 0x5150B34: rpc_clnt_notify (rpc-clnt.c:971)
==35656== 
==35656== 224 bytes in 1 blocks are possibly lost in loss record 444 of 704
==35656==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==35656==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==35656==    by 0x4E90487: mem_pool_new_fn (mem-pool.c:381)
==35656==    by 0x4086EA: glusterfs_ctx_defaults_init (glusterfsd.c:1496)
==35656==    by 0x40A5BC: main (glusterfsd.c:2413)
==35656== 
==35656== 224 bytes in 1 blocks are possibly lost in loss record 445 of 704
==35656==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==35656==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==35656==    by 0x4E90487: mem_pool_new_fn (mem-pool.c:381)
==35656==    by 0x408772: glusterfs_ctx_defaults_init (glusterfsd.c:1502)
==35656==    by 0x40A5BC: main (glusterfsd.c:2413)
==35656== 
==35656== 224 bytes in 1 blocks are possibly lost in loss record 446 of 704
==35656==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==35656==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==35656==    by 0x4E90487: mem_pool_new_fn (mem-pool.c:381)
==35656==    by 0x4087EF: glusterfs_ctx_defaults_init (glusterfsd.c:1508)
==35656==    by 0x40A5BC: main (glusterfsd.c:2413)
==35656== 
==35656== 224 bytes in 1 blocks are possibly lost in loss record 447 of 704
==35656==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==35656==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==35656==    by 0x4E90487: mem_pool_new_fn (mem-pool.c:381)
==35656==    by 0x40886F: glusterfs_ctx_defaults_init (glusterfsd.c:1514)
==35656==    by 0x40A5BC: main (glusterfsd.c:2413)
==35656== 
==35656== 224 bytes in 1 blocks are possibly lost in loss record 448 of 704
==35656==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==35656==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==35656==    by 0x4E90487: mem_pool_new_fn (mem-pool.c:381)
==35656==    by 0x4088A3: glusterfs_ctx_defaults_init (glusterfsd.c:1518)
==35656==    by 0x40A5BC: main (glusterfsd.c:2413)
==35656== 
==35656== 224 bytes in 1 blocks are possibly lost in loss record 449 of 704
==35656==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==35656==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==35656==    by 0x4E90487: mem_pool_new_fn (mem-pool.c:381)
==35656==    by 0x4088D7: glusterfs_ctx_defaults_init (glusterfsd.c:1523)
==35656==    by 0x40A5BC: main (glusterfsd.c:2413)
==35656== 
==35656== 224 bytes in 1 blocks are possibly lost in loss record 450 of 704
==35656==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==35656==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==35656==    by 0x4E90487: mem_pool_new_fn (mem-pool.c:381)
==35656==    by 0x40890B: glusterfs_ctx_defaults_init (glusterfsd.c:1527)
==35656==    by 0x40A5BC: main (glusterfsd.c:2413)
==35656== 
==35656== 224 bytes in 1 blocks are possibly lost in loss record 451 of 704
==35656==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==35656==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==35656==    by 0x4E90487: mem_pool_new_fn (mem-pool.c:381)
==35656==    by 0x514A732: rpcsvc_init (rpcsvc.c:2327)
==35656==    by 0x40F93C: glusterfs_listener_init (glusterfsd-mgmt.c:2027)
==35656==    by 0x40A3EC: glusterfs_volumes_init (glusterfsd.c:2359)
==35656==    by 0x40A892: main (glusterfsd.c:2488)
==35656== 
==35656== 224 bytes in 1 blocks are possibly lost in loss record 452 of 704
==35656==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==35656==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==35656==    by 0x4E90487: mem_pool_new_fn (mem-pool.c:381)
==35656==    by 0x5151087: rpc_clnt_new (rpc-clnt.c:1139)
==35656==    by 0x40FE46: glusterfs_mgmt_init (glusterfsd-mgmt.c:2157)
==35656==    by 0x40A412: glusterfs_volumes_init (glusterfsd.c:2365)
==35656==    by 0x40A892: main (glusterfsd.c:2488)
==35656== 
==35656== 224 bytes in 1 blocks are possibly lost in loss record 453 of 704
==35656==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==35656==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==35656==    by 0x4E90487: mem_pool_new_fn (mem-pool.c:381)
==35656==    by 0x51510EE: rpc_clnt_new (rpc-clnt.c:1148)
==35656==    by 0x40FE46: glusterfs_mgmt_init (glusterfsd-mgmt.c:2157)
==35656==    by 0x40A412: glusterfs_volumes_init (glusterfsd.c:2365)
==35656==    by 0x40A892: main (glusterfsd.c:2488)
==35656== 
==35656== 224 bytes in 1 blocks are possibly lost in loss record 454 of 704
==35656==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==35656==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==35656==    by 0x4E90487: mem_pool_new_fn (mem-pool.c:381)
==35656==    by 0x514A732: rpcsvc_init (rpcsvc.c:2327)
==35656==    by 0x150622FC: init (server.c:1019)
==35656==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==35656==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==35656==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==35656==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==35656==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==35656==    by 0x40ECA5: mgmt_getspec_cbk (glusterfsd-mgmt.c:1648)
==35656==    by 0x51505D2: rpc_clnt_handle_reply (rpc-clnt.c:791)
==35656== 
==35656== 224 bytes in 1 blocks are possibly lost in loss record 455 of 704
==35656==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==35656==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==35656==    by 0x4E90487: mem_pool_new_fn (mem-pool.c:381)
==35656==    by 0x149FF481: init (quota.c:5118)
==35656==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==35656==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==35656==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==35656==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==35656==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==35656==    by 0x40ECA5: mgmt_getspec_cbk (glusterfsd-mgmt.c:1648)
==35656==    by 0x51505D2: rpc_clnt_handle_reply (rpc-clnt.c:791)
==35656==    by 0x5150B34: rpc_clnt_notify (rpc-clnt.c:971)
==35656== 
==35656== 224 bytes in 1 blocks are possibly lost in loss record 456 of 704
==35656==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==35656==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==35656==    by 0x4E90487: mem_pool_new_fn (mem-pool.c:381)
==35656==    by 0x5151087: rpc_clnt_new (rpc-clnt.c:1139)
==35656==    by 0x14A014DE: quota_enforcer_init (quota-enforcer-client.c:451)
==35656==    by 0x149FF51D: init (quota.c:5127)
==35656==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==35656==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==35656==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==35656==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==35656==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==35656==    by 0x40ECA5: mgmt_getspec_cbk (glusterfsd-mgmt.c:1648)
==35656== 
==35656== 224 bytes in 1 blocks are possibly lost in loss record 457 of 704
==35656==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==35656==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==35656==    by 0x4E90487: mem_pool_new_fn (mem-pool.c:381)
==35656==    by 0x51510EE: rpc_clnt_new (rpc-clnt.c:1148)
==35656==    by 0x14A014DE: quota_enforcer_init (quota-enforcer-client.c:451)
==35656==    by 0x149FF51D: init (quota.c:5127)
==35656==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==35656==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==35656==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==35656==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==35656==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==35656==    by 0x40ECA5: mgmt_getspec_cbk (glusterfsd-mgmt.c:1648)
==35656== 
==35656== 224 bytes in 1 blocks are possibly lost in loss record 458 of 704
==35656==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==35656==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==35656==    by 0x4E90487: mem_pool_new_fn (mem-pool.c:381)
==35656==    by 0x147D5BD2: init (index.c:2357)
==35656==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==35656==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==35656==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==35656==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==35656==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==35656==    by 0x40ECA5: mgmt_getspec_cbk (glusterfsd-mgmt.c:1648)
==35656==    by 0x51505D2: rpc_clnt_handle_reply (rpc-clnt.c:791)
==35656==    by 0x5150B34: rpc_clnt_notify (rpc-clnt.c:971)
==35656== 
==35656== 224 bytes in 1 blocks are possibly lost in loss record 459 of 704
==35656==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==35656==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==35656==    by 0x4E90487: mem_pool_new_fn (mem-pool.c:381)
==35656==    by 0x143A9945: init (marker.c:3443)
==35656==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==35656==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==35656==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==35656==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==35656==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==35656==    by 0x40ECA5: mgmt_getspec_cbk (glusterfsd-mgmt.c:1648)
==35656==    by 0x51505D2: rpc_clnt_handle_reply (rpc-clnt.c:791)
==35656==    by 0x5150B34: rpc_clnt_notify (rpc-clnt.c:971)
==35656== 
==35656== 224 bytes in 1 blocks are possibly lost in loss record 460 of 704
==35656==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==35656==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==35656==    by 0x4E90487: mem_pool_new_fn (mem-pool.c:381)
==35656==    by 0x1418A79B: init (upcall.c:1693)
==35656==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==35656==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==35656==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==35656==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==35656==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==35656==    by 0x40ECA5: mgmt_getspec_cbk (glusterfsd-mgmt.c:1648)
==35656==    by 0x51505D2: rpc_clnt_handle_reply (rpc-clnt.c:791)
==35656==    by 0x5150B34: rpc_clnt_notify (rpc-clnt.c:971)
==35656== 
==35656== 224 bytes in 1 blocks are possibly lost in loss record 461 of 704
==35656==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==35656==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==35656==    by 0x4E90487: mem_pool_new_fn (mem-pool.c:381)
==35656==    by 0x13B50CF0: init (worm.c:504)
==35656==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==35656==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==35656==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==35656==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==35656==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==35656==    by 0x40ECA5: mgmt_getspec_cbk (glusterfsd-mgmt.c:1648)
==35656==    by 0x51505D2: rpc_clnt_handle_reply (rpc-clnt.c:791)
==35656==    by 0x5150B34: rpc_clnt_notify (rpc-clnt.c:971)
==35656== 
==35656== 224 bytes in 1 blocks are possibly lost in loss record 462 of 704
==35656==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==35656==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==35656==    by 0x4E90487: mem_pool_new_fn (mem-pool.c:381)
==35656==    by 0x13935190: init (posix.c:3681)
==35656==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==35656==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==35656==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==35656==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==35656==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==35656==    by 0x40ECA5: mgmt_getspec_cbk (glusterfsd-mgmt.c:1648)
==35656==    by 0x51505D2: rpc_clnt_handle_reply (rpc-clnt.c:791)
==35656==    by 0x5150B34: rpc_clnt_notify (rpc-clnt.c:971)
==35656== 
==35656== 224 bytes in 1 blocks are possibly lost in loss record 463 of 704
==35656==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==35656==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==35656==    by 0x4E90487: mem_pool_new_fn (mem-pool.c:381)
==35656==    by 0x134EF2D6: init (bit-rot-stub.c:135)
==35656==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==35656==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==35656==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==35656==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==35656==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==35656==    by 0x40ECA5: mgmt_getspec_cbk (glusterfsd-mgmt.c:1648)
==35656==    by 0x51505D2: rpc_clnt_handle_reply (rpc-clnt.c:791)
==35656==    by 0x5150B34: rpc_clnt_notify (rpc-clnt.c:971)
==35656== 
==35656== 224 bytes in 1 blocks are possibly lost in loss record 464 of 704
==35656==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==35656==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==35656==    by 0x4E90487: mem_pool_new_fn (mem-pool.c:381)
==35656==    by 0x132D6F76: init (changelog.c:2812)
==35656==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==35656==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==35656==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==35656==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==35656==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==35656==    by 0x40ECA5: mgmt_getspec_cbk (glusterfsd-mgmt.c:1648)
==35656==    by 0x51505D2: rpc_clnt_handle_reply (rpc-clnt.c:791)
==35656==    by 0x5150B34: rpc_clnt_notify (rpc-clnt.c:971)
==35656== 
==35656== 224 bytes in 1 blocks are possibly lost in loss record 465 of 704
==35656==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==35656==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==35656==    by 0x4E90487: mem_pool_new_fn (mem-pool.c:381)
==35656==    by 0x514A732: rpcsvc_init (rpcsvc.c:2327)
==35656==    by 0x132DF0F9: changelog_rpc_server_init (changelog-rpc-common.c:302)
==35656==    by 0x132DDC27: changelog_init_rpc_listner (changelog-rpc.c:175)
==35656==    by 0x132D6D70: changelog_init_rpc (changelog.c:2768)
==35656==    by 0x132D71B1: init (changelog.c:2850)
==35656==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==35656==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==35656==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==35656==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==35656== 
==35656== 224 bytes in 1 blocks are possibly lost in loss record 466 of 704
==35656==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==35656==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==35656==    by 0x4E90487: mem_pool_new_fn (mem-pool.c:381)
==35656==    by 0x12BEA39B: init (changetimerecorder.c:2109)
==35656==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==35656==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==35656==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==35656==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==35656==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==35656==    by 0x40ECA5: mgmt_getspec_cbk (glusterfsd-mgmt.c:1648)
==35656==    by 0x51505D2: rpc_clnt_handle_reply (rpc-clnt.c:791)
==35656==    by 0x5150B34: rpc_clnt_notify (rpc-clnt.c:971)
==35656== 
==35656== 224 bytes in 1 blocks are possibly lost in loss record 467 of 704
==35656==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==35656==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==35656==    by 0x4E90487: mem_pool_new_fn (mem-pool.c:381)
==35656==    by 0x129D0936: init (trash.c:2438)
==35656==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==35656==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==35656==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==35656==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==35656==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==35656==    by 0x40ECA5: mgmt_getspec_cbk (glusterfsd-mgmt.c:1648)
==35656==    by 0x51505D2: rpc_clnt_handle_reply (rpc-clnt.c:791)
==35656==    by 0x5150B34: rpc_clnt_notify (rpc-clnt.c:971)
==35656== 
==35656== 224 bytes in 1 blocks are possibly lost in loss record 468 of 704
==35656==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==35656==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==35656==    by 0x4E90487: mem_pool_new_fn (mem-pool.c:381)
==35656==    by 0x129BB436: inode_table_new (inode.c:1593)
==35656==    by 0x129CF039: notify (trash.c:2172)
==35656==    by 0x4E5BEC3: xlator_notify (xlator.c:496)
==35656==    by 0x4F12DCF: default_notify (defaults.c:3114)
==35656==    by 0x1218A501: notify (posix.c:6596)
==35656==    by 0x4E5BEC3: xlator_notify (xlator.c:496)
==35656==    by 0x4F12CE8: default_notify (defaults.c:3090)
==35656==    by 0x129D019E: notify (trash.c:2307)
==35656==    by 0x4E5BEC3: xlator_notify (xlator.c:496)
==35656== 
==35656== 224 bytes in 1 blocks are possibly lost in loss record 469 of 704
==35656==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==35656==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==35656==    by 0x4E90487: mem_pool_new_fn (mem-pool.c:381)
==35656==    by 0x129BB46E: inode_table_new (inode.c:1598)
==35656==    by 0x129CF039: notify (trash.c:2172)
==35656==    by 0x4E5BEC3: xlator_notify (xlator.c:496)
==35656==    by 0x4F12DCF: default_notify (defaults.c:3114)
==35656==    by 0x1218A501: notify (posix.c:6596)
==35656==    by 0x4E5BEC3: xlator_notify (xlator.c:496)
==35656==    by 0x4F12CE8: default_notify (defaults.c:3090)
==35656==    by 0x129D019E: notify (trash.c:2307)
==35656==    by 0x4E5BEC3: xlator_notify (xlator.c:496)
==35656== 
==35656== 224 bytes in 1 blocks are possibly lost in loss record 470 of 704
==35656==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==35656==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==35656==    by 0x4E90487: mem_pool_new_fn (mem-pool.c:381)
==35656==    by 0x129BB514: inode_table_new (inode.c:1617)
==35656==    by 0x129CF039: notify (trash.c:2172)
==35656==    by 0x4E5BEC3: xlator_notify (xlator.c:496)
==35656==    by 0x4F12DCF: default_notify (defaults.c:3114)
==35656==    by 0x1218A501: notify (posix.c:6596)
==35656==    by 0x4E5BEC3: xlator_notify (xlator.c:496)
==35656==    by 0x4F12CE8: default_notify (defaults.c:3090)
==35656==    by 0x129D019E: notify (trash.c:2307)
==35656==    by 0x4E5BEC3: xlator_notify (xlator.c:496)
==35656== 
==35656== 224 bytes in 1 blocks are possibly lost in loss record 471 of 704
==35656==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==35656==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==35656==    by 0x4E90487: mem_pool_new_fn (mem-pool.c:381)
==35656==    by 0x4E71F64: inode_table_new (inode.c:1593)
==35656==    by 0x15096890: server_setvolume (server-handshake.c:740)
==35656==    by 0x514731B: rpcsvc_handle_rpc_call (rpcsvc.c:701)
==35656==    by 0x514766E: rpcsvc_notify (rpcsvc.c:795)
==35656==    by 0x514CD1D: rpc_transport_notify (rpc-transport.c:541)
==35656==    by 0xFEA9D43: socket_event_poll_in (socket.c:2267)
==35656==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==35656==    by 0x4ECB1D7: event_dispatch_epoll_handler (event-epoll.c:571)
==35656==    by 0x4ECB5F4: event_dispatch_epoll_worker (event-epoll.c:674)
==35656== 
==35656== 224 bytes in 1 blocks are possibly lost in loss record 472 of 704
==35656==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==35656==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==35656==    by 0x4E90487: mem_pool_new_fn (mem-pool.c:381)
==35656==    by 0x4E71F9C: inode_table_new (inode.c:1598)
==35656==    by 0x15096890: server_setvolume (server-handshake.c:740)
==35656==    by 0x514731B: rpcsvc_handle_rpc_call (rpcsvc.c:701)
==35656==    by 0x514766E: rpcsvc_notify (rpcsvc.c:795)
==35656==    by 0x514CD1D: rpc_transport_notify (rpc-transport.c:541)
==35656==    by 0xFEA9D43: socket_event_poll_in (socket.c:2267)
==35656==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==35656==    by 0x4ECB1D7: event_dispatch_epoll_handler (event-epoll.c:571)
==35656==    by 0x4ECB5F4: event_dispatch_epoll_worker (event-epoll.c:674)
==35656== 
==35656== 224 bytes in 1 blocks are possibly lost in loss record 473 of 704
==35656==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==35656==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==35656==    by 0x4E90487: mem_pool_new_fn (mem-pool.c:381)
==35656==    by 0x4E72042: inode_table_new (inode.c:1617)
==35656==    by 0x15096890: server_setvolume (server-handshake.c:740)
==35656==    by 0x514731B: rpcsvc_handle_rpc_call (rpcsvc.c:701)
==35656==    by 0x514766E: rpcsvc_notify (rpcsvc.c:795)
==35656==    by 0x514CD1D: rpc_transport_notify (rpc-transport.c:541)
==35656==    by 0xFEA9D43: socket_event_poll_in (socket.c:2267)
==35656==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==35656==    by 0x4ECB1D7: event_dispatch_epoll_handler (event-epoll.c:571)
==35656==    by 0x4ECB5F4: event_dispatch_epoll_worker (event-epoll.c:674)
==35656== 
==35656== 224 bytes in 2 blocks are possibly lost in loss record 474 of 704
==35656==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==35656==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==35656==    by 0x406A49: gf_remember_xlator_option (glusterfsd.c:729)
==35656==    by 0x40789D: parse_opts (glusterfsd.c:1075)
==35656==    by 0x67B5412: argp_parse (in /usr/lib64/libc-2.17.so)
==35656==    by 0x4092D4: parse_cmdline (glusterfsd.c:1866)
==35656==    by 0x40A5E5: main (glusterfsd.c:2417)
==35656== 
==35656== 232 bytes in 1 blocks are possibly lost in loss record 475 of 704
==35656==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==35656==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==35656==    by 0x514912C: rpcsvc_listener_alloc (rpcsvc.c:1632)
==35656==    by 0x514930B: rpcsvc_create_listener (rpcsvc.c:1684)
==35656==    by 0x514955C: rpcsvc_create_listeners (rpcsvc.c:1757)
==35656==    by 0x40F98A: glusterfs_listener_init (glusterfsd-mgmt.c:2037)
==35656==    by 0x40A3EC: glusterfs_volumes_init (glusterfsd.c:2359)
==35656==    by 0x40A892: main (glusterfsd.c:2488)
==35656== 
==35656== 232 bytes in 1 blocks are possibly lost in loss record 476 of 704
==35656==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==35656==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==35656==    by 0x514912C: rpcsvc_listener_alloc (rpcsvc.c:1632)
==35656==    by 0x514930B: rpcsvc_create_listener (rpcsvc.c:1684)
==35656==    by 0x514955C: rpcsvc_create_listeners (rpcsvc.c:1757)
==35656==    by 0x1506250B: init (server.c:1056)
==35656==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==35656==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==35656==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==35656==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==35656==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==35656==    by 0x40ECA5: mgmt_getspec_cbk (glusterfsd-mgmt.c:1648)
==35656== 
==35656== 232 bytes in 1 blocks are possibly lost in loss record 477 of 704
==35656==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==35656==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==35656==    by 0x13F6F721: init (leases.c:1025)
==35656==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==35656==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==35656==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==35656==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==35656==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==35656==    by 0x40ECA5: mgmt_getspec_cbk (glusterfsd-mgmt.c:1648)
==35656==    by 0x51505D2: rpc_clnt_handle_reply (rpc-clnt.c:791)
==35656==    by 0x5150B34: rpc_clnt_notify (rpc-clnt.c:971)
==35656==    by 0x514CD1D: rpc_transport_notify (rpc-transport.c:541)
==35656== 
==35656== 232 bytes in 1 blocks are possibly lost in loss record 478 of 704
==35656==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==35656==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==35656==    by 0x514912C: rpcsvc_listener_alloc (rpcsvc.c:1632)
==35656==    by 0x514930B: rpcsvc_create_listener (rpcsvc.c:1684)
==35656==    by 0x514955C: rpcsvc_create_listeners (rpcsvc.c:1757)
==35656==    by 0x132DF1E6: changelog_rpc_server_init (changelog-rpc-common.c:318)
==35656==    by 0x132DDC27: changelog_init_rpc_listner (changelog-rpc.c:175)
==35656==    by 0x132D6D70: changelog_init_rpc (changelog.c:2768)
==35656==    by 0x132D71B1: init (changelog.c:2850)
==35656==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==35656==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==35656==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==35656== 
==35656== 244 bytes in 1 blocks are possibly lost in loss record 481 of 704
==35656==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==35656==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==35656==    by 0x4E908B0: mem_get (mem-pool.c:513)
==35656==    by 0x4E906CE: mem_get0 (mem-pool.c:446)
==35656==    by 0x4E53E86: get_new_dict_full (dict.c:52)
==35656==    by 0x4E53F98: dict_new (dict.c:103)
==35656==    by 0x514A2F3: rpcsvc_transport_unix_options_build (rpcsvc.c:2166)
==35656==    by 0x40F909: glusterfs_listener_init (glusterfsd-mgmt.c:2022)
==35656==    by 0x40A3EC: glusterfs_volumes_init (glusterfsd.c:2359)
==35656==    by 0x40A892: main (glusterfsd.c:2488)
==35656== 
==35656== 244 bytes in 1 blocks are possibly lost in loss record 482 of 704
==35656==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==35656==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==35656==    by 0x4E908B0: mem_get (mem-pool.c:513)
==35656==    by 0x4E906CE: mem_get0 (mem-pool.c:446)
==35656==    by 0x4E53E86: get_new_dict_full (dict.c:52)
==35656==    by 0x4E53F98: dict_new (dict.c:103)
==35656==    by 0x514D11A: rpc_transport_inet_options_build (rpc-transport.c:667)
==35656==    by 0x40FD9D: glusterfs_mgmt_init (glusterfsd-mgmt.c:2139)
==35656==    by 0x40A412: glusterfs_volumes_init (glusterfsd.c:2365)
==35656==    by 0x40A892: main (glusterfsd.c:2488)
==35656== 
==35656== 244 bytes in 1 blocks are possibly lost in loss record 483 of 704
==35656==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==35656==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==35656==    by 0x4E908B0: mem_get (mem-pool.c:513)
==35656==    by 0x4E906CE: mem_get0 (mem-pool.c:446)
==35656==    by 0x4E53E86: get_new_dict_full (dict.c:52)
==35656==    by 0x4E53F98: dict_new (dict.c:103)
==35656==    by 0x15062038: init (server.c:983)
==35656==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==35656==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==35656==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==35656==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==35656==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==35656== 
==35656== 244 bytes in 1 blocks are possibly lost in loss record 484 of 704
==35656==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==35656==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==35656==    by 0x4E908B0: mem_get (mem-pool.c:513)
==35656==    by 0x4E906CE: mem_get0 (mem-pool.c:446)
==35656==    by 0x4E53E86: get_new_dict_full (dict.c:52)
==35656==    by 0x4E53F98: dict_new (dict.c:103)
==35656==    by 0x147D54B7: index_make_xattrop_watchlist (index.c:2202)
==35656==    by 0x147D5A4E: init (index.c:2334)
==35656==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==35656==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==35656==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==35656==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==35656== 
==35656== 244 bytes in 1 blocks are possibly lost in loss record 485 of 704
==35656==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==35656==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==35656==    by 0x4E908B0: mem_get (mem-pool.c:513)
==35656==    by 0x4E906CE: mem_get0 (mem-pool.c:446)
==35656==    by 0x4E53E86: get_new_dict_full (dict.c:52)
==35656==    by 0x4E53F98: dict_new (dict.c:103)
==35656==    by 0x147D54B7: index_make_xattrop_watchlist (index.c:2202)
==35656==    by 0x147D5ACA: init (index.c:2340)
==35656==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==35656==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==35656==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==35656==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==35656== 
==35656== 244 bytes in 1 blocks are possibly lost in loss record 486 of 704
==35656==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==35656==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==35656==    by 0x4E908B0: mem_get (mem-pool.c:513)
==35656==    by 0x4E906CE: mem_get0 (mem-pool.c:446)
==35656==    by 0x4E53E86: get_new_dict_full (dict.c:52)
==35656==    by 0x4E53F98: dict_new (dict.c:103)
==35656==    by 0x4E56E8F: dict_copy_with_ref (dict.c:1359)
==35656==    by 0x147D5B09: init (index.c:2346)
==35656==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==35656==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==35656==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==35656==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==35656== 
==35656== 244 bytes in 1 blocks are definitely lost in loss record 487 of 704
==35656==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==35656==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==35656==    by 0x4E908B0: mem_get (mem-pool.c:513)
==35656==    by 0x4E906CE: mem_get0 (mem-pool.c:446)
==35656==    by 0x4E53E86: get_new_dict_full (dict.c:52)
==35656==    by 0x4E53F98: dict_new (dict.c:103)
==35656==    by 0x132DF0A6: changelog_rpc_server_init (changelog-rpc-common.c:294)
==35656==    by 0x132DDC27: changelog_init_rpc_listner (changelog-rpc.c:175)
==35656==    by 0x132D6D70: changelog_init_rpc (changelog.c:2768)
==35656==    by 0x132D71B1: init (changelog.c:2850)
==35656==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==35656==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==35656== 
==35656== 260 bytes in 1 blocks are possibly lost in loss record 490 of 704
==35656==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==35656==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==35656==    by 0x4E908B0: mem_get (mem-pool.c:513)
==35656==    by 0x4E906CE: mem_get0 (mem-pool.c:446)
==35656==    by 0x129B92DB: __inode_create (inode.c:600)
==35656==    by 0x129BB331: __inode_table_init_root (inode.c:1560)
==35656==    by 0x129BB6A7: inode_table_new (inode.c:1641)
==35656==    by 0x129CF039: notify (trash.c:2172)
==35656==    by 0x4E5BEC3: xlator_notify (xlator.c:496)
==35656==    by 0x4F12DCF: default_notify (defaults.c:3114)
==35656==    by 0x1218A501: notify (posix.c:6596)
==35656==    by 0x4E5BEC3: xlator_notify (xlator.c:496)
==35656== 
==35656== 260 bytes in 1 blocks are possibly lost in loss record 491 of 704
==35656==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==35656==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==35656==    by 0x4E908B0: mem_get (mem-pool.c:513)
==35656==    by 0x4E906CE: mem_get0 (mem-pool.c:446)
==35656==    by 0x129B92DB: __inode_create (inode.c:600)
==35656==    by 0x129B9520: inode_new (inode.c:647)
==35656==    by 0x129CF06A: notify (trash.c:2182)
==35656==    by 0x4E5BEC3: xlator_notify (xlator.c:496)
==35656==    by 0x4F12DCF: default_notify (defaults.c:3114)
==35656==    by 0x1218A501: notify (posix.c:6596)
==35656==    by 0x4E5BEC3: xlator_notify (xlator.c:496)
==35656==    by 0x4F12CE8: default_notify (defaults.c:3090)
==35656== 
==35656== 260 bytes in 1 blocks are possibly lost in loss record 492 of 704
==35656==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==35656==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==35656==    by 0x4E908B0: mem_get (mem-pool.c:513)
==35656==    by 0x4E906CE: mem_get0 (mem-pool.c:446)
==35656==    by 0x129B92DB: __inode_create (inode.c:600)
==35656==    by 0x129B9520: inode_new (inode.c:647)
==35656==    by 0x129CF6BB: notify (trash.c:2230)
==35656==    by 0x4E5BEC3: xlator_notify (xlator.c:496)
==35656==    by 0x4F12DCF: default_notify (defaults.c:3114)
==35656==    by 0x1218A501: notify (posix.c:6596)
==35656==    by 0x4E5BEC3: xlator_notify (xlator.c:496)
==35656==    by 0x4F12CE8: default_notify (defaults.c:3090)
==35656== 
==35656== 260 bytes in 1 blocks are possibly lost in loss record 493 of 704
==35656==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==35656==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==35656==    by 0x4E908B0: mem_get (mem-pool.c:513)
==35656==    by 0x4E906CE: mem_get0 (mem-pool.c:446)
==35656==    by 0x129B92DB: __inode_create (inode.c:600)
==35656==    by 0x129B9520: inode_new (inode.c:647)
==35656==    by 0x129BEFB1: trash_notify_mkdir_cbk (trash.c:450)
==35656==    by 0x1216EB15: posix_mkdir (posix.c:1693)
==35656==    by 0x129CFA85: notify (trash.c:2246)
==35656==    by 0x4E5BEC3: xlator_notify (xlator.c:496)
==35656==    by 0x4F12DCF: default_notify (defaults.c:3114)
==35656==    by 0x1218A501: notify (posix.c:6596)
==35656== 
==35656== 260 bytes in 1 blocks are possibly lost in loss record 494 of 704
==35656==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==35656==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==35656==    by 0x4E908B0: mem_get (mem-pool.c:513)
==35656==    by 0x4E906CE: mem_get0 (mem-pool.c:446)
==35656==    by 0x4E6FE09: __inode_create (inode.c:600)
==35656==    by 0x4E71E5F: __inode_table_init_root (inode.c:1560)
==35656==    by 0x4E721D5: inode_table_new (inode.c:1641)
==35656==    by 0x15096890: server_setvolume (server-handshake.c:740)
==35656==    by 0x514731B: rpcsvc_handle_rpc_call (rpcsvc.c:701)
==35656==    by 0x514766E: rpcsvc_notify (rpcsvc.c:795)
==35656==    by 0x514CD1D: rpc_transport_notify (rpc-transport.c:541)
==35656==    by 0xFEA9D43: socket_event_poll_in (socket.c:2267)
==35656== 
==35656== 272 bytes in 1 blocks are possibly lost in loss record 495 of 704
==35656==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==35656==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==35656==    by 0x514F2E8: saved_frames_new (rpc-clnt.c:257)
==35656==    by 0x5150F0F: rpc_clnt_connection_init (rpc-clnt.c:1090)
==35656==    by 0x5151169: rpc_clnt_new (rpc-clnt.c:1159)
==35656==    by 0x40FE46: glusterfs_mgmt_init (glusterfsd-mgmt.c:2157)
==35656==    by 0x40A412: glusterfs_volumes_init (glusterfsd.c:2365)
==35656==    by 0x40A892: main (glusterfsd.c:2488)
==35656== 
==35656== 272 bytes in 1 blocks are possibly lost in loss record 496 of 704
==35656==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==35656==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==35656==    by 0x4EEA540: glusterfs_graph_new (graph.y:537)
==35656==    by 0x4EEA5DF: glusterfs_graph_construct (graph.y:560)
==35656==    by 0x40A211: glusterfs_process_volfp (glusterfsd.c:2305)
==35656==    by 0x40ECA5: mgmt_getspec_cbk (glusterfsd-mgmt.c:1648)
==35656==    by 0x51505D2: rpc_clnt_handle_reply (rpc-clnt.c:791)
==35656==    by 0x5150B34: rpc_clnt_notify (rpc-clnt.c:971)
==35656==    by 0x514CD1D: rpc_transport_notify (rpc-transport.c:541)
==35656==    by 0xFEA9D43: socket_event_poll_in (socket.c:2267)
==35656==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==35656==    by 0x4ECB1D7: event_dispatch_epoll_handler (event-epoll.c:571)
==35656== 
==35656== 272 bytes in 1 blocks are possibly lost in loss record 497 of 704
==35656==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==35656==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==35656==    by 0x514F2E8: saved_frames_new (rpc-clnt.c:257)
==35656==    by 0x514FD5E: rpc_clnt_connection_cleanup (rpc-clnt.c:537)
==35656==    by 0x5150722: rpc_clnt_handle_disconnect (rpc-clnt.c:881)
==35656==    by 0x51509F9: rpc_clnt_notify (rpc-clnt.c:937)
==35656==    by 0x514CD1D: rpc_transport_notify (rpc-transport.c:541)
==35656==    by 0xFEA5910: socket_event_poll_err (socket.c:1179)
==35656==    by 0xFEAA301: socket_event_handler (socket.c:2404)
==35656==    by 0x4ECB1D7: event_dispatch_epoll_handler (event-epoll.c:571)
==35656==    by 0x4ECB5F4: event_dispatch_epoll_worker (event-epoll.c:674)
==35656==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==35656== 
==35656== 272 bytes in 1 blocks are possibly lost in loss record 498 of 704
==35656==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==35656==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==35656==    by 0x129BB3B7: inode_table_new (inode.c:1578)
==35656==    by 0x129CF039: notify (trash.c:2172)
==35656==    by 0x4E5BEC3: xlator_notify (xlator.c:496)
==35656==    by 0x4F12DCF: default_notify (defaults.c:3114)
==35656==    by 0x1218A501: notify (posix.c:6596)
==35656==    by 0x4E5BEC3: xlator_notify (xlator.c:496)
==35656==    by 0x4F12CE8: default_notify (defaults.c:3090)
==35656==    by 0x129D019E: notify (trash.c:2307)
==35656==    by 0x4E5BEC3: xlator_notify (xlator.c:496)
==35656==    by 0x4F12CE8: default_notify (defaults.c:3090)
==35656== 
==35656== 272 bytes in 1 blocks are possibly lost in loss record 499 of 704
==35656==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==35656==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==35656==    by 0x4E71EE5: inode_table_new (inode.c:1578)
==35656==    by 0x15096890: server_setvolume (server-handshake.c:740)
==35656==    by 0x514731B: rpcsvc_handle_rpc_call (rpcsvc.c:701)
==35656==    by 0x514766E: rpcsvc_notify (rpcsvc.c:795)
==35656==    by 0x514CD1D: rpc_transport_notify (rpc-transport.c:541)
==35656==    by 0xFEA9D43: socket_event_poll_in (socket.c:2267)
==35656==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==35656==    by 0x4ECB1D7: event_dispatch_epoll_handler (event-epoll.c:571)
==35656==    by 0x4ECB5F4: event_dispatch_epoll_worker (event-epoll.c:674)
==35656==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==35656== 
==35656== 284 bytes in 1 blocks are definitely lost in loss record 500 of 704
==35656==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==35656==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==35656==    by 0x4E908B0: mem_get (mem-pool.c:513)
==35656==    by 0x4E906CE: mem_get0 (mem-pool.c:446)
==35656==    by 0x4E9926E: create_frame (stack.c:31)
==35656==    by 0x41068B: glusterfs_mgmt_pmap_signout (glusterfsd-mgmt.c:2380)
==35656==    by 0x4080C9: cleanup_and_exit (glusterfsd.c:1333)
==35656==    by 0x409C1A: glusterfs_sigwaiter (glusterfsd.c:2102)
==35656==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==35656==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==35656== 
==35656== 288 bytes in 1 blocks are possibly lost in loss record 503 of 704
==35656==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==35656==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==35656==    by 0x514A5C7: rpcsvc_init (rpcsvc.c:2307)
==35656==    by 0x40F93C: glusterfs_listener_init (glusterfsd-mgmt.c:2027)
==35656==    by 0x40A3EC: glusterfs_volumes_init (glusterfsd.c:2359)
==35656==    by 0x40A892: main (glusterfsd.c:2488)
==35656== 
==35656== 288 bytes in 1 blocks are possibly lost in loss record 504 of 704
==35656==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==35656==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==35656==    by 0x514A5C7: rpcsvc_init (rpcsvc.c:2307)
==35656==    by 0x150622FC: init (server.c:1019)
==35656==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==35656==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==35656==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==35656==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==35656==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==35656==    by 0x40ECA5: mgmt_getspec_cbk (glusterfsd-mgmt.c:1648)
==35656==    by 0x51505D2: rpc_clnt_handle_reply (rpc-clnt.c:791)
==35656==    by 0x5150B34: rpc_clnt_notify (rpc-clnt.c:971)
==35656== 
==35656== 288 bytes in 1 blocks are possibly lost in loss record 505 of 704
==35656==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==35656==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==35656==    by 0x514A5C7: rpcsvc_init (rpcsvc.c:2307)
==35656==    by 0x132DF0F9: changelog_rpc_server_init (changelog-rpc-common.c:302)
==35656==    by 0x132DDC27: changelog_init_rpc_listner (changelog-rpc.c:175)
==35656==    by 0x132D6D70: changelog_init_rpc (changelog.c:2768)
==35656==    by 0x132D71B1: init (changelog.c:2850)
==35656==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==35656==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==35656==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==35656==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==35656==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==35656== 
==35656== 312 bytes in 2 blocks are possibly lost in loss record 507 of 704
==35656==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==35656==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==35656==    by 0x4E908B0: mem_get (mem-pool.c:513)
==35656==    by 0x4E906CE: mem_get0 (mem-pool.c:446)
==35656==    by 0x4E6FCB3: __dentry_create (inode.c:562)
==35656==    by 0x4E70B3B: __inode_link (inode.c:1016)
==35656==    by 0x4E70D02: inode_link (inode.c:1060)
==35656==    by 0x149E0E73: quota_build_ancestry_cbk (quota.c:778)
==35656==    by 0x143A79A9: marker_build_ancestry_cbk (marker.c:3055)
==35656==    by 0x14186A63: up_readdir_cbk (upcall.c:1264)
==35656==    by 0x13931DF5: pl_readdirp_cbk (posix.c:2700)
==35656==    by 0x137121B8: posix_acl_readdirp_cbk (posix-acl.c:1714)
==35656== 
==35656== 312 bytes in 2 blocks are possibly lost in loss record 508 of 704
==35656==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==35656==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==35656==    by 0x4E908B0: mem_get (mem-pool.c:513)
==35656==    by 0x4E906CE: mem_get0 (mem-pool.c:446)
==35656==    by 0x4E6FCB3: __dentry_create (inode.c:562)
==35656==    by 0x4E70B3B: __inode_link (inode.c:1016)
==35656==    by 0x4E70D02: inode_link (inode.c:1060)
==35656==    by 0x15098AD5: server_post_lookup (server-common.c:462)
==35656==    by 0x15077078: server_lookup_cbk (server-rpc-fops.c:141)
==35656==    by 0x14C16C3F: io_stats_lookup_cbk (io-stats.c:2115)
==35656==    by 0x149E3453: quota_lookup_cbk (quota.c:1612)
==35656==    by 0x4F0100E: default_lookup_cbk (defaults.c:1265)
==35656== 
==35656== 328 bytes in 1 blocks are possibly lost in loss record 509 of 704
==35656==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==35656==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==35656==    by 0x147D5748: init (index.c:2293)
==35656==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==35656==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==35656==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==35656==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==35656==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==35656==    by 0x40ECA5: mgmt_getspec_cbk (glusterfsd-mgmt.c:1648)
==35656==    by 0x51505D2: rpc_clnt_handle_reply (rpc-clnt.c:791)
==35656==    by 0x5150B34: rpc_clnt_notify (rpc-clnt.c:971)
==35656==    by 0x514CD1D: rpc_transport_notify (rpc-transport.c:541)
==35656== 
==35656== 328 bytes in 1 blocks are possibly lost in loss record 510 of 704
==35656==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==35656==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==35656==    by 0x1218BD08: init (posix.c:7132)
==35656==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==35656==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==35656==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==35656==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==35656==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==35656==    by 0x40ECA5: mgmt_getspec_cbk (glusterfsd-mgmt.c:1648)
==35656==    by 0x51505D2: rpc_clnt_handle_reply (rpc-clnt.c:791)
==35656==    by 0x5150B34: rpc_clnt_notify (rpc-clnt.c:971)
==35656==    by 0x514CD1D: rpc_transport_notify (rpc-transport.c:541)
==35656== 
==35656== 328 bytes in 2 blocks are definitely lost in loss record 511 of 704
==35656==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==35656==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==35656==    by 0x4E908B0: mem_get (mem-pool.c:513)
==35656==    by 0x4E906CE: mem_get0 (mem-pool.c:446)
==35656==    by 0x4E53E07: get_new_data (dict.c:40)
==35656==    by 0x4E55CD6: str_to_data (dict.c:860)
==35656==    by 0x4E584A0: dict_set_str (dict.c:2162)
==35656==    by 0x4EA196E: gf_add_cmdline_options (graph.c:260)
==35656==    by 0x4EA2394: glusterfs_graph_prepare (graph.c:523)
==35656==    by 0x40A2F9: glusterfs_process_volfp (glusterfsd.c:2319)
==35656==    by 0x40ECA5: mgmt_getspec_cbk (glusterfsd-mgmt.c:1648)
==35656==    by 0x51505D2: rpc_clnt_handle_reply (rpc-clnt.c:791)
==35656== 
==35656== 328 bytes in 2 blocks are definitely lost in loss record 512 of 704
==35656==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==35656==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==35656==    by 0x4E908B0: mem_get (mem-pool.c:513)
==35656==    by 0x4E906CE: mem_get0 (mem-pool.c:446)
==35656==    by 0x4E53E07: get_new_data (dict.c:40)
==35656==    by 0x4E55DE3: data_from_dynptr (dict.c:895)
==35656==    by 0x1509732A: init (authenticate.c:103)
==35656==    by 0x4E56B26: dict_foreach_match (dict.c:1236)
==35656==    by 0x4E56A12: dict_foreach (dict.c:1194)
==35656==    by 0x150974B9: gf_auth_init (authenticate.c:149)
==35656==    by 0x1506216C: init (server.c:993)
==35656==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==35656== 
==35656== 328 bytes in 4 blocks are definitely lost in loss record 513 of 704
==35656==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==35656==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==35656==    by 0x4E5499E: dict_set_lk (dict.c:378)
==35656==    by 0x4E54B82: dict_set (dict.c:424)
==35656==    by 0x4E58180: dict_set_static_ptr (dict.c:2022)
==35656==    by 0x1509639B: server_setvolume (server-handshake.c:666)
==35656==    by 0x514731B: rpcsvc_handle_rpc_call (rpcsvc.c:701)
==35656==    by 0x514766E: rpcsvc_notify (rpcsvc.c:795)
==35656==    by 0x514CD1D: rpc_transport_notify (rpc-transport.c:541)
==35656==    by 0xFEA9D43: socket_event_poll_in (socket.c:2267)
==35656==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==35656==    by 0x4ECB1D7: event_dispatch_epoll_handler (event-epoll.c:571)
==35656== 
==35656== 360 bytes in 1 blocks are possibly lost in loss record 517 of 704
==35656==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==35656==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==35656==    by 0x4E93243: iobuf_create_stdalloc_arena (iobuf.c:367)
==35656==    by 0x4E935BB: iobuf_pool_new (iobuf.c:431)
==35656==    by 0x4084EF: glusterfs_ctx_defaults_init (glusterfsd.c:1473)
==35656==    by 0x40A5BC: main (glusterfsd.c:2413)
==35656== 
==35656== 384 bytes in 4 blocks are possibly lost in loss record 519 of 704
==35656==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==35656==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==35656==    by 0x4EC6F2D: gf_client_get (client_t.c:238)
==35656==    by 0x15095B91: server_setvolume (server-handshake.c:524)
==35656==    by 0x514731B: rpcsvc_handle_rpc_call (rpcsvc.c:701)
==35656==    by 0x514766E: rpcsvc_notify (rpcsvc.c:795)
==35656==    by 0x514CD1D: rpc_transport_notify (rpc-transport.c:541)
==35656==    by 0xFEA9D43: socket_event_poll_in (socket.c:2267)
==35656==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==35656==    by 0x4ECB1D7: event_dispatch_epoll_handler (event-epoll.c:571)
==35656==    by 0x4ECB5F4: event_dispatch_epoll_worker (event-epoll.c:674)
==35656==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==35656== 
==35656== 436 bytes in 4 blocks are possibly lost in loss record 524 of 704
==35656==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==35656==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==35656==    by 0x150650A7: gf_strdup (mem-pool.h:187)
==35656==    by 0x15069F68: auth_set_username_passwd (server-helpers.c:1288)
==35656==    by 0x15095D25: server_setvolume (server-handshake.c:553)
==35656==    by 0x514731B: rpcsvc_handle_rpc_call (rpcsvc.c:701)
==35656==    by 0x514766E: rpcsvc_notify (rpcsvc.c:795)
==35656==    by 0x514CD1D: rpc_transport_notify (rpc-transport.c:541)
==35656==    by 0xFEA9D43: socket_event_poll_in (socket.c:2267)
==35656==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==35656==    by 0x4ECB1D7: event_dispatch_epoll_handler (event-epoll.c:571)
==35656==    by 0x4ECB5F4: event_dispatch_epoll_worker (event-epoll.c:674)
==35656== 
==35656== 436 bytes in 4 blocks are possibly lost in loss record 525 of 704
==35656==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==35656==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==35656==    by 0x150650A7: gf_strdup (mem-pool.h:187)
==35656==    by 0x15069F7F: auth_set_username_passwd (server-helpers.c:1290)
==35656==    by 0x15095D25: server_setvolume (server-handshake.c:553)
==35656==    by 0x514731B: rpcsvc_handle_rpc_call (rpcsvc.c:701)
==35656==    by 0x514766E: rpcsvc_notify (rpcsvc.c:795)
==35656==    by 0x514CD1D: rpc_transport_notify (rpc-transport.c:541)
==35656==    by 0xFEA9D43: socket_event_poll_in (socket.c:2267)
==35656==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==35656==    by 0x4ECB1D7: event_dispatch_epoll_handler (event-epoll.c:571)
==35656==    by 0x4ECB5F4: event_dispatch_epoll_worker (event-epoll.c:674)
==35656== 
==35656== 440 bytes in 1 blocks are possibly lost in loss record 526 of 704
==35656==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==35656==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==35656==    by 0x515100F: rpc_clnt_new (rpc-clnt.c:1126)
==35656==    by 0x40FE46: glusterfs_mgmt_init (glusterfsd-mgmt.c:2157)
==35656==    by 0x40A412: glusterfs_volumes_init (glusterfsd.c:2365)
==35656==    by 0x40A892: main (glusterfsd.c:2488)
==35656== 
==35656== 440 bytes in 1 blocks are possibly lost in loss record 527 of 704
==35656==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==35656==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==35656==    by 0x515100F: rpc_clnt_new (rpc-clnt.c:1126)
==35656==    by 0x14A014DE: quota_enforcer_init (quota-enforcer-client.c:451)
==35656==    by 0x149FF51D: init (quota.c:5127)
==35656==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==35656==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==35656==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==35656==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==35656==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==35656==    by 0x40ECA5: mgmt_getspec_cbk (glusterfsd-mgmt.c:1648)
==35656==    by 0x51505D2: rpc_clnt_handle_reply (rpc-clnt.c:791)
==35656== 
==35656== 450 bytes in 5 blocks are possibly lost in loss record 528 of 704
==35656==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==35656==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==35656==    by 0xFEA28F8: gf_strdup (mem-pool.h:187)
==35656==    by 0xFEAB011: socket_server_event_handler (socket.c:2700)
==35656==    by 0x4ECB1D7: event_dispatch_epoll_handler (event-epoll.c:571)
==35656==    by 0x4ECB5F4: event_dispatch_epoll_worker (event-epoll.c:674)
==35656==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==35656==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==35656== 
==35656== 520 bytes in 2 blocks are possibly lost in loss record 532 of 704
==35656==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==35656==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==35656==    by 0x4E908B0: mem_get (mem-pool.c:513)
==35656==    by 0x4E906CE: mem_get0 (mem-pool.c:446)
==35656==    by 0x4E6FE09: __inode_create (inode.c:600)
==35656==    by 0x4E7004E: inode_new (inode.c:647)
==35656==    by 0x1506A05F: server_inode_new (server-helpers.c:1314)
==35656==    by 0x15063F03: resolve_gfid (server-resolve.c:208)
==35656==    by 0x1506484F: server_resolve_inode (server-resolve.c:421)
==35656==    by 0x15064CD4: server_resolve (server-resolve.c:562)
==35656==    by 0x15064E6B: server_resolve_all (server-resolve.c:614)
==35656==    by 0x15064F80: resolve_and_resume (server-resolve.c:645)
==35656== 
==35656== 520 bytes in 2 blocks are possibly lost in loss record 533 of 704
==35656==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==35656==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==35656==    by 0x4E908B0: mem_get (mem-pool.c:513)
==35656==    by 0x4E906CE: mem_get0 (mem-pool.c:446)
==35656==    by 0x4E6FE09: __inode_create (inode.c:600)
==35656==    by 0x4E7004E: inode_new (inode.c:647)
==35656==    by 0x1506A05F: server_inode_new (server-helpers.c:1314)
==35656==    by 0x150877CF: server_lookup_resume (server-rpc-fops.c:3108)
==35656==    by 0x15064DE8: server_resolve_done (server-resolve.c:590)
==35656==    by 0x15064EE9: server_resolve_all (server-resolve.c:625)
==35656==    by 0x15064D8F: server_resolve (server-resolve.c:574)
==35656==    by 0x15064EC0: server_resolve_all (server-resolve.c:621)
==35656== 
==35656== 528 bytes in 1 blocks are possibly lost in loss record 537 of 704
==35656==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==35656==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==35656==    by 0xFEAE076: socket_init (socket.c:3833)
==35656==    by 0xFEAF578: init (socket.c:4290)
==35656==    by 0x514C3DE: rpc_transport_load (rpc-transport.c:351)
==35656==    by 0x5149213: rpcsvc_create_listener (rpcsvc.c:1664)
==35656==    by 0x514955C: rpcsvc_create_listeners (rpcsvc.c:1757)
==35656==    by 0x40F98A: glusterfs_listener_init (glusterfsd-mgmt.c:2037)
==35656==    by 0x40A3EC: glusterfs_volumes_init (glusterfsd.c:2359)
==35656==    by 0x40A892: main (glusterfsd.c:2488)
==35656== 
==35656== 528 bytes in 1 blocks are possibly lost in loss record 538 of 704
==35656==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==35656==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==35656==    by 0xFEAE076: socket_init (socket.c:3833)
==35656==    by 0xFEAF578: init (socket.c:4290)
==35656==    by 0x514C3DE: rpc_transport_load (rpc-transport.c:351)
==35656==    by 0x5150E30: rpc_clnt_connection_init (rpc-clnt.c:1067)
==35656==    by 0x5151169: rpc_clnt_new (rpc-clnt.c:1159)
==35656==    by 0x40FE46: glusterfs_mgmt_init (glusterfsd-mgmt.c:2157)
==35656==    by 0x40A412: glusterfs_volumes_init (glusterfsd.c:2365)
==35656==    by 0x40A892: main (glusterfsd.c:2488)
==35656== 
==35656== 528 bytes in 1 blocks are possibly lost in loss record 539 of 704
==35656==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==35656==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==35656==    by 0xFEAE076: socket_init (socket.c:3833)
==35656==    by 0xFEAF578: init (socket.c:4290)
==35656==    by 0x514C3DE: rpc_transport_load (rpc-transport.c:351)
==35656==    by 0x5149213: rpcsvc_create_listener (rpcsvc.c:1664)
==35656==    by 0x514955C: rpcsvc_create_listeners (rpcsvc.c:1757)
==35656==    by 0x1506250B: init (server.c:1056)
==35656==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==35656==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==35656==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==35656==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==35656== 
==35656== 528 bytes in 1 blocks are possibly lost in loss record 540 of 704
==35656==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==35656==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==35656==    by 0xFEAE076: socket_init (socket.c:3833)
==35656==    by 0xFEAF578: init (socket.c:4290)
==35656==    by 0x514C3DE: rpc_transport_load (rpc-transport.c:351)
==35656==    by 0x5150E30: rpc_clnt_connection_init (rpc-clnt.c:1067)
==35656==    by 0x5151169: rpc_clnt_new (rpc-clnt.c:1159)
==35656==    by 0x14A014DE: quota_enforcer_init (quota-enforcer-client.c:451)
==35656==    by 0x149FF51D: init (quota.c:5127)
==35656==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==35656==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==35656==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==35656== 
==35656== 528 bytes in 1 blocks are possibly lost in loss record 541 of 704
==35656==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==35656==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==35656==    by 0xFEAE076: socket_init (socket.c:3833)
==35656==    by 0xFEAF578: init (socket.c:4290)
==35656==    by 0x514C3DE: rpc_transport_load (rpc-transport.c:351)
==35656==    by 0x5149213: rpcsvc_create_listener (rpcsvc.c:1664)
==35656==    by 0x514955C: rpcsvc_create_listeners (rpcsvc.c:1757)
==35656==    by 0x132DF1E6: changelog_rpc_server_init (changelog-rpc-common.c:318)
==35656==    by 0x132DDC27: changelog_init_rpc_listner (changelog-rpc.c:175)
==35656==    by 0x132D6D70: changelog_init_rpc (changelog.c:2768)
==35656==    by 0x132D71B1: init (changelog.c:2850)
==35656==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==35656== 
==35656== 528 bytes in 1 blocks are definitely lost in loss record 542 of 704
==35656==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==35656==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==35656==    by 0x129B93F4: __inode_create (inode.c:614)
==35656==    by 0x129BB331: __inode_table_init_root (inode.c:1560)
==35656==    by 0x129BB6A7: inode_table_new (inode.c:1641)
==35656==    by 0x129CF039: notify (trash.c:2172)
==35656==    by 0x4E5BEC3: xlator_notify (xlator.c:496)
==35656==    by 0x4F12DCF: default_notify (defaults.c:3114)
==35656==    by 0x1218A501: notify (posix.c:6596)
==35656==    by 0x4E5BEC3: xlator_notify (xlator.c:496)
==35656==    by 0x4F12CE8: default_notify (defaults.c:3090)
==35656==    by 0x129D019E: notify (trash.c:2307)
==35656== 
==35656== 528 bytes in 1 blocks are definitely lost in loss record 543 of 704
==35656==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==35656==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==35656==    by 0x129B93F4: __inode_create (inode.c:614)
==35656==    by 0x129B9520: inode_new (inode.c:647)
==35656==    by 0x129CF06A: notify (trash.c:2182)
==35656==    by 0x4E5BEC3: xlator_notify (xlator.c:496)
==35656==    by 0x4F12DCF: default_notify (defaults.c:3114)
==35656==    by 0x1218A501: notify (posix.c:6596)
==35656==    by 0x4E5BEC3: xlator_notify (xlator.c:496)
==35656==    by 0x4F12CE8: default_notify (defaults.c:3090)
==35656==    by 0x129D019E: notify (trash.c:2307)
==35656==    by 0x4E5BEC3: xlator_notify (xlator.c:496)
==35656== 
==35656== 528 bytes in 1 blocks are definitely lost in loss record 544 of 704
==35656==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==35656==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==35656==    by 0x129B93F4: __inode_create (inode.c:614)
==35656==    by 0x129B9520: inode_new (inode.c:647)
==35656==    by 0x129CF6BB: notify (trash.c:2230)
==35656==    by 0x4E5BEC3: xlator_notify (xlator.c:496)
==35656==    by 0x4F12DCF: default_notify (defaults.c:3114)
==35656==    by 0x1218A501: notify (posix.c:6596)
==35656==    by 0x4E5BEC3: xlator_notify (xlator.c:496)
==35656==    by 0x4F12CE8: default_notify (defaults.c:3090)
==35656==    by 0x129D019E: notify (trash.c:2307)
==35656==    by 0x4E5BEC3: xlator_notify (xlator.c:496)
==35656== 
==35656== 528 bytes in 1 blocks are definitely lost in loss record 545 of 704
==35656==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==35656==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==35656==    by 0x129B93F4: __inode_create (inode.c:614)
==35656==    by 0x129B9520: inode_new (inode.c:647)
==35656==    by 0x129BEFB1: trash_notify_mkdir_cbk (trash.c:450)
==35656==    by 0x1216EB15: posix_mkdir (posix.c:1693)
==35656==    by 0x129CFA85: notify (trash.c:2246)
==35656==    by 0x4E5BEC3: xlator_notify (xlator.c:496)
==35656==    by 0x4F12DCF: default_notify (defaults.c:3114)
==35656==    by 0x1218A501: notify (posix.c:6596)
==35656==    by 0x4E5BEC3: xlator_notify (xlator.c:496)
==35656==    by 0x4F12CE8: default_notify (defaults.c:3090)
==35656== 
==35656== 534 (160 direct, 374 indirect) bytes in 1 blocks are definitely lost in loss record 546 of 704
==35656==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==35656==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==35656==    by 0x1391DC4D: __allocate_domain (common.c:39)
==35656==    by 0x1391DECE: get_domain (common.c:84)
==35656==    by 0x1393A93A: pl_common_inodelk (inodelk.c:744)
==35656==    by 0x1393AEC3: pl_inodelk (inodelk.c:811)
==35656==    by 0x13B476C8: ro_inodelk (read-only-common.c:108)
==35656==    by 0x13D57029: ro_inodelk (read-only-common.c:108)
==35656==    by 0x4F0F9EF: default_inodelk (defaults.c:2362)
==35656==    by 0x4F0F9EF: default_inodelk (defaults.c:2362)
==35656==    by 0x4EB7473: syncop_inodelk (syncop.c:2997)
==35656==    by 0x143ABB00: mq_lock (marker-quota.c:495)
==35656== 
==35656== 541 bytes in 1 blocks are possibly lost in loss record 547 of 704
==35656==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==35656==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==35656==    by 0x4052E4: gf_strdup (mem-pool.h:187)
==35656==    by 0x40A78A: main (glusterfsd.c:2456)
==35656== 
==35656== 544 bytes in 4 blocks are possibly lost in loss record 548 of 704
==35656==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==35656==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==35656==    by 0x15069B1D: server_ctx_get (server-helpers.c:1178)
==35656==    by 0x15069969: server_cancel_grace_timer (server-helpers.c:1136)
==35656==    by 0x15095C21: server_setvolume (server-handshake.c:532)
==35656==    by 0x514731B: rpcsvc_handle_rpc_call (rpcsvc.c:701)
==35656==    by 0x514766E: rpcsvc_notify (rpcsvc.c:795)
==35656==    by 0x514CD1D: rpc_transport_notify (rpc-transport.c:541)
==35656==    by 0xFEA9D43: socket_event_poll_in (socket.c:2267)
==35656==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==35656==    by 0x4ECB1D7: event_dispatch_epoll_handler (event-epoll.c:571)
==35656==    by 0x4ECB5F4: event_dispatch_epoll_worker (event-epoll.c:674)
==35656== 
==35656== 544 bytes in 4 blocks are possibly lost in loss record 549 of 704
==35656==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==35656==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==35656==    by 0x4E8BE73: gf_fd_fdtable_alloc (fd.c:105)
==35656==    by 0x15069B32: server_ctx_get (server-helpers.c:1184)
==35656==    by 0x15069969: server_cancel_grace_timer (server-helpers.c:1136)
==35656==    by 0x15095C21: server_setvolume (server-handshake.c:532)
==35656==    by 0x514731B: rpcsvc_handle_rpc_call (rpcsvc.c:701)
==35656==    by 0x514766E: rpcsvc_notify (rpcsvc.c:795)
==35656==    by 0x514CD1D: rpc_transport_notify (rpc-transport.c:541)
==35656==    by 0xFEA9D43: socket_event_poll_in (socket.c:2267)
==35656==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==35656==    by 0x4ECB1D7: event_dispatch_epoll_handler (event-epoll.c:571)
==35656== 
==35656== 553 bytes in 4 blocks are possibly lost in loss record 550 of 704
==35656==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==35656==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==35656==    by 0x4EC65D4: gf_strdup (mem-pool.h:187)
==35656==    by 0x4EC6E2A: gf_client_get (client_t.c:212)
==35656==    by 0x15095B91: server_setvolume (server-handshake.c:524)
==35656==    by 0x514731B: rpcsvc_handle_rpc_call (rpcsvc.c:701)
==35656==    by 0x514766E: rpcsvc_notify (rpcsvc.c:795)
==35656==    by 0x514CD1D: rpc_transport_notify (rpc-transport.c:541)
==35656==    by 0xFEA9D43: socket_event_poll_in (socket.c:2267)
==35656==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==35656==    by 0x4ECB1D7: event_dispatch_epoll_handler (event-epoll.c:571)
==35656==    by 0x4ECB5F4: event_dispatch_epoll_worker (event-epoll.c:674)
==35656== 
==35656== 560 bytes in 4 blocks are definitely lost in loss record 552 of 704
==35656==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==35656==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==35656==    by 0x4E908B0: mem_get (mem-pool.c:513)
==35656==    by 0x4E906CE: mem_get0 (mem-pool.c:446)
==35656==    by 0x4E54919: dict_set_lk (dict.c:360)
==35656==    by 0x4E54B82: dict_set (dict.c:424)
==35656==    by 0x4E58180: dict_set_static_ptr (dict.c:2022)
==35656==    by 0x1509639B: server_setvolume (server-handshake.c:666)
==35656==    by 0x514731B: rpcsvc_handle_rpc_call (rpcsvc.c:701)
==35656==    by 0x514766E: rpcsvc_notify (rpcsvc.c:795)
==35656==    by 0x514CD1D: rpc_transport_notify (rpc-transport.c:541)
==35656==    by 0xFEA9D43: socket_event_poll_in (socket.c:2267)
==35656== 
==35656== 576 bytes in 1 blocks are possibly lost in loss record 554 of 704
==35656==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==35656==    by 0x4011C24: _dl_allocate_tls (in /usr/lib64/ld-2.17.so)
==35656==    by 0x60B3960: pthread_create@@GLIBC_2.2.5 (in /usr/lib64/libpthread-2.17.so)
==35656==    by 0x4E6BC49: gf_thread_create (common-utils.c:3554)
==35656==    by 0x4E6E474: gf_timer_registry_init (timer.c:236)
==35656==    by 0x4E6DB1A: gf_timer_call_after (timer.c:40)
==35656==    by 0x4E61A3D: __gf_log_inject_timer_event (logging.c:1792)
==35656==    by 0x4E61AA5: gf_log_inject_timer_event (logging.c:1814)
==35656==    by 0x40A0DA: daemonize (glusterfsd.c:2247)
==35656==    by 0x40A7C5: main (glusterfsd.c:2465)
==35656== 
==35656== 576 bytes in 1 blocks are possibly lost in loss record 555 of 704
==35656==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==35656==    by 0x4011C24: _dl_allocate_tls (in /usr/lib64/ld-2.17.so)
==35656==    by 0x60B3960: pthread_create@@GLIBC_2.2.5 (in /usr/lib64/libpthread-2.17.so)
==35656==    by 0x409E09: glusterfs_signals_setup (glusterfsd.c:2160)
==35656==    by 0x40A0E9: daemonize (glusterfsd.c:2249)
==35656==    by 0x40A7C5: main (glusterfsd.c:2465)
==35656== 
==35656== 608 bytes in 1 blocks are possibly lost in loss record 556 of 704
==35656==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==35656==    by 0x4011C24: _dl_allocate_tls (in /usr/lib64/ld-2.17.so)
==35656==    by 0x60B3960: pthread_create@@GLIBC_2.2.5 (in /usr/lib64/libpthread-2.17.so)
==35656==    by 0x4ECB70D: event_dispatch_epoll (event-epoll.c:726)
==35656==    by 0x4E8EEB9: event_dispatch (event.c:124)
==35656==    by 0x40A8B0: main (glusterfsd.c:2492)
==35656== 
==35656== 608 bytes in 1 blocks are possibly lost in loss record 557 of 704
==35656==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==35656==    by 0x4011C24: _dl_allocate_tls (in /usr/lib64/ld-2.17.so)
==35656==    by 0x60B3960: pthread_create@@GLIBC_2.2.5 (in /usr/lib64/libpthread-2.17.so)
==35656==    by 0x4ECB98E: event_reconfigure_threads_epoll (event-epoll.c:834)
==35656==    by 0x4E8EF5B: event_reconfigure_threads (event.c:140)
==35656==    by 0x150611A3: server_check_event_threads (server.c:702)
==35656==    by 0x15061F17: init (server.c:946)
==35656==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==35656==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==35656==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==35656==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==35656==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==35656== 
==35656== 608 bytes in 1 blocks are possibly lost in loss record 558 of 704
==35656==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==35656==    by 0x4011C24: _dl_allocate_tls (in /usr/lib64/ld-2.17.so)
==35656==    by 0x60B3960: pthread_create@@GLIBC_2.2.5 (in /usr/lib64/libpthread-2.17.so)
==35656==    by 0x4E6BC49: gf_thread_create (common-utils.c:3554)
==35656==    by 0x147D5CE1: init (index.c:2383)
==35656==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==35656==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==35656==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==35656==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==35656==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==35656==    by 0x40ECA5: mgmt_getspec_cbk (glusterfsd-mgmt.c:1648)
==35656==    by 0x51505D2: rpc_clnt_handle_reply (rpc-clnt.c:791)
==35656== 
==35656== 608 bytes in 1 blocks are possibly lost in loss record 559 of 704
==35656==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==35656==    by 0x4011C24: _dl_allocate_tls (in /usr/lib64/ld-2.17.so)
==35656==    by 0x60B3960: pthread_create@@GLIBC_2.2.5 (in /usr/lib64/libpthread-2.17.so)
==35656==    by 0x4E6BC49: gf_thread_create (common-utils.c:3554)
==35656==    by 0x134EF4AE: init (bit-rot-stub.c:162)
==35656==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==35656==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==35656==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==35656==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==35656==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==35656==    by 0x40ECA5: mgmt_getspec_cbk (glusterfsd-mgmt.c:1648)
==35656==    by 0x51505D2: rpc_clnt_handle_reply (rpc-clnt.c:791)
==35656== 
==35656== 608 bytes in 1 blocks are possibly lost in loss record 560 of 704
==35656==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==35656==    by 0x4011C24: _dl_allocate_tls (in /usr/lib64/ld-2.17.so)
==35656==    by 0x60B3960: pthread_create@@GLIBC_2.2.5 (in /usr/lib64/libpthread-2.17.so)
==35656==    by 0x4E6BC49: gf_thread_create (common-utils.c:3554)
==35656==    by 0x134EF1B4: br_stub_bad_object_container_init (bit-rot-stub.c:99)
==35656==    by 0x134EF4CF: init (bit-rot-stub.c:166)
==35656==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==35656==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==35656==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==35656==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==35656==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==35656==    by 0x40ECA5: mgmt_getspec_cbk (glusterfsd-mgmt.c:1648)
==35656== 
==35656== 608 bytes in 1 blocks are possibly lost in loss record 561 of 704
==35656==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==35656==    by 0x4011C24: _dl_allocate_tls (in /usr/lib64/ld-2.17.so)
==35656==    by 0x60B3960: pthread_create@@GLIBC_2.2.5 (in /usr/lib64/libpthread-2.17.so)
==35656==    by 0x132DD85C: changelog_init_rpc_threads (changelog-rpc.c:99)
==35656==    by 0x132DDB5E: changelog_init_rpc_listner (changelog-rpc.c:169)
==35656==    by 0x132D6D70: changelog_init_rpc (changelog.c:2768)
==35656==    by 0x132D71B1: init (changelog.c:2850)
==35656==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==35656==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==35656==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==35656==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==35656==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==35656== 
==35656== 608 bytes in 1 blocks are possibly lost in loss record 562 of 704
==35656==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==35656==    by 0x4011C24: _dl_allocate_tls (in /usr/lib64/ld-2.17.so)
==35656==    by 0x60B3960: pthread_create@@GLIBC_2.2.5 (in /usr/lib64/libpthread-2.17.so)
==35656==    by 0x4E6BC49: gf_thread_create (common-utils.c:3554)
==35656==    by 0x1219283B: posix_spawn_health_check_thread (posix-helpers.c:1927)
==35656==    by 0x1218C994: init (posix.c:7329)
==35656==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==35656==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==35656==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==35656==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==35656==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==35656==    by 0x40ECA5: mgmt_getspec_cbk (glusterfsd-mgmt.c:1648)
==35656== 
==35656== 608 bytes in 1 blocks are possibly lost in loss record 563 of 704
==35656==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==35656==    by 0x4011C24: _dl_allocate_tls (in /usr/lib64/ld-2.17.so)
==35656==    by 0x60B3960: pthread_create@@GLIBC_2.2.5 (in /usr/lib64/libpthread-2.17.so)
==35656==    by 0x4E6BC49: gf_thread_create (common-utils.c:3554)
==35656==    by 0x121914C9: posix_spawn_janitor_thread (posix-helpers.c:1469)
==35656==    by 0x1218C9EF: init (posix.c:7335)
==35656==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==35656==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==35656==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==35656==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==35656==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==35656==    by 0x40ECA5: mgmt_getspec_cbk (glusterfsd-mgmt.c:1648)
==35656== 
==35656== 608 bytes in 1 blocks are possibly lost in loss record 564 of 704
==35656==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==35656==    by 0x4011C24: _dl_allocate_tls (in /usr/lib64/ld-2.17.so)
==35656==    by 0x60B3960: pthread_create@@GLIBC_2.2.5 (in /usr/lib64/libpthread-2.17.so)
==35656==    by 0x4E6BC49: gf_thread_create (common-utils.c:3554)
==35656==    by 0x1218CA72: init (posix.c:7341)
==35656==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==35656==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==35656==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==35656==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==35656==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==35656==    by 0x40ECA5: mgmt_getspec_cbk (glusterfsd-mgmt.c:1648)
==35656==    by 0x51505D2: rpc_clnt_handle_reply (rpc-clnt.c:791)
==35656== 
==35656== 608 bytes in 1 blocks are possibly lost in loss record 565 of 704
==35656==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==35656==    by 0x4011C24: _dl_allocate_tls (in /usr/lib64/ld-2.17.so)
==35656==    by 0x60B3960: pthread_create@@GLIBC_2.2.5 (in /usr/lib64/libpthread-2.17.so)
==35656==    by 0x4E6BC49: gf_thread_create (common-utils.c:3554)
==35656==    by 0x4EA5ADE: syncenv_scale (syncop.c:739)
==35656==    by 0x4EA547F: synctask_create (syncop.c:534)
==35656==    by 0x4EA55AE: synctask_new1 (syncop.c:576)
==35656==    by 0x143AE0D7: mq_synctask1 (marker-quota.c:1078)
==35656==    by 0x143AE199: mq_synctask (marker-quota.c:1097)
==35656==    by 0x143AE6F6: _mq_create_xattrs_txn (marker-quota.c:1236)
==35656==    by 0x143AE82D: mq_create_xattrs_txn (marker-quota.c:1253)
==35656==    by 0x143B0DCB: mq_inspect_directory_xattr (marker-quota.c:2027)
==35656== 
==35656== 656 bytes in 4 blocks are definitely lost in loss record 568 of 704
==35656==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==35656==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==35656==    by 0x4E908B0: mem_get (mem-pool.c:513)
==35656==    by 0x4E906CE: mem_get0 (mem-pool.c:446)
==35656==    by 0x4E53E07: get_new_data (dict.c:40)
==35656==    by 0x4E55C27: data_from_ptr_common (dict.c:841)
==35656==    by 0x4E58155: dict_set_static_ptr (dict.c:2016)
==35656==    by 0x1509639B: server_setvolume (server-handshake.c:666)
==35656==    by 0x514731B: rpcsvc_handle_rpc_call (rpcsvc.c:701)
==35656==    by 0x514766E: rpcsvc_notify (rpcsvc.c:795)
==35656==    by 0x514CD1D: rpc_transport_notify (rpc-transport.c:541)
==35656==    by 0xFEA9D43: socket_event_poll_in (socket.c:2267)
==35656== 
==35656== 660 bytes in 1 blocks are definitely lost in loss record 569 of 704
==35656==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==35656==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==35656==    by 0x4E908B0: mem_get (mem-pool.c:513)
==35656==    by 0x515200B: rpc_clnt_submit (rpc-clnt.c:1586)
==35656==    by 0x40E934: mgmt_submit_request (glusterfsd-mgmt.c:1541)
==35656==    by 0x41079F: glusterfs_mgmt_pmap_signout (glusterfsd-mgmt.c:2399)
==35656==    by 0x4080C9: cleanup_and_exit (glusterfsd.c:1333)
==35656==    by 0x409C1A: glusterfs_sigwaiter (glusterfsd.c:2102)
==35656==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==35656==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==35656== 
==35656== 712 bytes in 1 blocks are possibly lost in loss record 574 of 704
==35656==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==35656==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==35656==    by 0x1218BB7F: init (posix.c:7083)
==35656==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==35656==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==35656==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==35656==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==35656==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==35656==    by 0x40ECA5: mgmt_getspec_cbk (glusterfsd-mgmt.c:1648)
==35656==    by 0x51505D2: rpc_clnt_handle_reply (rpc-clnt.c:791)
==35656==    by 0x5150B34: rpc_clnt_notify (rpc-clnt.c:971)
==35656==    by 0x514CD1D: rpc_transport_notify (rpc-transport.c:541)
==35656== 
==35656== 800 bytes in 4 blocks are possibly lost in loss record 578 of 704
==35656==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==35656==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==35656==    by 0x4EC6E8E: gf_client_get (client_t.c:221)
==35656==    by 0x15095B91: server_setvolume (server-handshake.c:524)
==35656==    by 0x514731B: rpcsvc_handle_rpc_call (rpcsvc.c:701)
==35656==    by 0x514766E: rpcsvc_notify (rpcsvc.c:795)
==35656==    by 0x514CD1D: rpc_transport_notify (rpc-transport.c:541)
==35656==    by 0xFEA9D43: socket_event_poll_in (socket.c:2267)
==35656==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==35656==    by 0x4ECB1D7: event_dispatch_epoll_handler (event-epoll.c:571)
==35656==    by 0x4ECB5F4: event_dispatch_epoll_worker (event-epoll.c:674)
==35656==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==35656== 
==35656== 832 bytes in 8 blocks are possibly lost in loss record 579 of 704
==35656==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==35656==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==35656==    by 0x14C26F53: ios_init_top_stats (io-stats.c:3331)
==35656==    by 0x14C280A3: init (io-stats.c:3658)
==35656==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==35656==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==35656==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==35656==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==35656==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==35656==    by 0x40ECA5: mgmt_getspec_cbk (glusterfsd-mgmt.c:1648)
==35656==    by 0x51505D2: rpc_clnt_handle_reply (rpc-clnt.c:791)
==35656==    by 0x5150B34: rpc_clnt_notify (rpc-clnt.c:971)
==35656== 
==35656== 856 bytes in 1 blocks are possibly lost in loss record 582 of 704
==35656==    at 0x4C27BE3: malloc (vg_replace_malloc.c:299)
==35656==    by 0x130402E6: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==35656==    by 0x1301B6A9: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==35656==    by 0x13023A25: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==35656==    by 0x13023A4C: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==35656==    by 0x1309DE50: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==35656==    by 0x12E01B48: gf_open_sqlite3_conn (gfdb_sqlite3.c:192)
==35656==    by 0x12E02CAF: gf_sqlite3_init (gfdb_sqlite3.c:440)
==35656==    by 0x12DF97B5: init_db (gfdb_data_store.c:270)
==35656==    by 0x12BEA41F: init (changetimerecorder.c:2118)
==35656==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==35656==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==35656== 
==35656== 872 bytes in 1 blocks are possibly lost in loss record 584 of 704
==35656==    at 0x4C27BE3: malloc (vg_replace_malloc.c:299)
==35656==    by 0x130402E6: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==35656==    by 0x1301B6A9: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==35656==    by 0x13023A25: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==35656==    by 0x13023A4C: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==35656==    by 0x13059775: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==35656==    by 0x1309E1B6: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==35656==    by 0x12E01B48: gf_open_sqlite3_conn (gfdb_sqlite3.c:192)
==35656==    by 0x12E02CAF: gf_sqlite3_init (gfdb_sqlite3.c:440)
==35656==    by 0x12DF97B5: init_db (gfdb_data_store.c:270)
==35656==    by 0x12BEA41F: init (changetimerecorder.c:2118)
==35656==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==35656== 
==35656== 976 bytes in 4 blocks are possibly lost in loss record 589 of 704
==35656==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==35656==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==35656==    by 0x4E908B0: mem_get (mem-pool.c:513)
==35656==    by 0x4E906CE: mem_get0 (mem-pool.c:446)
==35656==    by 0x4E53E86: get_new_dict_full (dict.c:52)
==35656==    by 0x4E53F98: dict_new (dict.c:103)
==35656==    by 0x15095763: server_setvolume (server-handshake.c:434)
==35656==    by 0x514731B: rpcsvc_handle_rpc_call (rpcsvc.c:701)
==35656==    by 0x514766E: rpcsvc_notify (rpcsvc.c:795)
==35656==    by 0x514CD1D: rpc_transport_notify (rpc-transport.c:541)
==35656==    by 0xFEA9D43: socket_event_poll_in (socket.c:2267)
==35656==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==35656== 
==35656== 992 bytes in 4 blocks are possibly lost in loss record 591 of 704
==35656==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==35656==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==35656==    by 0x4EC6D8D: gf_client_get (client_t.c:201)
==35656==    by 0x15095B91: server_setvolume (server-handshake.c:524)
==35656==    by 0x514731B: rpcsvc_handle_rpc_call (rpcsvc.c:701)
==35656==    by 0x514766E: rpcsvc_notify (rpcsvc.c:795)
==35656==    by 0x514CD1D: rpc_transport_notify (rpc-transport.c:541)
==35656==    by 0xFEA9D43: socket_event_poll_in (socket.c:2267)
==35656==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==35656==    by 0x4ECB1D7: event_dispatch_epoll_handler (event-epoll.c:571)
==35656==    by 0x4ECB5F4: event_dispatch_epoll_worker (event-epoll.c:674)
==35656==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==35656== 
==35656== 1,152 bytes in 2 blocks are possibly lost in loss record 596 of 704
==35656==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==35656==    by 0x4011C24: _dl_allocate_tls (in /usr/lib64/ld-2.17.so)
==35656==    by 0x60B3960: pthread_create@@GLIBC_2.2.5 (in /usr/lib64/libpthread-2.17.so)
==35656==    by 0x4E6BC49: gf_thread_create (common-utils.c:3554)
==35656==    by 0x4EA5DB5: syncenv_new (syncop.c:832)
==35656==    by 0x40A801: main (glusterfsd.c:2475)
==35656== 
==35656== 1,184 bytes in 4 blocks are possibly lost in loss record 599 of 704
==35656==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==35656==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==35656==    by 0x4EE1DF0: rbuf_init (rot-buffs.c:199)
==35656==    by 0x132D6D33: changelog_init_rpc (changelog.c:2764)
==35656==    by 0x132D71B1: init (changelog.c:2850)
==35656==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==35656==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==35656==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==35656==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==35656==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==35656==    by 0x40ECA5: mgmt_getspec_cbk (glusterfsd-mgmt.c:1648)
==35656==    by 0x51505D2: rpc_clnt_handle_reply (rpc-clnt.c:791)
==35656== 
==35656== 1,224 bytes in 1 blocks are possibly lost in loss record 602 of 704
==35656==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==35656==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==35656==    by 0x132D6F50: init (changelog.c:2808)
==35656==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==35656==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==35656==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==35656==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==35656==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==35656==    by 0x40ECA5: mgmt_getspec_cbk (glusterfsd-mgmt.c:1648)
==35656==    by 0x51505D2: rpc_clnt_handle_reply (rpc-clnt.c:791)
==35656==    by 0x5150B34: rpc_clnt_notify (rpc-clnt.c:971)
==35656==    by 0x514CD1D: rpc_transport_notify (rpc-transport.c:541)
==35656== 
==35656== 1,344 (528 direct, 816 indirect) bytes in 1 blocks are definitely lost in loss record 605 of 704
==35656==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==35656==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==35656==    by 0x4E6FF22: __inode_create (inode.c:614)
==35656==    by 0x4E71E5F: __inode_table_init_root (inode.c:1560)
==35656==    by 0x4E721D5: inode_table_new (inode.c:1641)
==35656==    by 0x15096890: server_setvolume (server-handshake.c:740)
==35656==    by 0x514731B: rpcsvc_handle_rpc_call (rpcsvc.c:701)
==35656==    by 0x514766E: rpcsvc_notify (rpcsvc.c:795)
==35656==    by 0x514CD1D: rpc_transport_notify (rpc-transport.c:541)
==35656==    by 0xFEA9D43: socket_event_poll_in (socket.c:2267)
==35656==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==35656==    by 0x4ECB1D7: event_dispatch_epoll_handler (event-epoll.c:571)
==35656== 
==35656== 1,496 bytes in 17 blocks are possibly lost in loss record 608 of 704
==35656==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==35656==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==35656==    by 0x4EA138B: glusterfs_xlator_link (graph.c:80)
==35656==    by 0x4EE9B54: volume_sub (graph.y:300)
==35656==    by 0x4EE8D86: graphyyparse (graph.y:73)
==35656==    by 0x4EEA75C: glusterfs_graph_construct (graph.y:590)
==35656==    by 0x40A211: glusterfs_process_volfp (glusterfsd.c:2305)
==35656==    by 0x40ECA5: mgmt_getspec_cbk (glusterfsd-mgmt.c:1648)
==35656==    by 0x51505D2: rpc_clnt_handle_reply (rpc-clnt.c:791)
==35656==    by 0x5150B34: rpc_clnt_notify (rpc-clnt.c:971)
==35656==    by 0x514CD1D: rpc_transport_notify (rpc-transport.c:541)
==35656==    by 0xFEA9D43: socket_event_poll_in (socket.c:2267)
==35656== 
==35656== 1,496 bytes in 17 blocks are possibly lost in loss record 609 of 704
==35656==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==35656==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==35656==    by 0x4EA13BB: glusterfs_xlator_link (graph.c:85)
==35656==    by 0x4EE9B54: volume_sub (graph.y:300)
==35656==    by 0x4EE8D86: graphyyparse (graph.y:73)
==35656==    by 0x4EEA75C: glusterfs_graph_construct (graph.y:590)
==35656==    by 0x40A211: glusterfs_process_volfp (glusterfsd.c:2305)
==35656==    by 0x40ECA5: mgmt_getspec_cbk (glusterfsd-mgmt.c:1648)
==35656==    by 0x51505D2: rpc_clnt_handle_reply (rpc-clnt.c:791)
==35656==    by 0x5150B34: rpc_clnt_notify (rpc-clnt.c:971)
==35656==    by 0x514CD1D: rpc_transport_notify (rpc-transport.c:541)
==35656==    by 0xFEA9D43: socket_event_poll_in (socket.c:2267)
==35656== 
==35656== 1,583 bytes in 18 blocks are possibly lost in loss record 612 of 704
==35656==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==35656==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==35656==    by 0x4EE88A9: gf_strdup (mem-pool.h:187)
==35656==    by 0x4EE946D: new_volume (graph.y:160)
==35656==    by 0x4EE8CE5: graphyyparse (graph.y:52)
==35656==    by 0x4EEA75C: glusterfs_graph_construct (graph.y:590)
==35656==    by 0x40A211: glusterfs_process_volfp (glusterfsd.c:2305)
==35656==    by 0x40ECA5: mgmt_getspec_cbk (glusterfsd-mgmt.c:1648)
==35656==    by 0x51505D2: rpc_clnt_handle_reply (rpc-clnt.c:791)
==35656==    by 0x5150B34: rpc_clnt_notify (rpc-clnt.c:971)
==35656==    by 0x514CD1D: rpc_transport_notify (rpc-transport.c:541)
==35656==    by 0xFEA9D43: socket_event_poll_in (socket.c:2267)
==35656== 
==35656== 1,616 bytes in 18 blocks are possibly lost in loss record 613 of 704
==35656==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==35656==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==35656==    by 0x4E5A1B5: gf_strdup (mem-pool.h:187)
==35656==    by 0x4E5ABB2: xlator_set_type_virtual (xlator.c:110)
==35656==    by 0x4E5B626: xlator_set_type (xlator.c:293)
==35656==    by 0x4EE9691: volume_type (graph.y:207)
==35656==    by 0x4EE8D17: graphyyparse (graph.y:63)
==35656==    by 0x4EEA75C: glusterfs_graph_construct (graph.y:590)
==35656==    by 0x40A211: glusterfs_process_volfp (glusterfsd.c:2305)
==35656==    by 0x40ECA5: mgmt_getspec_cbk (glusterfsd-mgmt.c:1648)
==35656==    by 0x51505D2: rpc_clnt_handle_reply (rpc-clnt.c:791)
==35656==    by 0x5150B34: rpc_clnt_notify (rpc-clnt.c:971)
==35656== 
==35656== 1,712 bytes in 1 blocks are possibly lost in loss record 618 of 704
==35656==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==35656==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==35656==    by 0xFEADF05: init_openssl_mt (socket.c:3791)
==35656==    by 0x400F1E2: _dl_init (in /usr/lib64/ld-2.17.so)
==35656==    by 0x40138F5: dl_open_worker (in /usr/lib64/ld-2.17.so)
==35656==    by 0x400EFF3: _dl_catch_error (in /usr/lib64/ld-2.17.so)
==35656==    by 0x4012FEA: _dl_open (in /usr/lib64/ld-2.17.so)
==35656==    by 0x5EA7FBA: dlopen_doit (in /usr/lib64/libdl-2.17.so)
==35656==    by 0x400EFF3: _dl_catch_error (in /usr/lib64/ld-2.17.so)
==35656==    by 0x5EA85BC: _dlerror_run (in /usr/lib64/libdl-2.17.so)
==35656==    by 0x5EA8050: dlopen@@GLIBC_2.2.5 (in /usr/lib64/libdl-2.17.so)
==35656==    by 0x514C026: rpc_transport_load (rpc-transport.c:285)
==35656== 
==35656== 1,728 bytes in 18 blocks are possibly lost in loss record 619 of 704
==35656==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==35656==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==35656==    by 0x4E5B515: xlator_dynload (xlator.c:263)
==35656==    by 0x4E5B63B: xlator_set_type (xlator.c:295)
==35656==    by 0x4EE9691: volume_type (graph.y:207)
==35656==    by 0x4EE8D17: graphyyparse (graph.y:63)
==35656==    by 0x4EEA75C: glusterfs_graph_construct (graph.y:590)
==35656==    by 0x40A211: glusterfs_process_volfp (glusterfsd.c:2305)
==35656==    by 0x40ECA5: mgmt_getspec_cbk (glusterfsd-mgmt.c:1648)
==35656==    by 0x51505D2: rpc_clnt_handle_reply (rpc-clnt.c:791)
==35656==    by 0x5150B34: rpc_clnt_notify (rpc-clnt.c:971)
==35656==    by 0x514CD1D: rpc_transport_notify (rpc-transport.c:541)
==35656== 
==35656== 1,824 bytes in 3 blocks are possibly lost in loss record 620 of 704
==35656==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==35656==    by 0x4011C24: _dl_allocate_tls (in /usr/lib64/ld-2.17.so)
==35656==    by 0x60B3960: pthread_create@@GLIBC_2.2.5 (in /usr/lib64/libpthread-2.17.so)
==35656==    by 0x132DD8DE: changelog_init_rpc_threads (changelog-rpc.c:112)
==35656==    by 0x132DDB5E: changelog_init_rpc_listner (changelog-rpc.c:169)
==35656==    by 0x132D6D70: changelog_init_rpc (changelog.c:2768)
==35656==    by 0x132D71B1: init (changelog.c:2850)
==35656==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==35656==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==35656==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==35656==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==35656==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==35656== 
==35656== 1,848 bytes in 1 blocks are possibly lost in loss record 622 of 704
==35656==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==35656==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==35656==    by 0x4E93338: iobuf_pool_new (iobuf.c:396)
==35656==    by 0x4084EF: glusterfs_ctx_defaults_init (glusterfsd.c:1473)
==35656==    by 0x40A5BC: main (glusterfsd.c:2413)
==35656== 
==35656== 1,924 bytes in 1 blocks are possibly lost in loss record 623 of 704
==35656==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==35656==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==35656==    by 0x4E908B0: mem_get (mem-pool.c:513)
==35656==    by 0x4E906CE: mem_get0 (mem-pool.c:446)
==35656==    by 0x4E9921D: create_frame (stack.c:25)
==35656==    by 0x41068B: glusterfs_mgmt_pmap_signout (glusterfsd-mgmt.c:2380)
==35656==    by 0x4080C9: cleanup_and_exit (glusterfsd.c:1333)
==35656==    by 0x409C1A: glusterfs_sigwaiter (glusterfsd.c:2102)
==35656==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==35656==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==35656== 
==35656== 2,120 bytes in 1 blocks are possibly lost in loss record 625 of 704
==35656==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==35656==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==35656==    by 0x4EC687D: gf_client_clienttable_expand (client_t.c:61)
==35656==    by 0x4EC69A8: gf_clienttable_alloc (client_t.c:104)
==35656==    by 0x408998: glusterfs_ctx_defaults_init (glusterfsd.c:1536)
==35656==    by 0x40A5BC: main (glusterfsd.c:2413)
==35656== 
==35656== 2,399 bytes in 4 blocks are definitely lost in loss record 630 of 704
==35656==    at 0x4C27BE3: malloc (vg_replace_malloc.c:299)
==35656==    by 0x4E8FB45: __gf_malloc (mem-pool.c:142)
==35656==    by 0x150942FC: memdup (common-utils.h:614)
==35656==    by 0x15095922: server_setvolume (server-handshake.c:472)
==35656==    by 0x514731B: rpcsvc_handle_rpc_call (rpcsvc.c:701)
==35656==    by 0x514766E: rpcsvc_notify (rpcsvc.c:795)
==35656==    by 0x514CD1D: rpc_transport_notify (rpc-transport.c:541)
==35656==    by 0xFEA9D43: socket_event_poll_in (socket.c:2267)
==35656==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==35656==    by 0x4ECB1D7: event_dispatch_epoll_handler (event-epoll.c:571)
==35656==    by 0x4ECB5F4: event_dispatch_epoll_worker (event-epoll.c:674)
==35656==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==35656== 
==35656== 2,640 bytes in 5 blocks are possibly lost in loss record 632 of 704
==35656==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==35656==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==35656==    by 0xFEAE076: socket_init (socket.c:3833)
==35656==    by 0xFEAB118: socket_server_event_handler (socket.c:2723)
==35656==    by 0x4ECB1D7: event_dispatch_epoll_handler (event-epoll.c:571)
==35656==    by 0x4ECB5F4: event_dispatch_epoll_worker (event-epoll.c:674)
==35656==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==35656==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==35656== 
==35656== 2,872 bytes in 1 blocks are possibly lost in loss record 634 of 704
==35656==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==35656==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==35656==    by 0x514BC0C: rpc_transport_load (rpc-transport.c:187)
==35656==    by 0x5149213: rpcsvc_create_listener (rpcsvc.c:1664)
==35656==    by 0x514955C: rpcsvc_create_listeners (rpcsvc.c:1757)
==35656==    by 0x40F98A: glusterfs_listener_init (glusterfsd-mgmt.c:2037)
==35656==    by 0x40A3EC: glusterfs_volumes_init (glusterfsd.c:2359)
==35656==    by 0x40A892: main (glusterfsd.c:2488)
==35656== 
==35656== 2,872 bytes in 1 blocks are possibly lost in loss record 635 of 704
==35656==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==35656==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==35656==    by 0x514BC0C: rpc_transport_load (rpc-transport.c:187)
==35656==    by 0x5150E30: rpc_clnt_connection_init (rpc-clnt.c:1067)
==35656==    by 0x5151169: rpc_clnt_new (rpc-clnt.c:1159)
==35656==    by 0x40FE46: glusterfs_mgmt_init (glusterfsd-mgmt.c:2157)
==35656==    by 0x40A412: glusterfs_volumes_init (glusterfsd.c:2365)
==35656==    by 0x40A892: main (glusterfsd.c:2488)
==35656== 
==35656== 2,872 bytes in 1 blocks are possibly lost in loss record 636 of 704
==35656==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==35656==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==35656==    by 0x514BC0C: rpc_transport_load (rpc-transport.c:187)
==35656==    by 0x5149213: rpcsvc_create_listener (rpcsvc.c:1664)
==35656==    by 0x514955C: rpcsvc_create_listeners (rpcsvc.c:1757)
==35656==    by 0x1506250B: init (server.c:1056)
==35656==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==35656==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==35656==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==35656==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==35656==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==35656==    by 0x40ECA5: mgmt_getspec_cbk (glusterfsd-mgmt.c:1648)
==35656== 
==35656== 2,872 bytes in 1 blocks are possibly lost in loss record 637 of 704
==35656==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==35656==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==35656==    by 0x514BC0C: rpc_transport_load (rpc-transport.c:187)
==35656==    by 0x5150E30: rpc_clnt_connection_init (rpc-clnt.c:1067)
==35656==    by 0x5151169: rpc_clnt_new (rpc-clnt.c:1159)
==35656==    by 0x14A014DE: quota_enforcer_init (quota-enforcer-client.c:451)
==35656==    by 0x149FF51D: init (quota.c:5127)
==35656==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==35656==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==35656==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==35656==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==35656==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==35656== 
==35656== 2,872 bytes in 1 blocks are possibly lost in loss record 638 of 704
==35656==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==35656==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==35656==    by 0x514BC0C: rpc_transport_load (rpc-transport.c:187)
==35656==    by 0x5149213: rpcsvc_create_listener (rpcsvc.c:1664)
==35656==    by 0x514955C: rpcsvc_create_listeners (rpcsvc.c:1757)
==35656==    by 0x132DF1E6: changelog_rpc_server_init (changelog-rpc-common.c:318)
==35656==    by 0x132DDC27: changelog_init_rpc_listner (changelog-rpc.c:175)
==35656==    by 0x132D6D70: changelog_init_rpc (changelog.c:2768)
==35656==    by 0x132D71B1: init (changelog.c:2850)
==35656==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==35656==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==35656==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==35656== 
==35656== 2,880 bytes in 8 blocks are possibly lost in loss record 639 of 704
==35656==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==35656==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==35656==    by 0x4E929B4: __iobuf_arena_alloc (iobuf.c:174)
==35656==    by 0x4E92E47: __iobuf_pool_add_arena (iobuf.c:272)
==35656==    by 0x4E92F7E: iobuf_pool_add_arena (iobuf.c:297)
==35656==    by 0x4E93595: iobuf_pool_new (iobuf.c:425)
==35656==    by 0x4084EF: glusterfs_ctx_defaults_init (glusterfsd.c:1473)
==35656==    by 0x40A5BC: main (glusterfsd.c:2413)
==35656== 
==35656== 3,606 (1,056 direct, 2,550 indirect) bytes in 2 blocks are definitely lost in loss record 644 of 704
==35656==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==35656==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==35656==    by 0x4E6FF22: __inode_create (inode.c:614)
==35656==    by 0x4E7004E: inode_new (inode.c:647)
==35656==    by 0x1506A05F: server_inode_new (server-helpers.c:1314)
==35656==    by 0x15063F03: resolve_gfid (server-resolve.c:208)
==35656==    by 0x1506484F: server_resolve_inode (server-resolve.c:421)
==35656==    by 0x15064CD4: server_resolve (server-resolve.c:562)
==35656==    by 0x15064E6B: server_resolve_all (server-resolve.c:614)
==35656==    by 0x15064F80: resolve_and_resume (server-resolve.c:645)
==35656==    by 0x15093491: server3_3_lookup (server-rpc-fops.c:6513)
==35656==    by 0x514731B: rpcsvc_handle_rpc_call (rpcsvc.c:701)
==35656== 
==35656== 3,859 bytes in 1 blocks are possibly lost in loss record 646 of 704
==35656==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==35656==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==35656==    by 0x40ECFE: mgmt_getspec_cbk (glusterfsd-mgmt.c:1657)
==35656==    by 0x51505D2: rpc_clnt_handle_reply (rpc-clnt.c:791)
==35656==    by 0x5150B34: rpc_clnt_notify (rpc-clnt.c:971)
==35656==    by 0x514CD1D: rpc_transport_notify (rpc-transport.c:541)
==35656==    by 0xFEA9D43: socket_event_poll_in (socket.c:2267)
==35656==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==35656==    by 0x4ECB1D7: event_dispatch_epoll_handler (event-epoll.c:571)
==35656==    by 0x4ECB5F4: event_dispatch_epoll_worker (event-epoll.c:674)
==35656==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==35656==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==35656== 
==35656== 4,104 bytes in 1 blocks are possibly lost in loss record 647 of 704
==35656==    at 0x4C27BE3: malloc (vg_replace_malloc.c:299)
==35656==    by 0x130402E6: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==35656==    by 0x1301B6A9: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==35656==    by 0x13023A25: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==35656==    by 0x130264EA: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==35656==    by 0x13026A77: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==35656==    by 0x13059BEA: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==35656==    by 0x1309E1B6: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==35656==    by 0x12E01B48: gf_open_sqlite3_conn (gfdb_sqlite3.c:192)
==35656==    by 0x12E02CAF: gf_sqlite3_init (gfdb_sqlite3.c:440)
==35656==    by 0x12DF97B5: init_db (gfdb_data_store.c:270)
==35656==    by 0x12BEA41F: init (changetimerecorder.c:2118)
==35656== 
==35656== 4,140 (1,056 direct, 3,084 indirect) bytes in 2 blocks are definitely lost in loss record 648 of 704
==35656==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==35656==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==35656==    by 0x4E6FF22: __inode_create (inode.c:614)
==35656==    by 0x4E7004E: inode_new (inode.c:647)
==35656==    by 0x1506A05F: server_inode_new (server-helpers.c:1314)
==35656==    by 0x150877CF: server_lookup_resume (server-rpc-fops.c:3108)
==35656==    by 0x15064DE8: server_resolve_done (server-resolve.c:590)
==35656==    by 0x15064EE9: server_resolve_all (server-resolve.c:625)
==35656==    by 0x15064D8F: server_resolve (server-resolve.c:574)
==35656==    by 0x15064EC0: server_resolve_all (server-resolve.c:621)
==35656==    by 0x150646EA: server_resolve_entry (server-resolve.c:368)
==35656==    by 0x15064CAF: server_resolve (server-resolve.c:558)
==35656== 
==35656== 4,168 bytes in 1 blocks are possibly lost in loss record 649 of 704
==35656==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==35656==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==35656==    by 0x129BE672: trash_notify_getxattr_cbk (trash.c:309)
==35656==    by 0x12181475: posix_getxattr (posix.c:4768)
==35656==    by 0x129BEBCE: trash_notify_lookup_cbk (trash.c:359)
==35656==    by 0x121659B6: posix_lookup (posix.c:270)
==35656==    by 0x129CF3F7: notify (trash.c:2187)
==35656==    by 0x4E5BEC3: xlator_notify (xlator.c:496)
==35656==    by 0x4F12DCF: default_notify (defaults.c:3114)
==35656==    by 0x1218A501: notify (posix.c:6596)
==35656==    by 0x4E5BEC3: xlator_notify (xlator.c:496)
==35656==    by 0x4F12CE8: default_notify (defaults.c:3090)
==35656== 
==35656== 4,216 bytes in 1 blocks are possibly lost in loss record 650 of 704
==35656==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==35656==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==35656==    by 0x12E016FA: gf_sql_connection_init (gfdb_sqlite3.c:26)
==35656==    by 0x12E02BAA: gf_sqlite3_init (gfdb_sqlite3.c:424)
==35656==    by 0x12DF97B5: init_db (gfdb_data_store.c:270)
==35656==    by 0x12BEA41F: init (changetimerecorder.c:2118)
==35656==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==35656==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==35656==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==35656==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==35656==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==35656==    by 0x40ECA5: mgmt_getspec_cbk (glusterfsd-mgmt.c:1648)
==35656== 
==35656== 4,347 bytes in 52 blocks are definitely lost in loss record 651 of 704
==35656==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==35656==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==35656==    by 0x4EE88A9: gf_strdup (mem-pool.h:187)
==35656==    by 0x4EE9822: volume_option (graph.y:240)
==35656==    by 0x4EE8D57: graphyyparse (graph.y:69)
==35656==    by 0x4EEA75C: glusterfs_graph_construct (graph.y:590)
==35656==    by 0x40A211: glusterfs_process_volfp (glusterfsd.c:2305)
==35656==    by 0x40ECA5: mgmt_getspec_cbk (glusterfsd-mgmt.c:1648)
==35656==    by 0x51505D2: rpc_clnt_handle_reply (rpc-clnt.c:791)
==35656==    by 0x5150B34: rpc_clnt_notify (rpc-clnt.c:971)
==35656==    by 0x514CD1D: rpc_transport_notify (rpc-transport.c:541)
==35656==    by 0xFEA9D43: socket_event_poll_in (socket.c:2267)
==35656== 
==35656== 4,392 bytes in 18 blocks are possibly lost in loss record 652 of 704
==35656==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==35656==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==35656==    by 0x4E908B0: mem_get (mem-pool.c:513)
==35656==    by 0x4E906CE: mem_get0 (mem-pool.c:446)
==35656==    by 0x4E53E86: get_new_dict_full (dict.c:52)
==35656==    by 0x4E53F7C: get_new_dict (dict.c:95)
==35656==    by 0x4EE94B4: new_volume (graph.y:167)
==35656==    by 0x4EE8CE5: graphyyparse (graph.y:52)
==35656==    by 0x4EEA75C: glusterfs_graph_construct (graph.y:590)
==35656==    by 0x40A211: glusterfs_process_volfp (glusterfsd.c:2305)
==35656==    by 0x40ECA5: mgmt_getspec_cbk (glusterfsd-mgmt.c:1648)
==35656==    by 0x51505D2: rpc_clnt_handle_reply (rpc-clnt.c:791)
==35656== 
==35656== 4,652 bytes in 54 blocks are definitely lost in loss record 653 of 704
==35656==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==35656==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==35656==    by 0x4E5499E: dict_set_lk (dict.c:378)
==35656==    by 0x4E54C7F: dict_add (dict.c:446)
==35656==    by 0x4E5967D: dict_unserialize (dict.c:2740)
==35656==    by 0x1509595A: server_setvolume (server-handshake.c:479)
==35656==    by 0x514731B: rpcsvc_handle_rpc_call (rpcsvc.c:701)
==35656==    by 0x514766E: rpcsvc_notify (rpcsvc.c:795)
==35656==    by 0x514CD1D: rpc_transport_notify (rpc-transport.c:541)
==35656==    by 0xFEA9D43: socket_event_poll_in (socket.c:2267)
==35656==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==35656==    by 0x4ECB1D7: event_dispatch_epoll_handler (event-epoll.c:571)
==35656== 
==35656== 4,787 bytes in 54 blocks are definitely lost in loss record 654 of 704
==35656==    at 0x4C27BE3: malloc (vg_replace_malloc.c:299)
==35656==    by 0x4E8FB45: __gf_malloc (mem-pool.c:142)
==35656==    by 0x4E5370F: memdup (common-utils.h:614)
==35656==    by 0x4E59646: dict_unserialize (dict.c:2736)
==35656==    by 0x1509595A: server_setvolume (server-handshake.c:479)
==35656==    by 0x514731B: rpcsvc_handle_rpc_call (rpcsvc.c:701)
==35656==    by 0x514766E: rpcsvc_notify (rpcsvc.c:795)
==35656==    by 0x514CD1D: rpc_transport_notify (rpc-transport.c:541)
==35656==    by 0xFEA9D43: socket_event_poll_in (socket.c:2267)
==35656==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==35656==    by 0x4ECB1D7: event_dispatch_epoll_handler (event-epoll.c:571)
==35656==    by 0x4ECB5F4: event_dispatch_epoll_worker (event-epoll.c:674)
==35656== 
==35656== 4,849 bytes in 55 blocks are definitely lost in loss record 655 of 704
==35656==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==35656==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==35656==    by 0x4E5499E: dict_set_lk (dict.c:378)
==35656==    by 0x4E54B82: dict_set (dict.c:424)
==35656==    by 0x4E585B1: dict_set_dynstr (dict.c:2205)
==35656==    by 0x4EE9847: volume_option (graph.y:241)
==35656==    by 0x4EE8D57: graphyyparse (graph.y:69)
==35656==    by 0x4EEA75C: glusterfs_graph_construct (graph.y:590)
==35656==    by 0x40A211: glusterfs_process_volfp (glusterfsd.c:2305)
==35656==    by 0x40ECA5: mgmt_getspec_cbk (glusterfsd-mgmt.c:1648)
==35656==    by 0x51505D2: rpc_clnt_handle_reply (rpc-clnt.c:791)
==35656==    by 0x5150B34: rpc_clnt_notify (rpc-clnt.c:971)
==35656== 
==35656== 5,600 bytes in 40 blocks are definitely lost in loss record 658 of 704
==35656==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==35656==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==35656==    by 0x4E908B0: mem_get (mem-pool.c:513)
==35656==    by 0x4E906CE: mem_get0 (mem-pool.c:446)
==35656==    by 0x4E54919: dict_set_lk (dict.c:360)
==35656==    by 0x4E54B82: dict_set (dict.c:424)
==35656==    by 0x4E585B1: dict_set_dynstr (dict.c:2205)
==35656==    by 0x4EE9847: volume_option (graph.y:241)
==35656==    by 0x4EE8D57: graphyyparse (graph.y:69)
==35656==    by 0x4EEA75C: glusterfs_graph_construct (graph.y:590)
==35656==    by 0x40A211: glusterfs_process_volfp (glusterfsd.c:2305)
==35656==    by 0x40ECA5: mgmt_getspec_cbk (glusterfsd-mgmt.c:1648)
==35656== 
==35656== 6,424 bytes in 1 blocks are possibly lost in loss record 659 of 704
==35656==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==35656==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==35656==    by 0x14C27FEB: init (io-stats.c:3643)
==35656==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==35656==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==35656==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==35656==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==35656==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==35656==    by 0x40ECA5: mgmt_getspec_cbk (glusterfsd-mgmt.c:1648)
==35656==    by 0x51505D2: rpc_clnt_handle_reply (rpc-clnt.c:791)
==35656==    by 0x5150B34: rpc_clnt_notify (rpc-clnt.c:971)
==35656==    by 0x514CD1D: rpc_transport_notify (rpc-transport.c:541)
==35656== 
==35656== 7,000 bytes in 50 blocks are definitely lost in loss record 661 of 704
==35656==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==35656==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==35656==    by 0x4E908B0: mem_get (mem-pool.c:513)
==35656==    by 0x4E906CE: mem_get0 (mem-pool.c:446)
==35656==    by 0x4E54919: dict_set_lk (dict.c:360)
==35656==    by 0x4E54C7F: dict_add (dict.c:446)
==35656==    by 0x4E5967D: dict_unserialize (dict.c:2740)
==35656==    by 0x1509595A: server_setvolume (server-handshake.c:479)
==35656==    by 0x514731B: rpcsvc_handle_rpc_call (rpcsvc.c:701)
==35656==    by 0x514766E: rpcsvc_notify (rpcsvc.c:795)
==35656==    by 0x514CD1D: rpc_transport_notify (rpc-transport.c:541)
==35656==    by 0xFEA9D43: socket_event_poll_in (socket.c:2267)
==35656== 
==35656== 8,480 bytes in 4 blocks are possibly lost in loss record 663 of 704
==35656==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==35656==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==35656==    by 0x4E8BDB8: gf_fd_fdtable_expand (fd.c:72)
==35656==    by 0x4E8BEBB: gf_fd_fdtable_alloc (fd.c:113)
==35656==    by 0x15069B32: server_ctx_get (server-helpers.c:1184)
==35656==    by 0x15069969: server_cancel_grace_timer (server-helpers.c:1136)
==35656==    by 0x15095C21: server_setvolume (server-handshake.c:532)
==35656==    by 0x514731B: rpcsvc_handle_rpc_call (rpcsvc.c:701)
==35656==    by 0x514766E: rpcsvc_notify (rpcsvc.c:795)
==35656==    by 0x514CD1D: rpc_transport_notify (rpc-transport.c:541)
==35656==    by 0xFEA9D43: socket_event_poll_in (socket.c:2267)
==35656==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==35656== 
==35656== 8,528 bytes in 1 blocks are possibly lost in loss record 664 of 704
==35656==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==35656==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==35656==    by 0x134EF2B0: init (bit-rot-stub.c:131)
==35656==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==35656==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==35656==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==35656==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==35656==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==35656==    by 0x40ECA5: mgmt_getspec_cbk (glusterfsd-mgmt.c:1648)
==35656==    by 0x51505D2: rpc_clnt_handle_reply (rpc-clnt.c:791)
==35656==    by 0x5150B34: rpc_clnt_notify (rpc-clnt.c:971)
==35656==    by 0x514CD1D: rpc_transport_notify (rpc-transport.c:541)
==35656== 
==35656== 8,856 bytes in 54 blocks are definitely lost in loss record 665 of 704
==35656==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==35656==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==35656==    by 0x4E908B0: mem_get (mem-pool.c:513)
==35656==    by 0x4E906CE: mem_get0 (mem-pool.c:446)
==35656==    by 0x4E53E07: get_new_data (dict.c:40)
==35656==    by 0x4E55D8E: data_from_dynstr (dict.c:882)
==35656==    by 0x4E58586: dict_set_dynstr (dict.c:2199)
==35656==    by 0x4EE9847: volume_option (graph.y:241)
==35656==    by 0x4EE8D57: graphyyparse (graph.y:69)
==35656==    by 0x4EEA75C: glusterfs_graph_construct (graph.y:590)
==35656==    by 0x40A211: glusterfs_process_volfp (glusterfsd.c:2305)
==35656==    by 0x40ECA5: mgmt_getspec_cbk (glusterfsd-mgmt.c:1648)
==35656== 
==35656== 8,856 bytes in 54 blocks are definitely lost in loss record 666 of 704
==35656==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==35656==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==35656==    by 0x4E908B0: mem_get (mem-pool.c:513)
==35656==    by 0x4E906CE: mem_get0 (mem-pool.c:446)
==35656==    by 0x4E53E07: get_new_data (dict.c:40)
==35656==    by 0x4E59613: dict_unserialize (dict.c:2729)
==35656==    by 0x1509595A: server_setvolume (server-handshake.c:479)
==35656==    by 0x514731B: rpcsvc_handle_rpc_call (rpcsvc.c:701)
==35656==    by 0x514766E: rpcsvc_notify (rpcsvc.c:795)
==35656==    by 0x514CD1D: rpc_transport_notify (rpc-transport.c:541)
==35656==    by 0xFEA9D43: socket_event_poll_in (socket.c:2267)
==35656==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==35656== 
==35656== 12,296 bytes in 1 blocks are possibly lost in loss record 667 of 704
==35656==    at 0x4C27BE3: malloc (vg_replace_malloc.c:299)
==35656==    by 0x4E5A12B: __gf_default_malloc (mem-pool.h:108)
==35656==    by 0x4E5BF6C: xlator_mem_acct_init (xlator.c:520)
==35656==    by 0x14E5365F: mem_acct_init (decompounder.c:920)
==35656==    by 0x4E5BB06: xlator_init (xlator.c:419)
==35656==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==35656==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==35656==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==35656==    by 0x40ECA5: mgmt_getspec_cbk (glusterfsd-mgmt.c:1648)
==35656==    by 0x51505D2: rpc_clnt_handle_reply (rpc-clnt.c:791)
==35656==    by 0x5150B34: rpc_clnt_notify (rpc-clnt.c:971)
==35656==    by 0x514CD1D: rpc_transport_notify (rpc-transport.c:541)
==35656== 
==35656== 12,296 bytes in 1 blocks are possibly lost in loss record 668 of 704
==35656==    at 0x4C27BE3: malloc (vg_replace_malloc.c:299)
==35656==    by 0x4E5A12B: __gf_default_malloc (mem-pool.h:108)
==35656==    by 0x4E5BF6C: xlator_mem_acct_init (xlator.c:520)
==35656==    by 0x145C366F: mem_acct_init (barrier.c:600)
==35656==    by 0x4E5BB06: xlator_init (xlator.c:419)
==35656==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==35656==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==35656==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==35656==    by 0x40ECA5: mgmt_getspec_cbk (glusterfsd-mgmt.c:1648)
==35656==    by 0x51505D2: rpc_clnt_handle_reply (rpc-clnt.c:791)
==35656==    by 0x5150B34: rpc_clnt_notify (rpc-clnt.c:971)
==35656==    by 0x514CD1D: rpc_transport_notify (rpc-transport.c:541)
==35656== 
==35656== 12,296 bytes in 1 blocks are possibly lost in loss record 669 of 704
==35656==    at 0x4C27BE3: malloc (vg_replace_malloc.c:299)
==35656==    by 0x4E5A12B: __gf_default_malloc (mem-pool.h:108)
==35656==    by 0x4E5BF6C: xlator_mem_acct_init (xlator.c:520)
==35656==    by 0x13D560A8: mem_acct_init (read-only.c:20)
==35656==    by 0x4E5BB06: xlator_init (xlator.c:419)
==35656==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==35656==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==35656==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==35656==    by 0x40ECA5: mgmt_getspec_cbk (glusterfsd-mgmt.c:1648)
==35656==    by 0x51505D2: rpc_clnt_handle_reply (rpc-clnt.c:791)
==35656==    by 0x5150B34: rpc_clnt_notify (rpc-clnt.c:971)
==35656==    by 0x514CD1D: rpc_transport_notify (rpc-transport.c:541)
==35656== 
==35656== 12,296 bytes in 1 blocks are possibly lost in loss record 670 of 704
==35656==    at 0x4C27BE3: malloc (vg_replace_malloc.c:299)
==35656==    by 0x4E5A12B: __gf_default_malloc (mem-pool.h:108)
==35656==    by 0x4E5BF6C: xlator_mem_acct_init (xlator.c:520)
==35656==    by 0x13B4D8D0: mem_acct_init (worm.c:24)
==35656==    by 0x4E5BB06: xlator_init (xlator.c:419)
==35656==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==35656==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==35656==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==35656==    by 0x40ECA5: mgmt_getspec_cbk (glusterfsd-mgmt.c:1648)
==35656==    by 0x51505D2: rpc_clnt_handle_reply (rpc-clnt.c:791)
==35656==    by 0x5150B34: rpc_clnt_notify (rpc-clnt.c:971)
==35656==    by 0x514CD1D: rpc_transport_notify (rpc-transport.c:541)
==35656== 
==35656== 12,536 bytes in 1 blocks are possibly lost in loss record 671 of 704
==35656==    at 0x4C27BE3: malloc (vg_replace_malloc.c:299)
==35656==    by 0x4E5A12B: __gf_default_malloc (mem-pool.h:108)
==35656==    by 0x4E5BF6C: xlator_mem_acct_init (xlator.c:520)
==35656==    by 0x147D5615: mem_acct_init (index.c:2261)
==35656==    by 0x4E5BB06: xlator_init (xlator.c:419)
==35656==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==35656==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==35656==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==35656==    by 0x40ECA5: mgmt_getspec_cbk (glusterfsd-mgmt.c:1648)
==35656==    by 0x51505D2: rpc_clnt_handle_reply (rpc-clnt.c:791)
==35656==    by 0x5150B34: rpc_clnt_notify (rpc-clnt.c:971)
==35656==    by 0x514CD1D: rpc_transport_notify (rpc-transport.c:541)
==35656== 
==35656== 12,536 bytes in 1 blocks are possibly lost in loss record 672 of 704
==35656==    at 0x4C27BE3: malloc (vg_replace_malloc.c:299)
==35656==    by 0x4E5A12B: __gf_default_malloc (mem-pool.h:108)
==35656==    by 0x4E5BF6C: xlator_mem_acct_init (xlator.c:520)
==35656==    by 0x1418A333: mem_acct_init (upcall.c:1589)
==35656==    by 0x4E5BB06: xlator_init (xlator.c:419)
==35656==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==35656==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==35656==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==35656==    by 0x40ECA5: mgmt_getspec_cbk (glusterfsd-mgmt.c:1648)
==35656==    by 0x51505D2: rpc_clnt_handle_reply (rpc-clnt.c:791)
==35656==    by 0x5150B34: rpc_clnt_notify (rpc-clnt.c:971)
==35656==    by 0x514CD1D: rpc_transport_notify (rpc-transport.c:541)
==35656== 
==35656== 12,536 bytes in 1 blocks are possibly lost in loss record 673 of 704
==35656==    at 0x4C27BE3: malloc (vg_replace_malloc.c:299)
==35656==    by 0x4E5A12B: __gf_default_malloc (mem-pool.h:108)
==35656==    by 0x4E5BF6C: xlator_mem_acct_init (xlator.c:520)
==35656==    by 0x13706EC1: mem_acct_init (posix-acl.c:33)
==35656==    by 0x4E5BB06: xlator_init (xlator.c:419)
==35656==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==35656==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==35656==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==35656==    by 0x40ECA5: mgmt_getspec_cbk (glusterfsd-mgmt.c:1648)
==35656==    by 0x51505D2: rpc_clnt_handle_reply (rpc-clnt.c:791)
==35656==    by 0x5150B34: rpc_clnt_notify (rpc-clnt.c:971)
==35656==    by 0x514CD1D: rpc_transport_notify (rpc-transport.c:541)
==35656== 
==35656== 12,536 bytes in 1 blocks are possibly lost in loss record 674 of 704
==35656==    at 0x4C27BE3: malloc (vg_replace_malloc.c:299)
==35656==    by 0x4E5A12B: __gf_default_malloc (mem-pool.h:108)
==35656==    by 0x4E5BF6C: xlator_mem_acct_init (xlator.c:520)
==35656==    by 0x129D02CD: mem_acct_init (trash.c:2331)
==35656==    by 0x4E5BB06: xlator_init (xlator.c:419)
==35656==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==35656==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==35656==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==35656==    by 0x40ECA5: mgmt_getspec_cbk (glusterfsd-mgmt.c:1648)
==35656==    by 0x51505D2: rpc_clnt_handle_reply (rpc-clnt.c:791)
==35656==    by 0x5150B34: rpc_clnt_notify (rpc-clnt.c:971)
==35656==    by 0x514CD1D: rpc_transport_notify (rpc-transport.c:541)
==35656== 
==35656== 12,616 bytes in 1 blocks are possibly lost in loss record 676 of 704
==35656==    at 0x4C27BE3: malloc (vg_replace_malloc.c:299)
==35656==    by 0x4E5A12B: __gf_default_malloc (mem-pool.h:108)
==35656==    by 0x4E5BF6C: xlator_mem_acct_init (xlator.c:520)
==35656==    by 0x12BEA597: mem_acct_init (changetimerecorder.c:2161)
==35656==    by 0x4E5BB06: xlator_init (xlator.c:419)
==35656==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==35656==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==35656==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==35656==    by 0x40ECA5: mgmt_getspec_cbk (glusterfsd-mgmt.c:1648)
==35656==    by 0x51505D2: rpc_clnt_handle_reply (rpc-clnt.c:791)
==35656==    by 0x5150B34: rpc_clnt_notify (rpc-clnt.c:971)
==35656==    by 0x514CD1D: rpc_transport_notify (rpc-transport.c:541)
==35656== 
==35656== 12,696 bytes in 1 blocks are possibly lost in loss record 677 of 704
==35656==    at 0x4C27BE3: malloc (vg_replace_malloc.c:299)
==35656==    by 0x4E5A12B: __gf_default_malloc (mem-pool.h:108)
==35656==    by 0x4E5BF6C: xlator_mem_acct_init (xlator.c:520)
==35656==    by 0x14C27E04: mem_acct_init (io-stats.c:3587)
==35656==    by 0x4E5BB06: xlator_init (xlator.c:419)
==35656==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==35656==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==35656==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==35656==    by 0x40ECA5: mgmt_getspec_cbk (glusterfsd-mgmt.c:1648)
==35656==    by 0x51505D2: rpc_clnt_handle_reply (rpc-clnt.c:791)
==35656==    by 0x5150B34: rpc_clnt_notify (rpc-clnt.c:971)
==35656==    by 0x514CD1D: rpc_transport_notify (rpc-transport.c:541)
==35656== 
==35656== 12,768 bytes in 1 blocks are possibly lost in loss record 678 of 704
==35656==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==35656==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==35656==    by 0x4ECA5AB: event_pool_new_epoll (event-epoll.c:243)
==35656==    by 0x4E8EAED: event_pool_new (event.c:37)
==35656==    by 0x40856A: glusterfs_ctx_defaults_init (glusterfsd.c:1479)
==35656==    by 0x40A5BC: main (glusterfsd.c:2413)
==35656== 
==35656== 12,936 bytes in 1 blocks are possibly lost in loss record 679 of 704
==35656==    at 0x4C27BE3: malloc (vg_replace_malloc.c:299)
==35656==    by 0x4E5A12B: __gf_default_malloc (mem-pool.h:108)
==35656==    by 0x4E5BF6C: xlator_mem_acct_init (xlator.c:520)
==35656==    by 0x143A8BAD: mem_acct_init (marker.c:3179)
==35656==    by 0x4E5BB06: xlator_init (xlator.c:419)
==35656==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==35656==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==35656==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==35656==    by 0x40ECA5: mgmt_getspec_cbk (glusterfsd-mgmt.c:1648)
==35656==    by 0x51505D2: rpc_clnt_handle_reply (rpc-clnt.c:791)
==35656==    by 0x5150B34: rpc_clnt_notify (rpc-clnt.c:971)
==35656==    by 0x514CD1D: rpc_transport_notify (rpc-transport.c:541)
==35656== 
==35656== 12,936 bytes in 1 blocks are possibly lost in loss record 680 of 704
==35656==    at 0x4C27BE3: malloc (vg_replace_malloc.c:299)
==35656==    by 0x4E5A12B: __gf_default_malloc (mem-pool.h:108)
==35656==    by 0x4E5BF6C: xlator_mem_acct_init (xlator.c:520)
==35656==    by 0x13F6F45F: mem_acct_init (leases.c:939)
==35656==    by 0x4E5BB06: xlator_init (xlator.c:419)
==35656==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==35656==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==35656==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==35656==    by 0x40ECA5: mgmt_getspec_cbk (glusterfsd-mgmt.c:1648)
==35656==    by 0x51505D2: rpc_clnt_handle_reply (rpc-clnt.c:791)
==35656==    by 0x5150B34: rpc_clnt_notify (rpc-clnt.c:971)
==35656==    by 0x514CD1D: rpc_transport_notify (rpc-transport.c:541)
==35656== 
==35656== 12,936 bytes in 1 blocks are possibly lost in loss record 681 of 704
==35656==    at 0x4C27BE3: malloc (vg_replace_malloc.c:299)
==35656==    by 0x4E5A12B: __gf_default_malloc (mem-pool.h:108)
==35656==    by 0x4E5BF6C: xlator_mem_acct_init (xlator.c:520)
==35656==    by 0x1218A539: mem_acct_init (posix.c:6614)
==35656==    by 0x4E5BB06: xlator_init (xlator.c:419)
==35656==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==35656==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==35656==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==35656==    by 0x40ECA5: mgmt_getspec_cbk (glusterfsd-mgmt.c:1648)
==35656==    by 0x51505D2: rpc_clnt_handle_reply (rpc-clnt.c:791)
==35656==    by 0x5150B34: rpc_clnt_notify (rpc-clnt.c:971)
==35656==    by 0x514CD1D: rpc_transport_notify (rpc-transport.c:541)
==35656== 
==35656== 13,016 bytes in 1 blocks are possibly lost in loss record 682 of 704
==35656==    at 0x4C27BE3: malloc (vg_replace_malloc.c:299)
==35656==    by 0x4E5A12B: __gf_default_malloc (mem-pool.h:108)
==35656==    by 0x4E5BF6C: xlator_mem_acct_init (xlator.c:520)
==35656==    by 0x13934750: mem_acct_init (posix.c:3466)
==35656==    by 0x4E5BB06: xlator_init (xlator.c:419)
==35656==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==35656==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==35656==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==35656==    by 0x40ECA5: mgmt_getspec_cbk (glusterfsd-mgmt.c:1648)
==35656==    by 0x51505D2: rpc_clnt_handle_reply (rpc-clnt.c:791)
==35656==    by 0x5150B34: rpc_clnt_notify (rpc-clnt.c:971)
==35656==    by 0x514CD1D: rpc_transport_notify (rpc-transport.c:541)
==35656== 
==35656== 13,096 bytes in 1 blocks are possibly lost in loss record 683 of 704
==35656==    at 0x4C27BE3: malloc (vg_replace_malloc.c:299)
==35656==    by 0x4E5A12B: __gf_default_malloc (mem-pool.h:108)
==35656==    by 0x4E5BF6C: xlator_mem_acct_init (xlator.c:520)
==35656==    by 0x149FEEA3: mem_acct_init (quota.c:5038)
==35656==    by 0x4E5BB06: xlator_init (xlator.c:419)
==35656==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==35656==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==35656==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==35656==    by 0x40ECA5: mgmt_getspec_cbk (glusterfsd-mgmt.c:1648)
==35656==    by 0x51505D2: rpc_clnt_handle_reply (rpc-clnt.c:791)
==35656==    by 0x5150B34: rpc_clnt_notify (rpc-clnt.c:971)
==35656==    by 0x514CD1D: rpc_transport_notify (rpc-transport.c:541)
==35656== 
==35656== 13,256 bytes in 1 blocks are possibly lost in loss record 684 of 704
==35656==    at 0x4C27BE3: malloc (vg_replace_malloc.c:299)
==35656==    by 0x4E5A12B: __gf_default_malloc (mem-pool.h:108)
==35656==    by 0x4E5BF6C: xlator_mem_acct_init (xlator.c:520)
==35656==    by 0x15060CF6: mem_acct_init (server.c:616)
==35656==    by 0x4E5BB06: xlator_init (xlator.c:419)
==35656==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==35656==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==35656==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==35656==    by 0x40ECA5: mgmt_getspec_cbk (glusterfsd-mgmt.c:1648)
==35656==    by 0x51505D2: rpc_clnt_handle_reply (rpc-clnt.c:791)
==35656==    by 0x5150B34: rpc_clnt_notify (rpc-clnt.c:971)
==35656==    by 0x514CD1D: rpc_transport_notify (rpc-transport.c:541)
==35656== 
==35656== 13,416 bytes in 1 blocks are possibly lost in loss record 685 of 704
==35656==    at 0x4C27BE3: malloc (vg_replace_malloc.c:299)
==35656==    by 0x4E5A12B: __gf_default_malloc (mem-pool.h:108)
==35656==    by 0x4E5BF6C: xlator_mem_acct_init (xlator.c:520)
==35656==    by 0x132D54FB: mem_acct_init (changelog.c:2313)
==35656==    by 0x4E5BB06: xlator_init (xlator.c:419)
==35656==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==35656==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==35656==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==35656==    by 0x40ECA5: mgmt_getspec_cbk (glusterfsd-mgmt.c:1648)
==35656==    by 0x51505D2: rpc_clnt_handle_reply (rpc-clnt.c:791)
==35656==    by 0x5150B34: rpc_clnt_notify (rpc-clnt.c:971)
==35656==    by 0x514CD1D: rpc_transport_notify (rpc-transport.c:541)
==35656== 
==35656== 13,656 bytes in 1 blocks are possibly lost in loss record 686 of 704
==35656==    at 0x4C27BE3: malloc (vg_replace_malloc.c:299)
==35656==    by 0x4E5A12B: __gf_default_malloc (mem-pool.h:108)
==35656==    by 0x4E5BF6C: xlator_mem_acct_init (xlator.c:520)
==35656==    by 0x134EEEFD: mem_acct_init (bit-rot-stub.c:46)
==35656==    by 0x4E5BB06: xlator_init (xlator.c:419)
==35656==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==35656==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==35656==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==35656==    by 0x40ECA5: mgmt_getspec_cbk (glusterfsd-mgmt.c:1648)
==35656==    by 0x51505D2: rpc_clnt_handle_reply (rpc-clnt.c:791)
==35656==    by 0x5150B34: rpc_clnt_notify (rpc-clnt.c:971)
==35656==    by 0x514CD1D: rpc_transport_notify (rpc-transport.c:541)
==35656== 
==35656== 14,360 bytes in 5 blocks are possibly lost in loss record 687 of 704
==35656==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==35656==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==35656==    by 0xFEAAF3E: socket_server_event_handler (socket.c:2682)
==35656==    by 0x4ECB1D7: event_dispatch_epoll_handler (event-epoll.c:571)
==35656==    by 0x4ECB5F4: event_dispatch_epoll_worker (event-epoll.c:674)
==35656==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==35656==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==35656== 
==35656== 15,600 bytes in 1 blocks are possibly lost in loss record 688 of 704
==35656==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==35656==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==35656==    by 0x4EA5C5C: syncenv_new (syncop.c:813)
==35656==    by 0x40A801: main (glusterfsd.c:2475)
==35656== 
==35656== 32,816 bytes in 1 blocks are possibly lost in loss record 693 of 704
==35656==    at 0x4C27BE3: malloc (vg_replace_malloc.c:299)
==35656==    by 0x676B5C0: __alloc_dir (in /usr/lib64/libc-2.17.so)
==35656==    by 0x4E9193D: sys_opendir (syscall.c:101)
==35656==    by 0x1218C336: init (posix.c:7233)
==35656==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==35656==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==35656==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==35656==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==35656==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==35656==    by 0x40ECA5: mgmt_getspec_cbk (glusterfsd-mgmt.c:1648)
==35656==    by 0x51505D2: rpc_clnt_handle_reply (rpc-clnt.c:791)
==35656==    by 0x5150B34: rpc_clnt_notify (rpc-clnt.c:971)
==35656== 
==35656== 49,472 bytes in 1 blocks are possibly lost in loss record 694 of 704
==35656==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==35656==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==35656==    by 0x15061DC3: init (server.c:934)
==35656==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==35656==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==35656==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==35656==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==35656==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==35656==    by 0x40ECA5: mgmt_getspec_cbk (glusterfsd-mgmt.c:1648)
==35656==    by 0x51505D2: rpc_clnt_handle_reply (rpc-clnt.c:791)
==35656==    by 0x5150B34: rpc_clnt_notify (rpc-clnt.c:971)
==35656==    by 0x514CD1D: rpc_transport_notify (rpc-transport.c:541)
==35656== 
==35656== 53,280 bytes in 18 blocks are possibly lost in loss record 695 of 704
==35656==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==35656==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==35656==    by 0x4EE9379: new_volume (graph.y:139)
==35656==    by 0x4EE8CE5: graphyyparse (graph.y:52)
==35656==    by 0x4EEA75C: glusterfs_graph_construct (graph.y:590)
==35656==    by 0x40A211: glusterfs_process_volfp (glusterfsd.c:2305)
==35656==    by 0x40ECA5: mgmt_getspec_cbk (glusterfsd-mgmt.c:1648)
==35656==    by 0x51505D2: rpc_clnt_handle_reply (rpc-clnt.c:791)
==35656==    by 0x5150B34: rpc_clnt_notify (rpc-clnt.c:971)
==35656==    by 0x514CD1D: rpc_transport_notify (rpc-transport.c:541)
==35656==    by 0xFEA9D43: socket_event_poll_in (socket.c:2267)
==35656==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==35656== 
==35656== 64,008 bytes in 1 blocks are possibly lost in loss record 696 of 704
==35656==    at 0x4C27BE3: malloc (vg_replace_malloc.c:299)
==35656==    by 0x130402E6: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==35656==    by 0x1301B6A9: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==35656==    by 0x13023A25: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==35656==    by 0x1302A2B1: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==35656==    by 0x1309E45D: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==35656==    by 0x12E01B48: gf_open_sqlite3_conn (gfdb_sqlite3.c:192)
==35656==    by 0x12E02CAF: gf_sqlite3_init (gfdb_sqlite3.c:440)
==35656==    by 0x12DF97B5: init_db (gfdb_data_store.c:270)
==35656==    by 0x12BEA41F: init (changetimerecorder.c:2118)
==35656==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==35656==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==35656== 
==35656== 81,992 bytes in 1 blocks are possibly lost in loss record 697 of 704
==35656==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==35656==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==35656==    by 0x4EC9E90: __event_newtable (event-epoll.c:54)
==35656==    by 0x4ECA008: __event_slot_alloc (event-epoll.c:85)
==35656==    by 0x4ECA246: event_slot_alloc (event-epoll.c:134)
==35656==    by 0x4ECA8D4: event_register_epoll (event-epoll.c:344)
==35656==    by 0x4E8EC3E: event_register (event.c:67)
==35656==    by 0xFEACC9C: socket_listen (socket.c:3356)
==35656==    by 0x514C834: rpc_transport_listen (rpc-transport.c:435)
==35656==    by 0x5149260: rpcsvc_create_listener (rpcsvc.c:1671)
==35656==    by 0x514955C: rpcsvc_create_listeners (rpcsvc.c:1757)
==35656==    by 0x40F98A: glusterfs_listener_init (glusterfsd-mgmt.c:2037)
==35656== 
==35656== 201,392 bytes in 8 blocks are possibly lost in loss record 698 of 704
==35656==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==35656==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==35656==    by 0x4E92574: __iobuf_arena_init_iobufs (iobuf.c:84)
==35656==    by 0x4E92B8D: __iobuf_arena_alloc (iobuf.c:208)
==35656==    by 0x4E92E47: __iobuf_pool_add_arena (iobuf.c:272)
==35656==    by 0x4E92F7E: iobuf_pool_add_arena (iobuf.c:297)
==35656==    by 0x4E93595: iobuf_pool_new (iobuf.c:425)
==35656==    by 0x4084EF: glusterfs_ctx_defaults_init (glusterfsd.c:1473)
==35656==    by 0x40A5BC: main (glusterfsd.c:2413)
==35656== 
==35656== 224,984 bytes in 1 blocks are possibly lost in loss record 699 of 704
==35656==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==35656==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==35656==    by 0x129BB4E4: inode_table_new (inode.c:1609)
==35656==    by 0x129CF039: notify (trash.c:2172)
==35656==    by 0x4E5BEC3: xlator_notify (xlator.c:496)
==35656==    by 0x4F12DCF: default_notify (defaults.c:3114)
==35656==    by 0x1218A501: notify (posix.c:6596)
==35656==    by 0x4E5BEC3: xlator_notify (xlator.c:496)
==35656==    by 0x4F12CE8: default_notify (defaults.c:3090)
==35656==    by 0x129D019E: notify (trash.c:2307)
==35656==    by 0x4E5BEC3: xlator_notify (xlator.c:496)
==35656==    by 0x4F12CE8: default_notify (defaults.c:3090)
==35656== 
==35656== 224,984 bytes in 1 blocks are possibly lost in loss record 700 of 704
==35656==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==35656==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==35656==    by 0x4E72012: inode_table_new (inode.c:1609)
==35656==    by 0x15096890: server_setvolume (server-handshake.c:740)
==35656==    by 0x514731B: rpcsvc_handle_rpc_call (rpcsvc.c:701)
==35656==    by 0x514766E: rpcsvc_notify (rpcsvc.c:795)
==35656==    by 0x514CD1D: rpc_transport_notify (rpc-transport.c:541)
==35656==    by 0xFEA9D43: socket_event_poll_in (socket.c:2267)
==35656==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==35656==    by 0x4ECB1D7: event_dispatch_epoll_handler (event-epoll.c:571)
==35656==    by 0x4ECB5F4: event_dispatch_epoll_worker (event-epoll.c:674)
==35656==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==35656== 
==35656== 1,048,648 bytes in 1 blocks are possibly lost in loss record 701 of 704
==35656==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==35656==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==35656==    by 0x129BB4A9: inode_table_new (inode.c:1603)
==35656==    by 0x129CF039: notify (trash.c:2172)
==35656==    by 0x4E5BEC3: xlator_notify (xlator.c:496)
==35656==    by 0x4F12DCF: default_notify (defaults.c:3114)
==35656==    by 0x1218A501: notify (posix.c:6596)
==35656==    by 0x4E5BEC3: xlator_notify (xlator.c:496)
==35656==    by 0x4F12CE8: default_notify (defaults.c:3090)
==35656==    by 0x129D019E: notify (trash.c:2307)
==35656==    by 0x4E5BEC3: xlator_notify (xlator.c:496)
==35656==    by 0x4F12CE8: default_notify (defaults.c:3090)
==35656== 
==35656== 1,048,648 bytes in 1 blocks are possibly lost in loss record 702 of 704
==35656==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==35656==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==35656==    by 0x4E71FD7: inode_table_new (inode.c:1603)
==35656==    by 0x15096890: server_setvolume (server-handshake.c:740)
==35656==    by 0x514731B: rpcsvc_handle_rpc_call (rpcsvc.c:701)
==35656==    by 0x514766E: rpcsvc_notify (rpcsvc.c:795)
==35656==    by 0x514CD1D: rpc_transport_notify (rpc-transport.c:541)
==35656==    by 0xFEA9D43: socket_event_poll_in (socket.c:2267)
==35656==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==35656==    by 0x4ECB1D7: event_dispatch_epoll_handler (event-epoll.c:571)
==35656==    by 0x4ECB5F4: event_dispatch_epoll_worker (event-epoll.c:674)
==35656==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==35656== 
==35656== 4,194,720 bytes in 4 blocks are possibly lost in loss record 703 of 704
==35656==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==35656==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==35656==    by 0x4EE1A0C: rbuf_alloc_rvec (rot-buffs.c:68)
==35656==    by 0x4EE1ADA: rlist_add_new_vec (rot-buffs.c:109)
==35656==    by 0x4EE1E90: rbuf_init (rot-buffs.c:211)
==35656==    by 0x132D6D33: changelog_init_rpc (changelog.c:2764)
==35656==    by 0x132D71B1: init (changelog.c:2850)
==35656==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==35656==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==35656==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==35656==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==35656==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==35656== 
==35656== 9,437,112 bytes in 1 blocks are possibly lost in loss record 704 of 704
==35656==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==35656==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==35656==    by 0x14C0CBCB: ios_create_sample_buf (io-stats.c:486)
==35656==    by 0x14C0CCCA: ios_init_sample_buf (io-stats.c:519)
==35656==    by 0x14C282AF: init (io-stats.c:3678)
==35656==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==35656==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==35656==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==35656==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==35656==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==35656==    by 0x40ECA5: mgmt_getspec_cbk (glusterfsd-mgmt.c:1648)
==35656==    by 0x51505D2: rpc_clnt_handle_reply (rpc-clnt.c:791)
==35656== 
==35656== LEAK SUMMARY:
==35656==    definitely lost: 70,027 bytes in 532 blocks
==35656==    indirectly lost: 6,824 bytes in 40 blocks
==35656==      possibly lost: 17,075,062 bytes in 534 blocks
==35656==    still reachable: 189,245 bytes in 3,012 blocks
==35656==                       of which reachable via heuristic:
==35656==                         length64           : 6,392 bytes in 25 blocks
==35656==         suppressed: 0 bytes in 0 blocks
==35656== Reachable blocks (those to which a pointer was found) are not shown.
==35656== To see them, rerun with: --leak-check=full --show-leak-kinds=all
==35656== 
==35656== For counts of detected and suppressed errors, rerun with: -v
==35656== ERROR SUMMARY: 36573 errors from 446 contexts (suppressed: 0 from 0)
-------------- next part --------------
==49924== Memcheck, a memory error detector
==49924== Copyright (C) 2002-2015, and GNU GPL'd, by Julian Seward et al.
==49924== Using Valgrind-3.11.0 and LibVEX; rerun with -h for copyright info
==49924== Command: /usr/local/sbin/glusterfsd -s 192.168.21.129 --volfile-id gvtest.192.168.21.129.root-rpmbuild-gvtest -p /var/lib/glusterd/vols/gvtest/run/192.168.21.129-root-rpmbuild-gvtest.pid -S /var/run/gluster/5c43a398fb7c84b5cce4ebedd73680c5.socket --brick-name /root/rpmbuild/gvtest -l /var/log/glusterfs/bricks/root-rpmbuild-gvtest.log --xlator-option *-posix.glusterd-uuid=369656c9-ffb8-467a-a35d-2fdb33ec9048 --brick-port 49163 --xlator-option gvtest-server.listen-port=49163
==49924== Parent PID: 49827
==49924== 
==49924== 
==49924== HEAP SUMMARY:
==49924==     in use at exit: 246,367 bytes in 66 blocks
==49924==   total heap usage: 111 allocs, 45 frees, 258,312 bytes allocated
==49924== 
==49924== 77 bytes in 1 blocks are definitely lost in loss record 2 of 48
==49924==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49924==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49924==    by 0x4E5D949: gf_strdup (mem-pool.h:187)
==49924==    by 0x4E5DF57: log_buf_init (logging.c:317)
==49924==    by 0x4E61F6B: _gf_msg_internal (logging.c:1966)
==49924==    by 0x4E624BB: _gf_msg (logging.c:2081)
==49924==    by 0x40A77B: main (glusterfsd.c:2453)
==49924== 
==49924== 85 bytes in 1 blocks are definitely lost in loss record 3 of 48
==49924==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49924==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49924==    by 0x4E5D949: gf_strdup (mem-pool.h:187)
==49924==    by 0x4E5DF34: log_buf_init (logging.c:313)
==49924==    by 0x4E61F6B: _gf_msg_internal (logging.c:1966)
==49924==    by 0x4E624BB: _gf_msg (logging.c:2081)
==49924==    by 0x40A77B: main (glusterfsd.c:2453)
==49924== 
==49924== 87 bytes in 1 blocks are possibly lost in loss record 4 of 48
==49924==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49924==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49924==    by 0x4052E4: gf_strdup (mem-pool.h:187)
==49924==    by 0x40690C: gf_remember_backup_volfile_server (glusterfsd.c:688)
==49924==    by 0x4070DB: parse_opts (glusterfsd.c:836)
==49924==    by 0x67B4F7C: argp_parse (in /usr/lib64/libc-2.17.so)
==49924==    by 0x4092D4: parse_cmdline (glusterfsd.c:1866)
==49924==    by 0x40A5E5: main (glusterfsd.c:2417)
==49924== 
==49924== 89 bytes in 1 blocks are possibly lost in loss record 5 of 48
==49924==    at 0x4C27BE3: malloc (vg_replace_malloc.c:299)
==49924==    by 0x4E8FB45: __gf_malloc (mem-pool.c:142)
==49924==    by 0x4E8FDF0: gf_vasprintf (mem-pool.c:221)
==49924==    by 0x4E8FEDF: gf_asprintf (mem-pool.c:240)
==49924==    by 0x4E904D2: mem_pool_new_fn (mem-pool.c:385)
==49924==    by 0x40886F: glusterfs_ctx_defaults_init (glusterfsd.c:1514)
==49924==    by 0x40A5BC: main (glusterfsd.c:2413)
==49924== 
==49924== 89 bytes in 1 blocks are possibly lost in loss record 6 of 48
==49924==    at 0x4C27BE3: malloc (vg_replace_malloc.c:299)
==49924==    by 0x4E8FB45: __gf_malloc (mem-pool.c:142)
==49924==    by 0x4E8FDF0: gf_vasprintf (mem-pool.c:221)
==49924==    by 0x4E8FEDF: gf_asprintf (mem-pool.c:240)
==49924==    by 0x4E904D2: mem_pool_new_fn (mem-pool.c:385)
==49924==    by 0x4088D7: glusterfs_ctx_defaults_init (glusterfsd.c:1523)
==49924==    by 0x40A5BC: main (glusterfsd.c:2413)
==49924== 
==49924== 92 bytes in 1 blocks are possibly lost in loss record 7 of 48
==49924==    at 0x4C27BE3: malloc (vg_replace_malloc.c:299)
==49924==    by 0x4E8FB45: __gf_malloc (mem-pool.c:142)
==49924==    by 0x4E8FDF0: gf_vasprintf (mem-pool.c:221)
==49924==    by 0x4E8FEDF: gf_asprintf (mem-pool.c:240)
==49924==    by 0x4E904D2: mem_pool_new_fn (mem-pool.c:385)
==49924==    by 0x40890B: glusterfs_ctx_defaults_init (glusterfsd.c:1527)
==49924==    by 0x40A5BC: main (glusterfsd.c:2413)
==49924== 
==49924== 93 bytes in 1 blocks are possibly lost in loss record 8 of 48
==49924==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49924==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49924==    by 0x4E5D949: gf_strdup (mem-pool.h:187)
==49924==    by 0x4E5EA2C: gf_log_init (logging.c:685)
==49924==    by 0x408CCA: logging_init (glusterfsd.c:1628)
==49924==    by 0x40A65E: main (glusterfsd.c:2438)
==49924== 
==49924== 94 bytes in 1 blocks are possibly lost in loss record 9 of 48
==49924==    at 0x4C27BE3: malloc (vg_replace_malloc.c:299)
==49924==    by 0x4E8FB45: __gf_malloc (mem-pool.c:142)
==49924==    by 0x4E8FDF0: gf_vasprintf (mem-pool.c:221)
==49924==    by 0x4E8FEDF: gf_asprintf (mem-pool.c:240)
==49924==    by 0x4E904D2: mem_pool_new_fn (mem-pool.c:385)
==49924==    by 0x4087EF: glusterfs_ctx_defaults_init (glusterfsd.c:1508)
==49924==    by 0x40A5BC: main (glusterfsd.c:2413)
==49924== 
==49924== 94 bytes in 1 blocks are possibly lost in loss record 10 of 48
==49924==    at 0x4C27BE3: malloc (vg_replace_malloc.c:299)
==49924==    by 0x4E8FB45: __gf_malloc (mem-pool.c:142)
==49924==    by 0x4E8FDF0: gf_vasprintf (mem-pool.c:221)
==49924==    by 0x4E8FEDF: gf_asprintf (mem-pool.c:240)
==49924==    by 0x4E904D2: mem_pool_new_fn (mem-pool.c:385)
==49924==    by 0x4088A3: glusterfs_ctx_defaults_init (glusterfsd.c:1518)
==49924==    by 0x40A5BC: main (glusterfsd.c:2413)
==49924== 
==49924== 94 bytes in 1 blocks are possibly lost in loss record 11 of 48
==49924==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49924==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49924==    by 0x4052E4: gf_strdup (mem-pool.h:187)
==49924==    by 0x407942: parse_opts (glusterfsd.c:1095)
==49924==    by 0x67B5412: argp_parse (in /usr/lib64/libc-2.17.so)
==49924==    by 0x4092D4: parse_cmdline (glusterfsd.c:1866)
==49924==    by 0x40A5E5: main (glusterfsd.c:2417)
==49924== 
==49924== 95 bytes in 1 blocks are possibly lost in loss record 12 of 48
==49924==    at 0x4C27BE3: malloc (vg_replace_malloc.c:299)
==49924==    by 0x4E8FB45: __gf_malloc (mem-pool.c:142)
==49924==    by 0x4E8FDF0: gf_vasprintf (mem-pool.c:221)
==49924==    by 0x4E8FEDF: gf_asprintf (mem-pool.c:240)
==49924==    by 0x4E904D2: mem_pool_new_fn (mem-pool.c:385)
==49924==    by 0x4086EA: glusterfs_ctx_defaults_init (glusterfsd.c:1496)
==49924==    by 0x40A5BC: main (glusterfsd.c:2413)
==49924== 
==49924== 95 bytes in 1 blocks are possibly lost in loss record 13 of 48
==49924==    at 0x4C27BE3: malloc (vg_replace_malloc.c:299)
==49924==    by 0x4E8FB45: __gf_malloc (mem-pool.c:142)
==49924==    by 0x4E8FDF0: gf_vasprintf (mem-pool.c:221)
==49924==    by 0x4E8FEDF: gf_asprintf (mem-pool.c:240)
==49924==    by 0x4E904D2: mem_pool_new_fn (mem-pool.c:385)
==49924==    by 0x408772: glusterfs_ctx_defaults_init (glusterfsd.c:1502)
==49924==    by 0x40A5BC: main (glusterfsd.c:2413)
==49924== 
==49924== 97 bytes in 1 blocks are possibly lost in loss record 14 of 48
==49924==    at 0x4C27BE3: malloc (vg_replace_malloc.c:299)
==49924==    by 0x4E8FB45: __gf_malloc (mem-pool.c:142)
==49924==    by 0x4E8FDF0: gf_vasprintf (mem-pool.c:221)
==49924==    by 0x4E8FEDF: gf_asprintf (mem-pool.c:240)
==49924==    by 0x4E6BA5F: gf_set_log_ident (common-utils.c:3491)
==49924==    by 0x408C34: logging_init (glusterfsd.c:1609)
==49924==    by 0x40A65E: main (glusterfsd.c:2438)
==49924== 
==49924== 99 bytes in 1 blocks are definitely lost in loss record 15 of 48
==49924==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49924==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49924==    by 0x4E5D949: gf_strdup (mem-pool.h:187)
==49924==    by 0x4E5DF0E: log_buf_init (logging.c:309)
==49924==    by 0x4E61F6B: _gf_msg_internal (logging.c:1966)
==49924==    by 0x4E624BB: _gf_msg (logging.c:2081)
==49924==    by 0x40A77B: main (glusterfsd.c:2453)
==49924== 
==49924== 112 bytes in 1 blocks are possibly lost in loss record 16 of 48
==49924==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49924==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49924==    by 0x4068D5: gf_remember_backup_volfile_server (glusterfsd.c:681)
==49924==    by 0x4070DB: parse_opts (glusterfsd.c:836)
==49924==    by 0x67B4F7C: argp_parse (in /usr/lib64/libc-2.17.so)
==49924==    by 0x4092D4: parse_cmdline (glusterfsd.c:1866)
==49924==    by 0x40A5E5: main (glusterfsd.c:2417)
==49924== 
==49924== 115 bytes in 1 blocks are possibly lost in loss record 17 of 48
==49924==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49924==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49924==    by 0x4052E4: gf_strdup (mem-pool.h:187)
==49924==    by 0x4074EC: parse_opts (glusterfsd.c:966)
==49924==    by 0x67B5412: argp_parse (in /usr/lib64/libc-2.17.so)
==49924==    by 0x4092D4: parse_cmdline (glusterfsd.c:1866)
==49924==    by 0x40A5E5: main (glusterfsd.c:2417)
==49924== 
==49924== 118 bytes in 1 blocks are possibly lost in loss record 18 of 48
==49924==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49924==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49924==    by 0x4E63EFC: gf_strdup (mem-pool.h:187)
==49924==    by 0x4E6A501: generate_glusterfs_ctx_id (common-utils.c:2941)
==49924==    by 0x408478: glusterfs_ctx_defaults_init (glusterfsd.c:1465)
==49924==    by 0x40A5BC: main (glusterfsd.c:2413)
==49924== 
==49924== 123 bytes in 1 blocks are possibly lost in loss record 19 of 48
==49924==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49924==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49924==    by 0x4052E4: gf_strdup (mem-pool.h:187)
==49924==    by 0x407452: parse_opts (glusterfsd.c:946)
==49924==    by 0x67B4F7C: argp_parse (in /usr/lib64/libc-2.17.so)
==49924==    by 0x4092D4: parse_cmdline (glusterfsd.c:1866)
==49924==    by 0x40A5E5: main (glusterfsd.c:2417)
==49924== 
==49924== 123 bytes in 1 blocks are possibly lost in loss record 20 of 48
==49924==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49924==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49924==    by 0x4E5D949: gf_strdup (mem-pool.h:187)
==49924==    by 0x4E5EC50: gf_log_init (logging.c:735)
==49924==    by 0x408CCA: logging_init (glusterfsd.c:1628)
==49924==    by 0x40A65E: main (glusterfsd.c:2438)
==49924== 
==49924== 129 bytes in 1 blocks are possibly lost in loss record 21 of 48
==49924==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49924==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49924==    by 0x4052E4: gf_strdup (mem-pool.h:187)
==49924==    by 0x40752A: parse_opts (glusterfsd.c:974)
==49924==    by 0x67B4F7C: argp_parse (in /usr/lib64/libc-2.17.so)
==49924==    by 0x4092D4: parse_cmdline (glusterfsd.c:1866)
==49924==    by 0x40A5E5: main (glusterfsd.c:2417)
==49924== 
==49924== 144 bytes in 1 blocks are possibly lost in loss record 22 of 48
==49924==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49924==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49924==    by 0x4EC661A: gf_clienttable_alloc (client_t.c:97)
==49924==    by 0x408998: glusterfs_ctx_defaults_init (glusterfsd.c:1536)
==49924==    by 0x40A5BC: main (glusterfsd.c:2413)
==49924== 
==49924== 146 bytes in 1 blocks are possibly lost in loss record 23 of 48
==49924==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49924==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49924==    by 0x4052E4: gf_strdup (mem-pool.h:187)
==49924==    by 0x40750B: parse_opts (glusterfsd.c:970)
==49924==    by 0x67B4F7C: argp_parse (in /usr/lib64/libc-2.17.so)
==49924==    by 0x4092D4: parse_cmdline (glusterfsd.c:1866)
==49924==    by 0x40A5E5: main (glusterfsd.c:2417)
==49924== 
==49924== 152 bytes in 1 blocks are possibly lost in loss record 24 of 48
==49924==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49924==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49924==    by 0x4085EF: glusterfs_ctx_defaults_init (glusterfsd.c:1486)
==49924==    by 0x40A5BC: main (glusterfsd.c:2413)
==49924== 
==49924== 166 bytes in 2 blocks are possibly lost in loss record 25 of 48
==49924==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49924==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49924==    by 0x406B0A: gf_remember_xlator_option (glusterfsd.c:742)
==49924==    by 0x40789D: parse_opts (glusterfsd.c:1075)
==49924==    by 0x67B5412: argp_parse (in /usr/lib64/libc-2.17.so)
==49924==    by 0x4092D4: parse_cmdline (glusterfsd.c:1866)
==49924==    by 0x40A5E5: main (glusterfsd.c:2417)
==49924== 
==49924== 172 bytes in 2 blocks are possibly lost in loss record 26 of 48
==49924==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49924==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49924==    by 0x406BE2: gf_remember_xlator_option (glusterfsd.c:755)
==49924==    by 0x40789D: parse_opts (glusterfsd.c:1075)
==49924==    by 0x67B5412: argp_parse (in /usr/lib64/libc-2.17.so)
==49924==    by 0x4092D4: parse_cmdline (glusterfsd.c:1866)
==49924==    by 0x40A5E5: main (glusterfsd.c:2417)
==49924== 
==49924== 187 bytes in 2 blocks are possibly lost in loss record 27 of 48
==49924==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49924==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49924==    by 0x4052E4: gf_strdup (mem-pool.h:187)
==49924==    by 0x406C99: gf_remember_xlator_option (glusterfsd.c:767)
==49924==    by 0x40789D: parse_opts (glusterfsd.c:1075)
==49924==    by 0x67B5412: argp_parse (in /usr/lib64/libc-2.17.so)
==49924==    by 0x4092D4: parse_cmdline (glusterfsd.c:1866)
==49924==    by 0x40A5E5: main (glusterfsd.c:2417)
==49924== 
==49924== 212 bytes in 1 blocks are possibly lost in loss record 28 of 48
==49924==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49924==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49924==    by 0x4E908B0: mem_get (mem-pool.c:513)
==49924==    by 0x4E906CE: mem_get0 (mem-pool.c:446)
==49924==    by 0x4E5DE4D: log_buf_new (logging.c:284)
==49924==    by 0x4E61F12: _gf_msg_internal (logging.c:1961)
==49924==    by 0x4E624BB: _gf_msg (logging.c:2081)
==49924==    by 0x40A77B: main (glusterfsd.c:2453)
==49924== 
==49924== 224 bytes in 1 blocks are possibly lost in loss record 29 of 48
==49924==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49924==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49924==    by 0x4E90487: mem_pool_new_fn (mem-pool.c:381)
==49924==    by 0x4086EA: glusterfs_ctx_defaults_init (glusterfsd.c:1496)
==49924==    by 0x40A5BC: main (glusterfsd.c:2413)
==49924== 
==49924== 224 bytes in 1 blocks are possibly lost in loss record 30 of 48
==49924==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49924==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49924==    by 0x4E90487: mem_pool_new_fn (mem-pool.c:381)
==49924==    by 0x408772: glusterfs_ctx_defaults_init (glusterfsd.c:1502)
==49924==    by 0x40A5BC: main (glusterfsd.c:2413)
==49924== 
==49924== 224 bytes in 1 blocks are possibly lost in loss record 31 of 48
==49924==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49924==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49924==    by 0x4E90487: mem_pool_new_fn (mem-pool.c:381)
==49924==    by 0x4087EF: glusterfs_ctx_defaults_init (glusterfsd.c:1508)
==49924==    by 0x40A5BC: main (glusterfsd.c:2413)
==49924== 
==49924== 224 bytes in 1 blocks are possibly lost in loss record 32 of 48
==49924==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49924==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49924==    by 0x4E90487: mem_pool_new_fn (mem-pool.c:381)
==49924==    by 0x40886F: glusterfs_ctx_defaults_init (glusterfsd.c:1514)
==49924==    by 0x40A5BC: main (glusterfsd.c:2413)
==49924== 
==49924== 224 bytes in 1 blocks are possibly lost in loss record 33 of 48
==49924==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49924==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49924==    by 0x4E90487: mem_pool_new_fn (mem-pool.c:381)
==49924==    by 0x4088A3: glusterfs_ctx_defaults_init (glusterfsd.c:1518)
==49924==    by 0x40A5BC: main (glusterfsd.c:2413)
==49924== 
==49924== 224 bytes in 1 blocks are possibly lost in loss record 34 of 48
==49924==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49924==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49924==    by 0x4E90487: mem_pool_new_fn (mem-pool.c:381)
==49924==    by 0x4088D7: glusterfs_ctx_defaults_init (glusterfsd.c:1523)
==49924==    by 0x40A5BC: main (glusterfsd.c:2413)
==49924== 
==49924== 224 bytes in 1 blocks are possibly lost in loss record 35 of 48
==49924==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49924==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49924==    by 0x4E90487: mem_pool_new_fn (mem-pool.c:381)
==49924==    by 0x40890B: glusterfs_ctx_defaults_init (glusterfsd.c:1527)
==49924==    by 0x40A5BC: main (glusterfsd.c:2413)
==49924== 
==49924== 224 bytes in 2 blocks are possibly lost in loss record 36 of 48
==49924==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49924==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49924==    by 0x406A49: gf_remember_xlator_option (glusterfsd.c:729)
==49924==    by 0x40789D: parse_opts (glusterfsd.c:1075)
==49924==    by 0x67B5412: argp_parse (in /usr/lib64/libc-2.17.so)
==49924==    by 0x4092D4: parse_cmdline (glusterfsd.c:1866)
==49924==    by 0x40A5E5: main (glusterfsd.c:2417)
==49924== 
==49924== 360 bytes in 1 blocks are possibly lost in loss record 37 of 48
==49924==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49924==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49924==    by 0x4E93243: iobuf_create_stdalloc_arena (iobuf.c:367)
==49924==    by 0x4E935BB: iobuf_pool_new (iobuf.c:431)
==49924==    by 0x4084EF: glusterfs_ctx_defaults_init (glusterfsd.c:1473)
==49924==    by 0x40A5BC: main (glusterfsd.c:2413)
==49924== 
==49924== 541 bytes in 1 blocks are possibly lost in loss record 38 of 48
==49924==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49924==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49924==    by 0x4052E4: gf_strdup (mem-pool.h:187)
==49924==    by 0x40A78A: main (glusterfsd.c:2456)
==49924== 
==49924== 607 bytes in 1 blocks are definitely lost in loss record 41 of 48
==49924==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49924==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49924==    by 0x4E5D949: gf_strdup (mem-pool.h:187)
==49924==    by 0x4E5DED4: log_buf_init (logging.c:303)
==49924==    by 0x4E61F6B: _gf_msg_internal (logging.c:1966)
==49924==    by 0x4E624BB: _gf_msg (logging.c:2081)
==49924==    by 0x40A77B: main (glusterfsd.c:2453)
==49924== 
==49924== 1,848 bytes in 1 blocks are possibly lost in loss record 42 of 48
==49924==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49924==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49924==    by 0x4E93338: iobuf_pool_new (iobuf.c:396)
==49924==    by 0x4084EF: glusterfs_ctx_defaults_init (glusterfsd.c:1473)
==49924==    by 0x40A5BC: main (glusterfsd.c:2413)
==49924== 
==49924== 2,120 bytes in 1 blocks are possibly lost in loss record 43 of 48
==49924==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49924==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49924==    by 0x4EC654E: gf_client_clienttable_expand (client_t.c:61)
==49924==    by 0x4EC6679: gf_clienttable_alloc (client_t.c:104)
==49924==    by 0x408998: glusterfs_ctx_defaults_init (glusterfsd.c:1536)
==49924==    by 0x40A5BC: main (glusterfsd.c:2413)
==49924== 
==49924== 2,880 bytes in 8 blocks are possibly lost in loss record 44 of 48
==49924==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49924==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49924==    by 0x4E929B4: __iobuf_arena_alloc (iobuf.c:174)
==49924==    by 0x4E92E47: __iobuf_pool_add_arena (iobuf.c:272)
==49924==    by 0x4E92F7E: iobuf_pool_add_arena (iobuf.c:297)
==49924==    by 0x4E93595: iobuf_pool_new (iobuf.c:425)
==49924==    by 0x4084EF: glusterfs_ctx_defaults_init (glusterfsd.c:1473)
==49924==    by 0x40A5BC: main (glusterfsd.c:2413)
==49924== 
==49924== 12,768 bytes in 1 blocks are possibly lost in loss record 47 of 48
==49924==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49924==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49924==    by 0x4ECA27C: event_pool_new_epoll (event-epoll.c:243)
==49924==    by 0x4E8EAED: event_pool_new (event.c:37)
==49924==    by 0x40856A: glusterfs_ctx_defaults_init (glusterfsd.c:1479)
==49924==    by 0x40A5BC: main (glusterfsd.c:2413)
==49924== 
==49924== 201,392 bytes in 8 blocks are possibly lost in loss record 48 of 48
==49924==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49924==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49924==    by 0x4E92574: __iobuf_arena_init_iobufs (iobuf.c:84)
==49924==    by 0x4E92B8D: __iobuf_arena_alloc (iobuf.c:208)
==49924==    by 0x4E92E47: __iobuf_pool_add_arena (iobuf.c:272)
==49924==    by 0x4E92F7E: iobuf_pool_add_arena (iobuf.c:297)
==49924==    by 0x4E93595: iobuf_pool_new (iobuf.c:425)
==49924==    by 0x4084EF: glusterfs_ctx_defaults_init (glusterfsd.c:1473)
==49924==    by 0x40A5BC: main (glusterfsd.c:2413)
==49924== 
==49924== LEAK SUMMARY:
==49924==    definitely lost: 868 bytes in 4 blocks
==49924==    indirectly lost: 0 bytes in 0 blocks
==49924==      possibly lost: 226,619 bytes in 57 blocks
==49924==    still reachable: 18,880 bytes in 5 blocks
==49924==         suppressed: 0 bytes in 0 blocks
==49924== Reachable blocks (those to which a pointer was found) are not shown.
==49924== To see them, rerun with: --leak-check=full --show-leak-kinds=all
==49924== 
==49924== For counts of detected and suppressed errors, rerun with: -v
==49924== ERROR SUMMARY: 43 errors from 43 contexts (suppressed: 0 from 0)
==49943== Thread 4:
==49943== Invalid read of size 8
==49943==    at 0x66F5BDC: swapcontext (in /usr/lib64/libc-2.17.so)
==49943==  Address 0x1753eaf0 is 304 bytes inside a block of size 5,336 alloc'd
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x4EA4E64: synctask_create (syncop.c:463)
==49943==    by 0x4EA527F: synctask_new1 (syncop.c:571)
==49943==    by 0x143AE0D7: mq_synctask1 (marker-quota.c:1078)
==49943==    by 0x143AE199: mq_synctask (marker-quota.c:1097)
==49943==    by 0x143AE6F6: _mq_create_xattrs_txn (marker-quota.c:1236)
==49943==    by 0x143AE82D: mq_create_xattrs_txn (marker-quota.c:1253)
==49943==    by 0x143B0DCB: mq_inspect_directory_xattr (marker-quota.c:2027)
==49943==    by 0x143B13A8: mq_xattr_state (marker-quota.c:2117)
==49943==    by 0x143A6E80: marker_lookup_cbk (marker.c:2961)
==49943==    by 0x141811E0: up_lookup_cbk (upcall.c:753)
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x66F5BE3: swapcontext (in /usr/lib64/libc-2.17.so)
==49943==  Address 0x1753eae8 is 296 bytes inside a block of size 5,336 alloc'd
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x4EA4E64: synctask_create (syncop.c:463)
==49943==    by 0x4EA527F: synctask_new1 (syncop.c:571)
==49943==    by 0x143AE0D7: mq_synctask1 (marker-quota.c:1078)
==49943==    by 0x143AE199: mq_synctask (marker-quota.c:1097)
==49943==    by 0x143AE6F6: _mq_create_xattrs_txn (marker-quota.c:1236)
==49943==    by 0x143AE82D: mq_create_xattrs_txn (marker-quota.c:1253)
==49943==    by 0x143B0DCB: mq_inspect_directory_xattr (marker-quota.c:2027)
==49943==    by 0x143B13A8: mq_xattr_state (marker-quota.c:2117)
==49943==    by 0x143A6E80: marker_lookup_cbk (marker.c:2961)
==49943==    by 0x141811E0: up_lookup_cbk (upcall.c:753)
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x66F5BE7: swapcontext (in /usr/lib64/libc-2.17.so)
==49943==  Address 0x1753eab8 is 248 bytes inside a block of size 5,336 alloc'd
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x4EA4E64: synctask_create (syncop.c:463)
==49943==    by 0x4EA527F: synctask_new1 (syncop.c:571)
==49943==    by 0x143AE0D7: mq_synctask1 (marker-quota.c:1078)
==49943==    by 0x143AE199: mq_synctask (marker-quota.c:1097)
==49943==    by 0x143AE6F6: _mq_create_xattrs_txn (marker-quota.c:1236)
==49943==    by 0x143AE82D: mq_create_xattrs_txn (marker-quota.c:1253)
==49943==    by 0x143B0DCB: mq_inspect_directory_xattr (marker-quota.c:2027)
==49943==    by 0x143B13A8: mq_xattr_state (marker-quota.c:2117)
==49943==    by 0x143A6E80: marker_lookup_cbk (marker.c:2961)
==49943==    by 0x141811E0: up_lookup_cbk (upcall.c:753)
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x66F5BEB: swapcontext (in /usr/lib64/libc-2.17.so)
==49943==  Address 0x1753eac0 is 256 bytes inside a block of size 5,336 alloc'd
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x4EA4E64: synctask_create (syncop.c:463)
==49943==    by 0x4EA527F: synctask_new1 (syncop.c:571)
==49943==    by 0x143AE0D7: mq_synctask1 (marker-quota.c:1078)
==49943==    by 0x143AE199: mq_synctask (marker-quota.c:1097)
==49943==    by 0x143AE6F6: _mq_create_xattrs_txn (marker-quota.c:1236)
==49943==    by 0x143AE82D: mq_create_xattrs_txn (marker-quota.c:1253)
==49943==    by 0x143B0DCB: mq_inspect_directory_xattr (marker-quota.c:2027)
==49943==    by 0x143B13A8: mq_xattr_state (marker-quota.c:2117)
==49943==    by 0x143A6E80: marker_lookup_cbk (marker.c:2961)
==49943==    by 0x141811E0: up_lookup_cbk (upcall.c:753)
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x66F5BEF: swapcontext (in /usr/lib64/libc-2.17.so)
==49943==  Address 0x1753eac8 is 264 bytes inside a block of size 5,336 alloc'd
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x4EA4E64: synctask_create (syncop.c:463)
==49943==    by 0x4EA527F: synctask_new1 (syncop.c:571)
==49943==    by 0x143AE0D7: mq_synctask1 (marker-quota.c:1078)
==49943==    by 0x143AE199: mq_synctask (marker-quota.c:1097)
==49943==    by 0x143AE6F6: _mq_create_xattrs_txn (marker-quota.c:1236)
==49943==    by 0x143AE82D: mq_create_xattrs_txn (marker-quota.c:1253)
==49943==    by 0x143B0DCB: mq_inspect_directory_xattr (marker-quota.c:2027)
==49943==    by 0x143B13A8: mq_xattr_state (marker-quota.c:2117)
==49943==    by 0x143A6E80: marker_lookup_cbk (marker.c:2961)
==49943==    by 0x141811E0: up_lookup_cbk (upcall.c:753)
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x66F5BF3: swapcontext (in /usr/lib64/libc-2.17.so)
==49943==  Address 0x1753ead0 is 272 bytes inside a block of size 5,336 alloc'd
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x4EA4E64: synctask_create (syncop.c:463)
==49943==    by 0x4EA527F: synctask_new1 (syncop.c:571)
==49943==    by 0x143AE0D7: mq_synctask1 (marker-quota.c:1078)
==49943==    by 0x143AE199: mq_synctask (marker-quota.c:1097)
==49943==    by 0x143AE6F6: _mq_create_xattrs_txn (marker-quota.c:1236)
==49943==    by 0x143AE82D: mq_create_xattrs_txn (marker-quota.c:1253)
==49943==    by 0x143B0DCB: mq_inspect_directory_xattr (marker-quota.c:2027)
==49943==    by 0x143B13A8: mq_xattr_state (marker-quota.c:2117)
==49943==    by 0x143A6E80: marker_lookup_cbk (marker.c:2961)
==49943==    by 0x141811E0: up_lookup_cbk (upcall.c:753)
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x66F5BF7: swapcontext (in /usr/lib64/libc-2.17.so)
==49943==  Address 0x1753eb18 is 344 bytes inside a block of size 5,336 alloc'd
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x4EA4E64: synctask_create (syncop.c:463)
==49943==    by 0x4EA527F: synctask_new1 (syncop.c:571)
==49943==    by 0x143AE0D7: mq_synctask1 (marker-quota.c:1078)
==49943==    by 0x143AE199: mq_synctask (marker-quota.c:1097)
==49943==    by 0x143AE6F6: _mq_create_xattrs_txn (marker-quota.c:1236)
==49943==    by 0x143AE82D: mq_create_xattrs_txn (marker-quota.c:1253)
==49943==    by 0x143B0DCB: mq_inspect_directory_xattr (marker-quota.c:2027)
==49943==    by 0x143B13A8: mq_xattr_state (marker-quota.c:2117)
==49943==    by 0x143A6E80: marker_lookup_cbk (marker.c:2961)
==49943==    by 0x141811E0: up_lookup_cbk (upcall.c:753)
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x66F5BFF: swapcontext (in /usr/lib64/libc-2.17.so)
==49943==  Address 0x1753ead8 is 280 bytes inside a block of size 5,336 alloc'd
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x4EA4E64: synctask_create (syncop.c:463)
==49943==    by 0x4EA527F: synctask_new1 (syncop.c:571)
==49943==    by 0x143AE0D7: mq_synctask1 (marker-quota.c:1078)
==49943==    by 0x143AE199: mq_synctask (marker-quota.c:1097)
==49943==    by 0x143AE6F6: _mq_create_xattrs_txn (marker-quota.c:1236)
==49943==    by 0x143AE82D: mq_create_xattrs_txn (marker-quota.c:1253)
==49943==    by 0x143B0DCB: mq_inspect_directory_xattr (marker-quota.c:2027)
==49943==    by 0x143B13A8: mq_xattr_state (marker-quota.c:2117)
==49943==    by 0x143A6E80: marker_lookup_cbk (marker.c:2961)
==49943==    by 0x141811E0: up_lookup_cbk (upcall.c:753)
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x66F5C03: swapcontext (in /usr/lib64/libc-2.17.so)
==49943==  Address 0x1753eaf8 is 312 bytes inside a block of size 5,336 alloc'd
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x4EA4E64: synctask_create (syncop.c:463)
==49943==    by 0x4EA527F: synctask_new1 (syncop.c:571)
==49943==    by 0x143AE0D7: mq_synctask1 (marker-quota.c:1078)
==49943==    by 0x143AE199: mq_synctask (marker-quota.c:1097)
==49943==    by 0x143AE6F6: _mq_create_xattrs_txn (marker-quota.c:1236)
==49943==    by 0x143AE82D: mq_create_xattrs_txn (marker-quota.c:1253)
==49943==    by 0x143B0DCB: mq_inspect_directory_xattr (marker-quota.c:2027)
==49943==    by 0x143B13A8: mq_xattr_state (marker-quota.c:2117)
==49943==    by 0x143A6E80: marker_lookup_cbk (marker.c:2961)
==49943==    by 0x141811E0: up_lookup_cbk (upcall.c:753)
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x66F5C0A: swapcontext (in /usr/lib64/libc-2.17.so)
==49943==  Address 0x1753eb08 is 328 bytes inside a block of size 5,336 alloc'd
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x4EA4E64: synctask_create (syncop.c:463)
==49943==    by 0x4EA527F: synctask_new1 (syncop.c:571)
==49943==    by 0x143AE0D7: mq_synctask1 (marker-quota.c:1078)
==49943==    by 0x143AE199: mq_synctask (marker-quota.c:1097)
==49943==    by 0x143AE6F6: _mq_create_xattrs_txn (marker-quota.c:1236)
==49943==    by 0x143AE82D: mq_create_xattrs_txn (marker-quota.c:1253)
==49943==    by 0x143B0DCB: mq_inspect_directory_xattr (marker-quota.c:2027)
==49943==    by 0x143B13A8: mq_xattr_state (marker-quota.c:2117)
==49943==    by 0x143A6E80: marker_lookup_cbk (marker.c:2961)
==49943==    by 0x141811E0: up_lookup_cbk (upcall.c:753)
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x66F5C11: swapcontext (in /usr/lib64/libc-2.17.so)
==49943==  Address 0x1753ea98 is 216 bytes inside a block of size 5,336 alloc'd
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x4EA4E64: synctask_create (syncop.c:463)
==49943==    by 0x4EA527F: synctask_new1 (syncop.c:571)
==49943==    by 0x143AE0D7: mq_synctask1 (marker-quota.c:1078)
==49943==    by 0x143AE199: mq_synctask (marker-quota.c:1097)
==49943==    by 0x143AE6F6: _mq_create_xattrs_txn (marker-quota.c:1236)
==49943==    by 0x143AE82D: mq_create_xattrs_txn (marker-quota.c:1253)
==49943==    by 0x143B0DCB: mq_inspect_directory_xattr (marker-quota.c:2027)
==49943==    by 0x143B13A8: mq_xattr_state (marker-quota.c:2117)
==49943==    by 0x143A6E80: marker_lookup_cbk (marker.c:2961)
==49943==    by 0x141811E0: up_lookup_cbk (upcall.c:753)
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x66F5C15: swapcontext (in /usr/lib64/libc-2.17.so)
==49943==  Address 0x1753eaa0 is 224 bytes inside a block of size 5,336 alloc'd
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x4EA4E64: synctask_create (syncop.c:463)
==49943==    by 0x4EA527F: synctask_new1 (syncop.c:571)
==49943==    by 0x143AE0D7: mq_synctask1 (marker-quota.c:1078)
==49943==    by 0x143AE199: mq_synctask (marker-quota.c:1097)
==49943==    by 0x143AE6F6: _mq_create_xattrs_txn (marker-quota.c:1236)
==49943==    by 0x143AE82D: mq_create_xattrs_txn (marker-quota.c:1253)
==49943==    by 0x143B0DCB: mq_inspect_directory_xattr (marker-quota.c:2027)
==49943==    by 0x143B13A8: mq_xattr_state (marker-quota.c:2117)
==49943==    by 0x143A6E80: marker_lookup_cbk (marker.c:2961)
==49943==    by 0x141811E0: up_lookup_cbk (upcall.c:753)
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x66F5C19: swapcontext (in /usr/lib64/libc-2.17.so)
==49943==  Address 0x1753eae0 is 288 bytes inside a block of size 5,336 alloc'd
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x4EA4E64: synctask_create (syncop.c:463)
==49943==    by 0x4EA527F: synctask_new1 (syncop.c:571)
==49943==    by 0x143AE0D7: mq_synctask1 (marker-quota.c:1078)
==49943==    by 0x143AE199: mq_synctask (marker-quota.c:1097)
==49943==    by 0x143AE6F6: _mq_create_xattrs_txn (marker-quota.c:1236)
==49943==    by 0x143AE82D: mq_create_xattrs_txn (marker-quota.c:1253)
==49943==    by 0x143B0DCB: mq_inspect_directory_xattr (marker-quota.c:2027)
==49943==    by 0x143B13A8: mq_xattr_state (marker-quota.c:2117)
==49943==    by 0x143A6E80: marker_lookup_cbk (marker.c:2961)
==49943==    by 0x141811E0: up_lookup_cbk (upcall.c:753)
==49943== 
==49943== Invalid read of size 4
==49943==    at 0x400E55F: _dl_fixup (in /usr/lib64/ld-2.17.so)
==49943==  Address 0xf69d718 is in a rw- anonymous segment
==49943== 
==49943== Invalid write of size 4
==49943==    at 0x400E686: _dl_fixup (in /usr/lib64/ld-2.17.so)
==49943==  Address 0xf69d71c is in a rw- anonymous segment
==49943== 
==49943== Invalid read of size 4
==49943==    at 0x400E575: _dl_fixup (in /usr/lib64/ld-2.17.so)
==49943==  Address 0xf69d74c is in a rw- anonymous segment
==49943== 
==49943== Invalid write of size 4
==49943==    at 0x400E57E: _dl_fixup (in /usr/lib64/ld-2.17.so)
==49943==  Address 0xf69d74c is in a rw- anonymous segment
==49943== 
==49943== Invalid read of size 4
==49943==    at 0x400E5B9: _dl_fixup (in /usr/lib64/ld-2.17.so)
==49943==  Address 0xf69d718 is in a rw- anonymous segment
==49943== 
==49943== Invalid read of size 4
==49943==    at 0x400E654: _dl_fixup (in /usr/lib64/ld-2.17.so)
==49943==  Address 0xf69d71c is in a rw- anonymous segment
==49943== 
==49943== Invalid read of size 4
==49943==    at 0x400E5C9: _dl_fixup (in /usr/lib64/ld-2.17.so)
==49943==  Address 0xf69d74c is in a rw- anonymous segment
==49943== 
==49943== Invalid write of size 4
==49943==    at 0x400E5D5: _dl_fixup (in /usr/lib64/ld-2.17.so)
==49943==  Address 0xf69d74c is in a rw- anonymous segment
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x60B751F: pthread_getspecific (in /usr/lib64/libpthread-2.17.so)
==49943==  Address 0xf69d710 is in a rw- anonymous segment
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x60B752D: pthread_getspecific (in /usr/lib64/libpthread-2.17.so)
==49943==  Address 0xf69da58 is in a rw- anonymous segment
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x60B7547: pthread_getspecific (in /usr/lib64/libpthread-2.17.so)
==49943==  Address 0xf69da50 is in a rw- anonymous segment
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x4EA4B3D: synctask_wrap (syncop.c:375)
==49943==  Address 0x1753ea38 is 120 bytes inside a block of size 5,336 alloc'd
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x4EA4E64: synctask_create (syncop.c:463)
==49943==    by 0x4EA527F: synctask_new1 (syncop.c:571)
==49943==    by 0x143AE0D7: mq_synctask1 (marker-quota.c:1078)
==49943==    by 0x143AE199: mq_synctask (marker-quota.c:1097)
==49943==    by 0x143AE6F6: _mq_create_xattrs_txn (marker-quota.c:1236)
==49943==    by 0x143AE82D: mq_create_xattrs_txn (marker-quota.c:1253)
==49943==    by 0x143B0DCB: mq_inspect_directory_xattr (marker-quota.c:2027)
==49943==    by 0x143B13A8: mq_xattr_state (marker-quota.c:2117)
==49943==    by 0x143A6E80: marker_lookup_cbk (marker.c:2961)
==49943==    by 0x141811E0: up_lookup_cbk (upcall.c:753)
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x4EA4B45: synctask_wrap (syncop.c:375)
==49943==  Address 0x1753ea48 is 136 bytes inside a block of size 5,336 alloc'd
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x4EA4E64: synctask_create (syncop.c:463)
==49943==    by 0x4EA527F: synctask_new1 (syncop.c:571)
==49943==    by 0x143AE0D7: mq_synctask1 (marker-quota.c:1078)
==49943==    by 0x143AE199: mq_synctask (marker-quota.c:1097)
==49943==    by 0x143AE6F6: _mq_create_xattrs_txn (marker-quota.c:1236)
==49943==    by 0x143AE82D: mq_create_xattrs_txn (marker-quota.c:1253)
==49943==    by 0x143B0DCB: mq_inspect_directory_xattr (marker-quota.c:2027)
==49943==    by 0x143B13A8: mq_xattr_state (marker-quota.c:2117)
==49943==    by 0x143A6E80: marker_lookup_cbk (marker.c:2961)
==49943==    by 0x141811E0: up_lookup_cbk (upcall.c:753)
==49943== 
==49943== Jump to the invalid address stated on the next line
==49943==    at 0x143AE369: mq_create_xattrs_task (marker-quota.c:1144)
==49943==  Address 0x143ae369 is in the Text segment of /usr/local/lib/glusterfs/3.8.12/xlator/features/marker.so
==49943==    at 0x143AE369: mq_create_xattrs_task (marker-quota.c:1144)
==49943== 
==49943== Jump to the invalid address stated on the next line
==49943==    at 0x143AE3E5: mq_create_xattrs_task (marker-quota.c:1158)
==49943==  Address 0x143ae3e5 is in the Text segment of /usr/local/lib/glusterfs/3.8.12/xlator/features/marker.so
==49943==    at 0x143AE3E5: mq_create_xattrs_task (marker-quota.c:1158)
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x143AE3FD: mq_create_xattrs_task (marker-quota.c:1160)
==49943==  Address 0x1753e900 is 64 bytes inside a block of size 184 alloc'd
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x143ADF8B: mq_synctask1 (marker-quota.c:1057)
==49943==    by 0x143AE199: mq_synctask (marker-quota.c:1097)
==49943==    by 0x143AE6F6: _mq_create_xattrs_txn (marker-quota.c:1236)
==49943==    by 0x143AE82D: mq_create_xattrs_txn (marker-quota.c:1253)
==49943==    by 0x143B0DCB: mq_inspect_directory_xattr (marker-quota.c:2027)
==49943==    by 0x143B13A8: mq_xattr_state (marker-quota.c:2117)
==49943==    by 0x143A6E80: marker_lookup_cbk (marker.c:2961)
==49943==    by 0x141811E0: up_lookup_cbk (upcall.c:753)
==49943==    by 0x13930D5A: pl_lookup_cbk (posix.c:2648)
==49943==    by 0x13708E35: posix_acl_lookup_cbk (posix-acl.c:919)
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x14392CF0: ??? (in /usr/local/lib/glusterfs/3.8.12/xlator/features/marker.so)
==49943==  Address 0x145b92e8 is in the GOTPLT segment of /usr/local/lib/glusterfs/3.8.12/xlator/features/marker.so
==49943== 
==49943== Jump to the invalid address stated on the next line
==49943==    at 0x143AE40E: mq_create_xattrs_task (marker-quota.c:1161)
==49943==  Address 0x143ae40e is in the Text segment of /usr/local/lib/glusterfs/3.8.12/xlator/features/marker.so
==49943==    at 0x143AE40E: mq_create_xattrs_task (marker-quota.c:1161)
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x143AE419: mq_create_xattrs_task (marker-quota.c:1163)
==49943==  Address 0x1753e918 is 88 bytes inside a block of size 184 alloc'd
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x143ADF8B: mq_synctask1 (marker-quota.c:1057)
==49943==    by 0x143AE199: mq_synctask (marker-quota.c:1097)
==49943==    by 0x143AE6F6: _mq_create_xattrs_txn (marker-quota.c:1236)
==49943==    by 0x143AE82D: mq_create_xattrs_txn (marker-quota.c:1253)
==49943==    by 0x143B0DCB: mq_inspect_directory_xattr (marker-quota.c:2027)
==49943==    by 0x143B13A8: mq_xattr_state (marker-quota.c:2117)
==49943==    by 0x143A6E80: marker_lookup_cbk (marker.c:2961)
==49943==    by 0x141811E0: up_lookup_cbk (upcall.c:753)
==49943==    by 0x13930D5A: pl_lookup_cbk (posix.c:2648)
==49943==    by 0x13708E35: posix_acl_lookup_cbk (posix-acl.c:919)
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x14392E00: ??? (in /usr/local/lib/glusterfs/3.8.12/xlator/features/marker.so)
==49943==  Address 0x145b9370 is in the GOTPLT segment of /usr/local/lib/glusterfs/3.8.12/xlator/features/marker.so
==49943== 
==49943== Invalid read of size 4
==49943==    at 0x60B7210: pthread_spin_lock (in /usr/lib64/libpthread-2.17.so)
==49943==  Address 0x17536b84 is 116 bytes inside a block of size 260 alloc'd
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x4E908B0: mem_get (mem-pool.c:513)
==49943==    by 0x4E906CE: mem_get0 (mem-pool.c:446)
==49943==    by 0x4E6FE09: __inode_create (inode.c:600)
==49943==    by 0x4E7004E: inode_new (inode.c:647)
==49943==    by 0x1506A05F: server_inode_new (server-helpers.c:1314)
==49943==    by 0x15063F03: resolve_gfid (server-resolve.c:208)
==49943==    by 0x1506484F: server_resolve_inode (server-resolve.c:421)
==49943==    by 0x15064CD4: server_resolve (server-resolve.c:562)
==49943==    by 0x15064E6B: server_resolve_all (server-resolve.c:614)
==49943==    by 0x15064F80: resolve_and_resume (server-resolve.c:645)
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x4E72ED7: __inode_ctx_get2 (inode.c:2046)
==49943==  Address 0x17536c04 is 244 bytes inside a block of size 260 alloc'd
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x4E908B0: mem_get (mem-pool.c:513)
==49943==    by 0x4E906CE: mem_get0 (mem-pool.c:446)
==49943==    by 0x4E6FE09: __inode_create (inode.c:600)
==49943==    by 0x4E7004E: inode_new (inode.c:647)
==49943==    by 0x1506A05F: server_inode_new (server-helpers.c:1314)
==49943==    by 0x15063F03: resolve_gfid (server-resolve.c:208)
==49943==    by 0x1506484F: server_resolve_inode (server-resolve.c:421)
==49943==    by 0x15064CD4: server_resolve (server-resolve.c:562)
==49943==    by 0x15064E6B: server_resolve_all (server-resolve.c:614)
==49943==    by 0x15064F80: resolve_and_resume (server-resolve.c:645)
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x4E72F24: __inode_ctx_get2 (inode.c:2049)
==49943==  Address 0x17536b6c is 92 bytes inside a block of size 260 alloc'd
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x4E908B0: mem_get (mem-pool.c:513)
==49943==    by 0x4E906CE: mem_get0 (mem-pool.c:446)
==49943==    by 0x4E6FE09: __inode_create (inode.c:600)
==49943==    by 0x4E7004E: inode_new (inode.c:647)
==49943==    by 0x1506A05F: server_inode_new (server-helpers.c:1314)
==49943==    by 0x15063F03: resolve_gfid (server-resolve.c:208)
==49943==    by 0x1506484F: server_resolve_inode (server-resolve.c:421)
==49943==    by 0x15064CD4: server_resolve (server-resolve.c:562)
==49943==    by 0x15064E6B: server_resolve_all (server-resolve.c:614)
==49943==    by 0x15064F80: resolve_and_resume (server-resolve.c:645)
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x4E72EF4: __inode_ctx_get2 (inode.c:2050)
==49943==  Address 0x17536c04 is 244 bytes inside a block of size 260 alloc'd
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x4E908B0: mem_get (mem-pool.c:513)
==49943==    by 0x4E906CE: mem_get0 (mem-pool.c:446)
==49943==    by 0x4E6FE09: __inode_create (inode.c:600)
==49943==    by 0x4E7004E: inode_new (inode.c:647)
==49943==    by 0x1506A05F: server_inode_new (server-helpers.c:1314)
==49943==    by 0x15063F03: resolve_gfid (server-resolve.c:208)
==49943==    by 0x1506484F: server_resolve_inode (server-resolve.c:421)
==49943==    by 0x15064CD4: server_resolve (server-resolve.c:562)
==49943==    by 0x15064E6B: server_resolve_all (server-resolve.c:614)
==49943==    by 0x15064F80: resolve_and_resume (server-resolve.c:645)
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x4E72F11: __inode_ctx_get2 (inode.c:2050)
==49943==  Address 0x1af04560 is 64 bytes inside a block of size 528 alloc'd
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x4E6FF22: __inode_create (inode.c:614)
==49943==    by 0x4E7004E: inode_new (inode.c:647)
==49943==    by 0x1506A05F: server_inode_new (server-helpers.c:1314)
==49943==    by 0x15063F03: resolve_gfid (server-resolve.c:208)
==49943==    by 0x1506484F: server_resolve_inode (server-resolve.c:421)
==49943==    by 0x15064CD4: server_resolve (server-resolve.c:562)
==49943==    by 0x15064E6B: server_resolve_all (server-resolve.c:614)
==49943==    by 0x15064F80: resolve_and_resume (server-resolve.c:645)
==49943==    by 0x15093491: server3_3_lookup (server-rpc-fops.c:6513)
==49943==    by 0x514731B: rpcsvc_handle_rpc_call (rpcsvc.c:701)
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x4E72F36: __inode_ctx_get2 (inode.c:2054)
==49943==  Address 0x17536b6c is 92 bytes inside a block of size 260 alloc'd
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x4E908B0: mem_get (mem-pool.c:513)
==49943==    by 0x4E906CE: mem_get0 (mem-pool.c:446)
==49943==    by 0x4E6FE09: __inode_create (inode.c:600)
==49943==    by 0x4E7004E: inode_new (inode.c:647)
==49943==    by 0x1506A05F: server_inode_new (server-helpers.c:1314)
==49943==    by 0x15063F03: resolve_gfid (server-resolve.c:208)
==49943==    by 0x1506484F: server_resolve_inode (server-resolve.c:421)
==49943==    by 0x15064CD4: server_resolve (server-resolve.c:562)
==49943==    by 0x15064E6B: server_resolve_all (server-resolve.c:614)
==49943==    by 0x15064F80: resolve_and_resume (server-resolve.c:645)
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x4E72F4D: __inode_ctx_get2 (inode.c:2057)
==49943==  Address 0x17536c04 is 244 bytes inside a block of size 260 alloc'd
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x4E908B0: mem_get (mem-pool.c:513)
==49943==    by 0x4E906CE: mem_get0 (mem-pool.c:446)
==49943==    by 0x4E6FE09: __inode_create (inode.c:600)
==49943==    by 0x4E7004E: inode_new (inode.c:647)
==49943==    by 0x1506A05F: server_inode_new (server-helpers.c:1314)
==49943==    by 0x15063F03: resolve_gfid (server-resolve.c:208)
==49943==    by 0x1506484F: server_resolve_inode (server-resolve.c:421)
==49943==    by 0x15064CD4: server_resolve (server-resolve.c:562)
==49943==    by 0x15064E6B: server_resolve_all (server-resolve.c:614)
==49943==    by 0x15064F80: resolve_and_resume (server-resolve.c:645)
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x4E72F6A: __inode_ctx_get2 (inode.c:2057)
==49943==  Address 0x1af04598 is 120 bytes inside a block of size 528 alloc'd
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x4E6FF22: __inode_create (inode.c:614)
==49943==    by 0x4E7004E: inode_new (inode.c:647)
==49943==    by 0x1506A05F: server_inode_new (server-helpers.c:1314)
==49943==    by 0x15063F03: resolve_gfid (server-resolve.c:208)
==49943==    by 0x1506484F: server_resolve_inode (server-resolve.c:421)
==49943==    by 0x15064CD4: server_resolve (server-resolve.c:562)
==49943==    by 0x15064E6B: server_resolve_all (server-resolve.c:614)
==49943==    by 0x15064F80: resolve_and_resume (server-resolve.c:645)
==49943==    by 0x15093491: server3_3_lookup (server-rpc-fops.c:6513)
==49943==    by 0x514731B: rpcsvc_handle_rpc_call (rpcsvc.c:701)
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x4E72F7E: __inode_ctx_get2 (inode.c:2059)
==49943==  Address 0x17536c04 is 244 bytes inside a block of size 260 alloc'd
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x4E908B0: mem_get (mem-pool.c:513)
==49943==    by 0x4E906CE: mem_get0 (mem-pool.c:446)
==49943==    by 0x4E6FE09: __inode_create (inode.c:600)
==49943==    by 0x4E7004E: inode_new (inode.c:647)
==49943==    by 0x1506A05F: server_inode_new (server-helpers.c:1314)
==49943==    by 0x15063F03: resolve_gfid (server-resolve.c:208)
==49943==    by 0x1506484F: server_resolve_inode (server-resolve.c:421)
==49943==    by 0x15064CD4: server_resolve (server-resolve.c:562)
==49943==    by 0x15064E6B: server_resolve_all (server-resolve.c:614)
==49943==    by 0x15064F80: resolve_and_resume (server-resolve.c:645)
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x4E72F9B: __inode_ctx_get2 (inode.c:2059)
==49943==  Address 0x1af04598 is 120 bytes inside a block of size 528 alloc'd
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x4E6FF22: __inode_create (inode.c:614)
==49943==    by 0x4E7004E: inode_new (inode.c:647)
==49943==    by 0x1506A05F: server_inode_new (server-helpers.c:1314)
==49943==    by 0x15063F03: resolve_gfid (server-resolve.c:208)
==49943==    by 0x1506484F: server_resolve_inode (server-resolve.c:421)
==49943==    by 0x15064CD4: server_resolve (server-resolve.c:562)
==49943==    by 0x15064E6B: server_resolve_all (server-resolve.c:614)
==49943==    by 0x15064F80: resolve_and_resume (server-resolve.c:645)
==49943==    by 0x15093491: server3_3_lookup (server-rpc-fops.c:6513)
==49943==    by 0x514731B: rpcsvc_handle_rpc_call (rpcsvc.c:701)
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x4E72FB1: __inode_ctx_get2 (inode.c:2063)
==49943==  Address 0x17536c04 is 244 bytes inside a block of size 260 alloc'd
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x4E908B0: mem_get (mem-pool.c:513)
==49943==    by 0x4E906CE: mem_get0 (mem-pool.c:446)
==49943==    by 0x4E6FE09: __inode_create (inode.c:600)
==49943==    by 0x4E7004E: inode_new (inode.c:647)
==49943==    by 0x1506A05F: server_inode_new (server-helpers.c:1314)
==49943==    by 0x15063F03: resolve_gfid (server-resolve.c:208)
==49943==    by 0x1506484F: server_resolve_inode (server-resolve.c:421)
==49943==    by 0x15064CD4: server_resolve (server-resolve.c:562)
==49943==    by 0x15064E6B: server_resolve_all (server-resolve.c:614)
==49943==    by 0x15064F80: resolve_and_resume (server-resolve.c:645)
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x4E72FCE: __inode_ctx_get2 (inode.c:2063)
==49943==  Address 0x1af045a0 is 128 bytes inside a block of size 528 alloc'd
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x4E6FF22: __inode_create (inode.c:614)
==49943==    by 0x4E7004E: inode_new (inode.c:647)
==49943==    by 0x1506A05F: server_inode_new (server-helpers.c:1314)
==49943==    by 0x15063F03: resolve_gfid (server-resolve.c:208)
==49943==    by 0x1506484F: server_resolve_inode (server-resolve.c:421)
==49943==    by 0x15064CD4: server_resolve (server-resolve.c:562)
==49943==    by 0x15064E6B: server_resolve_all (server-resolve.c:614)
==49943==    by 0x15064F80: resolve_and_resume (server-resolve.c:645)
==49943==    by 0x15093491: server3_3_lookup (server-rpc-fops.c:6513)
==49943==    by 0x514731B: rpcsvc_handle_rpc_call (rpcsvc.c:701)
==49943== 
==49943== Invalid write of size 4
==49943==    at 0x60B7250: pthread_spin_init (in /usr/lib64/libpthread-2.17.so)
==49943==  Address 0x17536b84 is 116 bytes inside a block of size 260 alloc'd
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x4E908B0: mem_get (mem-pool.c:513)
==49943==    by 0x4E906CE: mem_get0 (mem-pool.c:446)
==49943==    by 0x4E6FE09: __inode_create (inode.c:600)
==49943==    by 0x4E7004E: inode_new (inode.c:647)
==49943==    by 0x1506A05F: server_inode_new (server-helpers.c:1314)
==49943==    by 0x15063F03: resolve_gfid (server-resolve.c:208)
==49943==    by 0x1506484F: server_resolve_inode (server-resolve.c:421)
==49943==    by 0x15064CD4: server_resolve (server-resolve.c:562)
==49943==    by 0x15064E6B: server_resolve_all (server-resolve.c:614)
==49943==    by 0x15064F80: resolve_and_resume (server-resolve.c:645)
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x143B2C6E: mq_inode_ctx_get (marker-quota-helper.c:332)
==49943==  Address 0x1af07b70 is 64 bytes inside a block of size 80 alloc'd
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x143B324D: marker_inode_ctx_new (marker-common.c:18)
==49943==    by 0x143B32F7: marker_force_inode_ctx_get (marker-common.c:41)
==49943==    by 0x143B2CD6: __mq_inode_ctx_new (marker-quota-helper.c:353)
==49943==    by 0x143B2DE8: mq_inode_ctx_new (marker-quota-helper.c:385)
==49943==    by 0x143A6A6C: marker_lookup_cbk (marker.c:2935)
==49943==    by 0x141811E0: up_lookup_cbk (upcall.c:753)
==49943==    by 0x13930D5A: pl_lookup_cbk (posix.c:2648)
==49943==    by 0x13708E35: posix_acl_lookup_cbk (posix-acl.c:919)
==49943==    by 0x134FD448: br_stub_lookup_cbk (bit-rot-stub.c:2709)
==49943==    by 0x12BDC56C: ctr_lookup_cbk (changetimerecorder.c:306)
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x143B2C83: mq_inode_ctx_get (marker-quota-helper.c:337)
==49943==  Address 0x1af07b70 is 64 bytes inside a block of size 80 alloc'd
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x143B324D: marker_inode_ctx_new (marker-common.c:18)
==49943==    by 0x143B32F7: marker_force_inode_ctx_get (marker-common.c:41)
==49943==    by 0x143B2CD6: __mq_inode_ctx_new (marker-quota-helper.c:353)
==49943==    by 0x143B2DE8: mq_inode_ctx_new (marker-quota-helper.c:385)
==49943==    by 0x143A6A6C: marker_lookup_cbk (marker.c:2935)
==49943==    by 0x141811E0: up_lookup_cbk (upcall.c:753)
==49943==    by 0x13930D5A: pl_lookup_cbk (posix.c:2648)
==49943==    by 0x13708E35: posix_acl_lookup_cbk (posix-acl.c:919)
==49943==    by 0x134FD448: br_stub_lookup_cbk (bit-rot-stub.c:2709)
==49943==    by 0x12BDC56C: ctr_lookup_cbk (changetimerecorder.c:306)
==49943== 
==49943== Jump to the invalid address stated on the next line
==49943==    at 0x143AE430: mq_create_xattrs_task (marker-quota.c:1163)
==49943==  Address 0x143ae430 is in the Text segment of /usr/local/lib/glusterfs/3.8.12/xlator/features/marker.so
==49943==    at 0x143AE430: mq_create_xattrs_task (marker-quota.c:1163)
==49943== 
==49943== Jump to the invalid address stated on the next line
==49943==    at 0x143AE472: mq_create_xattrs_task (marker-quota.c:1170)
==49943==  Address 0x143ae472 is in the Text segment of /usr/local/lib/glusterfs/3.8.12/xlator/features/marker.so
==49943==    at 0x143AE472: mq_create_xattrs_task (marker-quota.c:1170)
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x143AE476: mq_create_xattrs_task (marker-quota.c:1170)
==49943==  Address 0x1753e918 is 88 bytes inside a block of size 184 alloc'd
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x143ADF8B: mq_synctask1 (marker-quota.c:1057)
==49943==    by 0x143AE199: mq_synctask (marker-quota.c:1097)
==49943==    by 0x143AE6F6: _mq_create_xattrs_txn (marker-quota.c:1236)
==49943==    by 0x143AE82D: mq_create_xattrs_txn (marker-quota.c:1253)
==49943==    by 0x143B0DCB: mq_inspect_directory_xattr (marker-quota.c:2027)
==49943==    by 0x143B13A8: mq_xattr_state (marker-quota.c:2117)
==49943==    by 0x143A6E80: marker_lookup_cbk (marker.c:2961)
==49943==    by 0x141811E0: up_lookup_cbk (upcall.c:753)
==49943==    by 0x13930D5A: pl_lookup_cbk (posix.c:2648)
==49943==    by 0x13708E35: posix_acl_lookup_cbk (posix-acl.c:919)
==49943== 
==49943== Invalid read of size 4
==49943==    at 0x143AE47A: mq_create_xattrs_task (marker-quota.c:1170)
==49943==  Address 0x17536bbc is 172 bytes inside a block of size 260 alloc'd
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x4E908B0: mem_get (mem-pool.c:513)
==49943==    by 0x4E906CE: mem_get0 (mem-pool.c:446)
==49943==    by 0x4E6FE09: __inode_create (inode.c:600)
==49943==    by 0x4E7004E: inode_new (inode.c:647)
==49943==    by 0x1506A05F: server_inode_new (server-helpers.c:1314)
==49943==    by 0x15063F03: resolve_gfid (server-resolve.c:208)
==49943==    by 0x1506484F: server_resolve_inode (server-resolve.c:421)
==49943==    by 0x15064CD4: server_resolve (server-resolve.c:562)
==49943==    by 0x15064E6B: server_resolve_all (server-resolve.c:614)
==49943==    by 0x15064F80: resolve_and_resume (server-resolve.c:645)
==49943== 
==49943== Jump to the invalid address stated on the next line
==49943==    at 0x143AE482: mq_create_xattrs_task (marker-quota.c:1172)
==49943==  Address 0x143ae482 is in the Text segment of /usr/local/lib/glusterfs/3.8.12/xlator/features/marker.so
==49943==    at 0x143AE482: mq_create_xattrs_task (marker-quota.c:1172)
==49943== 
==49943== Jump to the invalid address stated on the next line
==49943==    at 0x143AB95C: mq_lock (marker-quota.c:481)
==49943==  Address 0x143ab95c is in the Text segment of /usr/local/lib/glusterfs/3.8.12/xlator/features/marker.so
==49943==    at 0x143AB95C: mq_lock (marker-quota.c:481)
==49943== 
==49943== Jump to the invalid address stated on the next line
==49943==    at 0x143AB95F: mq_lock (marker-quota.c:482)
==49943==  Address 0x143ab95f is in the Text segment of /usr/local/lib/glusterfs/3.8.12/xlator/features/marker.so
==49943==    at 0x143AB95F: mq_lock (marker-quota.c:482)
==49943== 
==49943== Jump to the invalid address stated on the next line
==49943==    at 0x143AB9D0: mq_lock (marker-quota.c:485)
==49943==  Address 0x143ab9d0 is in the Text segment of /usr/local/lib/glusterfs/3.8.12/xlator/features/marker.so
==49943==    at 0x143AB9D0: mq_lock (marker-quota.c:485)
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x143AB9D7: mq_lock (marker-quota.c:485)
==49943==  Address 0x1753e918 is 88 bytes inside a block of size 184 alloc'd
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x143ADF8B: mq_synctask1 (marker-quota.c:1057)
==49943==    by 0x143AE199: mq_synctask (marker-quota.c:1097)
==49943==    by 0x143AE6F6: _mq_create_xattrs_txn (marker-quota.c:1236)
==49943==    by 0x143AE82D: mq_create_xattrs_txn (marker-quota.c:1253)
==49943==    by 0x143B0DCB: mq_inspect_directory_xattr (marker-quota.c:2027)
==49943==    by 0x143B13A8: mq_xattr_state (marker-quota.c:2117)
==49943==    by 0x143A6E80: marker_lookup_cbk (marker.c:2961)
==49943==    by 0x141811E0: up_lookup_cbk (upcall.c:753)
==49943==    by 0x13930D5A: pl_lookup_cbk (posix.c:2648)
==49943==    by 0x13708E35: posix_acl_lookup_cbk (posix-acl.c:919)
==49943== 
==49943== Jump to the invalid address stated on the next line
==49943==    at 0x143ABA40: mq_lock (marker-quota.c:487)
==49943==  Address 0x143aba40 is in the Text segment of /usr/local/lib/glusterfs/3.8.12/xlator/features/marker.so
==49943==    at 0x143ABA40: mq_lock (marker-quota.c:487)
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x143ABA47: mq_lock (marker-quota.c:487)
==49943==  Address 0x1753e908 is 72 bytes inside a block of size 184 alloc'd
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x143ADF8B: mq_synctask1 (marker-quota.c:1057)
==49943==    by 0x143AE199: mq_synctask (marker-quota.c:1097)
==49943==    by 0x143AE6F6: _mq_create_xattrs_txn (marker-quota.c:1236)
==49943==    by 0x143AE82D: mq_create_xattrs_txn (marker-quota.c:1253)
==49943==    by 0x143B0DCB: mq_inspect_directory_xattr (marker-quota.c:2027)
==49943==    by 0x143B13A8: mq_xattr_state (marker-quota.c:2117)
==49943==    by 0x143A6E80: marker_lookup_cbk (marker.c:2961)
==49943==    by 0x141811E0: up_lookup_cbk (upcall.c:753)
==49943==    by 0x13930D5A: pl_lookup_cbk (posix.c:2648)
==49943==    by 0x13708E35: posix_acl_lookup_cbk (posix-acl.c:919)
==49943== 
==49943== Jump to the invalid address stated on the next line
==49943==    at 0x14392B90: ??? (in /usr/local/lib/glusterfs/3.8.12/xlator/features/marker.so)
==49943==  Address 0x14392b90 is in the PLT segment of /usr/local/lib/glusterfs/3.8.12/xlator/features/marker.so
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x14392B90: ??? (in /usr/local/lib/glusterfs/3.8.12/xlator/features/marker.so)
==49943==  Address 0x145b9238 is in the GOTPLT segment of /usr/local/lib/glusterfs/3.8.12/xlator/features/marker.so
==49943== 
==49943== Jump to the invalid address stated on the next line
==49943==    at 0x143ABA90: mq_lock (marker-quota.c:490)
==49943==  Address 0x143aba90 is in the Text segment of /usr/local/lib/glusterfs/3.8.12/xlator/features/marker.so
==49943==    at 0x143ABA90: mq_lock (marker-quota.c:490)
==49943== 
==49943== Jump to the invalid address stated on the next line
==49943==    at 0x143929E0: ??? (in /usr/local/lib/glusterfs/3.8.12/xlator/features/marker.so)
==49943==  Address 0x143929e0 is in the PLT segment of /usr/local/lib/glusterfs/3.8.12/xlator/features/marker.so
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x143929E0: ??? (in /usr/local/lib/glusterfs/3.8.12/xlator/features/marker.so)
==49943==  Address 0x145b9160 is in the GOTPLT segment of /usr/local/lib/glusterfs/3.8.12/xlator/features/marker.so
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x4EB6DD1: syncop_inodelk (syncop.c:2992)
==49943==  Address 0x1753ea28 is 104 bytes inside a block of size 5,336 alloc'd
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x4EA4E64: synctask_create (syncop.c:463)
==49943==    by 0x4EA527F: synctask_new1 (syncop.c:571)
==49943==    by 0x143AE0D7: mq_synctask1 (marker-quota.c:1078)
==49943==    by 0x143AE199: mq_synctask (marker-quota.c:1097)
==49943==    by 0x143AE6F6: _mq_create_xattrs_txn (marker-quota.c:1236)
==49943==    by 0x143AE82D: mq_create_xattrs_txn (marker-quota.c:1253)
==49943==    by 0x143B0DCB: mq_inspect_directory_xattr (marker-quota.c:2027)
==49943==    by 0x143B13A8: mq_xattr_state (marker-quota.c:2117)
==49943==    by 0x143A6E80: marker_lookup_cbk (marker.c:2961)
==49943==    by 0x141811E0: up_lookup_cbk (upcall.c:753)
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x4EB6DFF: syncop_inodelk (syncop.c:2992)
==49943==  Address 0x1753ff3c is 92 bytes inside a block of size 284 alloc'd
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x4E908B0: mem_get (mem-pool.c:513)
==49943==    by 0x4E906CE: mem_get0 (mem-pool.c:446)
==49943==    by 0x4E9926E: create_frame (stack.c:31)
==49943==    by 0x4EA4EAD: synctask_create (syncop.c:469)
==49943==    by 0x4EA527F: synctask_new1 (syncop.c:571)
==49943==    by 0x143AE0D7: mq_synctask1 (marker-quota.c:1078)
==49943==    by 0x143AE199: mq_synctask (marker-quota.c:1097)
==49943==    by 0x143AE6F6: _mq_create_xattrs_txn (marker-quota.c:1236)
==49943==    by 0x143AE82D: mq_create_xattrs_txn (marker-quota.c:1253)
==49943==    by 0x143B0DCB: mq_inspect_directory_xattr (marker-quota.c:2027)
==49943== 
==49943== Invalid read of size 4
==49943==    at 0x4EB6E06: syncop_inodelk (syncop.c:2992)
==49943==  Address 0x1753ea64 is 164 bytes inside a block of size 5,336 alloc'd
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x4EA4E64: synctask_create (syncop.c:463)
==49943==    by 0x4EA527F: synctask_new1 (syncop.c:571)
==49943==    by 0x143AE0D7: mq_synctask1 (marker-quota.c:1078)
==49943==    by 0x143AE199: mq_synctask (marker-quota.c:1097)
==49943==    by 0x143AE6F6: _mq_create_xattrs_txn (marker-quota.c:1236)
==49943==    by 0x143AE82D: mq_create_xattrs_txn (marker-quota.c:1253)
==49943==    by 0x143B0DCB: mq_inspect_directory_xattr (marker-quota.c:2027)
==49943==    by 0x143B13A8: mq_xattr_state (marker-quota.c:2117)
==49943==    by 0x143A6E80: marker_lookup_cbk (marker.c:2961)
==49943==    by 0x141811E0: up_lookup_cbk (upcall.c:753)
==49943== 
==49943== Invalid write of size 4
==49943==    at 0x4EB6E09: syncop_inodelk (syncop.c:2992)
==49943==  Address 0x1af0c994 is 180 bytes inside a block of size 1,924 alloc'd
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x4E908B0: mem_get (mem-pool.c:513)
==49943==    by 0x4E906CE: mem_get0 (mem-pool.c:446)
==49943==    by 0x4E9921D: create_frame (stack.c:25)
==49943==    by 0x4EA4EAD: synctask_create (syncop.c:469)
==49943==    by 0x4EA527F: synctask_new1 (syncop.c:571)
==49943==    by 0x143AE0D7: mq_synctask1 (marker-quota.c:1078)
==49943==    by 0x143AE199: mq_synctask (marker-quota.c:1097)
==49943==    by 0x143AE6F6: _mq_create_xattrs_txn (marker-quota.c:1236)
==49943==    by 0x143AE82D: mq_create_xattrs_txn (marker-quota.c:1253)
==49943==    by 0x143B0DCB: mq_inspect_directory_xattr (marker-quota.c:2027)
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x4EB6E10: syncop_inodelk (syncop.c:2992)
==49943==  Address 0x1753ff3c is 92 bytes inside a block of size 284 alloc'd
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x4E908B0: mem_get (mem-pool.c:513)
==49943==    by 0x4E906CE: mem_get0 (mem-pool.c:446)
==49943==    by 0x4E9926E: create_frame (stack.c:31)
==49943==    by 0x4EA4EAD: synctask_create (syncop.c:469)
==49943==    by 0x4EA527F: synctask_new1 (syncop.c:571)
==49943==    by 0x143AE0D7: mq_synctask1 (marker-quota.c:1078)
==49943==    by 0x143AE199: mq_synctask (marker-quota.c:1097)
==49943==    by 0x143AE6F6: _mq_create_xattrs_txn (marker-quota.c:1236)
==49943==    by 0x143AE82D: mq_create_xattrs_txn (marker-quota.c:1253)
==49943==    by 0x143B0DCB: mq_inspect_directory_xattr (marker-quota.c:2027)
==49943== 
==49943== Invalid read of size 4
==49943==    at 0x4EB6E17: syncop_inodelk (syncop.c:2992)
==49943==  Address 0x1753ea68 is 168 bytes inside a block of size 5,336 alloc'd
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x4EA4E64: synctask_create (syncop.c:463)
==49943==    by 0x4EA527F: synctask_new1 (syncop.c:571)
==49943==    by 0x143AE0D7: mq_synctask1 (marker-quota.c:1078)
==49943==    by 0x143AE199: mq_synctask (marker-quota.c:1097)
==49943==    by 0x143AE6F6: _mq_create_xattrs_txn (marker-quota.c:1236)
==49943==    by 0x143AE82D: mq_create_xattrs_txn (marker-quota.c:1253)
==49943==    by 0x143B0DCB: mq_inspect_directory_xattr (marker-quota.c:2027)
==49943==    by 0x143B13A8: mq_xattr_state (marker-quota.c:2117)
==49943==    by 0x143A6E80: marker_lookup_cbk (marker.c:2961)
==49943==    by 0x141811E0: up_lookup_cbk (upcall.c:753)
==49943== 
==49943== Invalid write of size 4
==49943==    at 0x4EB6E1A: syncop_inodelk (syncop.c:2992)
==49943==  Address 0x1af0c998 is 184 bytes inside a block of size 1,924 alloc'd
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x4E908B0: mem_get (mem-pool.c:513)
==49943==    by 0x4E906CE: mem_get0 (mem-pool.c:446)
==49943==    by 0x4E9921D: create_frame (stack.c:25)
==49943==    by 0x4EA4EAD: synctask_create (syncop.c:469)
==49943==    by 0x4EA527F: synctask_new1 (syncop.c:571)
==49943==    by 0x143AE0D7: mq_synctask1 (marker-quota.c:1078)
==49943==    by 0x143AE199: mq_synctask (marker-quota.c:1097)
==49943==    by 0x143AE6F6: _mq_create_xattrs_txn (marker-quota.c:1236)
==49943==    by 0x143AE82D: mq_create_xattrs_txn (marker-quota.c:1253)
==49943==    by 0x143B0DCB: mq_inspect_directory_xattr (marker-quota.c:2027)
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x4EB6E8E: syncop_inodelk (syncop.c:2992)
==49943==  Address 0x1753ff3c is 92 bytes inside a block of size 284 alloc'd
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x4E908B0: mem_get (mem-pool.c:513)
==49943==    by 0x4E906CE: mem_get0 (mem-pool.c:446)
==49943==    by 0x4E9926E: create_frame (stack.c:31)
==49943==    by 0x4EA4EAD: synctask_create (syncop.c:469)
==49943==    by 0x4EA527F: synctask_new1 (syncop.c:571)
==49943==    by 0x143AE0D7: mq_synctask1 (marker-quota.c:1078)
==49943==    by 0x143AE199: mq_synctask (marker-quota.c:1097)
==49943==    by 0x143AE6F6: _mq_create_xattrs_txn (marker-quota.c:1236)
==49943==    by 0x143AE82D: mq_create_xattrs_txn (marker-quota.c:1253)
==49943==    by 0x143B0DCB: mq_inspect_directory_xattr (marker-quota.c:2027)
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x4EB6E91: syncop_inodelk (syncop.c:2992)
==49943==  Address 0x1af0c94c is 108 bytes inside a block of size 1,924 alloc'd
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x4E908B0: mem_get (mem-pool.c:513)
==49943==    by 0x4E906CE: mem_get0 (mem-pool.c:446)
==49943==    by 0x4E9921D: create_frame (stack.c:25)
==49943==    by 0x4EA4EAD: synctask_create (syncop.c:469)
==49943==    by 0x4EA527F: synctask_new1 (syncop.c:571)
==49943==    by 0x143AE0D7: mq_synctask1 (marker-quota.c:1078)
==49943==    by 0x143AE199: mq_synctask (marker-quota.c:1097)
==49943==    by 0x143AE6F6: _mq_create_xattrs_txn (marker-quota.c:1236)
==49943==    by 0x143AE82D: mq_create_xattrs_txn (marker-quota.c:1253)
==49943==    by 0x143B0DCB: mq_inspect_directory_xattr (marker-quota.c:2027)
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x4EB6EC0: syncop_inodelk (syncop.c:2992)
==49943==  Address 0x1753ff3c is 92 bytes inside a block of size 284 alloc'd
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x4E908B0: mem_get (mem-pool.c:513)
==49943==    by 0x4E906CE: mem_get0 (mem-pool.c:446)
==49943==    by 0x4E9926E: create_frame (stack.c:31)
==49943==    by 0x4EA4EAD: synctask_create (syncop.c:469)
==49943==    by 0x4EA527F: synctask_new1 (syncop.c:571)
==49943==    by 0x143AE0D7: mq_synctask1 (marker-quota.c:1078)
==49943==    by 0x143AE199: mq_synctask (marker-quota.c:1097)
==49943==    by 0x143AE6F6: _mq_create_xattrs_txn (marker-quota.c:1236)
==49943==    by 0x143AE82D: mq_create_xattrs_txn (marker-quota.c:1253)
==49943==    by 0x143B0DCB: mq_inspect_directory_xattr (marker-quota.c:2027)
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x4EB6F80: syncop_inodelk (syncop.c:2992)
==49943==  Address 0x1753ff3c is 92 bytes inside a block of size 284 alloc'd
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x4E908B0: mem_get (mem-pool.c:513)
==49943==    by 0x4E906CE: mem_get0 (mem-pool.c:446)
==49943==    by 0x4E9926E: create_frame (stack.c:31)
==49943==    by 0x4EA4EAD: synctask_create (syncop.c:469)
==49943==    by 0x4EA527F: synctask_new1 (syncop.c:571)
==49943==    by 0x143AE0D7: mq_synctask1 (marker-quota.c:1078)
==49943==    by 0x143AE199: mq_synctask (marker-quota.c:1097)
==49943==    by 0x143AE6F6: _mq_create_xattrs_txn (marker-quota.c:1236)
==49943==    by 0x143AE82D: mq_create_xattrs_txn (marker-quota.c:1253)
==49943==    by 0x143B0DCB: mq_inspect_directory_xattr (marker-quota.c:2027)
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x4EB6FA8: syncop_inodelk (syncop.c:2992)
==49943==  Address 0x1753ff3c is 92 bytes inside a block of size 284 alloc'd
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x4E908B0: mem_get (mem-pool.c:513)
==49943==    by 0x4E906CE: mem_get0 (mem-pool.c:446)
==49943==    by 0x4E9926E: create_frame (stack.c:31)
==49943==    by 0x4EA4EAD: synctask_create (syncop.c:469)
==49943==    by 0x4EA527F: synctask_new1 (syncop.c:571)
==49943==    by 0x143AE0D7: mq_synctask1 (marker-quota.c:1078)
==49943==    by 0x143AE199: mq_synctask (marker-quota.c:1097)
==49943==    by 0x143AE6F6: _mq_create_xattrs_txn (marker-quota.c:1236)
==49943==    by 0x143AE82D: mq_create_xattrs_txn (marker-quota.c:1253)
==49943==    by 0x143B0DCB: mq_inspect_directory_xattr (marker-quota.c:2027)
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x4EA3272: list_add (list.h:30)
==49943==  Address 0x1af0d034 is 1,876 bytes inside a block of size 1,924 alloc'd
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x4E908B0: mem_get (mem-pool.c:513)
==49943==    by 0x4E906CE: mem_get0 (mem-pool.c:446)
==49943==    by 0x4E9921D: create_frame (stack.c:25)
==49943==    by 0x4EA4EAD: synctask_create (syncop.c:469)
==49943==    by 0x4EA527F: synctask_new1 (syncop.c:571)
==49943==    by 0x143AE0D7: mq_synctask1 (marker-quota.c:1078)
==49943==    by 0x143AE199: mq_synctask (marker-quota.c:1097)
==49943==    by 0x143AE6F6: _mq_create_xattrs_txn (marker-quota.c:1236)
==49943==    by 0x143AE82D: mq_create_xattrs_txn (marker-quota.c:1253)
==49943==    by 0x143B0DCB: mq_inspect_directory_xattr (marker-quota.c:2027)
==49943== 
==49943== Invalid write of size 8
==49943==    at 0x4EA3288: list_add (list.h:32)
==49943==  Address 0x1af0d034 is 1,876 bytes inside a block of size 1,924 alloc'd
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x4E908B0: mem_get (mem-pool.c:513)
==49943==    by 0x4E906CE: mem_get0 (mem-pool.c:446)
==49943==    by 0x4E9921D: create_frame (stack.c:25)
==49943==    by 0x4EA4EAD: synctask_create (syncop.c:469)
==49943==    by 0x4EA527F: synctask_new1 (syncop.c:571)
==49943==    by 0x143AE0D7: mq_synctask1 (marker-quota.c:1078)
==49943==    by 0x143AE199: mq_synctask (marker-quota.c:1097)
==49943==    by 0x143AE6F6: _mq_create_xattrs_txn (marker-quota.c:1236)
==49943==    by 0x143AE82D: mq_create_xattrs_txn (marker-quota.c:1253)
==49943==    by 0x143B0DCB: mq_inspect_directory_xattr (marker-quota.c:2027)
==49943== 
==49943== Invalid write of size 8
==49943==    at 0x4EA3296: list_add (list.h:33)
==49943==  Address 0x1753ff54 is 116 bytes inside a block of size 284 alloc'd
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x4E908B0: mem_get (mem-pool.c:513)
==49943==    by 0x4E906CE: mem_get0 (mem-pool.c:446)
==49943==    by 0x4E9926E: create_frame (stack.c:31)
==49943==    by 0x4EA4EAD: synctask_create (syncop.c:469)
==49943==    by 0x4EA527F: synctask_new1 (syncop.c:571)
==49943==    by 0x143AE0D7: mq_synctask1 (marker-quota.c:1078)
==49943==    by 0x143AE199: mq_synctask (marker-quota.c:1097)
==49943==    by 0x143AE6F6: _mq_create_xattrs_txn (marker-quota.c:1236)
==49943==    by 0x143AE82D: mq_create_xattrs_txn (marker-quota.c:1253)
==49943==    by 0x143B0DCB: mq_inspect_directory_xattr (marker-quota.c:2027)
==49943== 
==49943== Invalid read of size 4
==49943==    at 0x4EB6FC9: syncop_inodelk (syncop.c:2992)
==49943==  Address 0x1753ff74 is 148 bytes inside a block of size 284 alloc'd
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x4E908B0: mem_get (mem-pool.c:513)
==49943==    by 0x4E906CE: mem_get0 (mem-pool.c:446)
==49943==    by 0x4E9926E: create_frame (stack.c:31)
==49943==    by 0x4EA4EAD: synctask_create (syncop.c:469)
==49943==    by 0x4EA527F: synctask_new1 (syncop.c:571)
==49943==    by 0x143AE0D7: mq_synctask1 (marker-quota.c:1078)
==49943==    by 0x143AE199: mq_synctask (marker-quota.c:1097)
==49943==    by 0x143AE6F6: _mq_create_xattrs_txn (marker-quota.c:1236)
==49943==    by 0x143AE82D: mq_create_xattrs_txn (marker-quota.c:1253)
==49943==    by 0x143B0DCB: mq_inspect_directory_xattr (marker-quota.c:2027)
==49943== 
==49943== Invalid write of size 4
==49943==    at 0x4EB6FD3: syncop_inodelk (syncop.c:2992)
==49943==  Address 0x1753ff74 is 148 bytes inside a block of size 284 alloc'd
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x4E908B0: mem_get (mem-pool.c:513)
==49943==    by 0x4E906CE: mem_get0 (mem-pool.c:446)
==49943==    by 0x4E9926E: create_frame (stack.c:31)
==49943==    by 0x4EA4EAD: synctask_create (syncop.c:469)
==49943==    by 0x4EA527F: synctask_new1 (syncop.c:571)
==49943==    by 0x143AE0D7: mq_synctask1 (marker-quota.c:1078)
==49943==    by 0x143AE199: mq_synctask (marker-quota.c:1097)
==49943==    by 0x143AE6F6: _mq_create_xattrs_txn (marker-quota.c:1236)
==49943==    by 0x143AE82D: mq_create_xattrs_txn (marker-quota.c:1253)
==49943==    by 0x143B0DCB: mq_inspect_directory_xattr (marker-quota.c:2027)
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x4EB6FE7: syncop_inodelk (syncop.c:2992)
==49943==  Address 0x1753ff3c is 92 bytes inside a block of size 284 alloc'd
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x4E908B0: mem_get (mem-pool.c:513)
==49943==    by 0x4E906CE: mem_get0 (mem-pool.c:446)
==49943==    by 0x4E9926E: create_frame (stack.c:31)
==49943==    by 0x4EA4EAD: synctask_create (syncop.c:469)
==49943==    by 0x4EA527F: synctask_new1 (syncop.c:571)
==49943==    by 0x143AE0D7: mq_synctask1 (marker-quota.c:1078)
==49943==    by 0x143AE199: mq_synctask (marker-quota.c:1097)
==49943==    by 0x143AE6F6: _mq_create_xattrs_txn (marker-quota.c:1236)
==49943==    by 0x143AE82D: mq_create_xattrs_txn (marker-quota.c:1253)
==49943==    by 0x143B0DCB: mq_inspect_directory_xattr (marker-quota.c:2027)
==49943== 
==49943== Invalid write of size 8
==49943==    at 0x4EB701D: syncop_inodelk (syncop.c:2992)
==49943==  Address 0x1438f418 is 664 bytes inside data symbol "fops"
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x4EB7064: syncop_inodelk (syncop.c:2992)
==49943==  Address 0x1753ff3c is 92 bytes inside a block of size 284 alloc'd
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x4E908B0: mem_get (mem-pool.c:513)
==49943==    by 0x4E906CE: mem_get0 (mem-pool.c:446)
==49943==    by 0x4E9926E: create_frame (stack.c:31)
==49943==    by 0x4EA4EAD: synctask_create (syncop.c:469)
==49943==    by 0x4EA527F: synctask_new1 (syncop.c:571)
==49943==    by 0x143AE0D7: mq_synctask1 (marker-quota.c:1078)
==49943==    by 0x143AE199: mq_synctask (marker-quota.c:1097)
==49943==    by 0x143AE6F6: _mq_create_xattrs_txn (marker-quota.c:1236)
==49943==    by 0x143AE82D: mq_create_xattrs_txn (marker-quota.c:1253)
==49943==    by 0x143B0DCB: mq_inspect_directory_xattr (marker-quota.c:2027)
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x4EB7107: syncop_inodelk (syncop.c:2992)
==49943==  Address 0x1438f280 is 256 bytes inside data symbol "fops"
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x4F0F5D7: default_inodelk (defaults.c:2362)
==49943==  Address 0x14177340 is 256 bytes inside data symbol "fops"
==49943== 
==49943== Jump to the invalid address stated on the next line
==49943==    at 0x13D56EFA: ro_inodelk (read-only-common.c:107)
==49943==  Address 0x13d56efa is in the Text segment of /usr/local/lib/glusterfs/3.8.12/xlator/features/read-only.so
==49943==    at 0x13D56EFA: ro_inodelk (read-only-common.c:107)
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x13D56F40: ro_inodelk (read-only-common.c:108)
==49943==  Address 0x13d532c0 is 256 bytes inside data symbol "fops"
==49943== 
==49943== Jump to the invalid address stated on the next line
==49943==    at 0x13D55F40: ??? (in /usr/local/lib/glusterfs/3.8.12/xlator/features/read-only.so)
==49943==  Address 0x13d55f40 is in the PLT segment of /usr/local/lib/glusterfs/3.8.12/xlator/features/read-only.so
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x13D55F40: ??? (in /usr/local/lib/glusterfs/3.8.12/xlator/features/read-only.so)
==49943==  Address 0x13f5d098 is in the GOTPLT segment of /usr/local/lib/glusterfs/3.8.12/xlator/features/read-only.so
==49943== 
==49943== Jump to the invalid address stated on the next line
==49943==    at 0x13D56F73: ro_inodelk (read-only-common.c:108)
==49943==  Address 0x13d56f73 is in the Text segment of /usr/local/lib/glusterfs/3.8.12/xlator/features/read-only.so
==49943==    at 0x13D56F73: ro_inodelk (read-only-common.c:108)
==49943== 
==49943== Jump to the invalid address stated on the next line
==49943==    at 0x13D56F84: ro_inodelk (read-only-common.c:108)
==49943==  Address 0x13d56f84 is in the Text segment of /usr/local/lib/glusterfs/3.8.12/xlator/features/read-only.so
==49943==    at 0x13D56F84: ro_inodelk (read-only-common.c:108)
==49943== 
==49943== Jump to the invalid address stated on the next line
==49943==    at 0x13D56F95: ro_inodelk (read-only-common.c:108)
==49943==  Address 0x13d56f95 is in the Text segment of /usr/local/lib/glusterfs/3.8.12/xlator/features/read-only.so
==49943==    at 0x13D56F95: ro_inodelk (read-only-common.c:108)
==49943== 
==49943== Jump to the invalid address stated on the next line
==49943==    at 0x13D55EB0: ??? (in /usr/local/lib/glusterfs/3.8.12/xlator/features/read-only.so)
==49943==  Address 0x13d55eb0 is in the PLT segment of /usr/local/lib/glusterfs/3.8.12/xlator/features/read-only.so
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x13D55EB0: ??? (in /usr/local/lib/glusterfs/3.8.12/xlator/features/read-only.so)
==49943==  Address 0x13f5d050 is in the GOTPLT segment of /usr/local/lib/glusterfs/3.8.12/xlator/features/read-only.so
==49943== 
==49943== Jump to the invalid address stated on the next line
==49943==    at 0x13D57004: ro_inodelk (read-only-common.c:108)
==49943==  Address 0x13d57004 is in the Text segment of /usr/local/lib/glusterfs/3.8.12/xlator/features/read-only.so
==49943==    at 0x13D57004: ro_inodelk (read-only-common.c:108)
==49943== 
==49943== Jump to the invalid address stated on the next line
==49943==    at 0x13B47599: ro_inodelk (read-only-common.c:107)
==49943==  Address 0x13b47599 is in the Text segment of /usr/local/lib/glusterfs/3.8.12/xlator/features/worm.so
==49943==    at 0x13B47599: ro_inodelk (read-only-common.c:107)
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x13B475DF: ro_inodelk (read-only-common.c:108)
==49943==  Address 0x13b44460 is 256 bytes inside data symbol "fops"
==49943== 
==49943== Jump to the invalid address stated on the next line
==49943==    at 0x13B468A0: ??? (in /usr/local/lib/glusterfs/3.8.12/xlator/features/worm.so)
==49943==  Address 0x13b468a0 is in the PLT segment of /usr/local/lib/glusterfs/3.8.12/xlator/features/worm.so
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x13B468A0: ??? (in /usr/local/lib/glusterfs/3.8.12/xlator/features/worm.so)
==49943==  Address 0x13d53168 is in the GOTPLT segment of /usr/local/lib/glusterfs/3.8.12/xlator/features/worm.so
==49943== 
==49943== 
==49943== More than 100 errors detected.  Subsequent errors
==49943== will still be recorded, but in less detail than before.
==49943== Jump to the invalid address stated on the next line
==49943==    at 0x13B47612: ro_inodelk (read-only-common.c:108)
==49943==  Address 0x13b47612 is in the Text segment of /usr/local/lib/glusterfs/3.8.12/xlator/features/worm.so
==49943==    at 0x13B47612: ro_inodelk (read-only-common.c:108)
==49943== 
==49943== Jump to the invalid address stated on the next line
==49943==    at 0x13B47623: ro_inodelk (read-only-common.c:108)
==49943==  Address 0x13b47623 is in the Text segment of /usr/local/lib/glusterfs/3.8.12/xlator/features/worm.so
==49943==    at 0x13B47623: ro_inodelk (read-only-common.c:108)
==49943== 
==49943== Jump to the invalid address stated on the next line
==49943==    at 0x13B47634: ro_inodelk (read-only-common.c:108)
==49943==  Address 0x13b47634 is in the Text segment of /usr/local/lib/glusterfs/3.8.12/xlator/features/worm.so
==49943==    at 0x13B47634: ro_inodelk (read-only-common.c:108)
==49943== 
==49943== Jump to the invalid address stated on the next line
==49943==    at 0x13B466D0: ??? (in /usr/local/lib/glusterfs/3.8.12/xlator/features/worm.so)
==49943==  Address 0x13b466d0 is in the PLT segment of /usr/local/lib/glusterfs/3.8.12/xlator/features/worm.so
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x13B466D0: ??? (in /usr/local/lib/glusterfs/3.8.12/xlator/features/worm.so)
==49943==  Address 0x13d53080 is in the GOTPLT segment of /usr/local/lib/glusterfs/3.8.12/xlator/features/worm.so
==49943== 
==49943== Jump to the invalid address stated on the next line
==49943==    at 0x13B476A3: ro_inodelk (read-only-common.c:108)
==49943==  Address 0x13b476a3 is in the Text segment of /usr/local/lib/glusterfs/3.8.12/xlator/features/worm.so
==49943==    at 0x13B476A3: ro_inodelk (read-only-common.c:108)
==49943== 
==49943== Jump to the invalid address stated on the next line
==49943==    at 0x1393AE66: pl_inodelk (inodelk.c:810)
==49943==  Address 0x1393ae66 is in the Text segment of /usr/local/lib/glusterfs/3.8.12/xlator/features/locks.so
==49943==    at 0x1393AE66: pl_inodelk (inodelk.c:810)
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x1393AE8A: pl_inodelk (inodelk.c:811)
==49943==  Address 0x1753e918 is 88 bytes inside a block of size 184 alloc'd
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x143ADF8B: mq_synctask1 (marker-quota.c:1057)
==49943==    by 0x143AE199: mq_synctask (marker-quota.c:1097)
==49943==    by 0x143AE6F6: _mq_create_xattrs_txn (marker-quota.c:1236)
==49943==    by 0x143AE82D: mq_create_xattrs_txn (marker-quota.c:1253)
==49943==    by 0x143B0DCB: mq_inspect_directory_xattr (marker-quota.c:2027)
==49943==    by 0x143B13A8: mq_xattr_state (marker-quota.c:2117)
==49943==    by 0x143A6E80: marker_lookup_cbk (marker.c:2961)
==49943==    by 0x141811E0: up_lookup_cbk (upcall.c:753)
==49943==    by 0x13930D5A: pl_lookup_cbk (posix.c:2648)
==49943==    by 0x13708E35: posix_acl_lookup_cbk (posix-acl.c:919)
==49943== 
==49943== Jump to the invalid address stated on the next line
==49943==    at 0x1393A59E: pl_common_inodelk (inodelk.c:695)
==49943==  Address 0x1393a59e is in the Text segment of /usr/local/lib/glusterfs/3.8.12/xlator/features/locks.so
==49943==    at 0x1393A59E: pl_common_inodelk (inodelk.c:695)
==49943== 
==49943== Jump to the invalid address stated on the next line
==49943==    at 0x1393A650: pl_common_inodelk (inodelk.c:712)
==49943==  Address 0x1393a650 is in the Text segment of /usr/local/lib/glusterfs/3.8.12/xlator/features/locks.so
==49943==    at 0x1393A650: pl_common_inodelk (inodelk.c:712)
==49943== 
==49943== Jump to the invalid address stated on the next line
==49943==    at 0x1393A6CF: pl_common_inodelk (inodelk.c:713)
==49943==  Address 0x1393a6cf is in the Text segment of /usr/local/lib/glusterfs/3.8.12/xlator/features/locks.so
==49943==    at 0x1393A6CF: pl_common_inodelk (inodelk.c:713)
==49943== 
==49943== Jump to the invalid address stated on the next line
==49943==    at 0x1393A74E: pl_common_inodelk (inodelk.c:714)
==49943==  Address 0x1393a74e is in the Text segment of /usr/local/lib/glusterfs/3.8.12/xlator/features/locks.so
==49943==    at 0x1393A74E: pl_common_inodelk (inodelk.c:714)
==49943== 
==49943== Jump to the invalid address stated on the next line
==49943==    at 0x1393A7CD: pl_common_inodelk (inodelk.c:716)
==49943==  Address 0x1393a7cd is in the Text segment of /usr/local/lib/glusterfs/3.8.12/xlator/features/locks.so
==49943==    at 0x1393A7CD: pl_common_inodelk (inodelk.c:716)
==49943== 
==49943== Jump to the invalid address stated on the next line
==49943==    at 0x1393A7DD: pl_common_inodelk (inodelk.c:716)
==49943==  Address 0x1393a7dd is in the Text segment of /usr/local/lib/glusterfs/3.8.12/xlator/features/locks.so
==49943==    at 0x1393A7DD: pl_common_inodelk (inodelk.c:716)
==49943== 
==49943== Jump to the invalid address stated on the next line
==49943==    at 0x1393A7F9: pl_common_inodelk (inodelk.c:721)
==49943==  Address 0x1393a7f9 is in the Text segment of /usr/local/lib/glusterfs/3.8.12/xlator/features/locks.so
==49943==    at 0x1393A7F9: pl_common_inodelk (inodelk.c:721)
==49943== 
==49943== Jump to the invalid address stated on the next line
==49943==    at 0x1393A599: _pl_convert_volume_for_special_range (inodelk.c:687)
==49943==  Address 0x1393a599 is in the Text segment of /usr/local/lib/glusterfs/3.8.12/xlator/features/locks.so
==49943==    at 0x1393A599: _pl_convert_volume_for_special_range (inodelk.c:687)
==49943== 
==49943== Jump to the invalid address stated on the next line
==49943==    at 0x1393A816: pl_common_inodelk (inodelk.c:721)
==49943==  Address 0x1393a816 is in the Text segment of /usr/local/lib/glusterfs/3.8.12/xlator/features/locks.so
==49943==    at 0x1393A816: pl_common_inodelk (inodelk.c:721)
==49943== 
==49943== Jump to the invalid address stated on the next line
==49943==    at 0x1393A824: pl_common_inodelk (inodelk.c:724)
==49943==  Address 0x1393a824 is in the Text segment of /usr/local/lib/glusterfs/3.8.12/xlator/features/locks.so
==49943==    at 0x1393A824: pl_common_inodelk (inodelk.c:724)
==49943== 
==49943== Jump to the invalid address stated on the next line
==49943==    at 0x1393A838: pl_common_inodelk (inodelk.c:727)
==49943==  Address 0x1393a838 is in the Text segment of /usr/local/lib/glusterfs/3.8.12/xlator/features/locks.so
==49943==    at 0x1393A838: pl_common_inodelk (inodelk.c:727)
==49943== 
==49943== Jump to the invalid address stated on the next line
==49943==    at 0x1391E29C: pl_trace_in (common.c:222)
==49943==  Address 0x1391e29c is in the Text segment of /usr/local/lib/glusterfs/3.8.12/xlator/features/locks.so
==49943==    at 0x1391E29C: pl_trace_in (common.c:222)
==49943== 
==49943== Jump to the invalid address stated on the next line
==49943==    at 0x1391E3FB: pl_trace_in (common.c:243)
==49943==  Address 0x1391e3fb is in the Text segment of /usr/local/lib/glusterfs/3.8.12/xlator/features/locks.so
==49943==    at 0x1391E3FB: pl_trace_in (common.c:243)
==49943== 
==49943== Jump to the invalid address stated on the next line
==49943==    at 0x1393A874: pl_common_inodelk (inodelk.c:729)
==49943==  Address 0x1393a874 is in the Text segment of /usr/local/lib/glusterfs/3.8.12/xlator/features/locks.so
==49943==    at 0x1393A874: pl_common_inodelk (inodelk.c:729)
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x1393A87E: pl_common_inodelk (inodelk.c:729)
==49943==  Address 0x1af0c97c is 156 bytes inside a block of size 1,924 alloc'd
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x4E908B0: mem_get (mem-pool.c:513)
==49943==    by 0x4E906CE: mem_get0 (mem-pool.c:446)
==49943==    by 0x4E9921D: create_frame (stack.c:25)
==49943==    by 0x4EA4EAD: synctask_create (syncop.c:469)
==49943==    by 0x4EA527F: synctask_new1 (syncop.c:571)
==49943==    by 0x143AE0D7: mq_synctask1 (marker-quota.c:1078)
==49943==    by 0x143AE199: mq_synctask (marker-quota.c:1097)
==49943==    by 0x143AE6F6: _mq_create_xattrs_txn (marker-quota.c:1236)
==49943==    by 0x143AE82D: mq_create_xattrs_txn (marker-quota.c:1253)
==49943==    by 0x143B0DCB: mq_inspect_directory_xattr (marker-quota.c:2027)
==49943== 
==49943== Jump to the invalid address stated on the next line
==49943==    at 0x1393A8F5: pl_common_inodelk (inodelk.c:738)
==49943==  Address 0x1393a8f5 is in the Text segment of /usr/local/lib/glusterfs/3.8.12/xlator/features/locks.so
==49943==    at 0x1393A8F5: pl_common_inodelk (inodelk.c:738)
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x1391EA37: pl_inode_get (common.c:411)
==49943==  Address 0x13b43fe8 is in the GOT segment of /usr/local/lib/glusterfs/3.8.12/xlator/features/locks.so
==49943== 
==49943== Jump to the invalid address stated on the next line
==49943==    at 0x1391EA44: pl_inode_get (common.c:411)
==49943==  Address 0x1391ea44 is in the Text segment of /usr/local/lib/glusterfs/3.8.12/xlator/features/locks.so
==49943==    at 0x1391EA44: pl_inode_get (common.c:411)
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x1391D820: ??? (in /usr/local/lib/glusterfs/3.8.12/xlator/features/locks.so)
==49943==  Address 0x13b442e0 is in the GOTPLT segment of /usr/local/lib/glusterfs/3.8.12/xlator/features/locks.so
==49943== 
==49943== Jump to the invalid address stated on the next line
==49943==    at 0x1391EA54: pl_inode_get (common.c:411)
==49943==  Address 0x1391ea54 is in the Text segment of /usr/local/lib/glusterfs/3.8.12/xlator/features/locks.so
==49943==    at 0x1391EA54: pl_inode_get (common.c:411)
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x1391D3E0: ??? (in /usr/local/lib/glusterfs/3.8.12/xlator/features/locks.so)
==49943==  Address 0x13b440c0 is in the GOTPLT segment of /usr/local/lib/glusterfs/3.8.12/xlator/features/locks.so
==49943== 
==49943== Jump to the invalid address stated on the next line
==49943==    at 0x1391EA7D: pl_inode_get (common.c:413)
==49943==  Address 0x1391ea7d is in the Text segment of /usr/local/lib/glusterfs/3.8.12/xlator/features/locks.so
==49943==    at 0x1391EA7D: pl_inode_get (common.c:413)
==49943== 
==49943== Jump to the invalid address stated on the next line
==49943==    at 0x1391EA93: pl_inode_get (common.c:418)
==49943==  Address 0x1391ea93 is in the Text segment of /usr/local/lib/glusterfs/3.8.12/xlator/features/locks.so
==49943==    at 0x1391EA93: pl_inode_get (common.c:418)
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x1391D810: ??? (in /usr/local/lib/glusterfs/3.8.12/xlator/features/locks.so)
==49943==  Address 0x13b442d8 is in the GOTPLT segment of /usr/local/lib/glusterfs/3.8.12/xlator/features/locks.so
==49943== 
==49943== Jump to the invalid address stated on the next line
==49943==    at 0x1391EAAE: pl_inode_get (common.c:418)
==49943==  Address 0x1391eaae is in the Text segment of /usr/local/lib/glusterfs/3.8.12/xlator/features/locks.so
==49943==    at 0x1391EAAE: pl_inode_get (common.c:418)
==49943== 
==49943== Jump to the invalid address stated on the next line
==49943==    at 0x1391EABE: pl_inode_get (common.c:424)
==49943==  Address 0x1391eabe is in the Text segment of /usr/local/lib/glusterfs/3.8.12/xlator/features/locks.so
==49943==    at 0x1391EABE: pl_inode_get (common.c:424)
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x1391D6E0: ??? (in /usr/local/lib/glusterfs/3.8.12/xlator/features/locks.so)
==49943==  Address 0x13b44240 is in the GOTPLT segment of /usr/local/lib/glusterfs/3.8.12/xlator/features/locks.so
==49943== 
==49943== Jump to the invalid address stated on the next line
==49943==    at 0x1391EAF2: pl_inode_get (common.c:427)
==49943==  Address 0x1391eaf2 is in the Text segment of /usr/local/lib/glusterfs/3.8.12/xlator/features/locks.so
==49943==    at 0x1391EAF2: pl_inode_get (common.c:427)
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x1391D460: ??? (in /usr/local/lib/glusterfs/3.8.12/xlator/features/locks.so)
==49943==  Address 0x13b44100 is in the GOTPLT segment of /usr/local/lib/glusterfs/3.8.12/xlator/features/locks.so
==49943== 
==49943== Jump to the invalid address stated on the next line
==49943==    at 0x1391EB03: pl_inode_get (common.c:429)
==49943==  Address 0x1391eb03 is in the Text segment of /usr/local/lib/glusterfs/3.8.12/xlator/features/locks.so
==49943==    at 0x1391EB03: pl_inode_get (common.c:429)
==49943== 
==49943== Jump to the invalid address stated on the next line
==49943==    at 0x1391EC0B: pl_inode_get (common.c:436)
==49943==  Address 0x1391ec0b is in the Text segment of /usr/local/lib/glusterfs/3.8.12/xlator/features/locks.so
==49943==    at 0x1391EC0B: pl_inode_get (common.c:436)
==49943== 
==49943== Jump to the invalid address stated on the next line
==49943==    at 0x1391DB51: gf_uuid_copy (compat-uuid.h:32)
==49943==  Address 0x1391db51 is in the Text segment of /usr/local/lib/glusterfs/3.8.12/xlator/features/locks.so
==49943==    at 0x1391DB51: gf_uuid_copy (compat-uuid.h:32)
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x1391D780: ??? (in /usr/local/lib/glusterfs/3.8.12/xlator/features/locks.so)
==49943==  Address 0x13b44290 is in the GOTPLT segment of /usr/local/lib/glusterfs/3.8.12/xlator/features/locks.so
==49943== 
==49943== Invalid read of size 1
==49943==    at 0x57996B8: uuid_copy (in /usr/lib64/libuuid.so.1.3.0)
==49943==  Address 0x17536b74 is 100 bytes inside a block of size 260 alloc'd
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x4E908B0: mem_get (mem-pool.c:513)
==49943==    by 0x4E906CE: mem_get0 (mem-pool.c:446)
==49943==    by 0x4E6FE09: __inode_create (inode.c:600)
==49943==    by 0x4E7004E: inode_new (inode.c:647)
==49943==    by 0x1506A05F: server_inode_new (server-helpers.c:1314)
==49943==    by 0x15063F03: resolve_gfid (server-resolve.c:208)
==49943==    by 0x1506484F: server_resolve_inode (server-resolve.c:421)
==49943==    by 0x15064CD4: server_resolve (server-resolve.c:562)
==49943==    by 0x15064E6B: server_resolve_all (server-resolve.c:614)
==49943==    by 0x15064F80: resolve_and_resume (server-resolve.c:645)
==49943== 
==49943== Invalid read of size 1
==49943==    at 0x57996C7: uuid_copy (in /usr/lib64/libuuid.so.1.3.0)
==49943==  Address 0x17536b76 is 102 bytes inside a block of size 260 alloc'd
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x4E908B0: mem_get (mem-pool.c:513)
==49943==    by 0x4E906CE: mem_get0 (mem-pool.c:446)
==49943==    by 0x4E6FE09: __inode_create (inode.c:600)
==49943==    by 0x4E7004E: inode_new (inode.c:647)
==49943==    by 0x1506A05F: server_inode_new (server-helpers.c:1314)
==49943==    by 0x15063F03: resolve_gfid (server-resolve.c:208)
==49943==    by 0x1506484F: server_resolve_inode (server-resolve.c:421)
==49943==    by 0x15064CD4: server_resolve (server-resolve.c:562)
==49943==    by 0x15064E6B: server_resolve_all (server-resolve.c:614)
==49943==    by 0x15064F80: resolve_and_resume (server-resolve.c:645)
==49943== 
==49943== Jump to the invalid address stated on the next line
==49943==    at 0x1391DB74: gf_uuid_copy (compat-uuid.h:34)
==49943==  Address 0x1391db74 is in the Text segment of /usr/local/lib/glusterfs/3.8.12/xlator/features/locks.so
==49943==    at 0x1391DB74: gf_uuid_copy (compat-uuid.h:34)
==49943== 
==49943== Jump to the invalid address stated on the next line
==49943==    at 0x1391EC3E: pl_inode_get (common.c:439)
==49943==  Address 0x1391ec3e is in the Text segment of /usr/local/lib/glusterfs/3.8.12/xlator/features/locks.so
==49943==    at 0x1391EC3E: pl_inode_get (common.c:439)
==49943== 
==49943== Jump to the invalid address stated on the next line
==49943==    at 0x1391D660: ??? (in /usr/local/lib/glusterfs/3.8.12/xlator/features/locks.so)
==49943==  Address 0x1391d660 is in the PLT segment of /usr/local/lib/glusterfs/3.8.12/xlator/features/locks.so
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x1391D660: ??? (in /usr/local/lib/glusterfs/3.8.12/xlator/features/locks.so)
==49943==  Address 0x13b44200 is in the GOTPLT segment of /usr/local/lib/glusterfs/3.8.12/xlator/features/locks.so
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x4E72AEA: __inode_ctx_set2 (inode.c:1944)
==49943==  Address 0x17536c04 is 244 bytes inside a block of size 260 alloc'd
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x4E908B0: mem_get (mem-pool.c:513)
==49943==    by 0x4E906CE: mem_get0 (mem-pool.c:446)
==49943==    by 0x4E6FE09: __inode_create (inode.c:600)
==49943==    by 0x4E7004E: inode_new (inode.c:647)
==49943==    by 0x1506A05F: server_inode_new (server-helpers.c:1314)
==49943==    by 0x15063F03: resolve_gfid (server-resolve.c:208)
==49943==    by 0x1506484F: server_resolve_inode (server-resolve.c:421)
==49943==    by 0x15064CD4: server_resolve (server-resolve.c:562)
==49943==    by 0x15064E6B: server_resolve_all (server-resolve.c:614)
==49943==    by 0x15064F80: resolve_and_resume (server-resolve.c:645)
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x4E72B78: __inode_ctx_set2 (inode.c:1947)
==49943==  Address 0x17536b6c is 92 bytes inside a block of size 260 alloc'd
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x4E908B0: mem_get (mem-pool.c:513)
==49943==    by 0x4E906CE: mem_get0 (mem-pool.c:446)
==49943==    by 0x4E6FE09: __inode_create (inode.c:600)
==49943==    by 0x4E7004E: inode_new (inode.c:647)
==49943==    by 0x1506A05F: server_inode_new (server-helpers.c:1314)
==49943==    by 0x15063F03: resolve_gfid (server-resolve.c:208)
==49943==    by 0x1506484F: server_resolve_inode (server-resolve.c:421)
==49943==    by 0x15064CD4: server_resolve (server-resolve.c:562)
==49943==    by 0x15064E6B: server_resolve_all (server-resolve.c:614)
==49943==    by 0x15064F80: resolve_and_resume (server-resolve.c:645)
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x4E72B0D: __inode_ctx_set2 (inode.c:1948)
==49943==  Address 0x17536c04 is 244 bytes inside a block of size 260 alloc'd
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x4E908B0: mem_get (mem-pool.c:513)
==49943==    by 0x4E906CE: mem_get0 (mem-pool.c:446)
==49943==    by 0x4E6FE09: __inode_create (inode.c:600)
==49943==    by 0x4E7004E: inode_new (inode.c:647)
==49943==    by 0x1506A05F: server_inode_new (server-helpers.c:1314)
==49943==    by 0x15063F03: resolve_gfid (server-resolve.c:208)
==49943==    by 0x1506484F: server_resolve_inode (server-resolve.c:421)
==49943==    by 0x15064CD4: server_resolve (server-resolve.c:562)
==49943==    by 0x15064E6B: server_resolve_all (server-resolve.c:614)
==49943==    by 0x15064F80: resolve_and_resume (server-resolve.c:645)
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x4E72B2A: __inode_ctx_set2 (inode.c:1948)
==49943==  Address 0x1af04560 is 64 bytes inside a block of size 528 alloc'd
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x4E6FF22: __inode_create (inode.c:614)
==49943==    by 0x4E7004E: inode_new (inode.c:647)
==49943==    by 0x1506A05F: server_inode_new (server-helpers.c:1314)
==49943==    by 0x15063F03: resolve_gfid (server-resolve.c:208)
==49943==    by 0x1506484F: server_resolve_inode (server-resolve.c:421)
==49943==    by 0x15064CD4: server_resolve (server-resolve.c:562)
==49943==    by 0x15064E6B: server_resolve_all (server-resolve.c:614)
==49943==    by 0x15064F80: resolve_and_resume (server-resolve.c:645)
==49943==    by 0x15093491: server3_3_lookup (server-rpc-fops.c:6513)
==49943==    by 0x514731B: rpcsvc_handle_rpc_call (rpcsvc.c:701)
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x4E72B42: __inode_ctx_set2 (inode.c:1954)
==49943==  Address 0x17536c04 is 244 bytes inside a block of size 260 alloc'd
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x4E908B0: mem_get (mem-pool.c:513)
==49943==    by 0x4E906CE: mem_get0 (mem-pool.c:446)
==49943==    by 0x4E6FE09: __inode_create (inode.c:600)
==49943==    by 0x4E7004E: inode_new (inode.c:647)
==49943==    by 0x1506A05F: server_inode_new (server-helpers.c:1314)
==49943==    by 0x15063F03: resolve_gfid (server-resolve.c:208)
==49943==    by 0x1506484F: server_resolve_inode (server-resolve.c:421)
==49943==    by 0x15064CD4: server_resolve (server-resolve.c:562)
==49943==    by 0x15064E6B: server_resolve_all (server-resolve.c:614)
==49943==    by 0x15064F80: resolve_and_resume (server-resolve.c:645)
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x4E72B5F: __inode_ctx_set2 (inode.c:1954)
==49943==  Address 0x1af04560 is 64 bytes inside a block of size 528 alloc'd
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x4E6FF22: __inode_create (inode.c:614)
==49943==    by 0x4E7004E: inode_new (inode.c:647)
==49943==    by 0x1506A05F: server_inode_new (server-helpers.c:1314)
==49943==    by 0x15063F03: resolve_gfid (server-resolve.c:208)
==49943==    by 0x1506484F: server_resolve_inode (server-resolve.c:421)
==49943==    by 0x15064CD4: server_resolve (server-resolve.c:562)
==49943==    by 0x15064E6B: server_resolve_all (server-resolve.c:614)
==49943==    by 0x15064F80: resolve_and_resume (server-resolve.c:645)
==49943==    by 0x15093491: server3_3_lookup (server-rpc-fops.c:6513)
==49943==    by 0x514731B: rpcsvc_handle_rpc_call (rpcsvc.c:701)
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x4E72B9C: __inode_ctx_set2 (inode.c:1965)
==49943==  Address 0x17536c04 is 244 bytes inside a block of size 260 alloc'd
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x4E908B0: mem_get (mem-pool.c:513)
==49943==    by 0x4E906CE: mem_get0 (mem-pool.c:446)
==49943==    by 0x4E6FE09: __inode_create (inode.c:600)
==49943==    by 0x4E7004E: inode_new (inode.c:647)
==49943==    by 0x1506A05F: server_inode_new (server-helpers.c:1314)
==49943==    by 0x15063F03: resolve_gfid (server-resolve.c:208)
==49943==    by 0x1506484F: server_resolve_inode (server-resolve.c:421)
==49943==    by 0x15064CD4: server_resolve (server-resolve.c:562)
==49943==    by 0x15064E6B: server_resolve_all (server-resolve.c:614)
==49943==    by 0x15064F80: resolve_and_resume (server-resolve.c:645)
==49943== 
==49943== Invalid write of size 8
==49943==    at 0x4E72BBE: __inode_ctx_set2 (inode.c:1965)
==49943==  Address 0x1af045c0 is 160 bytes inside a block of size 528 alloc'd
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x4E6FF22: __inode_create (inode.c:614)
==49943==    by 0x4E7004E: inode_new (inode.c:647)
==49943==    by 0x1506A05F: server_inode_new (server-helpers.c:1314)
==49943==    by 0x15063F03: resolve_gfid (server-resolve.c:208)
==49943==    by 0x1506484F: server_resolve_inode (server-resolve.c:421)
==49943==    by 0x15064CD4: server_resolve (server-resolve.c:562)
==49943==    by 0x15064E6B: server_resolve_all (server-resolve.c:614)
==49943==    by 0x15064F80: resolve_and_resume (server-resolve.c:645)
==49943==    by 0x15093491: server3_3_lookup (server-rpc-fops.c:6513)
==49943==    by 0x514731B: rpcsvc_handle_rpc_call (rpcsvc.c:701)
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x4E72BCC: __inode_ctx_set2 (inode.c:1967)
==49943==  Address 0x17536c04 is 244 bytes inside a block of size 260 alloc'd
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x4E908B0: mem_get (mem-pool.c:513)
==49943==    by 0x4E906CE: mem_get0 (mem-pool.c:446)
==49943==    by 0x4E6FE09: __inode_create (inode.c:600)
==49943==    by 0x4E7004E: inode_new (inode.c:647)
==49943==    by 0x1506A05F: server_inode_new (server-helpers.c:1314)
==49943==    by 0x15063F03: resolve_gfid (server-resolve.c:208)
==49943==    by 0x1506484F: server_resolve_inode (server-resolve.c:421)
==49943==    by 0x15064CD4: server_resolve (server-resolve.c:562)
==49943==    by 0x15064E6B: server_resolve_all (server-resolve.c:614)
==49943==    by 0x15064F80: resolve_and_resume (server-resolve.c:645)
==49943== 
==49943== Invalid write of size 8
==49943==    at 0x4E72BF1: __inode_ctx_set2 (inode.c:1967)
==49943==  Address 0x1af045c8 is 168 bytes inside a block of size 528 alloc'd
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x4E6FF22: __inode_create (inode.c:614)
==49943==    by 0x4E7004E: inode_new (inode.c:647)
==49943==    by 0x1506A05F: server_inode_new (server-helpers.c:1314)
==49943==    by 0x15063F03: resolve_gfid (server-resolve.c:208)
==49943==    by 0x1506484F: server_resolve_inode (server-resolve.c:421)
==49943==    by 0x15064CD4: server_resolve (server-resolve.c:562)
==49943==    by 0x15064E6B: server_resolve_all (server-resolve.c:614)
==49943==    by 0x15064F80: resolve_and_resume (server-resolve.c:645)
==49943==    by 0x15093491: server3_3_lookup (server-rpc-fops.c:6513)
==49943==    by 0x514731B: rpcsvc_handle_rpc_call (rpcsvc.c:701)
==49943== 
==49943== Jump to the invalid address stated on the next line
==49943==    at 0x1391DC1D: __inode_ctx_put (inode.h:238)
==49943==  Address 0x1391dc1d is in the Text segment of /usr/local/lib/glusterfs/3.8.12/xlator/features/locks.so
==49943==    at 0x1391DC1D: __inode_ctx_put (inode.h:238)
==49943== 
==49943== Jump to the invalid address stated on the next line
==49943==    at 0x1391EC55: pl_inode_get (common.c:442)
==49943==  Address 0x1391ec55 is in the Text segment of /usr/local/lib/glusterfs/3.8.12/xlator/features/locks.so
==49943==    at 0x1391EC55: pl_inode_get (common.c:442)
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x1391EC55: pl_inode_get (common.c:442)
==49943==  Address 0x13b43fe8 is in the GOT segment of /usr/local/lib/glusterfs/3.8.12/xlator/features/locks.so
==49943== 
==49943== Jump to the invalid address stated on the next line
==49943==    at 0x1391EC62: pl_inode_get (common.c:442)
==49943==  Address 0x1391ec62 is in the Text segment of /usr/local/lib/glusterfs/3.8.12/xlator/features/locks.so
==49943==    at 0x1391EC62: pl_inode_get (common.c:442)
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x1391D400: ??? (in /usr/local/lib/glusterfs/3.8.12/xlator/features/locks.so)
==49943==  Address 0x13b440d0 is in the GOTPLT segment of /usr/local/lib/glusterfs/3.8.12/xlator/features/locks.so
==49943== 
==49943== Jump to the invalid address stated on the next line
==49943==    at 0x1391EC72: pl_inode_get (common.c:442)
==49943==  Address 0x1391ec72 is in the Text segment of /usr/local/lib/glusterfs/3.8.12/xlator/features/locks.so
==49943==    at 0x1391EC72: pl_inode_get (common.c:442)
==49943== 
==49943== Jump to the invalid address stated on the next line
==49943==    at 0x1393A90E: pl_common_inodelk (inodelk.c:738)
==49943==  Address 0x1393a90e is in the Text segment of /usr/local/lib/glusterfs/3.8.12/xlator/features/locks.so
==49943==    at 0x1393A90E: pl_common_inodelk (inodelk.c:738)
==49943== 
==49943== Jump to the invalid address stated on the next line
==49943==    at 0x1393A925: pl_common_inodelk (inodelk.c:744)
==49943==  Address 0x1393a925 is in the Text segment of /usr/local/lib/glusterfs/3.8.12/xlator/features/locks.so
==49943==    at 0x1393A925: pl_common_inodelk (inodelk.c:744)
==49943== 
==49943== Jump to the invalid address stated on the next line
==49943==    at 0x1391DE09: get_domain (common.c:75)
==49943==  Address 0x1391de09 is in the Text segment of /usr/local/lib/glusterfs/3.8.12/xlator/features/locks.so
==49943==    at 0x1391DE09: get_domain (common.c:75)
==49943== 
==49943== Jump to the invalid address stated on the next line
==49943==    at 0x1391DE70: get_domain (common.c:77)
==49943==  Address 0x1391de70 is in the Text segment of /usr/local/lib/glusterfs/3.8.12/xlator/features/locks.so
==49943==    at 0x1391DE70: get_domain (common.c:77)
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x1391D7F0: ??? (in /usr/local/lib/glusterfs/3.8.12/xlator/features/locks.so)
==49943==  Address 0x13b442c8 is in the GOTPLT segment of /usr/local/lib/glusterfs/3.8.12/xlator/features/locks.so
==49943== 
==49943== Invalid read of size 4
==49943==    at 0x60B4BE3: pthread_mutex_lock (in /usr/lib64/libpthread-2.17.so)
==49943==  Address 0xf69d9d0 is in a rw- anonymous segment
==49943== 
==49943== Jump to the invalid address stated on the next line
==49943==    at 0x1391DE7C: get_domain (common.c:79)
==49943==  Address 0x1391de7c is in the Text segment of /usr/local/lib/glusterfs/3.8.12/xlator/features/locks.so
==49943==    at 0x1391DE7C: get_domain (common.c:79)
==49943== 
==49943== Jump to the invalid address stated on the next line
==49943==    at 0x1391DEC3: get_domain (common.c:84)
==49943==  Address 0x1391dec3 is in the Text segment of /usr/local/lib/glusterfs/3.8.12/xlator/features/locks.so
==49943==    at 0x1391DEC3: get_domain (common.c:84)
==49943== 
==49943== Jump to the invalid address stated on the next line
==49943==    at 0x1391D810: ??? (in /usr/local/lib/glusterfs/3.8.12/xlator/features/locks.so)
==49943==  Address 0x1391d810 is in the PLT segment of /usr/local/lib/glusterfs/3.8.12/xlator/features/locks.so
==49943== 
==49943== Jump to the invalid address stated on the next line
==49943==    at 0x1391DC4E: __allocate_domain (common.c:39)
==49943==  Address 0x1391dc4e is in the Text segment of /usr/local/lib/glusterfs/3.8.12/xlator/features/locks.so
==49943==    at 0x1391DC4E: __allocate_domain (common.c:39)
==49943== 
==49943== Jump to the invalid address stated on the next line
==49943==    at 0x1391DC5E: __allocate_domain (common.c:44)
==49943==  Address 0x1391dc5e is in the Text segment of /usr/local/lib/glusterfs/3.8.12/xlator/features/locks.so
==49943==    at 0x1391DC5E: __allocate_domain (common.c:44)
==49943== 
==49943== Jump to the invalid address stated on the next line
==49943==    at 0x1391D4F0: ??? (in /usr/local/lib/glusterfs/3.8.12/xlator/features/locks.so)
==49943==  Address 0x1391d4f0 is in the PLT segment of /usr/local/lib/glusterfs/3.8.12/xlator/features/locks.so
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x1391D4F0: ??? (in /usr/local/lib/glusterfs/3.8.12/xlator/features/locks.so)
==49943==  Address 0x13b44148 is in the GOTPLT segment of /usr/local/lib/glusterfs/3.8.12/xlator/features/locks.so
==49943== 
==49943== Jump to the invalid address stated on the next line
==49943==    at 0x1391DB9E: gf_strdup (mem-pool.h:185)
==49943==  Address 0x1391db9e is in the Text segment of /usr/local/lib/glusterfs/3.8.12/xlator/features/locks.so
==49943==    at 0x1391DB9E: gf_strdup (mem-pool.h:185)
==49943== 
==49943== Jump to the invalid address stated on the next line
==49943==    at 0x1391DBC3: gf_strdup (mem-pool.h:187)
==49943==  Address 0x1391dbc3 is in the Text segment of /usr/local/lib/glusterfs/3.8.12/xlator/features/locks.so
==49943==    at 0x1391DBC3: gf_strdup (mem-pool.h:187)
==49943== 
==49943== Jump to the invalid address stated on the next line
==49943==    at 0x1391DBD5: gf_strdup (mem-pool.h:192)
==49943==  Address 0x1391dbd5 is in the Text segment of /usr/local/lib/glusterfs/3.8.12/xlator/features/locks.so
==49943==    at 0x1391DBD5: gf_strdup (mem-pool.h:192)
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x1391D880: ??? (in /usr/local/lib/glusterfs/3.8.12/xlator/features/locks.so)
==49943==  Address 0x13b44310 is in the GOTPLT segment of /usr/local/lib/glusterfs/3.8.12/xlator/features/locks.so
==49943== 
==49943== Jump to the invalid address stated on the next line
==49943==    at 0x1391DBEC: gf_strdup (mem-pool.h:194)
==49943==  Address 0x1391dbec is in the Text segment of /usr/local/lib/glusterfs/3.8.12/xlator/features/locks.so
==49943==    at 0x1391DBEC: gf_strdup (mem-pool.h:194)
==49943== 
==49943== Jump to the invalid address stated on the next line
==49943==    at 0x1391DC6A: __allocate_domain (common.c:44)
==49943==  Address 0x1391dc6a is in the Text segment of /usr/local/lib/glusterfs/3.8.12/xlator/features/locks.so
==49943==    at 0x1391DC6A: __allocate_domain (common.c:44)
==49943== 
==49943== Jump to the invalid address stated on the next line
==49943==    at 0x1391DC84: __allocate_domain (common.c:48)
==49943==  Address 0x1391dc84 is in the Text segment of /usr/local/lib/glusterfs/3.8.12/xlator/features/locks.so
==49943==    at 0x1391DC84: __allocate_domain (common.c:48)
==49943== 
==49943== Jump to the invalid address stated on the next line
==49943==    at 0x1391D6E0: ??? (in /usr/local/lib/glusterfs/3.8.12/xlator/features/locks.so)
==49943==  Address 0x1391d6e0 is in the PLT segment of /usr/local/lib/glusterfs/3.8.12/xlator/features/locks.so
==49943== 
==49943== Jump to the invalid address stated on the next line
==49943==    at 0x1391DCC1: __allocate_domain (common.c:51)
==49943==  Address 0x1391dcc1 is in the Text segment of /usr/local/lib/glusterfs/3.8.12/xlator/features/locks.so
==49943==    at 0x1391DCC1: __allocate_domain (common.c:51)
==49943== 
==49943== Jump to the invalid address stated on the next line
==49943==    at 0x1391DD63: __allocate_domain (common.c:58)
==49943==  Address 0x1391dd63 is in the Text segment of /usr/local/lib/glusterfs/3.8.12/xlator/features/locks.so
==49943==    at 0x1391DD63: __allocate_domain (common.c:58)
==49943== 
==49943== Jump to the invalid address stated on the next line
==49943==    at 0x1391DD84: __allocate_domain (common.c:63)
==49943==  Address 0x1391dd84 is in the Text segment of /usr/local/lib/glusterfs/3.8.12/xlator/features/locks.so
==49943==    at 0x1391DD84: __allocate_domain (common.c:63)
==49943== 
==49943== Jump to the invalid address stated on the next line
==49943==    at 0x1391DECF: get_domain (common.c:84)
==49943==  Address 0x1391decf is in the Text segment of /usr/local/lib/glusterfs/3.8.12/xlator/features/locks.so
==49943==    at 0x1391DECF: get_domain (common.c:84)
==49943== 
==49943== Jump to the invalid address stated on the next line
==49943==    at 0x1391DEDA: get_domain (common.c:86)
==49943==  Address 0x1391deda is in the Text segment of /usr/local/lib/glusterfs/3.8.12/xlator/features/locks.so
==49943==    at 0x1391DEDA: get_domain (common.c:86)
==49943== 
==49943== Jump to the invalid address stated on the next line
==49943==    at 0x1391DEF1: get_domain (common.c:89)
==49943==  Address 0x1391def1 is in the Text segment of /usr/local/lib/glusterfs/3.8.12/xlator/features/locks.so
==49943==    at 0x1391DEF1: get_domain (common.c:89)
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x1391D870: ??? (in /usr/local/lib/glusterfs/3.8.12/xlator/features/locks.so)
==49943==  Address 0x13b44308 is in the GOTPLT segment of /usr/local/lib/glusterfs/3.8.12/xlator/features/locks.so
==49943== 
==49943== Jump to the invalid address stated on the next line
==49943==    at 0x1391DEFD: get_domain (common.c:90)
==49943==  Address 0x1391defd is in the Text segment of /usr/local/lib/glusterfs/3.8.12/xlator/features/locks.so
==49943==    at 0x1391DEFD: get_domain (common.c:90)
==49943== 
==49943== Jump to the invalid address stated on the next line
==49943==    at 0x1391DF04: get_domain (common.c:91)
==49943==  Address 0x1391df04 is in the Text segment of /usr/local/lib/glusterfs/3.8.12/xlator/features/locks.so
==49943==    at 0x1391DF04: get_domain (common.c:91)
==49943== 
==49943== Jump to the invalid address stated on the next line
==49943==    at 0x1391DF3D: get_domain (common.c:91)
==49943==  Address 0x1391df3d is in the Text segment of /usr/local/lib/glusterfs/3.8.12/xlator/features/locks.so
==49943==    at 0x1391DF3D: get_domain (common.c:91)
==49943== 
==49943== Jump to the invalid address stated on the next line
==49943==    at 0x1393A93B: pl_common_inodelk (inodelk.c:744)
==49943==  Address 0x1393a93b is in the Text segment of /usr/local/lib/glusterfs/3.8.12/xlator/features/locks.so
==49943==    at 0x1393A93B: pl_common_inodelk (inodelk.c:744)
==49943== 
==49943== Jump to the invalid address stated on the next line
==49943==    at 0x1393A952: pl_common_inodelk (inodelk.c:750)
==49943==  Address 0x1393a952 is in the Text segment of /usr/local/lib/glusterfs/3.8.12/xlator/features/locks.so
==49943==    at 0x1393A952: pl_common_inodelk (inodelk.c:750)
==49943== 
==49943== Invalid read of size 4
==49943==    at 0x1393A968: pl_common_inodelk (inodelk.c:750)
==49943==  Address 0x1af0c99c is 188 bytes inside a block of size 1,924 alloc'd
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x4E908B0: mem_get (mem-pool.c:513)
==49943==    by 0x4E906CE: mem_get0 (mem-pool.c:446)
==49943==    by 0x4E9921D: create_frame (stack.c:25)
==49943==    by 0x4EA4EAD: synctask_create (syncop.c:469)
==49943==    by 0x4EA527F: synctask_new1 (syncop.c:571)
==49943==    by 0x143AE0D7: mq_synctask1 (marker-quota.c:1078)
==49943==    by 0x143AE199: mq_synctask (marker-quota.c:1097)
==49943==    by 0x143AE6F6: _mq_create_xattrs_txn (marker-quota.c:1236)
==49943==    by 0x143AE82D: mq_create_xattrs_txn (marker-quota.c:1253)
==49943==    by 0x143B0DCB: mq_inspect_directory_xattr (marker-quota.c:2027)
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x1393A975: pl_common_inodelk (inodelk.c:750)
==49943==  Address 0x1af0c97c is 156 bytes inside a block of size 1,924 alloc'd
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x4E908B0: mem_get (mem-pool.c:513)
==49943==    by 0x4E906CE: mem_get0 (mem-pool.c:446)
==49943==    by 0x4E9921D: create_frame (stack.c:25)
==49943==    by 0x4EA4EAD: synctask_create (syncop.c:469)
==49943==    by 0x4EA527F: synctask_new1 (syncop.c:571)
==49943==    by 0x143AE0D7: mq_synctask1 (marker-quota.c:1078)
==49943==    by 0x143AE199: mq_synctask (marker-quota.c:1097)
==49943==    by 0x143AE6F6: _mq_create_xattrs_txn (marker-quota.c:1236)
==49943==    by 0x143AE82D: mq_create_xattrs_txn (marker-quota.c:1253)
==49943==    by 0x143B0DCB: mq_inspect_directory_xattr (marker-quota.c:2027)
==49943== 
==49943== Jump to the invalid address stated on the next line
==49943==    at 0x1393A2EA: new_inode_lock (inodelk.c:623)
==49943==  Address 0x1393a2ea is in the Text segment of /usr/local/lib/glusterfs/3.8.12/xlator/features/locks.so
==49943==    at 0x1393A2EA: new_inode_lock (inodelk.c:623)
==49943== 
==49943== Jump to the invalid address stated on the next line
==49943==    at 0x1393A32D: new_inode_lock (inodelk.c:626)
==49943==  Address 0x1393a32d is in the Text segment of /usr/local/lib/glusterfs/3.8.12/xlator/features/locks.so
==49943==    at 0x1393A32D: new_inode_lock (inodelk.c:626)
==49943== 
==49943== Jump to the invalid address stated on the next line
==49943==    at 0x1393A342: new_inode_lock (inodelk.c:632)
==49943==  Address 0x1393a342 is in the Text segment of /usr/local/lib/glusterfs/3.8.12/xlator/features/locks.so
==49943==    at 0x1393A342: new_inode_lock (inodelk.c:632)
==49943== 
==49943== Jump to the invalid address stated on the next line
==49943==    at 0x1393A36E: new_inode_lock (inodelk.c:636)
==49943==  Address 0x1393a36e is in the Text segment of /usr/local/lib/glusterfs/3.8.12/xlator/features/locks.so
==49943==    at 0x1393A36E: new_inode_lock (inodelk.c:636)
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x1393A3EC: new_inode_lock (inodelk.c:643)
==49943==  Address 0x1af0cc24 is 836 bytes inside a block of size 1,924 alloc'd
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x4E908B0: mem_get (mem-pool.c:513)
==49943==    by 0x4E906CE: mem_get0 (mem-pool.c:446)
==49943==    by 0x4E9921D: create_frame (stack.c:25)
==49943==    by 0x4EA4EAD: synctask_create (syncop.c:469)
==49943==    by 0x4EA527F: synctask_new1 (syncop.c:571)
==49943==    by 0x143AE0D7: mq_synctask1 (marker-quota.c:1078)
==49943==    by 0x143AE199: mq_synctask (marker-quota.c:1097)
==49943==    by 0x143AE6F6: _mq_create_xattrs_txn (marker-quota.c:1236)
==49943==    by 0x143AE82D: mq_create_xattrs_txn (marker-quota.c:1253)
==49943==    by 0x143B0DCB: mq_inspect_directory_xattr (marker-quota.c:2027)
==49943== 
==49943== Jump to the invalid address stated on the next line
==49943==    at 0x1393A3EC: new_inode_lock (inodelk.c:643)
==49943==  Address 0x1393a3ec is in the Text segment of /usr/local/lib/glusterfs/3.8.12/xlator/features/locks.so
==49943==    at 0x1393A3EC: new_inode_lock (inodelk.c:643)
==49943== 
==49943== Jump to the invalid address stated on the next line
==49943==    at 0x1393A3EF: new_inode_lock (inodelk.c:643)
==49943==  Address 0x1393a3ef is in the Text segment of /usr/local/lib/glusterfs/3.8.12/xlator/features/locks.so
==49943==    at 0x1393A3EF: new_inode_lock (inodelk.c:643)
==49943== 
==49943== Invalid read of size 4
==49943==    at 0x1393A3F5: new_inode_lock (inodelk.c:643)
==49943==  Address 0x1af0d024 is 1,860 bytes inside a block of size 1,924 alloc'd
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x4E908B0: mem_get (mem-pool.c:513)
==49943==    by 0x4E906CE: mem_get0 (mem-pool.c:446)
==49943==    by 0x4E9921D: create_frame (stack.c:25)
==49943==    by 0x4EA4EAD: synctask_create (syncop.c:469)
==49943==    by 0x4EA527F: synctask_new1 (syncop.c:571)
==49943==    by 0x143AE0D7: mq_synctask1 (marker-quota.c:1078)
==49943==    by 0x143AE199: mq_synctask (marker-quota.c:1097)
==49943==    by 0x143AE6F6: _mq_create_xattrs_txn (marker-quota.c:1236)
==49943==    by 0x143AE82D: mq_create_xattrs_txn (marker-quota.c:1253)
==49943==    by 0x143B0DCB: mq_inspect_directory_xattr (marker-quota.c:2027)
==49943== 
==49943== Jump to the invalid address stated on the next line
==49943==    at 0x1393A43A: new_inode_lock (inodelk.c:651)
==49943==  Address 0x1393a43a is in the Text segment of /usr/local/lib/glusterfs/3.8.12/xlator/features/locks.so
==49943==    at 0x1393A43A: new_inode_lock (inodelk.c:651)
==49943== 
==49943== Jump to the invalid address stated on the next line
==49943==    at 0x13938A2F: __pl_inodelk_ref (inodelk.c:29)
==49943==  Address 0x13938a2f is in the Text segment of /usr/local/lib/glusterfs/3.8.12/xlator/features/locks.so
==49943==    at 0x13938A2F: __pl_inodelk_ref (inodelk.c:29)
==49943== 
==49943== Jump to the invalid address stated on the next line
==49943==    at 0x1393A4AD: new_inode_lock (inodelk.c:656)
==49943==  Address 0x1393a4ad is in the Text segment of /usr/local/lib/glusterfs/3.8.12/xlator/features/locks.so
==49943==    at 0x1393A4AD: new_inode_lock (inodelk.c:656)
==49943== 
==49943== Jump to the invalid address stated on the next line
==49943==    at 0x1393A99A: pl_common_inodelk (inodelk.c:750)
==49943==  Address 0x1393a99a is in the Text segment of /usr/local/lib/glusterfs/3.8.12/xlator/features/locks.so
==49943==    at 0x1393A99A: pl_common_inodelk (inodelk.c:750)
==49943== 
==49943== Jump to the invalid address stated on the next line
==49943==    at 0x1393A9B8: pl_common_inodelk (inodelk.c:760)
==49943==  Address 0x1393a9b8 is in the Text segment of /usr/local/lib/glusterfs/3.8.12/xlator/features/locks.so
==49943==    at 0x1393A9B8: pl_common_inodelk (inodelk.c:760)
==49943== 
==49943== Jump to the invalid address stated on the next line
==49943==    at 0x1393A9C3: pl_common_inodelk (inodelk.c:760)
==49943==  Address 0x1393a9c3 is in the Text segment of /usr/local/lib/glusterfs/3.8.12/xlator/features/locks.so
==49943==    at 0x1393A9C3: pl_common_inodelk (inodelk.c:760)
==49943== 
==49943== Jump to the invalid address stated on the next line
==49943==    at 0x1393A9CC: pl_common_inodelk (inodelk.c:762)
==49943==  Address 0x1393a9cc is in the Text segment of /usr/local/lib/glusterfs/3.8.12/xlator/features/locks.so
==49943==    at 0x1393A9CC: pl_common_inodelk (inodelk.c:762)
==49943== 
==49943== Jump to the invalid address stated on the next line
==49943==    at 0x1393A9F2: pl_common_inodelk (inodelk.c:768)
==49943==  Address 0x1393a9f2 is in the Text segment of /usr/local/lib/glusterfs/3.8.12/xlator/features/locks.so
==49943==    at 0x1393A9F2: pl_common_inodelk (inodelk.c:768)
==49943== 
==49943== Jump to the invalid address stated on the next line
==49943==    at 0x1391D500: ??? (in /usr/local/lib/glusterfs/3.8.12/xlator/features/locks.so)
==49943==  Address 0x1391d500 is in the PLT segment of /usr/local/lib/glusterfs/3.8.12/xlator/features/locks.so
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x1391D500: ??? (in /usr/local/lib/glusterfs/3.8.12/xlator/features/locks.so)
==49943==  Address 0x13b44150 is in the GOTPLT segment of /usr/local/lib/glusterfs/3.8.12/xlator/features/locks.so
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x4E6FBD6: inode_ref (inode.c:538)
==49943==  Address 0x17536b6c is 92 bytes inside a block of size 260 alloc'd
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x4E908B0: mem_get (mem-pool.c:513)
==49943==    by 0x4E906CE: mem_get0 (mem-pool.c:446)
==49943==    by 0x4E6FE09: __inode_create (inode.c:600)
==49943==    by 0x4E7004E: inode_new (inode.c:647)
==49943==    by 0x1506A05F: server_inode_new (server-helpers.c:1314)
==49943==    by 0x15063F03: resolve_gfid (server-resolve.c:208)
==49943==    by 0x1506484F: server_resolve_inode (server-resolve.c:421)
==49943==    by 0x15064CD4: server_resolve (server-resolve.c:562)
==49943==    by 0x15064E6B: server_resolve_all (server-resolve.c:614)
==49943==    by 0x15064F80: resolve_and_resume (server-resolve.c:645)
==49943== 
==49943== Invalid read of size 4
==49943==    at 0x4E6FAE4: __inode_ref (inode.c:486)
==49943==  Address 0x17536bb8 is 168 bytes inside a block of size 260 alloc'd
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x4E908B0: mem_get (mem-pool.c:513)
==49943==    by 0x4E906CE: mem_get0 (mem-pool.c:446)
==49943==    by 0x4E6FE09: __inode_create (inode.c:600)
==49943==    by 0x4E7004E: inode_new (inode.c:647)
==49943==    by 0x1506A05F: server_inode_new (server-helpers.c:1314)
==49943==    by 0x15063F03: resolve_gfid (server-resolve.c:208)
==49943==    by 0x1506484F: server_resolve_inode (server-resolve.c:421)
==49943==    by 0x15064CD4: server_resolve (server-resolve.c:562)
==49943==    by 0x15064E6B: server_resolve_all (server-resolve.c:614)
==49943==    by 0x15064F80: resolve_and_resume (server-resolve.c:645)
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x5799623: uuid_compare (in /usr/lib64/libuuid.so.1.3.0)
==49943==  Address 0xf69d728 is in a rw- anonymous segment
==49943== 
==49943== Invalid read of size 1
==49943==    at 0x579A5E0: ??? (in /usr/lib64/libuuid.so.1.3.0)
==49943==  Address 0x17536b74 is 100 bytes inside a block of size 260 alloc'd
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x4E908B0: mem_get (mem-pool.c:513)
==49943==    by 0x4E906CE: mem_get0 (mem-pool.c:446)
==49943==    by 0x4E6FE09: __inode_create (inode.c:600)
==49943==    by 0x4E7004E: inode_new (inode.c:647)
==49943==    by 0x1506A05F: server_inode_new (server-helpers.c:1314)
==49943==    by 0x15063F03: resolve_gfid (server-resolve.c:208)
==49943==    by 0x1506484F: server_resolve_inode (server-resolve.c:421)
==49943==    by 0x15064CD4: server_resolve (server-resolve.c:562)
==49943==    by 0x15064E6B: server_resolve_all (server-resolve.c:614)
==49943==    by 0x15064F80: resolve_and_resume (server-resolve.c:645)
==49943== 
==49943== Invalid read of size 1
==49943==    at 0x579A5E3: ??? (in /usr/lib64/libuuid.so.1.3.0)
==49943==  Address 0x17536b75 is 101 bytes inside a block of size 260 alloc'd
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x4E908B0: mem_get (mem-pool.c:513)
==49943==    by 0x4E906CE: mem_get0 (mem-pool.c:446)
==49943==    by 0x4E6FE09: __inode_create (inode.c:600)
==49943==    by 0x4E7004E: inode_new (inode.c:647)
==49943==    by 0x1506A05F: server_inode_new (server-helpers.c:1314)
==49943==    by 0x15063F03: resolve_gfid (server-resolve.c:208)
==49943==    by 0x1506484F: server_resolve_inode (server-resolve.c:421)
==49943==    by 0x15064CD4: server_resolve (server-resolve.c:562)
==49943==    by 0x15064E6B: server_resolve_all (server-resolve.c:614)
==49943==    by 0x15064F80: resolve_and_resume (server-resolve.c:645)
==49943== 
==49943== Invalid read of size 1
==49943==    at 0x579A5EC: ??? (in /usr/lib64/libuuid.so.1.3.0)
==49943==  Address 0x17536b76 is 102 bytes inside a block of size 260 alloc'd
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x4E908B0: mem_get (mem-pool.c:513)
==49943==    by 0x4E906CE: mem_get0 (mem-pool.c:446)
==49943==    by 0x4E6FE09: __inode_create (inode.c:600)
==49943==    by 0x4E7004E: inode_new (inode.c:647)
==49943==    by 0x1506A05F: server_inode_new (server-helpers.c:1314)
==49943==    by 0x15063F03: resolve_gfid (server-resolve.c:208)
==49943==    by 0x1506484F: server_resolve_inode (server-resolve.c:421)
==49943==    by 0x15064CD4: server_resolve (server-resolve.c:562)
==49943==    by 0x15064E6B: server_resolve_all (server-resolve.c:614)
==49943==    by 0x15064F80: resolve_and_resume (server-resolve.c:645)
==49943== 
==49943== Invalid read of size 1
==49943==    at 0x579A5F5: ??? (in /usr/lib64/libuuid.so.1.3.0)
==49943==  Address 0x17536b77 is 103 bytes inside a block of size 260 alloc'd
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x4E908B0: mem_get (mem-pool.c:513)
==49943==    by 0x4E906CE: mem_get0 (mem-pool.c:446)
==49943==    by 0x4E6FE09: __inode_create (inode.c:600)
==49943==    by 0x4E7004E: inode_new (inode.c:647)
==49943==    by 0x1506A05F: server_inode_new (server-helpers.c:1314)
==49943==    by 0x15063F03: resolve_gfid (server-resolve.c:208)
==49943==    by 0x1506484F: server_resolve_inode (server-resolve.c:421)
==49943==    by 0x15064CD4: server_resolve (server-resolve.c:562)
==49943==    by 0x15064E6B: server_resolve_all (server-resolve.c:614)
==49943==    by 0x15064F80: resolve_and_resume (server-resolve.c:645)
==49943== 
==49943== Invalid read of size 1
==49943==    at 0x579A600: ??? (in /usr/lib64/libuuid.so.1.3.0)
==49943==  Address 0x17536b78 is 104 bytes inside a block of size 260 alloc'd
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x4E908B0: mem_get (mem-pool.c:513)
==49943==    by 0x4E906CE: mem_get0 (mem-pool.c:446)
==49943==    by 0x4E6FE09: __inode_create (inode.c:600)
==49943==    by 0x4E7004E: inode_new (inode.c:647)
==49943==    by 0x1506A05F: server_inode_new (server-helpers.c:1314)
==49943==    by 0x15063F03: resolve_gfid (server-resolve.c:208)
==49943==    by 0x1506484F: server_resolve_inode (server-resolve.c:421)
==49943==    by 0x15064CD4: server_resolve (server-resolve.c:562)
==49943==    by 0x15064E6B: server_resolve_all (server-resolve.c:614)
==49943==    by 0x15064F80: resolve_and_resume (server-resolve.c:645)
==49943== 
==49943== Invalid read of size 1
==49943==    at 0x579A604: ??? (in /usr/lib64/libuuid.so.1.3.0)
==49943==  Address 0x17536b79 is 105 bytes inside a block of size 260 alloc'd
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x4E908B0: mem_get (mem-pool.c:513)
==49943==    by 0x4E906CE: mem_get0 (mem-pool.c:446)
==49943==    by 0x4E6FE09: __inode_create (inode.c:600)
==49943==    by 0x4E7004E: inode_new (inode.c:647)
==49943==    by 0x1506A05F: server_inode_new (server-helpers.c:1314)
==49943==    by 0x15063F03: resolve_gfid (server-resolve.c:208)
==49943==    by 0x1506484F: server_resolve_inode (server-resolve.c:421)
==49943==    by 0x15064CD4: server_resolve (server-resolve.c:562)
==49943==    by 0x15064E6B: server_resolve_all (server-resolve.c:614)
==49943==    by 0x15064F80: resolve_and_resume (server-resolve.c:645)
==49943== 
==49943== Invalid read of size 1
==49943==    at 0x579A611: ??? (in /usr/lib64/libuuid.so.1.3.0)
==49943==  Address 0x17536b7a is 106 bytes inside a block of size 260 alloc'd
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x4E908B0: mem_get (mem-pool.c:513)
==49943==    by 0x4E906CE: mem_get0 (mem-pool.c:446)
==49943==    by 0x4E6FE09: __inode_create (inode.c:600)
==49943==    by 0x4E7004E: inode_new (inode.c:647)
==49943==    by 0x1506A05F: server_inode_new (server-helpers.c:1314)
==49943==    by 0x15063F03: resolve_gfid (server-resolve.c:208)
==49943==    by 0x1506484F: server_resolve_inode (server-resolve.c:421)
==49943==    by 0x15064CD4: server_resolve (server-resolve.c:562)
==49943==    by 0x15064E6B: server_resolve_all (server-resolve.c:614)
==49943==    by 0x15064F80: resolve_and_resume (server-resolve.c:645)
==49943== 
==49943== Invalid read of size 1
==49943==    at 0x579A615: ??? (in /usr/lib64/libuuid.so.1.3.0)
==49943==  Address 0x17536b7b is 107 bytes inside a block of size 260 alloc'd
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x4E908B0: mem_get (mem-pool.c:513)
==49943==    by 0x4E906CE: mem_get0 (mem-pool.c:446)
==49943==    by 0x4E6FE09: __inode_create (inode.c:600)
==49943==    by 0x4E7004E: inode_new (inode.c:647)
==49943==    by 0x1506A05F: server_inode_new (server-helpers.c:1314)
==49943==    by 0x15063F03: resolve_gfid (server-resolve.c:208)
==49943==    by 0x1506484F: server_resolve_inode (server-resolve.c:421)
==49943==    by 0x15064CD4: server_resolve (server-resolve.c:562)
==49943==    by 0x15064E6B: server_resolve_all (server-resolve.c:614)
==49943==    by 0x15064F80: resolve_and_resume (server-resolve.c:645)
==49943== 
==49943== Invalid read of size 1
==49943==    at 0x579A622: ??? (in /usr/lib64/libuuid.so.1.3.0)
==49943==  Address 0x17536b7c is 108 bytes inside a block of size 260 alloc'd
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x4E908B0: mem_get (mem-pool.c:513)
==49943==    by 0x4E906CE: mem_get0 (mem-pool.c:446)
==49943==    by 0x4E6FE09: __inode_create (inode.c:600)
==49943==    by 0x4E7004E: inode_new (inode.c:647)
==49943==    by 0x1506A05F: server_inode_new (server-helpers.c:1314)
==49943==    by 0x15063F03: resolve_gfid (server-resolve.c:208)
==49943==    by 0x1506484F: server_resolve_inode (server-resolve.c:421)
==49943==    by 0x15064CD4: server_resolve (server-resolve.c:562)
==49943==    by 0x15064E6B: server_resolve_all (server-resolve.c:614)
==49943==    by 0x15064F80: resolve_and_resume (server-resolve.c:645)
==49943== 
==49943== Invalid read of size 1
==49943==    at 0x579A626: ??? (in /usr/lib64/libuuid.so.1.3.0)
==49943==  Address 0x17536b7d is 109 bytes inside a block of size 260 alloc'd
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x4E908B0: mem_get (mem-pool.c:513)
==49943==    by 0x4E906CE: mem_get0 (mem-pool.c:446)
==49943==    by 0x4E6FE09: __inode_create (inode.c:600)
==49943==    by 0x4E7004E: inode_new (inode.c:647)
==49943==    by 0x1506A05F: server_inode_new (server-helpers.c:1314)
==49943==    by 0x15063F03: resolve_gfid (server-resolve.c:208)
==49943==    by 0x1506484F: server_resolve_inode (server-resolve.c:421)
==49943==    by 0x15064CD4: server_resolve (server-resolve.c:562)
==49943==    by 0x15064E6B: server_resolve_all (server-resolve.c:614)
==49943==    by 0x15064F80: resolve_and_resume (server-resolve.c:645)
==49943== 
==49943== Invalid read of size 4
==49943==    at 0x579A633: ??? (in /usr/lib64/libuuid.so.1.3.0)
==49943==  Address 0x17536b7e is 110 bytes inside a block of size 260 alloc'd
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x4E908B0: mem_get (mem-pool.c:513)
==49943==    by 0x4E906CE: mem_get0 (mem-pool.c:446)
==49943==    by 0x4E6FE09: __inode_create (inode.c:600)
==49943==    by 0x4E7004E: inode_new (inode.c:647)
==49943==    by 0x1506A05F: server_inode_new (server-helpers.c:1314)
==49943==    by 0x15063F03: resolve_gfid (server-resolve.c:208)
==49943==    by 0x1506484F: server_resolve_inode (server-resolve.c:421)
==49943==    by 0x15064CD4: server_resolve (server-resolve.c:562)
==49943==    by 0x15064E6B: server_resolve_all (server-resolve.c:614)
==49943==    by 0x15064F80: resolve_and_resume (server-resolve.c:645)
==49943== 
==49943== Invalid read of size 2
==49943==    at 0x579A639: ??? (in /usr/lib64/libuuid.so.1.3.0)
==49943==  Address 0x17536b82 is 114 bytes inside a block of size 260 alloc'd
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x4E908B0: mem_get (mem-pool.c:513)
==49943==    by 0x4E906CE: mem_get0 (mem-pool.c:446)
==49943==    by 0x4E6FE09: __inode_create (inode.c:600)
==49943==    by 0x4E7004E: inode_new (inode.c:647)
==49943==    by 0x1506A05F: server_inode_new (server-helpers.c:1314)
==49943==    by 0x15063F03: resolve_gfid (server-resolve.c:208)
==49943==    by 0x1506484F: server_resolve_inode (server-resolve.c:421)
==49943==    by 0x15064CD4: server_resolve (server-resolve.c:562)
==49943==    by 0x15064E6B: server_resolve_all (server-resolve.c:614)
==49943==    by 0x15064F80: resolve_and_resume (server-resolve.c:645)
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x5799656: uuid_compare (in /usr/lib64/libuuid.so.1.3.0)
==49943==  Address 0xf69d728 is in a rw- anonymous segment
==49943== 
==49943== Invalid read of size 4
==49943==    at 0x4E6FB36: __inode_ref (inode.c:502)
==49943==  Address 0x17536bb8 is 168 bytes inside a block of size 260 alloc'd
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x4E908B0: mem_get (mem-pool.c:513)
==49943==    by 0x4E906CE: mem_get0 (mem-pool.c:446)
==49943==    by 0x4E6FE09: __inode_create (inode.c:600)
==49943==    by 0x4E7004E: inode_new (inode.c:647)
==49943==    by 0x1506A05F: server_inode_new (server-helpers.c:1314)
==49943==    by 0x15063F03: resolve_gfid (server-resolve.c:208)
==49943==    by 0x1506484F: server_resolve_inode (server-resolve.c:421)
==49943==    by 0x15064CD4: server_resolve (server-resolve.c:562)
==49943==    by 0x15064E6B: server_resolve_all (server-resolve.c:614)
==49943==    by 0x15064F80: resolve_and_resume (server-resolve.c:645)
==49943== 
==49943== Invalid write of size 4
==49943==    at 0x4E6FB40: __inode_ref (inode.c:502)
==49943==  Address 0x17536bb8 is 168 bytes inside a block of size 260 alloc'd
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x4E908B0: mem_get (mem-pool.c:513)
==49943==    by 0x4E906CE: mem_get0 (mem-pool.c:446)
==49943==    by 0x4E6FE09: __inode_create (inode.c:600)
==49943==    by 0x4E7004E: inode_new (inode.c:647)
==49943==    by 0x1506A05F: server_inode_new (server-helpers.c:1314)
==49943==    by 0x15063F03: resolve_gfid (server-resolve.c:208)
==49943==    by 0x1506484F: server_resolve_inode (server-resolve.c:421)
==49943==    by 0x15064CD4: server_resolve (server-resolve.c:562)
==49943==    by 0x15064E6B: server_resolve_all (server-resolve.c:614)
==49943==    by 0x15064F80: resolve_and_resume (server-resolve.c:645)
==49943== 
==49943== Jump to the invalid address stated on the next line
==49943==    at 0x13939FD0: pl_inode_setlk (inodelk.c:538)
==49943==  Address 0x13939fd0 is in the Text segment of /usr/local/lib/glusterfs/3.8.12/xlator/features/locks.so
==49943==    at 0x13939FD0: pl_inode_setlk (inodelk.c:538)
==49943== 
==49943== Jump to the invalid address stated on the next line
==49943==    at 0x13939FEE: pl_inode_setlk (inodelk.c:542)
==49943==  Address 0x13939fee is in the Text segment of /usr/local/lib/glusterfs/3.8.12/xlator/features/locks.so
==49943==    at 0x13939FEE: pl_inode_setlk (inodelk.c:542)
==49943== 
==49943== Jump to the invalid address stated on the next line
==49943==    at 0x13939FFA: pl_inode_setlk (inodelk.c:544)
==49943==  Address 0x13939ffa is in the Text segment of /usr/local/lib/glusterfs/3.8.12/xlator/features/locks.so
==49943==    at 0x13939FFA: pl_inode_setlk (inodelk.c:544)
==49943== 
==49943== Jump to the invalid address stated on the next line
==49943==    at 0x1393A00C: pl_inode_setlk (inodelk.c:545)
==49943==  Address 0x1393a00c is in the Text segment of /usr/local/lib/glusterfs/3.8.12/xlator/features/locks.so
==49943==    at 0x1393A00C: pl_inode_setlk (inodelk.c:545)
==49943== 
==49943== Jump to the invalid address stated on the next line
==49943==    at 0x13938CCE: __inodelk_grantable (inodelk.c:136)
==49943==  Address 0x13938cce is in the Text segment of /usr/local/lib/glusterfs/3.8.12/xlator/features/locks.so
==49943==    at 0x13938CCE: __inodelk_grantable (inodelk.c:136)
==49943== 
==49943== Jump to the invalid address stated on the next line
==49943==    at 0x13938887: list_empty (list.h:113)
==49943==  Address 0x13938887 is in the Text segment of /usr/local/lib/glusterfs/3.8.12/xlator/features/locks.so
==49943==    at 0x13938887: list_empty (list.h:113)
==49943== 
==49943== Jump to the invalid address stated on the next line
==49943==    at 0x13938CFE: __inodelk_grantable (inodelk.c:139)
==49943==  Address 0x13938cfe is in the Text segment of /usr/local/lib/glusterfs/3.8.12/xlator/features/locks.so
==49943==    at 0x13938CFE: __inodelk_grantable (inodelk.c:139)
==49943== 
==49943== Jump to the invalid address stated on the next line
==49943==    at 0x13938D02: __inodelk_grantable (inodelk.c:140)
==49943==  Address 0x13938d02 is in the Text segment of /usr/local/lib/glusterfs/3.8.12/xlator/features/locks.so
==49943==    at 0x13938D02: __inodelk_grantable (inodelk.c:140)
==49943== 
==49943== Jump to the invalid address stated on the next line
==49943==    at 0x13938F01: __lock_inodelk (inodelk.c:201)
==49943==  Address 0x13938f01 is in the Text segment of /usr/local/lib/glusterfs/3.8.12/xlator/features/locks.so
==49943==    at 0x13938F01: __lock_inodelk (inodelk.c:201)
==49943== 
==49943== Jump to the invalid address stated on the next line
==49943==    at 0x13938FEE: __lock_inodelk (inodelk.c:234)
==49943==  Address 0x13938fee is in the Text segment of /usr/local/lib/glusterfs/3.8.12/xlator/features/locks.so
==49943==    at 0x13938FEE: __lock_inodelk (inodelk.c:234)
==49943== 
==49943== Jump to the invalid address stated on the next line
==49943==    at 0x13938D9C: __blocked_lock_conflict (inodelk.c:158)
==49943==  Address 0x13938d9c is in the Text segment of /usr/local/lib/glusterfs/3.8.12/xlator/features/locks.so
==49943==    at 0x13938D9C: __blocked_lock_conflict (inodelk.c:158)
==49943== 
==49943== Jump to the invalid address stated on the next line
==49943==    at 0x13938DA0: __blocked_lock_conflict (inodelk.c:159)
==49943==  Address 0x13938da0 is in the Text segment of /usr/local/lib/glusterfs/3.8.12/xlator/features/locks.so
==49943==    at 0x13938DA0: __blocked_lock_conflict (inodelk.c:159)
==49943== 
==49943== Jump to the invalid address stated on the next line
==49943==    at 0x13939001: __lock_inodelk (inodelk.c:234)
==49943==  Address 0x13939001 is in the Text segment of /usr/local/lib/glusterfs/3.8.12/xlator/features/locks.so
==49943==    at 0x13939001: __lock_inodelk (inodelk.c:234)
==49943== 
==49943== Jump to the invalid address stated on the next line
==49943==    at 0x13939134: __lock_inodelk (inodelk.c:255)
==49943==  Address 0x13939134 is in the Text segment of /usr/local/lib/glusterfs/3.8.12/xlator/features/locks.so
==49943==    at 0x13939134: __lock_inodelk (inodelk.c:255)
==49943== 
==49943== Jump to the invalid address stated on the next line
==49943==    at 0x13939140: __lock_inodelk (inodelk.c:256)
==49943==  Address 0x13939140 is in the Text segment of /usr/local/lib/glusterfs/3.8.12/xlator/features/locks.so
==49943==    at 0x13939140: __lock_inodelk (inodelk.c:256)
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x1391D3D0: ??? (in /usr/local/lib/glusterfs/3.8.12/xlator/features/locks.so)
==49943==  Address 0x13b440b8 is in the GOTPLT segment of /usr/local/lib/glusterfs/3.8.12/xlator/features/locks.so
==49943== 
==49943== Jump to the invalid address stated on the next line
==49943==    at 0x13939157: __lock_inodelk (inodelk.c:257)
==49943==  Address 0x13939157 is in the Text segment of /usr/local/lib/glusterfs/3.8.12/xlator/features/locks.so
==49943==    at 0x13939157: __lock_inodelk (inodelk.c:257)
==49943== 
==49943== Jump to the invalid address stated on the next line
==49943==    at 0x1393916E: __lock_inodelk (inodelk.c:259)
==49943==  Address 0x1393916e is in the Text segment of /usr/local/lib/glusterfs/3.8.12/xlator/features/locks.so
==49943==    at 0x1393916E: __lock_inodelk (inodelk.c:259)
==49943== 
==49943== Jump to the invalid address stated on the next line
==49943==    at 0x1393A02A: pl_inode_setlk (inodelk.c:545)
==49943==  Address 0x1393a02a is in the Text segment of /usr/local/lib/glusterfs/3.8.12/xlator/features/locks.so
==49943==    at 0x1393A02A: pl_inode_setlk (inodelk.c:545)
==49943== 
==49943== Jump to the invalid address stated on the next line
==49943==    at 0x1393A037: pl_inode_setlk (inodelk.c:547)
==49943==  Address 0x1393a037 is in the Text segment of /usr/local/lib/glusterfs/3.8.12/xlator/features/locks.so
==49943==    at 0x1393A037: pl_inode_setlk (inodelk.c:547)
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x1391D7D0: ??? (in /usr/local/lib/glusterfs/3.8.12/xlator/features/locks.so)
==49943==  Address 0x13b442b8 is in the GOTPLT segment of /usr/local/lib/glusterfs/3.8.12/xlator/features/locks.so
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x60B7592: pthread_setspecific (in /usr/lib64/libpthread-2.17.so)
==49943==  Address 0xf69d710 is in a rw- anonymous segment
==49943== 
==49943== Invalid write of size 1
==49943==    at 0x60B75F2: pthread_setspecific (in /usr/lib64/libpthread-2.17.so)
==49943==  Address 0xf69dd10 is in a rw- anonymous segment
==49943== 
==49943== Invalid write of size 8
==49943==    at 0x60B75FD: pthread_setspecific (in /usr/lib64/libpthread-2.17.so)
==49943==  Address 0xf69da38 is in a rw- anonymous segment
==49943== 
==49943== Invalid write of size 8
==49943==    at 0x60B7601: pthread_setspecific (in /usr/lib64/libpthread-2.17.so)
==49943==  Address 0xf69da30 is in a rw- anonymous segment
==49943== 
==49943== Invalid read of size 4
==49943==    at 0x66F8154: vfprintf (in /usr/lib64/libc-2.17.so)
==49943==  Address 0xf69d630 is in a rw- anonymous segment
==49943== 
==49943== Jump to the invalid address stated on the next line
==49943==    at 0x1393A068: pl_inode_setlk (inodelk.c:548)
==49943==  Address 0x1393a068 is in the Text segment of /usr/local/lib/glusterfs/3.8.12/xlator/features/locks.so
==49943==    at 0x1393A068: pl_inode_setlk (inodelk.c:548)
==49943== 
==49943== Jump to the invalid address stated on the next line
==49943==    at 0x1393A08C: pl_inode_setlk (inodelk.c:548)
==49943==  Address 0x1393a08c is in the Text segment of /usr/local/lib/glusterfs/3.8.12/xlator/features/locks.so
==49943==    at 0x1393A08C: pl_inode_setlk (inodelk.c:548)
==49943== 
==49943== Jump to the invalid address stated on the next line
==49943==    at 0x1393A0DB: pl_inode_setlk (inodelk.c:548)
==49943==  Address 0x1393a0db is in the Text segment of /usr/local/lib/glusterfs/3.8.12/xlator/features/locks.so
==49943==    at 0x1393A0DB: pl_inode_setlk (inodelk.c:548)
==49943== 
==49943== Jump to the invalid address stated on the next line
==49943==    at 0x1393A25D: pl_inode_setlk (inodelk.c:596)
==49943==  Address 0x1393a25d is in the Text segment of /usr/local/lib/glusterfs/3.8.12/xlator/features/locks.so
==49943==    at 0x1393A25D: pl_inode_setlk (inodelk.c:596)
==49943== 
==49943== Jump to the invalid address stated on the next line
==49943==    at 0x1393A263: pl_inode_setlk (inodelk.c:597)
==49943==  Address 0x1393a263 is in the Text segment of /usr/local/lib/glusterfs/3.8.12/xlator/features/locks.so
==49943==    at 0x1393A263: pl_inode_setlk (inodelk.c:597)
==49943== 
==49943== Jump to the invalid address stated on the next line
==49943==    at 0x13938A91: __pl_inodelk_unref (inodelk.c:41)
==49943==  Address 0x13938a91 is in the Text segment of /usr/local/lib/glusterfs/3.8.12/xlator/features/locks.so
==49943==    at 0x13938A91: __pl_inodelk_unref (inodelk.c:41)
==49943== 
==49943== Jump to the invalid address stated on the next line
==49943==    at 0x1393A26F: pl_inode_setlk (inodelk.c:599)
==49943==  Address 0x1393a26f is in the Text segment of /usr/local/lib/glusterfs/3.8.12/xlator/features/locks.so
==49943==    at 0x1393A26F: pl_inode_setlk (inodelk.c:599)
==49943== 
==49943== Jump to the invalid address stated on the next line
==49943==    at 0x1393A27B: pl_inode_setlk (inodelk.c:600)
==49943==  Address 0x1393a27b is in the Text segment of /usr/local/lib/glusterfs/3.8.12/xlator/features/locks.so
==49943==    at 0x1393A27B: pl_inode_setlk (inodelk.c:600)
==49943== 
==49943== Jump to the invalid address stated on the next line
==49943==    at 0x1393A28E: pl_inode_setlk (inodelk.c:603)
==49943==  Address 0x1393a28e is in the Text segment of /usr/local/lib/glusterfs/3.8.12/xlator/features/locks.so
==49943==    at 0x1393A28E: pl_inode_setlk (inodelk.c:603)
==49943== 
==49943== Jump to the invalid address stated on the next line
==49943==    at 0x1393A2A7: pl_inode_setlk (inodelk.c:609)
==49943==  Address 0x1393a2a7 is in the Text segment of /usr/local/lib/glusterfs/3.8.12/xlator/features/locks.so
==49943==    at 0x1393A2A7: pl_inode_setlk (inodelk.c:609)
==49943== 
==49943== Jump to the invalid address stated on the next line
==49943==    at 0x1393A2DE: pl_inode_setlk (inodelk.c:614)
==49943==  Address 0x1393a2de is in the Text segment of /usr/local/lib/glusterfs/3.8.12/xlator/features/locks.so
==49943==    at 0x1393A2DE: pl_inode_setlk (inodelk.c:614)
==49943== 
==49943== Jump to the invalid address stated on the next line
==49943==    at 0x1393AA20: pl_common_inodelk (inodelk.c:768)
==49943==  Address 0x1393aa20 is in the Text segment of /usr/local/lib/glusterfs/3.8.12/xlator/features/locks.so
==49943==    at 0x1393AA20: pl_common_inodelk (inodelk.c:768)
==49943== 
==49943== Jump to the invalid address stated on the next line
==49943==    at 0x1393AAC5: pl_common_inodelk (inodelk.c:781)
==49943==  Address 0x1393aac5 is in the Text segment of /usr/local/lib/glusterfs/3.8.12/xlator/features/locks.so
==49943==    at 0x1393AAC5: pl_common_inodelk (inodelk.c:781)
==49943== 
==49943== Jump to the invalid address stated on the next line
==49943==    at 0x1393AB21: pl_common_inodelk (inodelk.c:796)
==49943==  Address 0x1393ab21 is in the Text segment of /usr/local/lib/glusterfs/3.8.12/xlator/features/locks.so
==49943==    at 0x1393AB21: pl_common_inodelk (inodelk.c:796)
==49943== 
==49943== Jump to the invalid address stated on the next line
==49943==    at 0x1391E477: pl_trace_out (common.c:271)
==49943==  Address 0x1391e477 is in the Text segment of /usr/local/lib/glusterfs/3.8.12/xlator/features/locks.so
==49943==    at 0x1391E477: pl_trace_out (common.c:271)
==49943== 
==49943== Jump to the invalid address stated on the next line
==49943==    at 0x1391E601: pl_trace_out (common.c:295)
==49943==  Address 0x1391e601 is in the Text segment of /usr/local/lib/glusterfs/3.8.12/xlator/features/locks.so
==49943==    at 0x1391E601: pl_trace_out (common.c:295)
==49943== 
==49943== Jump to the invalid address stated on the next line
==49943==    at 0x1393AB6B: pl_common_inodelk (inodelk.c:799)
==49943==  Address 0x1393ab6b is in the Text segment of /usr/local/lib/glusterfs/3.8.12/xlator/features/locks.so
==49943==    at 0x1393AB6B: pl_common_inodelk (inodelk.c:799)
==49943== 
==49943== Jump to the invalid address stated on the next line
==49943==    at 0x1393ABDE: pl_common_inodelk (inodelk.c:799)
==49943==  Address 0x1393abde is in the Text segment of /usr/local/lib/glusterfs/3.8.12/xlator/features/locks.so
==49943==    at 0x1393ABDE: pl_common_inodelk (inodelk.c:799)
==49943== 
==49943== Jump to the invalid address stated on the next line
==49943==    at 0x1393AC73: pl_common_inodelk (inodelk.c:799)
==49943==  Address 0x1393ac73 is in the Text segment of /usr/local/lib/glusterfs/3.8.12/xlator/features/locks.so
==49943==    at 0x1393AC73: pl_common_inodelk (inodelk.c:799)
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x1391D7E0: ??? (in /usr/local/lib/glusterfs/3.8.12/xlator/features/locks.so)
==49943==  Address 0x13b442c0 is in the GOTPLT segment of /usr/local/lib/glusterfs/3.8.12/xlator/features/locks.so
==49943== 
==49943== Jump to the invalid address stated on the next line
==49943==    at 0x1393AC7D: pl_common_inodelk (inodelk.c:799)
==49943==  Address 0x1393ac7d is in the Text segment of /usr/local/lib/glusterfs/3.8.12/xlator/features/locks.so
==49943==    at 0x1393AC7D: pl_common_inodelk (inodelk.c:799)
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x1391D440: ??? (in /usr/local/lib/glusterfs/3.8.12/xlator/features/locks.so)
==49943==  Address 0x13b440f0 is in the GOTPLT segment of /usr/local/lib/glusterfs/3.8.12/xlator/features/locks.so
==49943== 
==49943== Jump to the invalid address stated on the next line
==49943==    at 0x1393ACEA: pl_common_inodelk (inodelk.c:799)
==49943==  Address 0x1393acea is in the Text segment of /usr/local/lib/glusterfs/3.8.12/xlator/features/locks.so
==49943==    at 0x1393ACEA: pl_common_inodelk (inodelk.c:799)
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x1393AD08: pl_common_inodelk (inodelk.c:799)
==49943==  Address 0x13b43fe8 is in the GOT segment of /usr/local/lib/glusterfs/3.8.12/xlator/features/locks.so
==49943== 
==49943== Jump to the invalid address stated on the next line
==49943==    at 0x1393AD15: pl_common_inodelk (inodelk.c:799)
==49943==  Address 0x1393ad15 is in the Text segment of /usr/local/lib/glusterfs/3.8.12/xlator/features/locks.so
==49943==    at 0x1393AD15: pl_common_inodelk (inodelk.c:799)
==49943== 
==49943== Jump to the invalid address stated on the next line
==49943==    at 0x1393AD2B: pl_common_inodelk (inodelk.c:799)
==49943==  Address 0x1393ad2b is in the Text segment of /usr/local/lib/glusterfs/3.8.12/xlator/features/locks.so
==49943==    at 0x1393AD2B: pl_common_inodelk (inodelk.c:799)
==49943== 
==49943== Invalid read of size 4
==49943==    at 0x1393AD47: pl_common_inodelk (inodelk.c:799)
==49943==  Address 0x1753ff74 is 148 bytes inside a block of size 284 alloc'd
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x4E908B0: mem_get (mem-pool.c:513)
==49943==    by 0x4E906CE: mem_get0 (mem-pool.c:446)
==49943==    by 0x4E9926E: create_frame (stack.c:31)
==49943==    by 0x4EA4EAD: synctask_create (syncop.c:469)
==49943==    by 0x4EA527F: synctask_new1 (syncop.c:571)
==49943==    by 0x143AE0D7: mq_synctask1 (marker-quota.c:1078)
==49943==    by 0x143AE199: mq_synctask (marker-quota.c:1097)
==49943==    by 0x143AE6F6: _mq_create_xattrs_txn (marker-quota.c:1236)
==49943==    by 0x143AE82D: mq_create_xattrs_txn (marker-quota.c:1253)
==49943==    by 0x143B0DCB: mq_inspect_directory_xattr (marker-quota.c:2027)
==49943== 
==49943== Invalid write of size 4
==49943==    at 0x1393AD51: pl_common_inodelk (inodelk.c:799)
==49943==  Address 0x1753ff74 is 148 bytes inside a block of size 284 alloc'd
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x4E908B0: mem_get (mem-pool.c:513)
==49943==    by 0x4E906CE: mem_get0 (mem-pool.c:446)
==49943==    by 0x4E9926E: create_frame (stack.c:31)
==49943==    by 0x4EA4EAD: synctask_create (syncop.c:469)
==49943==    by 0x4EA527F: synctask_new1 (syncop.c:571)
==49943==    by 0x143AE0D7: mq_synctask1 (marker-quota.c:1078)
==49943==    by 0x143AE199: mq_synctask (marker-quota.c:1097)
==49943==    by 0x143AE6F6: _mq_create_xattrs_txn (marker-quota.c:1236)
==49943==    by 0x143AE82D: mq_create_xattrs_txn (marker-quota.c:1253)
==49943==    by 0x143B0DCB: mq_inspect_directory_xattr (marker-quota.c:2027)
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x1393AD54: pl_common_inodelk (inodelk.c:799)
==49943==  Address 0x13b43fe8 is in the GOT segment of /usr/local/lib/glusterfs/3.8.12/xlator/features/locks.so
==49943== 
==49943== Jump to the invalid address stated on the next line
==49943==    at 0x1393AD61: pl_common_inodelk (inodelk.c:799)
==49943==  Address 0x1393ad61 is in the Text segment of /usr/local/lib/glusterfs/3.8.12/xlator/features/locks.so
==49943==    at 0x1393AD61: pl_common_inodelk (inodelk.c:799)
==49943== 
==49943== Jump to the invalid address stated on the next line
==49943==    at 0x1393AD77: pl_common_inodelk (inodelk.c:799)
==49943==  Address 0x1393ad77 is in the Text segment of /usr/local/lib/glusterfs/3.8.12/xlator/features/locks.so
==49943==    at 0x1393AD77: pl_common_inodelk (inodelk.c:799)
==49943== 
==49943== Jump to the invalid address stated on the next line
==49943==    at 0x1393AD99: pl_common_inodelk (inodelk.c:799)
==49943==  Address 0x1393ad99 is in the Text segment of /usr/local/lib/glusterfs/3.8.12/xlator/features/locks.so
==49943==    at 0x1393AD99: pl_common_inodelk (inodelk.c:799)
==49943== 
==49943== Jump to the invalid address stated on the next line
==49943==    at 0x1393ADAA: pl_common_inodelk (inodelk.c:799)
==49943==  Address 0x1393adaa is in the Text segment of /usr/local/lib/glusterfs/3.8.12/xlator/features/locks.so
==49943==    at 0x1393ADAA: pl_common_inodelk (inodelk.c:799)
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x1393ADAE: pl_common_inodelk (inodelk.c:799)
==49943==  Address 0x1753ff64 is 132 bytes inside a block of size 284 alloc'd
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x4E908B0: mem_get (mem-pool.c:513)
==49943==    by 0x4E906CE: mem_get0 (mem-pool.c:446)
==49943==    by 0x4E9926E: create_frame (stack.c:31)
==49943==    by 0x4EA4EAD: synctask_create (syncop.c:469)
==49943==    by 0x4EA527F: synctask_new1 (syncop.c:571)
==49943==    by 0x143AE0D7: mq_synctask1 (marker-quota.c:1078)
==49943==    by 0x143AE199: mq_synctask (marker-quota.c:1097)
==49943==    by 0x143AE6F6: _mq_create_xattrs_txn (marker-quota.c:1236)
==49943==    by 0x143AE82D: mq_create_xattrs_txn (marker-quota.c:1253)
==49943==    by 0x143B0DCB: mq_inspect_directory_xattr (marker-quota.c:2027)
==49943== 
==49943== Jump to the invalid address stated on the next line
==49943==    at 0x1393AE04: pl_common_inodelk (inodelk.c:799)
==49943==  Address 0x1393ae04 is in the Text segment of /usr/local/lib/glusterfs/3.8.12/xlator/features/locks.so
==49943==    at 0x1393AE04: pl_common_inodelk (inodelk.c:799)
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x1393AE08: pl_common_inodelk (inodelk.c:799)
==49943==  Address 0x1753ff64 is 132 bytes inside a block of size 284 alloc'd
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x4E908B0: mem_get (mem-pool.c:513)
==49943==    by 0x4E906CE: mem_get0 (mem-pool.c:446)
==49943==    by 0x4E9926E: create_frame (stack.c:31)
==49943==    by 0x4EA4EAD: synctask_create (syncop.c:469)
==49943==    by 0x4EA527F: synctask_new1 (syncop.c:571)
==49943==    by 0x143AE0D7: mq_synctask1 (marker-quota.c:1078)
==49943==    by 0x143AE199: mq_synctask (marker-quota.c:1097)
==49943==    by 0x143AE6F6: _mq_create_xattrs_txn (marker-quota.c:1236)
==49943==    by 0x143AE82D: mq_create_xattrs_txn (marker-quota.c:1253)
==49943==    by 0x143B0DCB: mq_inspect_directory_xattr (marker-quota.c:2027)
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x4EA4AB5: synctask_wake (syncop.c:352)
==49943==  Address 0x1753ea10 is 80 bytes inside a block of size 5,336 alloc'd
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x4EA4E64: synctask_create (syncop.c:463)
==49943==    by 0x4EA527F: synctask_new1 (syncop.c:571)
==49943==    by 0x143AE0D7: mq_synctask1 (marker-quota.c:1078)
==49943==    by 0x143AE199: mq_synctask (marker-quota.c:1097)
==49943==    by 0x143AE6F6: _mq_create_xattrs_txn (marker-quota.c:1236)
==49943==    by 0x143AE82D: mq_create_xattrs_txn (marker-quota.c:1253)
==49943==    by 0x143B0DCB: mq_inspect_directory_xattr (marker-quota.c:2027)
==49943==    by 0x143B13A8: mq_xattr_state (marker-quota.c:2117)
==49943==    by 0x143A6E80: marker_lookup_cbk (marker.c:2961)
==49943==    by 0x141811E0: up_lookup_cbk (upcall.c:753)
==49943== 
==49943== Invalid write of size 4
==49943==    at 0x4EA4AD3: synctask_wake (syncop.c:356)
==49943==  Address 0x1753ea58 is 152 bytes inside a block of size 5,336 alloc'd
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x4EA4E64: synctask_create (syncop.c:463)
==49943==    by 0x4EA527F: synctask_new1 (syncop.c:571)
==49943==    by 0x143AE0D7: mq_synctask1 (marker-quota.c:1078)
==49943==    by 0x143AE199: mq_synctask (marker-quota.c:1097)
==49943==    by 0x143AE6F6: _mq_create_xattrs_txn (marker-quota.c:1236)
==49943==    by 0x143AE82D: mq_create_xattrs_txn (marker-quota.c:1253)
==49943==    by 0x143B0DCB: mq_inspect_directory_xattr (marker-quota.c:2027)
==49943==    by 0x143B13A8: mq_xattr_state (marker-quota.c:2117)
==49943==    by 0x143A6E80: marker_lookup_cbk (marker.c:2961)
==49943==    by 0x141811E0: up_lookup_cbk (upcall.c:753)
==49943== 
==49943== Invalid read of size 4
==49943==    at 0x4EA4ADE: synctask_wake (syncop.c:358)
==49943==  Address 0x1753ea5c is 156 bytes inside a block of size 5,336 alloc'd
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x4EA4E64: synctask_create (syncop.c:463)
==49943==    by 0x4EA527F: synctask_new1 (syncop.c:571)
==49943==    by 0x143AE0D7: mq_synctask1 (marker-quota.c:1078)
==49943==    by 0x143AE199: mq_synctask (marker-quota.c:1097)
==49943==    by 0x143AE6F6: _mq_create_xattrs_txn (marker-quota.c:1236)
==49943==    by 0x143AE82D: mq_create_xattrs_txn (marker-quota.c:1253)
==49943==    by 0x143B0DCB: mq_inspect_directory_xattr (marker-quota.c:2027)
==49943==    by 0x143B13A8: mq_xattr_state (marker-quota.c:2117)
==49943==    by 0x143A6E80: marker_lookup_cbk (marker.c:2961)
==49943==    by 0x141811E0: up_lookup_cbk (upcall.c:753)
==49943== 
==49943== Jump to the invalid address stated on the next line
==49943==    at 0x1393AE2E: pl_common_inodelk (inodelk.c:799)
==49943==  Address 0x1393ae2e is in the Text segment of /usr/local/lib/glusterfs/3.8.12/xlator/features/locks.so
==49943==    at 0x1393AE2E: pl_common_inodelk (inodelk.c:799)
==49943== 
==49943== Jump to the invalid address stated on the next line
==49943==    at 0x1393AE38: pl_common_inodelk (inodelk.c:799)
==49943==  Address 0x1393ae38 is in the Text segment of /usr/local/lib/glusterfs/3.8.12/xlator/features/locks.so
==49943==    at 0x1393AE38: pl_common_inodelk (inodelk.c:799)
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x1391D4E0: ??? (in /usr/local/lib/glusterfs/3.8.12/xlator/features/locks.so)
==49943==  Address 0x13b44140 is in the GOTPLT segment of /usr/local/lib/glusterfs/3.8.12/xlator/features/locks.so
==49943== 
==49943== Jump to the invalid address stated on the next line
==49943==    at 0x1393AE4B: pl_common_inodelk (inodelk.c:802)
==49943==  Address 0x1393ae4b is in the Text segment of /usr/local/lib/glusterfs/3.8.12/xlator/features/locks.so
==49943==    at 0x1393AE4B: pl_common_inodelk (inodelk.c:802)
==49943== 
==49943== Jump to the invalid address stated on the next line
==49943==    at 0x1393AE57: pl_common_inodelk (inodelk.c:803)
==49943==  Address 0x1393ae57 is in the Text segment of /usr/local/lib/glusterfs/3.8.12/xlator/features/locks.so
==49943==    at 0x1393AE57: pl_common_inodelk (inodelk.c:803)
==49943== 
==49943== Jump to the invalid address stated on the next line
==49943==    at 0x1393AEC4: pl_inodelk (inodelk.c:814)
==49943==  Address 0x1393aec4 is in the Text segment of /usr/local/lib/glusterfs/3.8.12/xlator/features/locks.so
==49943==    at 0x1393AEC4: pl_inodelk (inodelk.c:814)
==49943== 
==49943== Jump to the invalid address stated on the next line
==49943==    at 0x13B476C9: ro_inodelk (read-only-common.c:108)
==49943==  Address 0x13b476c9 is in the Text segment of /usr/local/lib/glusterfs/3.8.12/xlator/features/worm.so
==49943==    at 0x13B476C9: ro_inodelk (read-only-common.c:108)
==49943== 
==49943== Jump to the invalid address stated on the next line
==49943==    at 0x13B476D3: ro_inodelk (read-only-common.c:108)
==49943==  Address 0x13b476d3 is in the Text segment of /usr/local/lib/glusterfs/3.8.12/xlator/features/worm.so
==49943==    at 0x13B476D3: ro_inodelk (read-only-common.c:108)
==49943== 
==49943== Jump to the invalid address stated on the next line
==49943==    at 0x13D5702A: ro_inodelk (read-only-common.c:108)
==49943==  Address 0x13d5702a is in the Text segment of /usr/local/lib/glusterfs/3.8.12/xlator/features/read-only.so
==49943==    at 0x13D5702A: ro_inodelk (read-only-common.c:108)
==49943== 
==49943== Jump to the invalid address stated on the next line
==49943==    at 0x13D57034: ro_inodelk (read-only-common.c:108)
==49943==  Address 0x13d57034 is in the Text segment of /usr/local/lib/glusterfs/3.8.12/xlator/features/read-only.so
==49943==    at 0x13D57034: ro_inodelk (read-only-common.c:108)
==49943== 
==49943== Invalid read of size 4
==49943==    at 0x4EA49EF: synctask_yield (syncop.c:334)
==49943==  Address 0x1753ea40 is 128 bytes inside a block of size 5,336 alloc'd
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x4EA4E64: synctask_create (syncop.c:463)
==49943==    by 0x4EA527F: synctask_new1 (syncop.c:571)
==49943==    by 0x143AE0D7: mq_synctask1 (marker-quota.c:1078)
==49943==    by 0x143AE199: mq_synctask (marker-quota.c:1097)
==49943==    by 0x143AE6F6: _mq_create_xattrs_txn (marker-quota.c:1236)
==49943==    by 0x143AE82D: mq_create_xattrs_txn (marker-quota.c:1253)
==49943==    by 0x143B0DCB: mq_inspect_directory_xattr (marker-quota.c:2027)
==49943==    by 0x143B13A8: mq_xattr_state (marker-quota.c:2117)
==49943==    by 0x143A6E80: marker_lookup_cbk (marker.c:2961)
==49943==    by 0x141811E0: up_lookup_cbk (upcall.c:753)
==49943== 
==49943== Invalid write of size 4
==49943==    at 0x4EA49FB: synctask_yield (syncop.c:335)
==49943==  Address 0x1753ea40 is 128 bytes inside a block of size 5,336 alloc'd
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x4EA4E64: synctask_create (syncop.c:463)
==49943==    by 0x4EA527F: synctask_new1 (syncop.c:571)
==49943==    by 0x143AE0D7: mq_synctask1 (marker-quota.c:1078)
==49943==    by 0x143AE199: mq_synctask (marker-quota.c:1097)
==49943==    by 0x143AE6F6: _mq_create_xattrs_txn (marker-quota.c:1236)
==49943==    by 0x143AE82D: mq_create_xattrs_txn (marker-quota.c:1253)
==49943==    by 0x143B0DCB: mq_inspect_directory_xattr (marker-quota.c:2027)
==49943==    by 0x143B13A8: mq_xattr_state (marker-quota.c:2117)
==49943==    by 0x143A6E80: marker_lookup_cbk (marker.c:2961)
==49943==    by 0x141811E0: up_lookup_cbk (upcall.c:753)
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x67BC671: backtrace (in /usr/lib64/libc-2.17.so)
==49943==  Address 0xf69d730 is in a rw- anonymous segment
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x67E3877: __libc_dl_error_tsd (in /usr/lib64/libc-2.17.so)
==49943==  Address 0xf69d700 is in a rw- anonymous segment
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x400EFC4: _dl_catch_error (in /usr/lib64/ld-2.17.so)
==49943==  Address 0xf69d6a8 is in a rw- anonymous segment
==49943== 
==49943== Invalid write of size 8
==49943==    at 0x400EFEF: _dl_catch_error (in /usr/lib64/ld-2.17.so)
==49943==  Address 0xf69d6a8 is in a rw- anonymous segment
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x4008735: _dl_map_object (in /usr/lib64/ld-2.17.so)
==49943==  Address 0x100b5e68 is in a r-- mapped file /usr/local/lib/glusterfs/3.8.12/rpc-transport/socket.so segment
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x4008739: _dl_map_object (in /usr/lib64/ld-2.17.so)
==49943==  Address 0x100b5dd8 is in a r-- mapped file /usr/local/lib/glusterfs/3.8.12/rpc-transport/socket.so segment
==49943== 
==49943== Invalid read of size 1
==49943==    at 0x4C2BBE4: strcmp (vg_replace_strmem.c:846)
==49943==  Address 0xfea08f8 is in a r-x mapped file /usr/local/lib/glusterfs/3.8.12/rpc-transport/socket.so segment
==49943== 
==49943== Invalid read of size 1
==49943==    at 0x4C2BBFB: strcmp (vg_replace_strmem.c:846)
==49943==  Address 0x100c79be is in a r-x mapped file /usr/lib64/libssl.so.1.0.1e segment
==49943== 
==49943== Invalid read of size 4
==49943==    at 0x60B5BF2: pthread_mutex_unlock (in /usr/lib64/libpthread-2.17.so)
==49943==  Address 0xf69d9d0 is in a rw- anonymous segment
==49943== 
==49943== Invalid write of size 8
==49943==    at 0x400EFFB: _dl_catch_error (in /usr/lib64/ld-2.17.so)
==49943==  Address 0xf69d6a8 is in a rw- anonymous segment
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x40093A7: do_lookup_x (in /usr/lib64/ld-2.17.so)
==49943==  Address 0x100b5e78 is in a r-- mapped file /usr/local/lib/glusterfs/3.8.12/rpc-transport/socket.so segment
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x40093AF: do_lookup_x (in /usr/lib64/ld-2.17.so)
==49943==  Address 0x100b5e68 is in a r-- mapped file /usr/local/lib/glusterfs/3.8.12/rpc-transport/socket.so segment
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x40093D1: do_lookup_x (in /usr/lib64/ld-2.17.so)
==49943==  Address 0xfe9f208 is in a r-x mapped file /usr/local/lib/glusterfs/3.8.12/rpc-transport/socket.so segment
==49943== 
==49943== Invalid read of size 4
==49943==    at 0x4009950: do_lookup_x (in /usr/lib64/ld-2.17.so)
==49943==  Address 0x123a5218 is in a r-x mapped file /usr/lib64/libaio.so.1.0.1 segment
==49943== 
==49943== Invalid read of size 4
==49943==    at 0x400997D: do_lookup_x (in /usr/lib64/ld-2.17.so)
==49943==  Address 0x123a5240 is in a r-x mapped file /usr/lib64/libaio.so.1.0.1 segment
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x401212C: _dl_tls_get_addr_soft (in /usr/lib64/ld-2.17.so)
==49943==  Address 0xf69d708 is in a rw- anonymous segment
==49943== 
==49943== Invalid read of size 4
==49943==    at 0x1B1CC373: ??? (in /usr/lib64/libgcc_s-4.8.5-20150702.so.1)
==49943==  Address 0xfe9f040 is in a r-x mapped file /usr/local/lib/glusterfs/3.8.12/rpc-transport/socket.so segment
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x1B1CC37F: ??? (in /usr/lib64/libgcc_s-4.8.5-20150702.so.1)
==49943==  Address 0xfe9f050 is in a r-x mapped file /usr/local/lib/glusterfs/3.8.12/rpc-transport/socket.so segment
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x1B1CC38E: ??? (in /usr/lib64/libgcc_s-4.8.5-20150702.so.1)
==49943==  Address 0xfe9f068 is in a r-x mapped file /usr/local/lib/glusterfs/3.8.12/rpc-transport/socket.so segment
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x1B1CC3C8: ??? (in /usr/lib64/libgcc_s-4.8.5-20150702.so.1)
==49943==  Address 0x14390130 is in a r-x mapped file /usr/local/lib/glusterfs/3.8.12/xlator/features/marker.so segment
==49943== 
==49943== Invalid read of size 1
==49943==    at 0x1B1CC3CC: ??? (in /usr/lib64/libgcc_s-4.8.5-20150702.so.1)
==49943==  Address 0x143b5ba0 is in a r-x mapped file /usr/local/lib/glusterfs/3.8.12/xlator/features/marker.so segment
==49943== 
==49943== Invalid read of size 1
==49943==    at 0x1B1CC4D8: ??? (in /usr/lib64/libgcc_s-4.8.5-20150702.so.1)
==49943==  Address 0x143b5ba1 is in a r-x mapped file /usr/local/lib/glusterfs/3.8.12/xlator/features/marker.so segment
==49943== 
==49943== Invalid read of size 4
==49943==    at 0x1B1CB380: ??? (in /usr/lib64/libgcc_s-4.8.5-20150702.so.1)
==49943==  Address 0x143b5ba4 is in a r-x mapped file /usr/local/lib/glusterfs/3.8.12/xlator/features/marker.so segment
==49943== 
==49943== Invalid read of size 1
==49943==    at 0x1B1CC507: ??? (in /usr/lib64/libgcc_s-4.8.5-20150702.so.1)
==49943==  Address 0x143b5ba2 is in a r-x mapped file /usr/local/lib/glusterfs/3.8.12/xlator/features/marker.so segment
==49943== 
==49943== Invalid read of size 1
==49943==    at 0x1B1CC514: ??? (in /usr/lib64/libgcc_s-4.8.5-20150702.so.1)
==49943==  Address 0x143b5ba3 is in a r-x mapped file /usr/local/lib/glusterfs/3.8.12/xlator/features/marker.so segment
==49943== 
==49943== Invalid read of size 4
==49943==    at 0x1B1CB370: ??? (in /usr/lib64/libgcc_s-4.8.5-20150702.so.1)
==49943==  Address 0x143b5ba8 is in a r-x mapped file /usr/local/lib/glusterfs/3.8.12/xlator/features/marker.so segment
==49943== 
==49943== Invalid read of size 4
==49943==    at 0x1B1CC67C: ??? (in /usr/lib64/libgcc_s-4.8.5-20150702.so.1)
==49943==  Address 0x143b5bac is in a r-x mapped file /usr/local/lib/glusterfs/3.8.12/xlator/features/marker.so segment
==49943== 
==49943== Invalid read of size 4
==49943==    at 0x1B1CC696: ??? (in /usr/lib64/libgcc_s-4.8.5-20150702.so.1)
==49943==  Address 0x143b6274 is in a r-x mapped file /usr/local/lib/glusterfs/3.8.12/xlator/features/marker.so segment
==49943== 
==49943== Invalid read of size 4
==49943==    at 0x1B1CC6E3: ??? (in /usr/lib64/libgcc_s-4.8.5-20150702.so.1)
==49943==  Address 0x143b5f0c is in a r-x mapped file /usr/local/lib/glusterfs/3.8.12/xlator/features/marker.so segment
==49943== 
==49943== Invalid read of size 4
==49943==    at 0x1B1CC6AF: ??? (in /usr/lib64/libgcc_s-4.8.5-20150702.so.1)
==49943==  Address 0x143b5f14 is in a r-x mapped file /usr/local/lib/glusterfs/3.8.12/xlator/features/marker.so segment
==49943== 
==49943== Invalid read of size 4
==49943==    at 0x1B1CC71D: ??? (in /usr/lib64/libgcc_s-4.8.5-20150702.so.1)
==49943==  Address 0x143b60a0 is in a r-x mapped file /usr/local/lib/glusterfs/3.8.12/xlator/features/marker.so segment
==49943== 
==49943== Invalid read of size 4
==49943==    at 0x1B1CC725: ??? (in /usr/lib64/libgcc_s-4.8.5-20150702.so.1)
==49943==  Address 0x143b7824 is in a r-x mapped file /usr/local/lib/glusterfs/3.8.12/xlator/features/marker.so segment
==49943== 
==49943== Invalid read of size 1
==49943==    at 0x4C2A9D2: strlen (vg_replace_strmem.c:454)
==49943==  Address 0x143b6289 is in a r-x mapped file /usr/local/lib/glusterfs/3.8.12/xlator/features/marker.so segment
==49943== 
==49943== Invalid read of size 1
==49943==    at 0x4C2A9E4: strlen (vg_replace_strmem.c:454)
==49943==  Address 0x143b628a is in a r-x mapped file /usr/local/lib/glusterfs/3.8.12/xlator/features/marker.so segment
==49943== 
==49943== Invalid read of size 1
==49943==    at 0x1B1CB3F5: ??? (in /usr/lib64/libgcc_s-4.8.5-20150702.so.1)
==49943==  Address 0x143b6288 is in a r-x mapped file /usr/local/lib/glusterfs/3.8.12/xlator/features/marker.so segment
==49943== 
==49943== Invalid read of size 1
==49943==    at 0x1B1CB404: ??? (in /usr/lib64/libgcc_s-4.8.5-20150702.so.1)
==49943==  Address 0x143b6289 is in a r-x mapped file /usr/local/lib/glusterfs/3.8.12/xlator/features/marker.so segment
==49943== 
==49943== Invalid read of size 1
==49943==    at 0x1B1CB41C: ??? (in /usr/lib64/libgcc_s-4.8.5-20150702.so.1)
==49943==  Address 0x143b628c is in a r-x mapped file /usr/local/lib/glusterfs/3.8.12/xlator/features/marker.so segment
==49943== 
==49943== Invalid read of size 1
==49943==    at 0x1B1CB064: ??? (in /usr/lib64/libgcc_s-4.8.5-20150702.so.1)
==49943==  Address 0x143b628d is in a r-x mapped file /usr/local/lib/glusterfs/3.8.12/xlator/features/marker.so segment
==49943== 
==49943== Invalid read of size 1
==49943==    at 0x1B1CB42C: ??? (in /usr/lib64/libgcc_s-4.8.5-20150702.so.1)
==49943==  Address 0x143b6288 is in a r-x mapped file /usr/local/lib/glusterfs/3.8.12/xlator/features/marker.so segment
==49943== 
==49943== Invalid read of size 1
==49943==    at 0x1B1CB454: ??? (in /usr/lib64/libgcc_s-4.8.5-20150702.so.1)
==49943==  Address 0x143b628f is in a r-x mapped file /usr/local/lib/glusterfs/3.8.12/xlator/features/marker.so segment
==49943== 
==49943== Invalid read of size 1
==49943==    at 0x1B1CB45A: ??? (in /usr/lib64/libgcc_s-4.8.5-20150702.so.1)
==49943==  Address 0x143b628a is in a r-x mapped file /usr/local/lib/glusterfs/3.8.12/xlator/features/marker.so segment
==49943== 
==49943== Invalid read of size 1
==49943==    at 0x1B1CB4B0: ??? (in /usr/lib64/libgcc_s-4.8.5-20150702.so.1)
==49943==  Address 0x143b6290 is in a r-x mapped file /usr/local/lib/glusterfs/3.8.12/xlator/features/marker.so segment
==49943== 
==49943== Invalid read of size 4
==49943==    at 0x1B1CC759: ??? (in /usr/lib64/libgcc_s-4.8.5-20150702.so.1)
==49943==  Address 0x143b609c is in a r-x mapped file /usr/local/lib/glusterfs/3.8.12/xlator/features/marker.so segment
==49943== 
==49943== Invalid read of size 4
==49943==    at 0x1B1C9DAB: ??? (in /usr/lib64/libgcc_s-4.8.5-20150702.so.1)
==49943==  Address 0x143b7824 is in a r-x mapped file /usr/local/lib/glusterfs/3.8.12/xlator/features/marker.so segment
==49943== 
==49943== Invalid read of size 1
==49943==    at 0x1B1C9DBE: ??? (in /usr/lib64/libgcc_s-4.8.5-20150702.so.1)
==49943==  Address 0x143b6289 is in a r-x mapped file /usr/local/lib/glusterfs/3.8.12/xlator/features/marker.so segment
==49943== 
==49943== Invalid read of size 1
==49943==    at 0x1B1C9DCE: ??? (in /usr/lib64/libgcc_s-4.8.5-20150702.so.1)
==49943==  Address 0x143b6288 is in a r-x mapped file /usr/local/lib/glusterfs/3.8.12/xlator/features/marker.so segment
==49943== 
==49943== Invalid read of size 1
==49943==    at 0x1B1C9DE4: ??? (in /usr/lib64/libgcc_s-4.8.5-20150702.so.1)
==49943==  Address 0x143b628c is in a r-x mapped file /usr/local/lib/glusterfs/3.8.12/xlator/features/marker.so segment
==49943== 
==49943== Invalid read of size 1
==49943==    at 0x1B1C81A4: ??? (in /usr/lib64/libgcc_s-4.8.5-20150702.so.1)
==49943==  Address 0x143b628d is in a r-x mapped file /usr/local/lib/glusterfs/3.8.12/xlator/features/marker.so segment
==49943== 
==49943== Invalid read of size 1
==49943==    at 0x1B1C9E21: ??? (in /usr/lib64/libgcc_s-4.8.5-20150702.so.1)
==49943==  Address 0x143b6288 is in a r-x mapped file /usr/local/lib/glusterfs/3.8.12/xlator/features/marker.so segment
==49943== 
==49943== Invalid read of size 1
==49943==    at 0x1B1CA370: ??? (in /usr/lib64/libgcc_s-4.8.5-20150702.so.1)
==49943==  Address 0x143b628e is in a r-x mapped file /usr/local/lib/glusterfs/3.8.12/xlator/features/marker.so segment
==49943== 
==49943== Invalid read of size 1
==49943==    at 0x1B1C9E5C: ??? (in /usr/lib64/libgcc_s-4.8.5-20150702.so.1)
==49943==  Address 0x143b6289 is in a r-x mapped file /usr/local/lib/glusterfs/3.8.12/xlator/features/marker.so segment
==49943== 
==49943== Invalid read of size 1
==49943==    at 0x1B1CA33C: ??? (in /usr/lib64/libgcc_s-4.8.5-20150702.so.1)
==49943==  Address 0x143b628f is in a r-x mapped file /usr/local/lib/glusterfs/3.8.12/xlator/features/marker.so segment
==49943== 
==49943== Invalid read of size 1
==49943==    at 0x1B1CA35F: ??? (in /usr/lib64/libgcc_s-4.8.5-20150702.so.1)
==49943==  Address 0x143b628a is in a r-x mapped file /usr/local/lib/glusterfs/3.8.12/xlator/features/marker.so segment
==49943== 
==49943== Invalid read of size 1
==49943==    at 0x1B1C9ED0: ??? (in /usr/lib64/libgcc_s-4.8.5-20150702.so.1)
==49943==  Address 0x143b6290 is in a r-x mapped file /usr/local/lib/glusterfs/3.8.12/xlator/features/marker.so segment
==49943== 
==49943== Invalid read of size 1
==49943==    at 0x1B1C9EA1: ??? (in /usr/lib64/libgcc_s-4.8.5-20150702.so.1)
==49943==  Address 0x143b628b is in a r-x mapped file /usr/local/lib/glusterfs/3.8.12/xlator/features/marker.so segment
==49943== 
==49943== Invalid read of size 4
==49943==    at 0x1B1C9FAC: ??? (in /usr/lib64/libgcc_s-4.8.5-20150702.so.1)
==49943==  Address 0x143b6280 is in a r-x mapped file /usr/local/lib/glusterfs/3.8.12/xlator/features/marker.so segment
==49943== 
==49943== Invalid read of size 1
==49943==    at 0x1B1C8598: ??? (in /usr/lib64/libgcc_s-4.8.5-20150702.so.1)
==49943==  Address 0x143b6291 is in a r-x mapped file /usr/local/lib/glusterfs/3.8.12/xlator/features/marker.so segment
==49943== 
==49943== Invalid read of size 1
==49943==    at 0x1B1C89A4: ??? (in /usr/lib64/libgcc_s-4.8.5-20150702.so.1)
==49943==  Address 0x143b6292 is in a r-x mapped file /usr/local/lib/glusterfs/3.8.12/xlator/features/marker.so segment
==49943== 
==49943== Invalid read of size 1
==49943==    at 0x1B1C89D4: ??? (in /usr/lib64/libgcc_s-4.8.5-20150702.so.1)
==49943==  Address 0x143b6293 is in a r-x mapped file /usr/local/lib/glusterfs/3.8.12/xlator/features/marker.so segment
==49943== 
==49943== Invalid read of size 1
==49943==    at 0x1B1C8634: ??? (in /usr/lib64/libgcc_s-4.8.5-20150702.so.1)
==49943==  Address 0x143b6295 is in a r-x mapped file /usr/local/lib/glusterfs/3.8.12/xlator/features/marker.so segment
==49943== 
==49943== Invalid read of size 1
==49943==    at 0x1B1CA014: ??? (in /usr/lib64/libgcc_s-4.8.5-20150702.so.1)
==49943==  Address 0x143b7830 is in a r-x mapped file /usr/local/lib/glusterfs/3.8.12/xlator/features/marker.so segment
==49943== 
==49943== Invalid read of size 4
==49943==    at 0x1B1CA562: ??? (in /usr/lib64/libgcc_s-4.8.5-20150702.so.1)
==49943==  Address 0x143b7820 is in a r-x mapped file /usr/local/lib/glusterfs/3.8.12/xlator/features/marker.so segment
==49943== 
==49943== Invalid read of size 1
==49943==    at 0x1B1C8A54: ??? (in /usr/lib64/libgcc_s-4.8.5-20150702.so.1)
==49943==  Address 0x143b7833 is in a r-x mapped file /usr/local/lib/glusterfs/3.8.12/xlator/features/marker.so segment
==49943== 
==49943== Invalid read of size 1
==49943==    at 0x1B1C8A14: ??? (in /usr/lib64/libgcc_s-4.8.5-20150702.so.1)
==49943==  Address 0x143b7838 is in a r-x mapped file /usr/local/lib/glusterfs/3.8.12/xlator/features/marker.so segment
==49943== 
==49943== Invalid read of size 2
==49943==    at 0x1B1C8766: ??? (in /usr/lib64/libgcc_s-4.8.5-20150702.so.1)
==49943==  Address 0x143b783a is in a r-x mapped file /usr/local/lib/glusterfs/3.8.12/xlator/features/marker.so segment
==49943== 
==49943== Invalid read of size 4
==49943==    at 0x67704D0: getpid (in /usr/lib64/libc-2.17.so)
==49943==  Address 0xf69d9d4 is in a rw- anonymous segment
==49943== 
==49943== Invalid read of size 4
==49943==    at 0x60B90B0: __pthread_enable_asynccancel (in /usr/lib64/libpthread-2.17.so)
==49943==  Address 0xf69da08 is in a rw- anonymous segment
==49943== 
==49943== Invalid read of size 4
==49943==    at 0x60B90C4: __pthread_enable_asynccancel (in /usr/lib64/libpthread-2.17.so)
==49943==  Address 0xf69da08 is in a rw- anonymous segment
==49943== 
==49943== Thread 5:
==49943== Invalid read of size 4
==49943==    at 0x60B6A85: pthread_cond_timedwait@@GLIBC_2.3.2 (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x4EA5383: syncenv_task (syncop.c:603)
==49943==    by 0x4EA5623: syncenv_processor (syncop.c:695)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943==  Address 0xfe9de00 is on thread 5's stack
==49943==  in frame #0, created by pthread_cond_timedwait@@GLIBC_2.3.2 (???:)
==49943== 
==49943== Invalid write of size 8
==49943==    at 0x60B6A88: pthread_cond_timedwait@@GLIBC_2.3.2 (in /usr/lib64/libpthread-2.17.so)
==49943==  Address 0xfe9ddf8 is on thread 5's stack
==49943== 
==49943== Invalid read of size 4
==49943==    at 0x60B9118: __pthread_disable_asynccancel (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x60B6A8C: pthread_cond_timedwait@@GLIBC_2.3.2 (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x4EA5383: syncenv_task (syncop.c:603)
==49943==    by 0x4EA5623: syncenv_processor (syncop.c:695)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943==  Address 0xfe9ea08 is in a rw- anonymous segment
==49943== 
==49943== Invalid read of size 4
==49943==    at 0x60B9127: __pthread_disable_asynccancel (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x60B6A8C: pthread_cond_timedwait@@GLIBC_2.3.2 (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x4EA5383: syncenv_task (syncop.c:603)
==49943==    by 0x4EA5623: syncenv_processor (syncop.c:695)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943==  Address 0xfe9ea08 is in a rw- anonymous segment
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x60B913F: __pthread_disable_asynccancel (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x60B6A8C: pthread_cond_timedwait@@GLIBC_2.3.2 (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x4EA5383: syncenv_task (syncop.c:603)
==49943==    by 0x4EA5623: syncenv_processor (syncop.c:695)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943==  Address 0xfe9ddf8 is on thread 5's stack
==49943==  in frame #0, created by __pthread_disable_asynccancel (???:)
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x60B6A8D: pthread_cond_timedwait@@GLIBC_2.3.2 (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x4EA5383: syncenv_task (syncop.c:603)
==49943==    by 0x4EA5623: syncenv_processor (syncop.c:695)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943==  Address 0xfe9de08 is on thread 5's stack
==49943==  in frame #0, created by pthread_cond_timedwait@@GLIBC_2.3.2 (???:)
==49943== 
==49943== Invalid read of size 4
==49943==    at 0x60B6AAE: pthread_cond_timedwait@@GLIBC_2.3.2 (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x4EA5383: syncenv_task (syncop.c:603)
==49943==    by 0x4EA5623: syncenv_processor (syncop.c:695)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943==  Address 0xfe9de04 is on thread 5's stack
==49943==  in frame #0, created by pthread_cond_timedwait@@GLIBC_2.3.2 (???:)
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x60B6B45: pthread_cond_timedwait@@GLIBC_2.3.2 (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x4EA5383: syncenv_task (syncop.c:603)
==49943==    by 0x4EA5623: syncenv_processor (syncop.c:695)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943==  Address 0xfe9de10 is on thread 5's stack
==49943==  in frame #0, created by pthread_cond_timedwait@@GLIBC_2.3.2 (???:)
==49943== 
==49943== Invalid read of size 4
==49943==    at 0x60BB5E3: __pthread_mutex_cond_lock (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x60B6B53: pthread_cond_timedwait@@GLIBC_2.3.2 (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x4EA5383: syncenv_task (syncop.c:603)
==49943==    by 0x4EA5623: syncenv_processor (syncop.c:695)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943==  Address 0xfe9e9d0 is in a rw- anonymous segment
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x60B6B5F: pthread_cond_timedwait@@GLIBC_2.3.2 (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x4EA5383: syncenv_task (syncop.c:603)
==49943==    by 0x4EA5623: syncenv_processor (syncop.c:695)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943==  Address 0xfe9de28 is on thread 5's stack
==49943==  in frame #0, created by pthread_cond_timedwait@@GLIBC_2.3.2 (???:)
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x60B6B61: pthread_cond_timedwait@@GLIBC_2.3.2 (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x4EA5383: syncenv_task (syncop.c:603)
==49943==    by 0x4EA5623: syncenv_processor (syncop.c:695)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943==  Address 0xfe9de30 is on thread 5's stack
==49943==  in frame #0, created by pthread_cond_timedwait@@GLIBC_2.3.2 (???:)
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x60B6B63: pthread_cond_timedwait@@GLIBC_2.3.2 (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x4EA5383: syncenv_task (syncop.c:603)
==49943==    by 0x4EA5623: syncenv_processor (syncop.c:695)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943==  Address 0xfe9de38 is on thread 5's stack
==49943==  in frame #0, created by pthread_cond_timedwait@@GLIBC_2.3.2 (???:)
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x60B6B65: pthread_cond_timedwait@@GLIBC_2.3.2 (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x4EA5383: syncenv_task (syncop.c:603)
==49943==    by 0x4EA5623: syncenv_processor (syncop.c:695)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943==  Address 0xfe9de40 is on thread 5's stack
==49943==  in frame #0, created by pthread_cond_timedwait@@GLIBC_2.3.2 (???:)
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x60B6B67: pthread_cond_timedwait@@GLIBC_2.3.2 (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x4EA5383: syncenv_task (syncop.c:603)
==49943==    by 0x4EA5623: syncenv_processor (syncop.c:695)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943==  Address 0xfe9de48 is on thread 5's stack
==49943==  in frame #0, created by pthread_cond_timedwait@@GLIBC_2.3.2 (???:)
==49943== 
==49943== Invalid write of size 4
==49943==    at 0x4EA5384: syncenv_task (syncop.c:603)
==49943==    by 0x4EA5623: syncenv_processor (syncop.c:695)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943==  Address 0xfe9de7c is on thread 5's stack
==49943==  in frame #0, created by syncenv_task (syncop.c:591)
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x4EA5387: syncenv_task (syncop.c:605)
==49943==    by 0x4EA5623: syncenv_processor (syncop.c:695)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943==  Address 0xfe9de80 is on thread 5's stack
==49943==  in frame #0, created by syncenv_task (syncop.c:591)
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x4EA5447: syncenv_task (syncop.c:630)
==49943==    by 0x4EA5623: syncenv_processor (syncop.c:695)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943==  Address 0xfe9de80 is on thread 5's stack
==49943==  in frame #0, created by syncenv_task (syncop.c:591)
==49943== 
==49943== Invalid write of size 8
==49943==    at 0x4EA5452: syncenv_task (syncop.c:630)
==49943==    by 0x4EA5623: syncenv_processor (syncop.c:695)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943==  Address 0xfe9de88 is on thread 5's stack
==49943==  in frame #0, created by syncenv_task (syncop.c:591)
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x4EA5456: syncenv_task (syncop.c:632)
==49943==    by 0x4EA5623: syncenv_processor (syncop.c:695)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943==  Address 0xfe9de88 is on thread 5's stack
==49943==  in frame #0, created by syncenv_task (syncop.c:591)
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x4EA5462: syncenv_task (syncop.c:633)
==49943==    by 0x4EA5623: syncenv_processor (syncop.c:695)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943==  Address 0xfe9de80 is on thread 5's stack
==49943==  in frame #0, created by syncenv_task (syncop.c:591)
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x4EA546F: syncenv_task (syncop.c:633)
==49943==    by 0x4EA5623: syncenv_processor (syncop.c:695)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943==  Address 0xfe9de80 is on thread 5's stack
==49943==  in frame #0, created by syncenv_task (syncop.c:591)
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x4EA5479: syncenv_task (syncop.c:635)
==49943==    by 0x4EA5623: syncenv_processor (syncop.c:695)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943==  Address 0xfe9de88 is on thread 5's stack
==49943==  in frame #0, created by syncenv_task (syncop.c:591)
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x4EA5484: syncenv_task (syncop.c:636)
==49943==    by 0x4EA5623: syncenv_processor (syncop.c:695)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943==  Address 0xfe9de88 is on thread 5's stack
==49943==  in frame #0, created by syncenv_task (syncop.c:591)
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x4EA548F: syncenv_task (syncop.c:638)
==49943==    by 0x4EA5623: syncenv_processor (syncop.c:695)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943==  Address 0xfe9de88 is on thread 5's stack
==49943==  in frame #0, created by syncenv_task (syncop.c:591)
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x4EA5493: syncenv_task (syncop.c:638)
==49943==    by 0x4EA5623: syncenv_processor (syncop.c:695)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943==  Address 0xfe9de58 is on thread 5's stack
==49943==  in frame #0, created by syncenv_task (syncop.c:591)
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x4EA549E: syncenv_task (syncop.c:641)
==49943==    by 0x4EA5623: syncenv_processor (syncop.c:695)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943==  Address 0xfe9de80 is on thread 5's stack
==49943==  in frame #0, created by syncenv_task (syncop.c:591)
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x4EA54B0: syncenv_task (syncop.c:643)
==49943==    by 0x4EA5623: syncenv_processor (syncop.c:695)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943==  Address 0xfe9de88 is on thread 5's stack
==49943==  in frame #0, created by syncenv_task (syncop.c:591)
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x4EA54B4: syncenv_task (syncop.c:644)
==49943==    by 0x4EA5623: syncenv_processor (syncop.c:695)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943==  Address 0xfe9de90 is on thread 5's stack
==49943==  in frame #0, created by syncenv_task (syncop.c:591)
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x4EA54B5: syncenv_task (syncop.c:644)
==49943==    by 0x4EA5623: syncenv_processor (syncop.c:695)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943==  Address 0xfe9de98 is on thread 5's stack
==49943==  in frame #0, created by syncenv_task (syncop.c:591)
==49943== 
==49943== Invalid write of size 8
==49943==    at 0x4EA5624: syncenv_processor (syncop.c:695)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943==  Address 0xfe9deb8 is on thread 5's stack
==49943==  in frame #0, created by syncenv_processor (syncop.c:686)
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x4EA5628: syncenv_processor (syncop.c:696)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943==  Address 0xfe9deb8 is on thread 5's stack
==49943==  in frame #0, created by syncenv_processor (syncop.c:686)
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x4EA5631: syncenv_processor (syncop.c:699)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943==  Address 0xfe9deb8 is on thread 5's stack
==49943==  in frame #0, created by syncenv_processor (syncop.c:686)
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x60B7592: pthread_setspecific (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x4E9612C: synctask_set (globals.c:270)
==49943==    by 0x4EA54E1: synctask_switchto (syncop.c:654)
==49943==    by 0x4EA563C: syncenv_processor (syncop.c:699)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943==  Address 0xfe9e710 is in a rw- anonymous segment
==49943== 
==49943== Invalid write of size 1
==49943==    at 0x60B75F2: pthread_setspecific (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x4E9612C: synctask_set (globals.c:270)
==49943==    by 0x4EA54E1: synctask_switchto (syncop.c:654)
==49943==    by 0x4EA563C: syncenv_processor (syncop.c:699)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943==  Address 0xfe9ed10 is in a rw- anonymous segment
==49943== 
==49943== Invalid write of size 8
==49943==    at 0x60B75FD: pthread_setspecific (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x4E9612C: synctask_set (globals.c:270)
==49943==    by 0x4EA54E1: synctask_switchto (syncop.c:654)
==49943==    by 0x4EA563C: syncenv_processor (syncop.c:699)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943==  Address 0xfe9ea58 is in a rw- anonymous segment
==49943== 
==49943== Invalid write of size 8
==49943==    at 0x60B7601: pthread_setspecific (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x4E9612C: synctask_set (globals.c:270)
==49943==    by 0x4EA54E1: synctask_switchto (syncop.c:654)
==49943==    by 0x4EA563C: syncenv_processor (syncop.c:699)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943==  Address 0xfe9ea50 is in a rw- anonymous segment
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x60B751F: pthread_getspecific (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x4E95EED: __glusterfs_this_location (globals.c:144)
==49943==    by 0x4EA54EB: synctask_switchto (syncop.c:655)
==49943==    by 0x4EA563C: syncenv_processor (syncop.c:699)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943==  Address 0xfe9e710 is in a rw- anonymous segment
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x60B752D: pthread_getspecific (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x4E95EED: __glusterfs_this_location (globals.c:144)
==49943==    by 0x4EA54EB: synctask_switchto (syncop.c:655)
==49943==    by 0x4EA563C: syncenv_processor (syncop.c:699)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943==  Address 0xfe9ea18 is in a rw- anonymous segment
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x60B7592: pthread_setspecific (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x4E95F28: __glusterfs_this_location (globals.c:151)
==49943==    by 0x4EA54EB: synctask_switchto (syncop.c:655)
==49943==    by 0x4EA563C: syncenv_processor (syncop.c:699)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943==  Address 0xfe9e710 is in a rw- anonymous segment
==49943== 
==49943== Invalid write of size 1
==49943==    at 0x60B75F2: pthread_setspecific (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x4E95F28: __glusterfs_this_location (globals.c:151)
==49943==    by 0x4EA54EB: synctask_switchto (syncop.c:655)
==49943==    by 0x4EA563C: syncenv_processor (syncop.c:699)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943==  Address 0xfe9ed10 is in a rw- anonymous segment
==49943== 
==49943== Invalid write of size 8
==49943==    at 0x60B75FD: pthread_setspecific (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x4E95F28: __glusterfs_this_location (globals.c:151)
==49943==    by 0x4EA54EB: synctask_switchto (syncop.c:655)
==49943==    by 0x4EA563C: syncenv_processor (syncop.c:699)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943==  Address 0xfe9ea18 is in a rw- anonymous segment
==49943== 
==49943== Invalid write of size 8
==49943==    at 0x60B7601: pthread_setspecific (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x4E95F28: __glusterfs_this_location (globals.c:151)
==49943==    by 0x4EA54EB: synctask_switchto (syncop.c:655)
==49943==    by 0x4EA563C: syncenv_processor (syncop.c:699)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943==  Address 0xfe9ea10 is in a rw- anonymous segment
==49943== 
==49943== Invalid write of size 8
==49943==    at 0x66F5BFE: swapcontext (in /usr/lib64/libc-2.17.so)
==49943==  Address 0x1754e620 is 16,416 bytes inside a block of size 16,456 alloc'd
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x4EA5083: synctask_create (syncop.c:501)
==49943==    by 0x4EA527F: synctask_new1 (syncop.c:571)
==49943==    by 0x143AE0D7: mq_synctask1 (marker-quota.c:1078)
==49943==    by 0x143AE199: mq_synctask (marker-quota.c:1097)
==49943==    by 0x143AE6F6: _mq_create_xattrs_txn (marker-quota.c:1236)
==49943==    by 0x143AE82D: mq_create_xattrs_txn (marker-quota.c:1253)
==49943==    by 0x143B0DCB: mq_inspect_directory_xattr (marker-quota.c:2027)
==49943==    by 0x143B13A8: mq_xattr_state (marker-quota.c:2117)
==49943==    by 0x143A6E80: marker_lookup_cbk (marker.c:2961)
==49943==    by 0x141811E0: up_lookup_cbk (upcall.c:753)
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x66F5C1F: swapcontext (in /usr/lib64/libc-2.17.so)
==49943==  Address 0x1754e620 is 16,416 bytes inside a block of size 16,456 alloc'd
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x4EA5083: synctask_create (syncop.c:501)
==49943==    by 0x4EA527F: synctask_new1 (syncop.c:571)
==49943==    by 0x143AE0D7: mq_synctask1 (marker-quota.c:1078)
==49943==    by 0x143AE199: mq_synctask (marker-quota.c:1097)
==49943==    by 0x143AE6F6: _mq_create_xattrs_txn (marker-quota.c:1236)
==49943==    by 0x143AE82D: mq_create_xattrs_txn (marker-quota.c:1253)
==49943==    by 0x143B0DCB: mq_inspect_directory_xattr (marker-quota.c:2027)
==49943==    by 0x143B13A8: mq_xattr_state (marker-quota.c:2117)
==49943==    by 0x143A6E80: marker_lookup_cbk (marker.c:2961)
==49943==    by 0x141811E0: up_lookup_cbk (upcall.c:753)
==49943== 
==49943== Thread 6:
==49943== Invalid read of size 8
==49943==    at 0x67A8D13: ??? (in /usr/lib64/libc-2.17.so)
==49943==    by 0x4ECB293: event_dispatch_epoll_worker (event-epoll.c:664)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943==  Address 0x1215ce60 is on thread 6's stack
==49943== 
==49943== Invalid write of size 8
==49943==    at 0x67A8D1A: ??? (in /usr/lib64/libc-2.17.so)
==49943==  Address 0x1215ce58 is on thread 6's stack
==49943== 
==49943== Invalid read of size 4
==49943==    at 0x67B6198: __libc_disable_asynccancel (in /usr/lib64/libc-2.17.so)
==49943==    by 0x67A8D1E: ??? (in /usr/lib64/libc-2.17.so)
==49943==    by 0x4ECB293: event_dispatch_epoll_worker (event-epoll.c:664)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943==  Address 0x1215da08 is in a rw- anonymous segment
==49943== 
==49943== Invalid read of size 4
==49943==    at 0x67B61A7: __libc_disable_asynccancel (in /usr/lib64/libc-2.17.so)
==49943==    by 0x67A8D1E: ??? (in /usr/lib64/libc-2.17.so)
==49943==    by 0x4ECB293: event_dispatch_epoll_worker (event-epoll.c:664)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943==  Address 0x1215da08 is in a rw- anonymous segment
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x67B61BF: __libc_disable_asynccancel (in /usr/lib64/libc-2.17.so)
==49943==    by 0x67A8D1E: ??? (in /usr/lib64/libc-2.17.so)
==49943==    by 0x4ECB293: event_dispatch_epoll_worker (event-epoll.c:664)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943==  Address 0x1215ce58 is on thread 6's stack
==49943==  in frame #0, created by __libc_disable_asynccancel (???:)
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x67A8D2E: ??? (in /usr/lib64/libc-2.17.so)
==49943==    by 0x4ECB293: event_dispatch_epoll_worker (event-epoll.c:664)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943==  Address 0x1215ce68 is on thread 6's stack
==49943== 
==49943== Invalid write of size 4
==49943==    at 0x4ECB294: event_dispatch_epoll_worker (event-epoll.c:664)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943==  Address 0x1215cec8 is on thread 6's stack
==49943==  in frame #0, created by event_dispatch_epoll_worker (event-epoll.c:612)
==49943== 
==49943== Invalid read of size 4
==49943==    at 0x4ECB297: event_dispatch_epoll_worker (event-epoll.c:666)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943==  Address 0x1215cec8 is on thread 6's stack
==49943==  in frame #0, created by event_dispatch_epoll_worker (event-epoll.c:612)
==49943== 
==49943== Invalid read of size 4
==49943==    at 0x4ECB29F: event_dispatch_epoll_worker (event-epoll.c:670)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943==  Address 0x1215cec8 is on thread 6's stack
==49943==  in frame #0, created by event_dispatch_epoll_worker (event-epoll.c:612)
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x4ECB2B7: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943==  Address 0x1215ceb0 is on thread 6's stack
==49943==  in frame #0, created by event_dispatch_epoll_worker (event-epoll.c:612)
==49943== 
==49943== Invalid read of size 8
==49943==    at 0xFEAA107: socket_event_handler (socket.c:2362)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943==  Address 0x1aee10a0 is 80 bytes inside a block of size 2,872 alloc'd
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0xFEAAF3E: socket_server_event_handler (socket.c:2682)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943== 
==49943== Invalid read of size 8
==49943==    at 0xFEAA174: socket_event_handler (socket.c:2363)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943==  Address 0x1aee10b0 is 96 bytes inside a block of size 2,872 alloc'd
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0xFEAAF3E: socket_server_event_handler (socket.c:2682)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943== 
==49943== Invalid read of size 8
==49943==    at 0xFEA2610: ??? (in /usr/local/lib/glusterfs/3.8.12/rpc-transport/socket.so)
==49943==    by 0xFEAA1E6: socket_event_handler (socket.c:2365)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943==  Address 0x100b6380 is in the GOTPLT segment of /usr/local/lib/glusterfs/3.8.12/rpc-transport/socket.so
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x60B7547: pthread_getspecific (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x4E95EED: __glusterfs_this_location (globals.c:144)
==49943==    by 0xFEAA1E6: socket_event_handler (socket.c:2365)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943==  Address 0x1215da10 is in a rw- anonymous segment
==49943== 
==49943== Invalid read of size 8
==49943==    at 0xFEAA1EB: socket_event_handler (socket.c:2365)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943==  Address 0x1aee10b0 is 96 bytes inside a block of size 2,872 alloc'd
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0xFEAAF3E: socket_server_event_handler (socket.c:2682)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943== 
==49943== Invalid read of size 8
==49943==    at 0xFEAA1F6: socket_event_handler (socket.c:2366)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943==  Address 0x1aee10a0 is 80 bytes inside a block of size 2,872 alloc'd
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0xFEAAF3E: socket_server_event_handler (socket.c:2682)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943== 
==49943== Invalid read of size 8
==49943==    at 0xFEA2630: ??? (in /usr/local/lib/glusterfs/3.8.12/rpc-transport/socket.so)
==49943==    by 0xFEAA20F: socket_event_handler (socket.c:2368)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943==  Address 0x100b6390 is in the GOTPLT segment of /usr/local/lib/glusterfs/3.8.12/rpc-transport/socket.so
==49943== 
==49943== Invalid read of size 4
==49943==    at 0x60B4BD0: pthread_mutex_lock (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0xFEAA20F: socket_event_handler (socket.c:2368)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943==  Address 0x1aee1d28 is 344 bytes inside a block of size 528 alloc'd
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0xFEAE076: socket_init (socket.c:3833)
==49943==    by 0xFEAB118: socket_server_event_handler (socket.c:2723)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943== 
==49943== Invalid read of size 4
==49943==    at 0x60B4BE3: pthread_mutex_lock (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0xFEAA20F: socket_event_handler (socket.c:2368)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943==  Address 0x1215d9d0 is in a rw- anonymous segment
==49943== 
==49943== Invalid read of size 4
==49943==    at 0x60B4BFD: pthread_mutex_lock (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0xFEAA20F: socket_event_handler (socket.c:2368)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943==  Address 0x1aee1d18 is 328 bytes inside a block of size 528 alloc'd
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0xFEAE076: socket_init (socket.c:3833)
==49943==    by 0xFEAB118: socket_server_event_handler (socket.c:2723)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943== 
==49943== Invalid write of size 4
==49943==    at 0x60B4C08: pthread_mutex_lock (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0xFEAA20F: socket_event_handler (socket.c:2368)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943==  Address 0x1aee1d20 is 336 bytes inside a block of size 528 alloc'd
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0xFEAE076: socket_init (socket.c:3833)
==49943==    by 0xFEAB118: socket_server_event_handler (socket.c:2723)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943== 
==49943== Invalid read of size 4
==49943==    at 0x60B4C0C: pthread_mutex_lock (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0xFEAA20F: socket_event_handler (socket.c:2368)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943==  Address 0x1aee1d24 is 340 bytes inside a block of size 528 alloc'd
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0xFEAE076: socket_init (socket.c:3833)
==49943==    by 0xFEAB118: socket_server_event_handler (socket.c:2723)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943== 
==49943== Invalid write of size 4
==49943==    at 0xFEAA217: socket_event_handler (socket.c:2370)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943==  Address 0x1aee1c14 is 68 bytes inside a block of size 528 alloc'd
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0xFEAE076: socket_init (socket.c:3833)
==49943==    by 0xFEAB118: socket_server_event_handler (socket.c:2723)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943== 
==49943== Invalid read of size 8
==49943==    at 0xFEA26D0: ??? (in /usr/local/lib/glusterfs/3.8.12/rpc-transport/socket.so)
==49943==    by 0xFEAA22B: socket_event_handler (socket.c:2372)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943==  Address 0x100b63e0 is in the GOTPLT segment of /usr/local/lib/glusterfs/3.8.12/rpc-transport/socket.so
==49943== 
==49943== Invalid read of size 4
==49943==    at 0x60B5BB0: pthread_mutex_unlock (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0xFEAA22B: socket_event_handler (socket.c:2372)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943==  Address 0x1aee1d28 is 344 bytes inside a block of size 528 alloc'd
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0xFEAE076: socket_init (socket.c:3833)
==49943==    by 0xFEAB118: socket_server_event_handler (socket.c:2723)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943== 
==49943== Invalid write of size 4
==49943==    at 0x60B5BC8: pthread_mutex_unlock (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0xFEAA22B: socket_event_handler (socket.c:2372)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943==  Address 0x1aee1d20 is 336 bytes inside a block of size 528 alloc'd
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0xFEAE076: socket_init (socket.c:3833)
==49943==    by 0xFEAB118: socket_server_event_handler (socket.c:2723)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943== 
==49943== Invalid read of size 4
==49943==    at 0x60B5BCF: pthread_mutex_unlock (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0xFEAA22B: socket_event_handler (socket.c:2372)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943==  Address 0x1aee1d24 is 340 bytes inside a block of size 528 alloc'd
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0xFEAE076: socket_init (socket.c:3833)
==49943==    by 0xFEAB118: socket_server_event_handler (socket.c:2723)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943== 
==49943== Invalid read of size 4
==49943==    at 0x60B5BD9: pthread_mutex_unlock (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0xFEAA22B: socket_event_handler (socket.c:2372)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943==  Address 0x1aee1d18 is 328 bytes inside a block of size 528 alloc'd
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0xFEAE076: socket_init (socket.c:3833)
==49943==    by 0xFEAB118: socket_server_event_handler (socket.c:2723)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943== 
==49943== Invalid read of size 1
==49943==    at 0xFEAA230: socket_event_handler (socket.c:2374)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943==  Address 0x1aee1c18 is 72 bytes inside a block of size 528 alloc'd
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0xFEAE076: socket_init (socket.c:3833)
==49943==    by 0xFEAB118: socket_server_event_handler (socket.c:2723)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943== 
==49943== Invalid read of size 8
==49943==    at 0xFEA9CF5: socket_event_poll_in (socket.c:2261)
==49943==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943==  Address 0x1aee10a0 is 80 bytes inside a block of size 2,872 alloc'd
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0xFEAAF3E: socket_server_event_handler (socket.c:2682)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943== 
==49943== Invalid read of size 8
==49943==    at 0xFEA9C25: socket_proto_state_machine (socket.c:2241)
==49943==    by 0xFEA9D0F: socket_event_poll_in (socket.c:2263)
==49943==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943==  Address 0x1aee10a0 is 80 bytes inside a block of size 2,872 alloc'd
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0xFEAAF3E: socket_server_event_handler (socket.c:2682)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943== 
==49943== Invalid read of size 8
==49943==    at 0xFEA9C8F: socket_proto_state_machine (socket.c:2243)
==49943==    by 0xFEA9D0F: socket_event_poll_in (socket.c:2263)
==49943==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943==  Address 0x1aee10a0 is 80 bytes inside a block of size 2,872 alloc'd
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0xFEAAF3E: socket_server_event_handler (socket.c:2682)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943== 
==49943== Invalid read of size 8
==49943==    at 0xFEA2630: ??? (in /usr/local/lib/glusterfs/3.8.12/rpc-transport/socket.so)
==49943==    by 0xFEA9CA8: socket_proto_state_machine (socket.c:2245)
==49943==    by 0xFEA9D0F: socket_event_poll_in (socket.c:2263)
==49943==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943==  Address 0x100b6390 is in the GOTPLT segment of /usr/local/lib/glusterfs/3.8.12/rpc-transport/socket.so
==49943== 
==49943== Invalid read of size 4
==49943==    at 0x60B4BD0: pthread_mutex_lock (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0xFEA9CA8: socket_proto_state_machine (socket.c:2245)
==49943==    by 0xFEA9D0F: socket_event_poll_in (socket.c:2263)
==49943==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943==  Address 0x1aee1d28 is 344 bytes inside a block of size 528 alloc'd
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0xFEAE076: socket_init (socket.c:3833)
==49943==    by 0xFEAB118: socket_server_event_handler (socket.c:2723)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943== 
==49943== Invalid read of size 4
==49943==    at 0x60B4BE3: pthread_mutex_lock (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0xFEA9CA8: socket_proto_state_machine (socket.c:2245)
==49943==    by 0xFEA9D0F: socket_event_poll_in (socket.c:2263)
==49943==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943==  Address 0x1215d9d0 is in a rw- anonymous segment
==49943== 
==49943== Invalid read of size 4
==49943==    at 0x60B4BFD: pthread_mutex_lock (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0xFEA9CA8: socket_proto_state_machine (socket.c:2245)
==49943==    by 0xFEA9D0F: socket_event_poll_in (socket.c:2263)
==49943==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943==  Address 0x1aee1d18 is 328 bytes inside a block of size 528 alloc'd
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0xFEAE076: socket_init (socket.c:3833)
==49943==    by 0xFEAB118: socket_server_event_handler (socket.c:2723)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943== 
==49943== Invalid write of size 4
==49943==    at 0x60B4C08: pthread_mutex_lock (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0xFEA9CA8: socket_proto_state_machine (socket.c:2245)
==49943==    by 0xFEA9D0F: socket_event_poll_in (socket.c:2263)
==49943==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943==  Address 0x1aee1d20 is 336 bytes inside a block of size 528 alloc'd
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0xFEAE076: socket_init (socket.c:3833)
==49943==    by 0xFEAB118: socket_server_event_handler (socket.c:2723)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943== 
==49943== Invalid read of size 4
==49943==    at 0x60B4C0C: pthread_mutex_lock (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0xFEA9CA8: socket_proto_state_machine (socket.c:2245)
==49943==    by 0xFEA9D0F: socket_event_poll_in (socket.c:2263)
==49943==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943==  Address 0x1aee1d24 is 340 bytes inside a block of size 528 alloc'd
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0xFEAE076: socket_init (socket.c:3833)
==49943==    by 0xFEAB118: socket_server_event_handler (socket.c:2723)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943== 
==49943== Invalid read of size 8
==49943==    at 0xFEA9532: __socket_proto_state_machine (socket.c:2060)
==49943==    by 0xFEA9CBB: socket_proto_state_machine (socket.c:2247)
==49943==    by 0xFEA9D0F: socket_event_poll_in (socket.c:2263)
==49943==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943==  Address 0x1aee10a0 is 80 bytes inside a block of size 2,872 alloc'd
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0xFEAAF3E: socket_server_event_handler (socket.c:2682)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943== 
==49943== Invalid read of size 8
==49943==    at 0xFEA959F: __socket_proto_state_machine (socket.c:2062)
==49943==    by 0xFEA9CBB: socket_proto_state_machine (socket.c:2247)
==49943==    by 0xFEA9D0F: socket_event_poll_in (socket.c:2263)
==49943==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943==  Address 0x1aee10a0 is 80 bytes inside a block of size 2,872 alloc'd
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0xFEAAF3E: socket_server_event_handler (socket.c:2682)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943== 
==49943== Invalid read of size 4
==49943==    at 0xFEA9B51: __socket_proto_state_machine (socket.c:2067)
==49943==    by 0xFEA9CBB: socket_proto_state_machine (socket.c:2247)
==49943==    by 0xFEA9D0F: socket_event_poll_in (socket.c:2263)
==49943==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943==  Address 0x1aee1c30 is 96 bytes inside a block of size 528 alloc'd
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0xFEAE076: socket_init (socket.c:3833)
==49943==    by 0xFEAB118: socket_server_event_handler (socket.c:2723)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943== 
==49943== Invalid read of size 4
==49943==    at 0xFEA95C8: __socket_proto_state_machine (socket.c:2068)
==49943==    by 0xFEA9CBB: socket_proto_state_machine (socket.c:2247)
==49943==    by 0xFEA9D0F: socket_event_poll_in (socket.c:2263)
==49943==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943==  Address 0x1aee1c30 is 96 bytes inside a block of size 528 alloc'd
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0xFEAE076: socket_init (socket.c:3833)
==49943==    by 0xFEAB118: socket_server_event_handler (socket.c:2723)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943== 
==49943== Invalid read of size 4
==49943==    at 0xFEA95E4: __socket_proto_state_machine (socket.c:2068)
==49943==    by 0xFEA9CBB: socket_proto_state_machine (socket.c:2247)
==49943==    by 0xFEA9D0F: socket_event_poll_in (socket.c:2263)
==49943==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943==  Address 0xfeb18a0 is in a r-x mapped file /usr/local/lib/glusterfs/3.8.12/rpc-transport/socket.so segment
==49943== 
==49943== Invalid write of size 8
==49943==    at 0xFEA95FA: __socket_proto_state_machine (socket.c:2071)
==49943==    by 0xFEA9CBB: socket_proto_state_machine (socket.c:2247)
==49943==    by 0xFEA9D0F: socket_event_poll_in (socket.c:2263)
==49943==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943==  Address 0x1aee1cf0 is 288 bytes inside a block of size 528 alloc'd
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0xFEAE076: socket_init (socket.c:3833)
==49943==    by 0xFEAB118: socket_server_event_handler (socket.c:2723)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943== 
==49943== Invalid write of size 8
==49943==    at 0xFEA9609: __socket_proto_state_machine (socket.c:2072)
==49943==    by 0xFEA9CBB: socket_proto_state_machine (socket.c:2247)
==49943==    by 0xFEA9D0F: socket_event_poll_in (socket.c:2263)
==49943==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943==  Address 0x1aee1cc0 is 240 bytes inside a block of size 528 alloc'd
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0xFEAE076: socket_init (socket.c:3833)
==49943==    by 0xFEAB118: socket_server_event_handler (socket.c:2723)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943== 
==49943== Invalid write of size 8
==49943==    at 0xFEA9620: __socket_proto_state_machine (socket.c:2074)
==49943==    by 0xFEA9CBB: socket_proto_state_machine (socket.c:2247)
==49943==    by 0xFEA9D0F: socket_event_poll_in (socket.c:2263)
==49943==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943==  Address 0x1aee1cd8 is 264 bytes inside a block of size 528 alloc'd
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0xFEAE076: socket_init (socket.c:3833)
==49943==    by 0xFEAB118: socket_server_event_handler (socket.c:2723)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943== 
==49943== Invalid read of size 8
==49943==    at 0xFEA962B: __socket_proto_state_machine (socket.c:2075)
==49943==    by 0xFEA9CBB: socket_proto_state_machine (socket.c:2247)
==49943==    by 0xFEA9D0F: socket_event_poll_in (socket.c:2263)
==49943==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943==  Address 0x1aee1cd8 is 264 bytes inside a block of size 528 alloc'd
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0xFEAE076: socket_init (socket.c:3833)
==49943==    by 0xFEAB118: socket_server_event_handler (socket.c:2723)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943== 
==49943== Invalid write of size 8
==49943==    at 0xFEA963D: __socket_proto_state_machine (socket.c:2075)
==49943==    by 0xFEA9CBB: socket_proto_state_machine (socket.c:2247)
==49943==    by 0xFEA9D0F: socket_event_poll_in (socket.c:2263)
==49943==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943==  Address 0x1aee1c90 is 192 bytes inside a block of size 528 alloc'd
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0xFEAE076: socket_init (socket.c:3833)
==49943==    by 0xFEAB118: socket_server_event_handler (socket.c:2723)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943== 
==49943== Invalid read of size 8
==49943==    at 0xFEA9644: __socket_proto_state_machine (socket.c:2077)
==49943==    by 0xFEA9CBB: socket_proto_state_machine (socket.c:2247)
==49943==    by 0xFEA9D0F: socket_event_poll_in (socket.c:2263)
==49943==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943==  Address 0x1aee1cd8 is 264 bytes inside a block of size 528 alloc'd
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0xFEAE076: socket_init (socket.c:3833)
==49943==    by 0xFEAB118: socket_server_event_handler (socket.c:2723)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943== 
==49943== Invalid write of size 8
==49943==    at 0xFEA964B: __socket_proto_state_machine (socket.c:2077)
==49943==    by 0xFEA9CBB: socket_proto_state_machine (socket.c:2247)
==49943==    by 0xFEA9D0F: socket_event_poll_in (socket.c:2263)
==49943==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943==  Address 0x1aee1c98 is 200 bytes inside a block of size 528 alloc'd
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0xFEAE076: socket_init (socket.c:3833)
==49943==    by 0xFEAB118: socket_server_event_handler (socket.c:2723)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943== 
==49943== Invalid write of size 4
==49943==    at 0xFEA9657: __socket_proto_state_machine (socket.c:2079)
==49943==    by 0xFEA9CBB: socket_proto_state_machine (socket.c:2247)
==49943==    by 0xFEA9D0F: socket_event_poll_in (socket.c:2263)
==49943==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943==  Address 0x1aee1c30 is 96 bytes inside a block of size 528 alloc'd
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0xFEAE076: socket_init (socket.c:3833)
==49943==    by 0xFEAB118: socket_server_event_handler (socket.c:2723)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943== 
==49943== Invalid read of size 8
==49943==    at 0xFEA9677: __socket_proto_state_machine (socket.c:2084)
==49943==    by 0xFEA9CBB: socket_proto_state_machine (socket.c:2247)
==49943==    by 0xFEA9D0F: socket_event_poll_in (socket.c:2263)
==49943==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943==  Address 0x1aee1cd8 is 264 bytes inside a block of size 528 alloc'd
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0xFEAE076: socket_init (socket.c:3833)
==49943==    by 0xFEAB118: socket_server_event_handler (socket.c:2723)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943== 
==49943== Invalid read of size 8
==49943==    at 0xFEA3C54: __socket_rwv (socket.c:514)
==49943==    by 0xFEA41CE: __socket_readv (socket.c:650)
==49943==    by 0xFEA969A: __socket_proto_state_machine (socket.c:2084)
==49943==    by 0xFEA9CBB: socket_proto_state_machine (socket.c:2247)
==49943==    by 0xFEA9D0F: socket_event_poll_in (socket.c:2263)
==49943==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943==  Address 0x1aee10a0 is 80 bytes inside a block of size 2,872 alloc'd
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0xFEAAF3E: socket_server_event_handler (socket.c:2682)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943== 
==49943== Invalid read of size 8
==49943==    at 0xFEA3CC1: __socket_rwv (socket.c:516)
==49943==    by 0xFEA41CE: __socket_readv (socket.c:650)
==49943==    by 0xFEA969A: __socket_proto_state_machine (socket.c:2084)
==49943==    by 0xFEA9CBB: socket_proto_state_machine (socket.c:2247)
==49943==    by 0xFEA9D0F: socket_event_poll_in (socket.c:2263)
==49943==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943==  Address 0x1aee10a0 is 80 bytes inside a block of size 2,872 alloc'd
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0xFEAAF3E: socket_server_event_handler (socket.c:2682)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943== 
==49943== Invalid read of size 4
==49943==    at 0xFEA3CCD: __socket_rwv (socket.c:517)
==49943==    by 0xFEA41CE: __socket_readv (socket.c:650)
==49943==    by 0xFEA969A: __socket_proto_state_machine (socket.c:2084)
==49943==    by 0xFEA9CBB: socket_proto_state_machine (socket.c:2247)
==49943==    by 0xFEA9D0F: socket_event_poll_in (socket.c:2263)
==49943==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943==  Address 0x1aee1c10 is 64 bytes inside a block of size 528 alloc'd
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0xFEAE076: socket_init (socket.c:3833)
==49943==    by 0xFEAB118: socket_server_event_handler (socket.c:2723)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943== 
==49943== Invalid read of size 8
==49943==    at 0xFEA3D00: __socket_rwv (socket.c:527)
==49943==    by 0xFEA41CE: __socket_readv (socket.c:650)
==49943==    by 0xFEA969A: __socket_proto_state_machine (socket.c:2084)
==49943==    by 0xFEA9CBB: socket_proto_state_machine (socket.c:2247)
==49943==    by 0xFEA9D0F: socket_event_poll_in (socket.c:2263)
==49943==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943==  Address 0x1aee1c98 is 200 bytes inside a block of size 528 alloc'd
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0xFEAE076: socket_init (socket.c:3833)
==49943==    by 0xFEAB118: socket_server_event_handler (socket.c:2723)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943== 
==49943== Invalid read of size 4
==49943==    at 0xFEA3D50: __socket_rwv (socket.c:534)
==49943==    by 0xFEA41CE: __socket_readv (socket.c:650)
==49943==    by 0xFEA969A: __socket_proto_state_machine (socket.c:2084)
==49943==    by 0xFEA9CBB: socket_proto_state_machine (socket.c:2247)
==49943==    by 0xFEA9D0F: socket_event_poll_in (socket.c:2263)
==49943==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943==  Address 0x1aee1d6c is 412 bytes inside a block of size 528 alloc'd
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0xFEAE076: socket_init (socket.c:3833)
==49943==    by 0xFEAB118: socket_server_event_handler (socket.c:2723)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943== 
==49943== Invalid read of size 8
==49943==    at 0xFEA3937: __socket_cached_read (socket.c:420)
==49943==    by 0xFEA3E33: __socket_rwv (socket.c:556)
==49943==    by 0xFEA41CE: __socket_readv (socket.c:650)
==49943==    by 0xFEA969A: __socket_proto_state_machine (socket.c:2084)
==49943==    by 0xFEA9CBB: socket_proto_state_machine (socket.c:2247)
==49943==    by 0xFEA9D0F: socket_event_poll_in (socket.c:2263)
==49943==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943==  Address 0x1aee10a0 is 80 bytes inside a block of size 2,872 alloc'd
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0xFEAAF3E: socket_server_event_handler (socket.c:2682)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943== 
==49943== Invalid read of size 4
==49943==    at 0xFEA3943: __socket_cached_read (socket.c:421)
==49943==    by 0xFEA3E33: __socket_rwv (socket.c:556)
==49943==    by 0xFEA41CE: __socket_readv (socket.c:650)
==49943==    by 0xFEA969A: __socket_proto_state_machine (socket.c:2084)
==49943==    by 0xFEA9CBB: socket_proto_state_machine (socket.c:2247)
==49943==    by 0xFEA9D0F: socket_event_poll_in (socket.c:2263)
==49943==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943==  Address 0x1aee1c10 is 64 bytes inside a block of size 528 alloc'd
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0xFEAE076: socket_init (socket.c:3833)
==49943==    by 0xFEAB118: socket_server_event_handler (socket.c:2723)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943== 
==49943== Invalid read of size 8
==49943==    at 0xFEA295E: iov_length (common-utils.h:429)
==49943==    by 0xFEA3964: __socket_cached_read (socket.c:423)
==49943==    by 0xFEA3E33: __socket_rwv (socket.c:556)
==49943==    by 0xFEA41CE: __socket_readv (socket.c:650)
==49943==    by 0xFEA969A: __socket_proto_state_machine (socket.c:2084)
==49943==    by 0xFEA9CBB: socket_proto_state_machine (socket.c:2247)
==49943==    by 0xFEA9D0F: socket_event_poll_in (socket.c:2263)
==49943==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943==  Address 0x1aee1c98 is 200 bytes inside a block of size 528 alloc'd
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0xFEAE076: socket_init (socket.c:3833)
==49943==    by 0xFEAB118: socket_server_event_handler (socket.c:2723)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943== 
==49943== Invalid read of size 4
==49943==    at 0xFEA396C: __socket_cached_read (socket.c:425)
==49943==    by 0xFEA3E33: __socket_rwv (socket.c:556)
==49943==    by 0xFEA41CE: __socket_readv (socket.c:650)
==49943==    by 0xFEA969A: __socket_proto_state_machine (socket.c:2084)
==49943==    by 0xFEA9CBB: socket_proto_state_machine (socket.c:2247)
==49943==    by 0xFEA9D0F: socket_event_poll_in (socket.c:2263)
==49943==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943==  Address 0x1aee1c30 is 96 bytes inside a block of size 528 alloc'd
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0xFEAE076: socket_init (socket.c:3833)
==49943==    by 0xFEAB118: socket_server_event_handler (socket.c:2723)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943== 
==49943== Invalid write of size 8
==49943==    at 0xFEA3977: __socket_cached_read (socket.c:426)
==49943==    by 0xFEA3E33: __socket_rwv (socket.c:556)
==49943==    by 0xFEA41CE: __socket_readv (socket.c:650)
==49943==    by 0xFEA969A: __socket_proto_state_machine (socket.c:2084)
==49943==    by 0xFEA9CBB: socket_proto_state_machine (socket.c:2247)
==49943==    by 0xFEA9D0F: socket_event_poll_in (socket.c:2263)
==49943==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943==  Address 0x1aee1cf8 is 296 bytes inside a block of size 528 alloc'd
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0xFEAE076: socket_init (socket.c:3833)
==49943==    by 0xFEAB118: socket_server_event_handler (socket.c:2723)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943== 
==49943== Invalid write of size 8
==49943==    at 0xFEA3986: __socket_cached_read (socket.c:427)
==49943==    by 0xFEA3E33: __socket_rwv (socket.c:556)
==49943==    by 0xFEA41CE: __socket_readv (socket.c:650)
==49943==    by 0xFEA969A: __socket_proto_state_machine (socket.c:2084)
==49943==    by 0xFEA9CBB: socket_proto_state_machine (socket.c:2247)
==49943==    by 0xFEA9D0F: socket_event_poll_in (socket.c:2263)
==49943==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943==  Address 0x1aee1d08 is 312 bytes inside a block of size 528 alloc'd
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0xFEAE076: socket_init (socket.c:3833)
==49943==    by 0xFEAB118: socket_server_event_handler (socket.c:2723)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943== 
==49943== Invalid write of size 8
==49943==    at 0xFEA3995: __socket_cached_read (socket.c:428)
==49943==    by 0xFEA3E33: __socket_rwv (socket.c:556)
==49943==    by 0xFEA41CE: __socket_readv (socket.c:650)
==49943==    by 0xFEA969A: __socket_proto_state_machine (socket.c:2084)
==49943==    by 0xFEA9CBB: socket_proto_state_machine (socket.c:2247)
==49943==    by 0xFEA9D0F: socket_event_poll_in (socket.c:2263)
==49943==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943==  Address 0x1aee1d00 is 304 bytes inside a block of size 528 alloc'd
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0xFEAE076: socket_init (socket.c:3833)
==49943==    by 0xFEAB118: socket_server_event_handler (socket.c:2723)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943== 
==49943== Invalid write of size 8
==49943==    at 0xFEA39A4: __socket_cached_read (socket.c:429)
==49943==    by 0xFEA3E33: __socket_rwv (socket.c:556)
==49943==    by 0xFEA41CE: __socket_readv (socket.c:650)
==49943==    by 0xFEA969A: __socket_proto_state_machine (socket.c:2084)
==49943==    by 0xFEA9CBB: socket_proto_state_machine (socket.c:2247)
==49943==    by 0xFEA9D0F: socket_event_poll_in (socket.c:2263)
==49943==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943==  Address 0x1aee1d10 is 320 bytes inside a block of size 528 alloc'd
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0xFEAE076: socket_init (socket.c:3833)
==49943==    by 0xFEAB118: socket_server_event_handler (socket.c:2723)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943== 
==49943== Invalid read of size 8
==49943==    at 0xFEA382B: __socket_ssl_readv (socket.c:383)
==49943==    by 0xFEA3B48: __socket_cached_read (socket.c:475)
==49943==    by 0xFEA3E33: __socket_rwv (socket.c:556)
==49943==    by 0xFEA41CE: __socket_readv (socket.c:650)
==49943==    by 0xFEA969A: __socket_proto_state_machine (socket.c:2084)
==49943==    by 0xFEA9CBB: socket_proto_state_machine (socket.c:2247)
==49943==    by 0xFEA9D0F: socket_event_poll_in (socket.c:2263)
==49943==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943==  Address 0x1aee10a0 is 80 bytes inside a block of size 2,872 alloc'd
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0xFEAAF3E: socket_server_event_handler (socket.c:2682)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943== 
==49943== Invalid read of size 4
==49943==    at 0xFEA3837: __socket_ssl_readv (socket.c:384)
==49943==    by 0xFEA3B48: __socket_cached_read (socket.c:475)
==49943==    by 0xFEA3E33: __socket_rwv (socket.c:556)
==49943==    by 0xFEA41CE: __socket_readv (socket.c:650)
==49943==    by 0xFEA969A: __socket_proto_state_machine (socket.c:2084)
==49943==    by 0xFEA9CBB: socket_proto_state_machine (socket.c:2247)
==49943==    by 0xFEA9D0F: socket_event_poll_in (socket.c:2263)
==49943==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943==  Address 0x1aee1c10 is 64 bytes inside a block of size 528 alloc'd
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0xFEAE076: socket_init (socket.c:3833)
==49943==    by 0xFEAB118: socket_server_event_handler (socket.c:2723)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943== 
==49943== Invalid read of size 4
==49943==    at 0xFEA3840: __socket_ssl_readv (socket.c:386)
==49943==    by 0xFEA3B48: __socket_cached_read (socket.c:475)
==49943==    by 0xFEA3E33: __socket_rwv (socket.c:556)
==49943==    by 0xFEA41CE: __socket_readv (socket.c:650)
==49943==    by 0xFEA969A: __socket_proto_state_machine (socket.c:2084)
==49943==    by 0xFEA9CBB: socket_proto_state_machine (socket.c:2247)
==49943==    by 0xFEA9D0F: socket_event_poll_in (socket.c:2263)
==49943==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943==  Address 0x1aee1d6c is 412 bytes inside a block of size 528 alloc'd
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0xFEAE076: socket_init (socket.c:3833)
==49943==    by 0xFEAB118: socket_server_event_handler (socket.c:2723)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943== 
==49943== Invalid read of size 8
==49943==    at 0xFEA2080: ??? (in /usr/local/lib/glusterfs/3.8.12/rpc-transport/socket.so)
==49943==    by 0xFEA3893: __socket_ssl_readv (socket.c:389)
==49943==    by 0xFEA3B48: __socket_cached_read (socket.c:475)
==49943==    by 0xFEA3E33: __socket_rwv (socket.c:556)
==49943==    by 0xFEA41CE: __socket_readv (socket.c:650)
==49943==    by 0xFEA969A: __socket_proto_state_machine (socket.c:2084)
==49943==    by 0xFEA9CBB: socket_proto_state_machine (socket.c:2247)
==49943==    by 0xFEA9D0F: socket_event_poll_in (socket.c:2263)
==49943==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==  Address 0x100b60b8 is in the GOTPLT segment of /usr/local/lib/glusterfs/3.8.12/rpc-transport/socket.so
==49943== 
==49943== Invalid read of size 4
==49943==    at 0x67B6130: __libc_enable_asynccancel (in /usr/lib64/libc-2.17.so)
==49943==    by 0x679F576: readv (in /usr/lib64/libc-2.17.so)
==49943==    by 0x4E91C34: sys_readv (syscall.c:268)
==49943==    by 0xFEA3893: __socket_ssl_readv (socket.c:389)
==49943==    by 0xFEA3B48: __socket_cached_read (socket.c:475)
==49943==    by 0xFEA3E33: __socket_rwv (socket.c:556)
==49943==    by 0xFEA41CE: __socket_readv (socket.c:650)
==49943==    by 0xFEA969A: __socket_proto_state_machine (socket.c:2084)
==49943==    by 0xFEA9CBB: socket_proto_state_machine (socket.c:2247)
==49943==    by 0xFEA9D0F: socket_event_poll_in (socket.c:2263)
==49943==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==  Address 0x1215da08 is in a rw- anonymous segment
==49943== 
==49943== Invalid read of size 4
==49943==    at 0x67B6144: __libc_enable_asynccancel (in /usr/lib64/libc-2.17.so)
==49943==    by 0x679F576: readv (in /usr/lib64/libc-2.17.so)
==49943==    by 0x4E91C34: sys_readv (syscall.c:268)
==49943==    by 0xFEA3893: __socket_ssl_readv (socket.c:389)
==49943==    by 0xFEA3B48: __socket_cached_read (socket.c:475)
==49943==    by 0xFEA3E33: __socket_rwv (socket.c:556)
==49943==    by 0xFEA41CE: __socket_readv (socket.c:650)
==49943==    by 0xFEA969A: __socket_proto_state_machine (socket.c:2084)
==49943==    by 0xFEA9CBB: socket_proto_state_machine (socket.c:2247)
==49943==    by 0xFEA9D0F: socket_event_poll_in (socket.c:2263)
==49943==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==  Address 0x1215da08 is in a rw- anonymous segment
==49943== 
==49943== Syscall param readv(vector) points to unaddressable byte(s)
==49943==    at 0x679F590: readv (in /usr/lib64/libc-2.17.so)
==49943==    by 0x4E91C34: sys_readv (syscall.c:268)
==49943==    by 0xFEA3893: __socket_ssl_readv (socket.c:389)
==49943==    by 0xFEA3B48: __socket_cached_read (socket.c:475)
==49943==    by 0xFEA3E33: __socket_rwv (socket.c:556)
==49943==    by 0xFEA41CE: __socket_readv (socket.c:650)
==49943==    by 0xFEA969A: __socket_proto_state_machine (socket.c:2084)
==49943==    by 0xFEA9CBB: socket_proto_state_machine (socket.c:2247)
==49943==    by 0xFEA9D0F: socket_event_poll_in (socket.c:2263)
==49943==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==  Address 0x1aee1c90 is 192 bytes inside a block of size 528 alloc'd
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0xFEAE076: socket_init (socket.c:3833)
==49943==    by 0xFEAB118: socket_server_event_handler (socket.c:2723)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943== 
==49943== Syscall param readv(vector[...]) points to unaddressable byte(s)
==49943==    at 0x679F590: readv (in /usr/lib64/libc-2.17.so)
==49943==    by 0x4E91C34: sys_readv (syscall.c:268)
==49943==    by 0xFEA3893: __socket_ssl_readv (socket.c:389)
==49943==    by 0xFEA3B48: __socket_cached_read (socket.c:475)
==49943==    by 0xFEA3E33: __socket_rwv (socket.c:556)
==49943==    by 0xFEA41CE: __socket_readv (socket.c:650)
==49943==    by 0xFEA969A: __socket_proto_state_machine (socket.c:2084)
==49943==    by 0xFEA9CBB: socket_proto_state_machine (socket.c:2247)
==49943==    by 0xFEA9D0F: socket_event_poll_in (socket.c:2263)
==49943==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==  Address 0x1aee1ce4 is 276 bytes inside a block of size 528 alloc'd
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0xFEAE076: socket_init (socket.c:3833)
==49943==    by 0xFEAB118: socket_server_event_handler (socket.c:2723)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943== 
==49943== Invalid read of size 4
==49943==    at 0x67B6198: __libc_disable_asynccancel (in /usr/lib64/libc-2.17.so)
==49943==    by 0x679F5A4: readv (in /usr/lib64/libc-2.17.so)
==49943==    by 0x4E91C34: sys_readv (syscall.c:268)
==49943==    by 0xFEA3893: __socket_ssl_readv (socket.c:389)
==49943==    by 0xFEA3B48: __socket_cached_read (socket.c:475)
==49943==    by 0xFEA3E33: __socket_rwv (socket.c:556)
==49943==    by 0xFEA41CE: __socket_readv (socket.c:650)
==49943==    by 0xFEA969A: __socket_proto_state_machine (socket.c:2084)
==49943==    by 0xFEA9CBB: socket_proto_state_machine (socket.c:2247)
==49943==    by 0xFEA9D0F: socket_event_poll_in (socket.c:2263)
==49943==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==  Address 0x1215da08 is in a rw- anonymous segment
==49943== 
==49943== Invalid read of size 4
==49943==    at 0x67B61A7: __libc_disable_asynccancel (in /usr/lib64/libc-2.17.so)
==49943==    by 0x679F5A4: readv (in /usr/lib64/libc-2.17.so)
==49943==    by 0x4E91C34: sys_readv (syscall.c:268)
==49943==    by 0xFEA3893: __socket_ssl_readv (socket.c:389)
==49943==    by 0xFEA3B48: __socket_cached_read (socket.c:475)
==49943==    by 0xFEA3E33: __socket_rwv (socket.c:556)
==49943==    by 0xFEA41CE: __socket_readv (socket.c:650)
==49943==    by 0xFEA969A: __socket_proto_state_machine (socket.c:2084)
==49943==    by 0xFEA9CBB: socket_proto_state_machine (socket.c:2247)
==49943==    by 0xFEA9D0F: socket_event_poll_in (socket.c:2263)
==49943==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==  Address 0x1215da08 is in a rw- anonymous segment
==49943== 
==49943== Invalid read of size 8
==49943==    at 0xFEA3E9F: __socket_rwv (socket.c:567)
==49943==    by 0xFEA41CE: __socket_readv (socket.c:650)
==49943==    by 0xFEA969A: __socket_proto_state_machine (socket.c:2084)
==49943==    by 0xFEA9CBB: socket_proto_state_machine (socket.c:2247)
==49943==    by 0xFEA9D0F: socket_event_poll_in (socket.c:2263)
==49943==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943==  Address 0x1aee1b38 is 2,792 bytes inside a block of size 2,872 alloc'd
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0xFEAAF3E: socket_server_event_handler (socket.c:2682)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943== 
==49943== Invalid write of size 8
==49943==    at 0xFEA3EB2: __socket_rwv (socket.c:567)
==49943==    by 0xFEA41CE: __socket_readv (socket.c:650)
==49943==    by 0xFEA969A: __socket_proto_state_machine (socket.c:2084)
==49943==    by 0xFEA9CBB: socket_proto_state_machine (socket.c:2247)
==49943==    by 0xFEA9D0F: socket_event_poll_in (socket.c:2263)
==49943==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943==  Address 0x1aee1b38 is 2,792 bytes inside a block of size 2,872 alloc'd
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0xFEAAF3E: socket_server_event_handler (socket.c:2682)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943== 
==49943== Invalid read of size 8
==49943==    at 0xFEA40A9: __socket_rwv (socket.c:613)
==49943==    by 0xFEA41CE: __socket_readv (socket.c:650)
==49943==    by 0xFEA969A: __socket_proto_state_machine (socket.c:2084)
==49943==    by 0xFEA9CBB: socket_proto_state_machine (socket.c:2247)
==49943==    by 0xFEA9D0F: socket_event_poll_in (socket.c:2263)
==49943==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943==  Address 0x1aee1c98 is 200 bytes inside a block of size 528 alloc'd
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0xFEAE076: socket_init (socket.c:3833)
==49943==    by 0xFEAB118: socket_server_event_handler (socket.c:2723)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943== 
==49943== Invalid read of size 8
==49943==    at 0xFEA40D1: __socket_rwv (socket.c:618)
==49943==    by 0xFEA41CE: __socket_readv (socket.c:650)
==49943==    by 0xFEA969A: __socket_proto_state_machine (socket.c:2084)
==49943==    by 0xFEA9CBB: socket_proto_state_machine (socket.c:2247)
==49943==    by 0xFEA9D0F: socket_event_poll_in (socket.c:2263)
==49943==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943==  Address 0x1aee1c98 is 200 bytes inside a block of size 528 alloc'd
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0xFEAE076: socket_init (socket.c:3833)
==49943==    by 0xFEAB118: socket_server_event_handler (socket.c:2723)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943== 
==49943== Invalid read of size 8
==49943==    at 0xFEA40DE: __socket_rwv (socket.c:619)
==49943==    by 0xFEA41CE: __socket_readv (socket.c:650)
==49943==    by 0xFEA969A: __socket_proto_state_machine (socket.c:2084)
==49943==    by 0xFEA9CBB: socket_proto_state_machine (socket.c:2247)
==49943==    by 0xFEA9D0F: socket_event_poll_in (socket.c:2263)
==49943==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943==  Address 0x1aee1c98 is 200 bytes inside a block of size 528 alloc'd
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0xFEAE076: socket_init (socket.c:3833)
==49943==    by 0xFEAB118: socket_server_event_handler (socket.c:2723)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943== 
==49943== Invalid write of size 8
==49943==    at 0xFEA4165: __socket_rwv (socket.c:633)
==49943==    by 0xFEA41CE: __socket_readv (socket.c:650)
==49943==    by 0xFEA969A: __socket_proto_state_machine (socket.c:2084)
==49943==    by 0xFEA9CBB: socket_proto_state_machine (socket.c:2247)
==49943==    by 0xFEA9D0F: socket_event_poll_in (socket.c:2263)
==49943==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943==  Address 0x1aee1cd8 is 264 bytes inside a block of size 528 alloc'd
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0xFEAE076: socket_init (socket.c:3833)
==49943==    by 0xFEAB118: socket_server_event_handler (socket.c:2723)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943== 
==49943== Invalid write of size 4
==49943==    at 0xFEA4176: __socket_rwv (socket.c:636)
==49943==    by 0xFEA41CE: __socket_readv (socket.c:650)
==49943==    by 0xFEA969A: __socket_proto_state_machine (socket.c:2084)
==49943==    by 0xFEA9CBB: socket_proto_state_machine (socket.c:2247)
==49943==    by 0xFEA9D0F: socket_event_poll_in (socket.c:2263)
==49943==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943==  Address 0x1aee1ce0 is 272 bytes inside a block of size 528 alloc'd
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0xFEAE076: socket_init (socket.c:3833)
==49943==    by 0xFEAB118: socket_server_event_handler (socket.c:2723)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943== 
==49943== Invalid write of size 4
==49943==    at 0xFEA96F3: __socket_proto_state_machine (socket.c:2098)
==49943==    by 0xFEA9CBB: socket_proto_state_machine (socket.c:2247)
==49943==    by 0xFEA9D0F: socket_event_poll_in (socket.c:2263)
==49943==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943==  Address 0x1aee1c30 is 96 bytes inside a block of size 528 alloc'd
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0xFEAE076: socket_init (socket.c:3833)
==49943==    by 0xFEAB118: socket_server_event_handler (socket.c:2723)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943== 
==49943== Invalid read of size 8
==49943==    at 0xFEA96F9: __socket_proto_state_machine (socket.c:2104)
==49943==    by 0xFEA9CBB: socket_proto_state_machine (socket.c:2247)
==49943==    by 0xFEA9D0F: socket_event_poll_in (socket.c:2263)
==49943==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943==  Address 0x100b6408 is 0 bytes inside data symbol "hton32"
==49943== 
==49943== Invalid read of size 8
==49943==    at 0xFEA971C: __socket_proto_state_machine (socket.c:2105)
==49943==    by 0xFEA9CBB: socket_proto_state_machine (socket.c:2247)
==49943==    by 0xFEA9D0F: socket_event_poll_in (socket.c:2263)
==49943==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943==  Address 0x1aee1cf0 is 288 bytes inside a block of size 528 alloc'd
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0xFEAE076: socket_init (socket.c:3833)
==49943==    by 0xFEAB118: socket_server_event_handler (socket.c:2723)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943== 
==49943== Invalid write of size 8
==49943==    at 0xFEA973B: __socket_proto_state_machine (socket.c:2105)
==49943==    by 0xFEA9CBB: socket_proto_state_machine (socket.c:2247)
==49943==    by 0xFEA9D0F: socket_event_poll_in (socket.c:2263)
==49943==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943==  Address 0x1aee1cf0 is 288 bytes inside a block of size 528 alloc'd
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0xFEAE076: socket_init (socket.c:3833)
==49943==    by 0xFEAB118: socket_server_event_handler (socket.c:2723)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943== 
==49943== Invalid read of size 8
==49943==    at 0xFEA9746: __socket_proto_state_machine (socket.c:2107)
==49943==    by 0xFEA9CBB: socket_proto_state_machine (socket.c:2247)
==49943==    by 0xFEA9D0F: socket_event_poll_in (socket.c:2263)
==49943==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943==  Address 0x1aee1cf0 is 288 bytes inside a block of size 528 alloc'd
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0xFEAE076: socket_init (socket.c:3833)
==49943==    by 0xFEAB118: socket_server_event_handler (socket.c:2723)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943== 
==49943== Invalid read of size 8
==49943==    at 0xFEA9765: __socket_proto_state_machine (socket.c:2113)
==49943==    by 0xFEA9CBB: socket_proto_state_machine (socket.c:2247)
==49943==    by 0xFEA9D0F: socket_event_poll_in (socket.c:2263)
==49943==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943==  Address 0x1aee1cf0 is 288 bytes inside a block of size 528 alloc'd
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0xFEAE076: socket_init (socket.c:3833)
==49943==    by 0xFEAB118: socket_server_event_handler (socket.c:2723)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943== 
==49943== Invalid read of size 8
==49943==    at 0xFEA9774: __socket_proto_state_machine (socket.c:2112)
==49943==    by 0xFEA9CBB: socket_proto_state_machine (socket.c:2247)
==49943==    by 0xFEA9D0F: socket_event_poll_in (socket.c:2263)
==49943==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943==  Address 0x1aee10f0 is 160 bytes inside a block of size 2,872 alloc'd
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0xFEAAF3E: socket_server_event_handler (socket.c:2682)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943== 
==49943== Invalid read of size 8
==49943==    at 0xFEA20D0: ??? (in /usr/local/lib/glusterfs/3.8.12/rpc-transport/socket.so)
==49943==    by 0xFEA9789: __socket_proto_state_machine (socket.c:2112)
==49943==    by 0xFEA9CBB: socket_proto_state_machine (socket.c:2247)
==49943==    by 0xFEA9D0F: socket_event_poll_in (socket.c:2263)
==49943==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943==  Address 0x100b60e0 is in the GOTPLT segment of /usr/local/lib/glusterfs/3.8.12/rpc-transport/socket.so
==49943== 
==49943== Invalid read of size 4
==49943==    at 0x60B4BE3: pthread_mutex_lock (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x4E93E47: iobuf_get2 (iobuf.c:662)
==49943==    by 0xFEA9789: __socket_proto_state_machine (socket.c:2112)
==49943==    by 0xFEA9CBB: socket_proto_state_machine (socket.c:2247)
==49943==    by 0xFEA9D0F: socket_event_poll_in (socket.c:2263)
==49943==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943==  Address 0x1215d9d0 is in a rw- anonymous segment
==49943== 
==49943== Invalid read of size 8
==49943==    at 0xFEA97A5: __socket_proto_state_machine (socket.c:2120)
==49943==    by 0xFEA9CBB: socket_proto_state_machine (socket.c:2247)
==49943==    by 0xFEA9D0F: socket_event_poll_in (socket.c:2263)
==49943==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943==  Address 0x1aee1c80 is 176 bytes inside a block of size 528 alloc'd
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0xFEAE076: socket_init (socket.c:3833)
==49943==    by 0xFEAB118: socket_server_event_handler (socket.c:2723)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943== 
==49943== Invalid write of size 8
==49943==    at 0xFEA97BA: __socket_proto_state_machine (socket.c:2122)
==49943==    by 0xFEA9CBB: socket_proto_state_machine (socket.c:2247)
==49943==    by 0xFEA9D0F: socket_event_poll_in (socket.c:2263)
==49943==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943==  Address 0x1aee1c38 is 104 bytes inside a block of size 528 alloc'd
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0xFEAE076: socket_init (socket.c:3833)
==49943==    by 0xFEAB118: socket_server_event_handler (socket.c:2723)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943== 
==49943== Invalid write of size 8
==49943==    at 0xFEA9871: __socket_proto_state_machine (socket.c:2134)
==49943==    by 0xFEA9CBB: socket_proto_state_machine (socket.c:2247)
==49943==    by 0xFEA9D0F: socket_event_poll_in (socket.c:2263)
==49943==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943==  Address 0x1aee1c80 is 176 bytes inside a block of size 528 alloc'd
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0xFEAE076: socket_init (socket.c:3833)
==49943==    by 0xFEAB118: socket_server_event_handler (socket.c:2723)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943== 
==49943== Invalid write of size 8
==49943==    at 0xFEA9879: __socket_proto_state_machine (socket.c:2135)
==49943==    by 0xFEA9CBB: socket_proto_state_machine (socket.c:2247)
==49943==    by 0xFEA9D0F: socket_event_poll_in (socket.c:2263)
==49943==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943==  Address 0x1aee1c88 is 184 bytes inside a block of size 528 alloc'd
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0xFEAE076: socket_init (socket.c:3833)
==49943==    by 0xFEAB118: socket_server_event_handler (socket.c:2723)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943== 
==49943== Invalid write of size 4
==49943==    at 0xFEA9885: __socket_proto_state_machine (socket.c:2136)
==49943==    by 0xFEA9CBB: socket_proto_state_machine (socket.c:2247)
==49943==    by 0xFEA9D0F: socket_event_poll_in (socket.c:2263)
==49943==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943==  Address 0x1aee1c30 is 96 bytes inside a block of size 528 alloc'd
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0xFEAE076: socket_init (socket.c:3833)
==49943==    by 0xFEAB118: socket_server_event_handler (socket.c:2723)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943== 
==49943== Invalid read of size 8
==49943==    at 0xFEA8ED2: __socket_read_frag (socket.c:1951)
==49943==    by 0xFEA9896: __socket_proto_state_machine (socket.c:2140)
==49943==    by 0xFEA9CBB: socket_proto_state_machine (socket.c:2247)
==49943==    by 0xFEA9D0F: socket_event_poll_in (socket.c:2263)
==49943==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943==  Address 0x1aee10a0 is 80 bytes inside a block of size 2,872 alloc'd
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0xFEAAF3E: socket_server_event_handler (socket.c:2682)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943== 
==49943== Invalid read of size 8
==49943==    at 0xFEA8F42: __socket_read_frag (socket.c:1953)
==49943==    by 0xFEA9896: __socket_proto_state_machine (socket.c:2140)
==49943==    by 0xFEA9CBB: socket_proto_state_machine (socket.c:2247)
==49943==    by 0xFEA9D0F: socket_event_poll_in (socket.c:2263)
==49943==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943==  Address 0x1aee10a0 is 80 bytes inside a block of size 2,872 alloc'd
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0xFEAAF3E: socket_server_event_handler (socket.c:2682)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943== 
==49943== Invalid read of size 4
==49943==    at 0xFEA8F66: __socket_read_frag (socket.c:1958)
==49943==    by 0xFEA9896: __socket_proto_state_machine (socket.c:2140)
==49943==    by 0xFEA9CBB: socket_proto_state_machine (socket.c:2247)
==49943==    by 0xFEA9D0F: socket_event_poll_in (socket.c:2263)
==49943==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943==  Address 0x1aee1c74 is 164 bytes inside a block of size 528 alloc'd
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0xFEAE076: socket_init (socket.c:3833)
==49943==    by 0xFEAB118: socket_server_event_handler (socket.c:2723)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943== 
==49943== Invalid read of size 4
==49943==    at 0xFEA8FB6: __socket_read_frag (socket.c:1960)
==49943==    by 0xFEA9896: __socket_proto_state_machine (socket.c:2140)
==49943==    by 0xFEA9CBB: socket_proto_state_machine (socket.c:2247)
==49943==    by 0xFEA9D0F: socket_event_poll_in (socket.c:2263)
==49943==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943==  Address 0x1aee1c40 is 112 bytes inside a block of size 528 alloc'd
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0xFEAE076: socket_init (socket.c:3833)
==49943==    by 0xFEAB118: socket_server_event_handler (socket.c:2723)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943== 
==49943== Invalid read of size 8
==49943==    at 0xFEA1F60: ??? (in /usr/local/lib/glusterfs/3.8.12/rpc-transport/socket.so)
==49943==    by 0xFEA8FE5: __socket_read_frag (socket.c:1960)
==49943==    by 0xFEA9896: __socket_proto_state_machine (socket.c:2140)
==49943==    by 0xFEA9CBB: socket_proto_state_machine (socket.c:2247)
==49943==    by 0xFEA9D0F: socket_event_poll_in (socket.c:2263)
==49943==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943==  Address 0x100b6028 is in the GOTPLT segment of /usr/local/lib/glusterfs/3.8.12/rpc-transport/socket.so
==49943== 
==49943== Invalid write of size 8
==49943==    at 0x4C2DEF7: memset (vg_replace_strmem.c:1224)
==49943==    by 0xFEA8FE5: __socket_read_frag (socket.c:1960)
==49943==    by 0xFEA9896: __socket_proto_state_machine (socket.c:2140)
==49943==    by 0xFEA9CBB: socket_proto_state_machine (socket.c:2247)
==49943==    by 0xFEA9D0F: socket_event_poll_in (socket.c:2263)
==49943==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943==  Address 0x1aee1c48 is 120 bytes inside a block of size 528 alloc'd
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0xFEAE076: socket_init (socket.c:3833)
==49943==    by 0xFEAB118: socket_server_event_handler (socket.c:2723)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943== 
==49943== Invalid write of size 8
==49943==    at 0xFEA8FF2: __socket_read_frag (socket.c:1960)
==49943==    by 0xFEA9896: __socket_proto_state_machine (socket.c:2140)
==49943==    by 0xFEA9CBB: socket_proto_state_machine (socket.c:2247)
==49943==    by 0xFEA9D0F: socket_event_poll_in (socket.c:2263)
==49943==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943==  Address 0x1aee1c58 is 136 bytes inside a block of size 528 alloc'd
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0xFEAE076: socket_init (socket.c:3833)
==49943==    by 0xFEAB118: socket_server_event_handler (socket.c:2723)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943== 
==49943== Invalid read of size 8
==49943==    at 0xFEA8FFA: __socket_read_frag (socket.c:1960)
==49943==    by 0xFEA9896: __socket_proto_state_machine (socket.c:2140)
==49943==    by 0xFEA9CBB: socket_proto_state_machine (socket.c:2247)
==49943==    by 0xFEA9D0F: socket_event_poll_in (socket.c:2263)
==49943==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943==  Address 0x1aee1c58 is 136 bytes inside a block of size 528 alloc'd
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0xFEAE076: socket_init (socket.c:3833)
==49943==    by 0xFEAB118: socket_server_event_handler (socket.c:2723)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943== 
==49943== Invalid read of size 8
==49943==    at 0xFEA9002: __socket_read_frag (socket.c:1960)
==49943==    by 0xFEA9896: __socket_proto_state_machine (socket.c:2140)
==49943==    by 0xFEA9CBB: socket_proto_state_machine (socket.c:2247)
==49943==    by 0xFEA9D0F: socket_event_poll_in (socket.c:2263)
==49943==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943==  Address 0x1aee1c38 is 104 bytes inside a block of size 528 alloc'd
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0xFEAE076: socket_init (socket.c:3833)
==49943==    by 0xFEAB118: socket_server_event_handler (socket.c:2723)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943== 
==49943== Invalid write of size 8
==49943==    at 0xFEA9005: __socket_read_frag (socket.c:1960)
==49943==    by 0xFEA9896: __socket_proto_state_machine (socket.c:2140)
==49943==    by 0xFEA9CBB: socket_proto_state_machine (socket.c:2247)
==49943==    by 0xFEA9D0F: socket_event_poll_in (socket.c:2263)
==49943==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943==  Address 0x1aee1c48 is 120 bytes inside a block of size 528 alloc'd
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0xFEAE076: socket_init (socket.c:3833)
==49943==    by 0xFEAB118: socket_server_event_handler (socket.c:2723)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943== 
==49943== Invalid read of size 8
==49943==    at 0xFEA900C: __socket_read_frag (socket.c:1960)
==49943==    by 0xFEA9896: __socket_proto_state_machine (socket.c:2140)
==49943==    by 0xFEA9CBB: socket_proto_state_machine (socket.c:2247)
==49943==    by 0xFEA9D0F: socket_event_poll_in (socket.c:2263)
==49943==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943==  Address 0x1aee1c58 is 136 bytes inside a block of size 528 alloc'd
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0xFEAE076: socket_init (socket.c:3833)
==49943==    by 0xFEAB118: socket_server_event_handler (socket.c:2723)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943== 
==49943== Invalid write of size 8
==49943==    at 0xFEA9014: __socket_read_frag (socket.c:1960)
==49943==    by 0xFEA9896: __socket_proto_state_machine (socket.c:2140)
==49943==    by 0xFEA9CBB: socket_proto_state_machine (socket.c:2247)
==49943==    by 0xFEA9D0F: socket_event_poll_in (socket.c:2263)
==49943==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943==  Address 0x1aee1cd8 is 264 bytes inside a block of size 528 alloc'd
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0xFEAE076: socket_init (socket.c:3833)
==49943==    by 0xFEAB118: socket_server_event_handler (socket.c:2723)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943== 
==49943== Invalid read of size 8
==49943==    at 0xFEA901F: __socket_read_frag (socket.c:1960)
==49943==    by 0xFEA9896: __socket_proto_state_machine (socket.c:2140)
==49943==    by 0xFEA9CBB: socket_proto_state_machine (socket.c:2247)
==49943==    by 0xFEA9D0F: socket_event_poll_in (socket.c:2263)
==49943==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943==  Address 0x1aee1c58 is 136 bytes inside a block of size 528 alloc'd
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0xFEAE076: socket_init (socket.c:3833)
==49943==    by 0xFEAB118: socket_server_event_handler (socket.c:2723)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943== 
==49943== Invalid write of size 8
==49943==    at 0xFEA9032: __socket_read_frag (socket.c:1960)
==49943==    by 0xFEA9896: __socket_proto_state_machine (socket.c:2140)
==49943==    by 0xFEA9CBB: socket_proto_state_machine (socket.c:2247)
==49943==    by 0xFEA9D0F: socket_event_poll_in (socket.c:2263)
==49943==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943==  Address 0x1aee1c50 is 128 bytes inside a block of size 528 alloc'd
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0xFEAE076: socket_init (socket.c:3833)
==49943==    by 0xFEAB118: socket_server_event_handler (socket.c:2723)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943== 
==49943== Invalid read of size 8
==49943==    at 0xFEA903A: __socket_read_frag (socket.c:1960)
==49943==    by 0xFEA9896: __socket_proto_state_machine (socket.c:2140)
==49943==    by 0xFEA9CBB: socket_proto_state_machine (socket.c:2247)
==49943==    by 0xFEA9D0F: socket_event_poll_in (socket.c:2263)
==49943==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943==  Address 0x1aee1c58 is 136 bytes inside a block of size 528 alloc'd
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0xFEAE076: socket_init (socket.c:3833)
==49943==    by 0xFEAB118: socket_server_event_handler (socket.c:2723)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943== 
==49943== Invalid read of size 8
==49943==    at 0xFEA903E: __socket_read_frag (socket.c:1960)
==49943==    by 0xFEA9896: __socket_proto_state_machine (socket.c:2140)
==49943==    by 0xFEA9CBB: socket_proto_state_machine (socket.c:2247)
==49943==    by 0xFEA9D0F: socket_event_poll_in (socket.c:2263)
==49943==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943==  Address 0x1aee1c50 is 128 bytes inside a block of size 528 alloc'd
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0xFEAE076: socket_init (socket.c:3833)
==49943==    by 0xFEAB118: socket_server_event_handler (socket.c:2723)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943== 
==49943== Invalid write of size 4
==49943==    at 0xFEA904D: __socket_read_frag (socket.c:1960)
==49943==    by 0xFEA9896: __socket_proto_state_machine (socket.c:2140)
==49943==    by 0xFEA9CBB: socket_proto_state_machine (socket.c:2247)
==49943==    by 0xFEA9D0F: socket_event_poll_in (socket.c:2263)
==49943==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943==  Address 0x1aee1c44 is 116 bytes inside a block of size 528 alloc'd
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0xFEAE076: socket_init (socket.c:3833)
==49943==    by 0xFEAB118: socket_server_event_handler (socket.c:2723)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943== 
==49943== Invalid write of size 4
==49943==    at 0xFEA9054: __socket_read_frag (socket.c:1962)
==49943==    by 0xFEA9896: __socket_proto_state_machine (socket.c:2140)
==49943==    by 0xFEA9CBB: socket_proto_state_machine (socket.c:2247)
==49943==    by 0xFEA9D0F: socket_event_poll_in (socket.c:2263)
==49943==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943==  Address 0x1aee1c74 is 164 bytes inside a block of size 528 alloc'd
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0xFEAE076: socket_init (socket.c:3833)
==49943==    by 0xFEAB118: socket_server_event_handler (socket.c:2723)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943== 
==49943== Invalid read of size 8
==49943==    at 0xFEA907F: __socket_read_frag (socket.c:1967)
==49943==    by 0xFEA9896: __socket_proto_state_machine (socket.c:2140)
==49943==    by 0xFEA9CBB: socket_proto_state_machine (socket.c:2247)
==49943==    by 0xFEA9D0F: socket_event_poll_in (socket.c:2263)
==49943==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943==  Address 0x1aee1c58 is 136 bytes inside a block of size 528 alloc'd
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0xFEAE076: socket_init (socket.c:3833)
==49943==    by 0xFEAB118: socket_server_event_handler (socket.c:2723)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943== 
==49943== Invalid read of size 8
==49943==    at 0xFEA9083: __socket_read_frag (socket.c:1967)
==49943==    by 0xFEA9896: __socket_proto_state_machine (socket.c:2140)
==49943==    by 0xFEA9CBB: socket_proto_state_machine (socket.c:2247)
==49943==    by 0xFEA9D0F: socket_event_poll_in (socket.c:2263)
==49943==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943==  Address 0x1aee1c50 is 128 bytes inside a block of size 528 alloc'd
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0xFEAE076: socket_init (socket.c:3833)
==49943==    by 0xFEAB118: socket_server_event_handler (socket.c:2723)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943== 
==49943== Invalid read of size 8
==49943==    at 0xFEA90FE: __socket_read_frag (socket.c:1967)
==49943==    by 0xFEA9896: __socket_proto_state_machine (socket.c:2140)
==49943==    by 0xFEA9CBB: socket_proto_state_machine (socket.c:2247)
==49943==    by 0xFEA9D0F: socket_event_poll_in (socket.c:2263)
==49943==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943==  Address 0x1aee1cd8 is 264 bytes inside a block of size 528 alloc'd
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0xFEAE076: socket_init (socket.c:3833)
==49943==    by 0xFEAB118: socket_server_event_handler (socket.c:2723)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943== 
==49943== Invalid read of size 8
==49943==    at 0xFEA39B8: __socket_cached_read (socket.c:433)
==49943==    by 0xFEA3E33: __socket_rwv (socket.c:556)
==49943==    by 0xFEA41CE: __socket_readv (socket.c:650)
==49943==    by 0xFEA9125: __socket_read_frag (socket.c:1967)
==49943==    by 0xFEA9896: __socket_proto_state_machine (socket.c:2140)
==49943==    by 0xFEA9CBB: socket_proto_state_machine (socket.c:2247)
==49943==    by 0xFEA9D0F: socket_event_poll_in (socket.c:2263)
==49943==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943==  Address 0x1aee1d00 is 304 bytes inside a block of size 528 alloc'd
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0xFEAE076: socket_init (socket.c:3833)
==49943==    by 0xFEAB118: socket_server_event_handler (socket.c:2723)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943== 
==49943== Invalid write of size 8
==49943==    at 0xFEA39E6: __socket_cached_read (socket.c:435)
==49943==    by 0xFEA3E33: __socket_rwv (socket.c:556)
==49943==    by 0xFEA41CE: __socket_readv (socket.c:650)
==49943==    by 0xFEA9125: __socket_read_frag (socket.c:1967)
==49943==    by 0xFEA9896: __socket_proto_state_machine (socket.c:2140)
==49943==    by 0xFEA9CBB: socket_proto_state_machine (socket.c:2247)
==49943==    by 0xFEA9D0F: socket_event_poll_in (socket.c:2263)
==49943==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943==  Address 0x1aee1d00 is 304 bytes inside a block of size 528 alloc'd
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0xFEAE076: socket_init (socket.c:3833)
==49943==    by 0xFEAB118: socket_server_event_handler (socket.c:2723)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943== 
==49943== Invalid read of size 8
==49943==    at 0xFEA39F1: __socket_cached_read (socket.c:441)
==49943==    by 0xFEA3E33: __socket_rwv (socket.c:556)
==49943==    by 0xFEA41CE: __socket_readv (socket.c:650)
==49943==    by 0xFEA9125: __socket_read_frag (socket.c:1967)
==49943==    by 0xFEA9896: __socket_proto_state_machine (socket.c:2140)
==49943==    by 0xFEA9CBB: socket_proto_state_machine (socket.c:2247)
==49943==    by 0xFEA9D0F: socket_event_poll_in (socket.c:2263)
==49943==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943==  Address 0x1aee1c38 is 104 bytes inside a block of size 528 alloc'd
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0xFEAE076: socket_init (socket.c:3833)
==49943==    by 0xFEAB118: socket_server_event_handler (socket.c:2723)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943== 
==49943== Invalid write of size 8
==49943==    at 0xFEA39F9: __socket_cached_read (socket.c:441)
==49943==    by 0xFEA3E33: __socket_rwv (socket.c:556)
==49943==    by 0xFEA41CE: __socket_readv (socket.c:650)
==49943==    by 0xFEA9125: __socket_read_frag (socket.c:1967)
==49943==    by 0xFEA9896: __socket_proto_state_machine (socket.c:2140)
==49943==    by 0xFEA9CBB: socket_proto_state_machine (socket.c:2247)
==49943==    by 0xFEA9D0F: socket_event_poll_in (socket.c:2263)
==49943==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943==  Address 0x1aee1d10 is 320 bytes inside a block of size 528 alloc'd
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0xFEAE076: socket_init (socket.c:3833)
==49943==    by 0xFEAB118: socket_server_event_handler (socket.c:2723)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943== 
==49943== Invalid read of size 8
==49943==    at 0xFEA3A04: __socket_cached_read (socket.c:445)
==49943==    by 0xFEA3E33: __socket_rwv (socket.c:556)
==49943==    by 0xFEA41CE: __socket_readv (socket.c:650)
==49943==    by 0xFEA9125: __socket_read_frag (socket.c:1967)
==49943==    by 0xFEA9896: __socket_proto_state_machine (socket.c:2140)
==49943==    by 0xFEA9CBB: socket_proto_state_machine (socket.c:2247)
==49943==    by 0xFEA9D0F: socket_event_poll_in (socket.c:2263)
==49943==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943==  Address 0x1aee1cf8 is 296 bytes inside a block of size 528 alloc'd
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0xFEAE076: socket_init (socket.c:3833)
==49943==    by 0xFEAB118: socket_server_event_handler (socket.c:2723)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943== 
==49943== Invalid read of size 8
==49943==    at 0xFEA3A0F: __socket_cached_read (socket.c:445)
==49943==    by 0xFEA3E33: __socket_rwv (socket.c:556)
==49943==    by 0xFEA41CE: __socket_readv (socket.c:650)
==49943==    by 0xFEA9125: __socket_read_frag (socket.c:1967)
==49943==    by 0xFEA9896: __socket_proto_state_machine (socket.c:2140)
==49943==    by 0xFEA9CBB: socket_proto_state_machine (socket.c:2247)
==49943==    by 0xFEA9D0F: socket_event_poll_in (socket.c:2263)
==49943==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943==  Address 0x1aee1d00 is 304 bytes inside a block of size 528 alloc'd
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0xFEAE076: socket_init (socket.c:3833)
==49943==    by 0xFEAB118: socket_server_event_handler (socket.c:2723)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943== 
==49943== Invalid read of size 8
==49943==    at 0xFEA3A1F: __socket_cached_read (socket.c:447)
==49943==    by 0xFEA3E33: __socket_rwv (socket.c:556)
==49943==    by 0xFEA41CE: __socket_readv (socket.c:650)
==49943==    by 0xFEA9125: __socket_read_frag (socket.c:1967)
==49943==    by 0xFEA9896: __socket_proto_state_machine (socket.c:2140)
==49943==    by 0xFEA9CBB: socket_proto_state_machine (socket.c:2247)
==49943==    by 0xFEA9D0F: socket_event_poll_in (socket.c:2263)
==49943==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943==  Address 0x1aee1d00 is 304 bytes inside a block of size 528 alloc'd
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0xFEAE076: socket_init (socket.c:3833)
==49943==    by 0xFEAB118: socket_server_event_handler (socket.c:2723)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943== 
==49943== Invalid read of size 8
==49943==    at 0xFEA3A2A: __socket_cached_read (socket.c:447)
==49943==    by 0xFEA3E33: __socket_rwv (socket.c:556)
==49943==    by 0xFEA41CE: __socket_readv (socket.c:650)
==49943==    by 0xFEA9125: __socket_read_frag (socket.c:1967)
==49943==    by 0xFEA9896: __socket_proto_state_machine (socket.c:2140)
==49943==    by 0xFEA9CBB: socket_proto_state_machine (socket.c:2247)
==49943==    by 0xFEA9D0F: socket_event_poll_in (socket.c:2263)
==49943==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943==  Address 0x1aee1cf8 is 296 bytes inside a block of size 528 alloc'd
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0xFEAE076: socket_init (socket.c:3833)
==49943==    by 0xFEAB118: socket_server_event_handler (socket.c:2723)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943== 
==49943== Invalid read of size 8
==49943==    at 0xFEA3A38: __socket_cached_read (socket.c:446)
==49943==    by 0xFEA3E33: __socket_rwv (socket.c:556)
==49943==    by 0xFEA41CE: __socket_readv (socket.c:650)
==49943==    by 0xFEA9125: __socket_read_frag (socket.c:1967)
==49943==    by 0xFEA9896: __socket_proto_state_machine (socket.c:2140)
==49943==    by 0xFEA9CBB: socket_proto_state_machine (socket.c:2247)
==49943==    by 0xFEA9D0F: socket_event_poll_in (socket.c:2263)
==49943==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943==  Address 0x1aee1d10 is 320 bytes inside a block of size 528 alloc'd
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0xFEAE076: socket_init (socket.c:3833)
==49943==    by 0xFEAB118: socket_server_event_handler (socket.c:2723)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943== 
==49943== Invalid read of size 8
==49943==    at 0xFEA3A43: __socket_cached_read (socket.c:446)
==49943==    by 0xFEA3E33: __socket_rwv (socket.c:556)
==49943==    by 0xFEA41CE: __socket_readv (socket.c:650)
==49943==    by 0xFEA9125: __socket_read_frag (socket.c:1967)
==49943==    by 0xFEA9896: __socket_proto_state_machine (socket.c:2140)
==49943==    by 0xFEA9CBB: socket_proto_state_machine (socket.c:2247)
==49943==    by 0xFEA9D0F: socket_event_poll_in (socket.c:2263)
==49943==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943==  Address 0x1aee1cf8 is 296 bytes inside a block of size 528 alloc'd
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0xFEAE076: socket_init (socket.c:3833)
==49943==    by 0xFEAB118: socket_server_event_handler (socket.c:2723)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943== 
==49943== Invalid read of size 8
==49943==    at 0xFEA382B: __socket_ssl_readv (socket.c:383)
==49943==    by 0xFEA38F0: __socket_ssl_read (socket.c:405)
==49943==    by 0xFEA3A5B: __socket_cached_read (socket.c:446)
==49943==    by 0xFEA3E33: __socket_rwv (socket.c:556)
==49943==    by 0xFEA41CE: __socket_readv (socket.c:650)
==49943==    by 0xFEA9125: __socket_read_frag (socket.c:1967)
==49943==    by 0xFEA9896: __socket_proto_state_machine (socket.c:2140)
==49943==    by 0xFEA9CBB: socket_proto_state_machine (socket.c:2247)
==49943==    by 0xFEA9D0F: socket_event_poll_in (socket.c:2263)
==49943==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==  Address 0x1aee10a0 is 80 bytes inside a block of size 2,872 alloc'd
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0xFEAAF3E: socket_server_event_handler (socket.c:2682)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943== 
==49943== Invalid read of size 4
==49943==    at 0xFEA3837: __socket_ssl_readv (socket.c:384)
==49943==    by 0xFEA38F0: __socket_ssl_read (socket.c:405)
==49943==    by 0xFEA3A5B: __socket_cached_read (socket.c:446)
==49943==    by 0xFEA3E33: __socket_rwv (socket.c:556)
==49943==    by 0xFEA41CE: __socket_readv (socket.c:650)
==49943==    by 0xFEA9125: __socket_read_frag (socket.c:1967)
==49943==    by 0xFEA9896: __socket_proto_state_machine (socket.c:2140)
==49943==    by 0xFEA9CBB: socket_proto_state_machine (socket.c:2247)
==49943==    by 0xFEA9D0F: socket_event_poll_in (socket.c:2263)
==49943==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==  Address 0x1aee1c10 is 64 bytes inside a block of size 528 alloc'd
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0xFEAE076: socket_init (socket.c:3833)
==49943==    by 0xFEAB118: socket_server_event_handler (socket.c:2723)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943== 
==49943== Invalid read of size 4
==49943==    at 0xFEA3840: __socket_ssl_readv (socket.c:386)
==49943==    by 0xFEA38F0: __socket_ssl_read (socket.c:405)
==49943==    by 0xFEA3A5B: __socket_cached_read (socket.c:446)
==49943==    by 0xFEA3E33: __socket_rwv (socket.c:556)
==49943==    by 0xFEA41CE: __socket_readv (socket.c:650)
==49943==    by 0xFEA9125: __socket_read_frag (socket.c:1967)
==49943==    by 0xFEA9896: __socket_proto_state_machine (socket.c:2140)
==49943==    by 0xFEA9CBB: socket_proto_state_machine (socket.c:2247)
==49943==    by 0xFEA9D0F: socket_event_poll_in (socket.c:2263)
==49943==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==  Address 0x1aee1d6c is 412 bytes inside a block of size 528 alloc'd
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0xFEAE076: socket_init (socket.c:3833)
==49943==    by 0xFEAB118: socket_server_event_handler (socket.c:2723)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943== 
==49943== Invalid read of size 8
==49943==    at 0xFEA3A69: __socket_cached_read (socket.c:449)
==49943==    by 0xFEA3E33: __socket_rwv (socket.c:556)
==49943==    by 0xFEA41CE: __socket_readv (socket.c:650)
==49943==    by 0xFEA9125: __socket_read_frag (socket.c:1967)
==49943==    by 0xFEA9896: __socket_proto_state_machine (socket.c:2140)
==49943==    by 0xFEA9CBB: socket_proto_state_machine (socket.c:2247)
==49943==    by 0xFEA9D0F: socket_event_poll_in (socket.c:2263)
==49943==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943==  Address 0x1aee1cf8 is 296 bytes inside a block of size 528 alloc'd
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0xFEAE076: socket_init (socket.c:3833)
==49943==    by 0xFEAB118: socket_server_event_handler (socket.c:2723)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943== 
==49943== Invalid write of size 8
==49943==    at 0xFEA3A7C: __socket_cached_read (socket.c:449)
==49943==    by 0xFEA3E33: __socket_rwv (socket.c:556)
==49943==    by 0xFEA41CE: __socket_readv (socket.c:650)
==49943==    by 0xFEA9125: __socket_read_frag (socket.c:1967)
==49943==    by 0xFEA9896: __socket_proto_state_machine (socket.c:2140)
==49943==    by 0xFEA9CBB: socket_proto_state_machine (socket.c:2247)
==49943==    by 0xFEA9D0F: socket_event_poll_in (socket.c:2263)
==49943==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943==  Address 0x1aee1cf8 is 296 bytes inside a block of size 528 alloc'd
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0xFEAE076: socket_init (socket.c:3833)
==49943==    by 0xFEAB118: socket_server_event_handler (socket.c:2723)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943== 
==49943== Invalid read of size 8
==49943==    at 0xFEA3A87: __socket_cached_read (socket.c:456)
==49943==    by 0xFEA3E33: __socket_rwv (socket.c:556)
==49943==    by 0xFEA41CE: __socket_readv (socket.c:650)
==49943==    by 0xFEA9125: __socket_read_frag (socket.c:1967)
==49943==    by 0xFEA9896: __socket_proto_state_machine (socket.c:2140)
==49943==    by 0xFEA9CBB: socket_proto_state_machine (socket.c:2247)
==49943==    by 0xFEA9D0F: socket_event_poll_in (socket.c:2263)
==49943==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943==  Address 0x1aee1d08 is 312 bytes inside a block of size 528 alloc'd
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0xFEAE076: socket_init (socket.c:3833)
==49943==    by 0xFEAB118: socket_server_event_handler (socket.c:2723)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943== 
==49943== Invalid read of size 8
==49943==    at 0xFEA3A92: __socket_cached_read (socket.c:456)
==49943==    by 0xFEA3E33: __socket_rwv (socket.c:556)
==49943==    by 0xFEA41CE: __socket_readv (socket.c:650)
==49943==    by 0xFEA9125: __socket_read_frag (socket.c:1967)
==49943==    by 0xFEA9896: __socket_proto_state_machine (socket.c:2140)
==49943==    by 0xFEA9CBB: socket_proto_state_machine (socket.c:2247)
==49943==    by 0xFEA9D0F: socket_event_poll_in (socket.c:2263)
==49943==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943==  Address 0x1aee1cf8 is 296 bytes inside a block of size 528 alloc'd
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0xFEAE076: socket_init (socket.c:3833)
==49943==    by 0xFEAB118: socket_server_event_handler (socket.c:2723)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943== 
==49943== Invalid read of size 8
==49943==    at 0xFEA3AA2: __socket_cached_read (socket.c:458)
==49943==    by 0xFEA3E33: __socket_rwv (socket.c:556)
==49943==    by 0xFEA41CE: __socket_readv (socket.c:650)
==49943==    by 0xFEA9125: __socket_read_frag (socket.c:1967)
==49943==    by 0xFEA9896: __socket_proto_state_machine (socket.c:2140)
==49943==    by 0xFEA9CBB: socket_proto_state_machine (socket.c:2247)
==49943==    by 0xFEA9D0F: socket_event_poll_in (socket.c:2263)
==49943==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943==  Address 0x1aee1cf8 is 296 bytes inside a block of size 528 alloc'd
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0xFEAE076: socket_init (socket.c:3833)
==49943==    by 0xFEAB118: socket_server_event_handler (socket.c:2723)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943== 
==49943== Invalid read of size 8
==49943==    at 0xFEA3AAD: __socket_cached_read (socket.c:458)
==49943==    by 0xFEA3E33: __socket_rwv (socket.c:556)
==49943==    by 0xFEA41CE: __socket_readv (socket.c:650)
==49943==    by 0xFEA9125: __socket_read_frag (socket.c:1967)
==49943==    by 0xFEA9896: __socket_proto_state_machine (socket.c:2140)
==49943==    by 0xFEA9CBB: socket_proto_state_machine (socket.c:2247)
==49943==    by 0xFEA9D0F: socket_event_poll_in (socket.c:2263)
==49943==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943==  Address 0x1aee1d08 is 312 bytes inside a block of size 528 alloc'd
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0xFEAE076: socket_init (socket.c:3833)
==49943==    by 0xFEAB118: socket_server_event_handler (socket.c:2723)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943== 
==49943== Invalid read of size 8
==49943==    at 0xFEA3AC9: __socket_cached_read (socket.c:457)
==49943==    by 0xFEA3E33: __socket_rwv (socket.c:556)
==49943==    by 0xFEA41CE: __socket_readv (socket.c:650)
==49943==    by 0xFEA9125: __socket_read_frag (socket.c:1967)
==49943==    by 0xFEA9896: __socket_proto_state_machine (socket.c:2140)
==49943==    by 0xFEA9CBB: socket_proto_state_machine (socket.c:2247)
==49943==    by 0xFEA9D0F: socket_event_poll_in (socket.c:2263)
==49943==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943==  Address 0x1aee1d10 is 320 bytes inside a block of size 528 alloc'd
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0xFEAE076: socket_init (socket.c:3833)
==49943==    by 0xFEAB118: socket_server_event_handler (socket.c:2723)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943== 
==49943== Invalid read of size 8
==49943==    at 0xFEA3AD4: __socket_cached_read (socket.c:457)
==49943==    by 0xFEA3E33: __socket_rwv (socket.c:556)
==49943==    by 0xFEA41CE: __socket_readv (socket.c:650)
==49943==    by 0xFEA9125: __socket_read_frag (socket.c:1967)
==49943==    by 0xFEA9896: __socket_proto_state_machine (socket.c:2140)
==49943==    by 0xFEA9CBB: socket_proto_state_machine (socket.c:2247)
==49943==    by 0xFEA9D0F: socket_event_poll_in (socket.c:2263)
==49943==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943==  Address 0x1aee1d08 is 312 bytes inside a block of size 528 alloc'd
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0xFEAE076: socket_init (socket.c:3833)
==49943==    by 0xFEAB118: socket_server_event_handler (socket.c:2723)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943== 
==49943== Invalid read of size 8
==49943==    at 0xFEA29C5: iov_load (common-utils.h:527)
==49943==    by 0xFEA3AF2: __socket_cached_read (socket.c:457)
==49943==    by 0xFEA3E33: __socket_rwv (socket.c:556)
==49943==    by 0xFEA41CE: __socket_readv (socket.c:650)
==49943==    by 0xFEA9125: __socket_read_frag (socket.c:1967)
==49943==    by 0xFEA9896: __socket_proto_state_machine (socket.c:2140)
==49943==    by 0xFEA9CBB: socket_proto_state_machine (socket.c:2247)
==49943==    by 0xFEA9D0F: socket_event_poll_in (socket.c:2263)
==49943==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==  Address 0x1aee1c50 is 128 bytes inside a block of size 528 alloc'd
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0xFEAE076: socket_init (socket.c:3833)
==49943==    by 0xFEAB118: socket_server_event_handler (socket.c:2723)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943== 
==49943== Invalid read of size 8
==49943==    at 0xFEA29EB: iov_load (common-utils.h:528)
==49943==    by 0xFEA3AF2: __socket_cached_read (socket.c:457)
==49943==    by 0xFEA3E33: __socket_rwv (socket.c:556)
==49943==    by 0xFEA41CE: __socket_readv (socket.c:650)
==49943==    by 0xFEA9125: __socket_read_frag (socket.c:1967)
==49943==    by 0xFEA9896: __socket_proto_state_machine (socket.c:2140)
==49943==    by 0xFEA9CBB: socket_proto_state_machine (socket.c:2247)
==49943==    by 0xFEA9D0F: socket_event_poll_in (socket.c:2263)
==49943==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==  Address 0x1aee1c48 is 120 bytes inside a block of size 528 alloc'd
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0xFEAE076: socket_init (socket.c:3833)
==49943==    by 0xFEAB118: socket_server_event_handler (socket.c:2723)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943== 
==49943== Invalid read of size 8
==49943==    at 0xFEA3AFA: __socket_cached_read (socket.c:460)
==49943==    by 0xFEA3E33: __socket_rwv (socket.c:556)
==49943==    by 0xFEA41CE: __socket_readv (socket.c:650)
==49943==    by 0xFEA9125: __socket_read_frag (socket.c:1967)
==49943==    by 0xFEA9896: __socket_proto_state_machine (socket.c:2140)
==49943==    by 0xFEA9CBB: socket_proto_state_machine (socket.c:2247)
==49943==    by 0xFEA9D0F: socket_event_poll_in (socket.c:2263)
==49943==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943==  Address 0x1aee1d08 is 312 bytes inside a block of size 528 alloc'd
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0xFEAE076: socket_init (socket.c:3833)
==49943==    by 0xFEAB118: socket_server_event_handler (socket.c:2723)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943== 
==49943== Invalid write of size 8
==49943==    at 0xFEA3B0D: __socket_cached_read (socket.c:460)
==49943==    by 0xFEA3E33: __socket_rwv (socket.c:556)
==49943==    by 0xFEA41CE: __socket_readv (socket.c:650)
==49943==    by 0xFEA9125: __socket_read_frag (socket.c:1967)
==49943==    by 0xFEA9896: __socket_proto_state_machine (socket.c:2140)
==49943==    by 0xFEA9CBB: socket_proto_state_machine (socket.c:2247)
==49943==    by 0xFEA9D0F: socket_event_poll_in (socket.c:2263)
==49943==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943==  Address 0x1aee1d08 is 312 bytes inside a block of size 528 alloc'd
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0xFEAE076: socket_init (socket.c:3833)
==49943==    by 0xFEAB118: socket_server_event_handler (socket.c:2723)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943== 
==49943== Invalid read of size 8
==49943==    at 0xFEA9144: __socket_read_frag (socket.c:1967)
==49943==    by 0xFEA9896: __socket_proto_state_machine (socket.c:2140)
==49943==    by 0xFEA9CBB: socket_proto_state_machine (socket.c:2247)
==49943==    by 0xFEA9D0F: socket_event_poll_in (socket.c:2263)
==49943==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943==  Address 0x1aee1c38 is 104 bytes inside a block of size 528 alloc'd
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0xFEAE076: socket_init (socket.c:3833)
==49943==    by 0xFEAB118: socket_server_event_handler (socket.c:2723)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943== 
==49943== Invalid write of size 8
==49943==    at 0xFEA9152: __socket_read_frag (socket.c:1967)
==49943==    by 0xFEA9896: __socket_proto_state_machine (socket.c:2140)
==49943==    by 0xFEA9CBB: socket_proto_state_machine (socket.c:2247)
==49943==    by 0xFEA9D0F: socket_event_poll_in (socket.c:2263)
==49943==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943==  Address 0x1aee1c38 is 104 bytes inside a block of size 528 alloc'd
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0xFEAE076: socket_init (socket.c:3833)
==49943==    by 0xFEAB118: socket_server_event_handler (socket.c:2723)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943== 
==49943== Invalid read of size 4
==49943==    at 0xFEA9159: __socket_read_frag (socket.c:1967)
==49943==    by 0xFEA9896: __socket_proto_state_machine (socket.c:2140)
==49943==    by 0xFEA9CBB: socket_proto_state_machine (socket.c:2247)
==49943==    by 0xFEA9D0F: socket_event_poll_in (socket.c:2263)
==49943==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943==  Address 0x1aee1c40 is 112 bytes inside a block of size 528 alloc'd
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0xFEAE076: socket_init (socket.c:3833)
==49943==    by 0xFEAB118: socket_server_event_handler (socket.c:2723)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943== 
==49943== Invalid write of size 4
==49943==    at 0xFEA9166: __socket_read_frag (socket.c:1967)
==49943==    by 0xFEA9896: __socket_proto_state_machine (socket.c:2140)
==49943==    by 0xFEA9CBB: socket_proto_state_machine (socket.c:2247)
==49943==    by 0xFEA9D0F: socket_event_poll_in (socket.c:2263)
==49943==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943==  Address 0x1aee1c40 is 112 bytes inside a block of size 528 alloc'd
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0xFEAE076: socket_init (socket.c:3833)
==49943==    by 0xFEAB118: socket_server_event_handler (socket.c:2723)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943== 
==49943== Invalid read of size 4
==49943==    at 0xFEA9173: __socket_read_frag (socket.c:1967)
==49943==    by 0xFEA9896: __socket_proto_state_machine (socket.c:2140)
==49943==    by 0xFEA9CBB: socket_proto_state_machine (socket.c:2247)
==49943==    by 0xFEA9D0F: socket_event_poll_in (socket.c:2263)
==49943==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943==  Address 0x1aee1c44 is 116 bytes inside a block of size 528 alloc'd
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0xFEAE076: socket_init (socket.c:3833)
==49943==    by 0xFEAB118: socket_server_event_handler (socket.c:2723)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943== 
==49943== Invalid write of size 4
==49943==    at 0xFEA922C: __socket_read_frag (socket.c:1969)
==49943==    by 0xFEA9896: __socket_proto_state_machine (socket.c:2140)
==49943==    by 0xFEA9CBB: socket_proto_state_machine (socket.c:2247)
==49943==    by 0xFEA9D0F: socket_event_poll_in (socket.c:2263)
==49943==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943==  Address 0x1aee1c74 is 164 bytes inside a block of size 528 alloc'd
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0xFEAE076: socket_init (socket.c:3833)
==49943==    by 0xFEAB118: socket_server_event_handler (socket.c:2723)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943== 
==49943== Invalid read of size 8
==49943==    at 0xFEA9237: __socket_read_frag (socket.c:1973)
==49943==    by 0xFEA9896: __socket_proto_state_machine (socket.c:2140)
==49943==    by 0xFEA9CBB: socket_proto_state_machine (socket.c:2247)
==49943==    by 0xFEA9D0F: socket_event_poll_in (socket.c:2263)
==49943==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943==  Address 0x1aee1c80 is 176 bytes inside a block of size 528 alloc'd
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0xFEAE076: socket_init (socket.c:3833)
==49943==    by 0xFEAB118: socket_server_event_handler (socket.c:2723)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943== 
==49943== Invalid read of size 8
==49943==    at 0xFEA9247: __socket_read_frag (socket.c:1974)
==49943==    by 0xFEA9896: __socket_proto_state_machine (socket.c:2140)
==49943==    by 0xFEA9CBB: socket_proto_state_machine (socket.c:2247)
==49943==    by 0xFEA9D0F: socket_event_poll_in (socket.c:2263)
==49943==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943==  Address 0x100b6408 is 0 bytes inside data symbol "hton32"
==49943== 
==49943== Invalid write of size 4
==49943==    at 0xFEA925C: __socket_read_frag (socket.c:1974)
==49943==    by 0xFEA9896: __socket_proto_state_machine (socket.c:2140)
==49943==    by 0xFEA9CBB: socket_proto_state_machine (socket.c:2247)
==49943==    by 0xFEA9D0F: socket_event_poll_in (socket.c:2263)
==49943==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943==  Address 0x1aee1cec is 284 bytes inside a block of size 528 alloc'd
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0xFEAE076: socket_init (socket.c:3833)
==49943==    by 0xFEAB118: socket_server_event_handler (socket.c:2723)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943== 
==49943== Invalid read of size 4
==49943==    at 0xFEA9266: __socket_read_frag (socket.c:1976)
==49943==    by 0xFEA9896: __socket_proto_state_machine (socket.c:2140)
==49943==    by 0xFEA9CBB: socket_proto_state_machine (socket.c:2247)
==49943==    by 0xFEA9D0F: socket_event_poll_in (socket.c:2263)
==49943==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943==  Address 0x1aee1cec is 284 bytes inside a block of size 528 alloc'd
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0xFEAE076: socket_init (socket.c:3833)
==49943==    by 0xFEAB118: socket_server_event_handler (socket.c:2723)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943== 
==49943== Invalid read of size 8
==49943==    at 0xFEA6FB5: __socket_read_request (socket.c:1489)
==49943==    by 0xFEA927E: __socket_read_frag (socket.c:1977)
==49943==    by 0xFEA9896: __socket_proto_state_machine (socket.c:2140)
==49943==    by 0xFEA9CBB: socket_proto_state_machine (socket.c:2247)
==49943==    by 0xFEA9D0F: socket_event_poll_in (socket.c:2263)
==49943==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943==  Address 0x1aee10a0 is 80 bytes inside a block of size 2,872 alloc'd
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0xFEAAF3E: socket_server_event_handler (socket.c:2682)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943== 
==49943== Invalid read of size 8
==49943==    at 0xFEA7025: __socket_read_request (socket.c:1491)
==49943==    by 0xFEA927E: __socket_read_frag (socket.c:1977)
==49943==    by 0xFEA9896: __socket_proto_state_machine (socket.c:2140)
==49943==    by 0xFEA9CBB: socket_proto_state_machine (socket.c:2247)
==49943==    by 0xFEA9D0F: socket_event_poll_in (socket.c:2263)
==49943==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943==  Address 0x1aee10a0 is 80 bytes inside a block of size 2,872 alloc'd
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0xFEAAF3E: socket_server_event_handler (socket.c:2682)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943== 
==49943== Invalid read of size 4
==49943==    at 0xFEA7055: __socket_read_request (socket.c:1498)
==49943==    by 0xFEA927E: __socket_read_frag (socket.c:1977)
==49943==    by 0xFEA9896: __socket_proto_state_machine (socket.c:2140)
==49943==    by 0xFEA9CBB: socket_proto_state_machine (socket.c:2247)
==49943==    by 0xFEA9D0F: socket_event_poll_in (socket.c:2263)
==49943==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943==  Address 0x1aee1c60 is 144 bytes inside a block of size 528 alloc'd
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0xFEAE076: socket_init (socket.c:3833)
==49943==    by 0xFEAB118: socket_server_event_handler (socket.c:2723)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943== 
==49943== Invalid read of size 4
==49943==    at 0xFEA709B: __socket_read_request (socket.c:1502)
==49943==    by 0xFEA927E: __socket_read_frag (socket.c:1977)
==49943==    by 0xFEA9896: __socket_proto_state_machine (socket.c:2140)
==49943==    by 0xFEA9CBB: socket_proto_state_machine (socket.c:2247)
==49943==    by 0xFEA9D0F: socket_event_poll_in (socket.c:2263)
==49943==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943==  Address 0x1aee1c40 is 112 bytes inside a block of size 528 alloc'd
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0xFEAE076: socket_init (socket.c:3833)
==49943==    by 0xFEAB118: socket_server_event_handler (socket.c:2723)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943== 
==49943== Invalid read of size 8
==49943==    at 0xFEA1F60: ??? (in /usr/local/lib/glusterfs/3.8.12/rpc-transport/socket.so)
==49943==    by 0xFEA70CA: __socket_read_request (socket.c:1502)
==49943==    by 0xFEA927E: __socket_read_frag (socket.c:1977)
==49943==    by 0xFEA9896: __socket_proto_state_machine (socket.c:2140)
==49943==    by 0xFEA9CBB: socket_proto_state_machine (socket.c:2247)
==49943==    by 0xFEA9D0F: socket_event_poll_in (socket.c:2263)
==49943==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943==  Address 0x100b6028 is in the GOTPLT segment of /usr/local/lib/glusterfs/3.8.12/rpc-transport/socket.so
==49943== 
==49943== Invalid write of size 8
==49943==    at 0x4C2DEF7: memset (vg_replace_strmem.c:1224)
==49943==    by 0xFEA70CA: __socket_read_request (socket.c:1502)
==49943==    by 0xFEA927E: __socket_read_frag (socket.c:1977)
==49943==    by 0xFEA9896: __socket_proto_state_machine (socket.c:2140)
==49943==    by 0xFEA9CBB: socket_proto_state_machine (socket.c:2247)
==49943==    by 0xFEA9D0F: socket_event_poll_in (socket.c:2263)
==49943==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943==  Address 0x1aee1c48 is 120 bytes inside a block of size 528 alloc'd
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0xFEAE076: socket_init (socket.c:3833)
==49943==    by 0xFEAB118: socket_server_event_handler (socket.c:2723)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943== 
==49943== Invalid write of size 8
==49943==    at 0xFEA70D7: __socket_read_request (socket.c:1502)
==49943==    by 0xFEA927E: __socket_read_frag (socket.c:1977)
==49943==    by 0xFEA9896: __socket_proto_state_machine (socket.c:2140)
==49943==    by 0xFEA9CBB: socket_proto_state_machine (socket.c:2247)
==49943==    by 0xFEA9D0F: socket_event_poll_in (socket.c:2263)
==49943==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943==  Address 0x1aee1c58 is 136 bytes inside a block of size 528 alloc'd
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0xFEAE076: socket_init (socket.c:3833)
==49943==    by 0xFEAB118: socket_server_event_handler (socket.c:2723)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943== 
==49943== Invalid read of size 8
==49943==    at 0xFEA70DF: __socket_read_request (socket.c:1502)
==49943==    by 0xFEA927E: __socket_read_frag (socket.c:1977)
==49943==    by 0xFEA9896: __socket_proto_state_machine (socket.c:2140)
==49943==    by 0xFEA9CBB: socket_proto_state_machine (socket.c:2247)
==49943==    by 0xFEA9D0F: socket_event_poll_in (socket.c:2263)
==49943==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943==  Address 0x1aee1c58 is 136 bytes inside a block of size 528 alloc'd
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0xFEAE076: socket_init (socket.c:3833)
==49943==    by 0xFEAB118: socket_server_event_handler (socket.c:2723)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943== 
==49943== Invalid read of size 8
==49943==    at 0xFEA70E7: __socket_read_request (socket.c:1502)
==49943==    by 0xFEA927E: __socket_read_frag (socket.c:1977)
==49943==    by 0xFEA9896: __socket_proto_state_machine (socket.c:2140)
==49943==    by 0xFEA9CBB: socket_proto_state_machine (socket.c:2247)
==49943==    by 0xFEA9D0F: socket_event_poll_in (socket.c:2263)
==49943==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943==  Address 0x1aee1c38 is 104 bytes inside a block of size 528 alloc'd
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0xFEAE076: socket_init (socket.c:3833)
==49943==    by 0xFEAB118: socket_server_event_handler (socket.c:2723)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943== 
==49943== Invalid write of size 8
==49943==    at 0xFEA70EA: __socket_read_request (socket.c:1502)
==49943==    by 0xFEA927E: __socket_read_frag (socket.c:1977)
==49943==    by 0xFEA9896: __socket_proto_state_machine (socket.c:2140)
==49943==    by 0xFEA9CBB: socket_proto_state_machine (socket.c:2247)
==49943==    by 0xFEA9D0F: socket_event_poll_in (socket.c:2263)
==49943==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943==  Address 0x1aee1c48 is 120 bytes inside a block of size 528 alloc'd
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0xFEAE076: socket_init (socket.c:3833)
==49943==    by 0xFEAB118: socket_server_event_handler (socket.c:2723)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943== 
==49943== Invalid read of size 8
==49943==    at 0xFEA70F1: __socket_read_request (socket.c:1502)
==49943==    by 0xFEA927E: __socket_read_frag (socket.c:1977)
==49943==    by 0xFEA9896: __socket_proto_state_machine (socket.c:2140)
==49943==    by 0xFEA9CBB: socket_proto_state_machine (socket.c:2247)
==49943==    by 0xFEA9D0F: socket_event_poll_in (socket.c:2263)
==49943==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943==  Address 0x1aee1c58 is 136 bytes inside a block of size 528 alloc'd
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0xFEAE076: socket_init (socket.c:3833)
==49943==    by 0xFEAB118: socket_server_event_handler (socket.c:2723)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943== 
==49943== Invalid write of size 8
==49943==    at 0xFEA70F9: __socket_read_request (socket.c:1502)
==49943==    by 0xFEA927E: __socket_read_frag (socket.c:1977)
==49943==    by 0xFEA9896: __socket_proto_state_machine (socket.c:2140)
==49943==    by 0xFEA9CBB: socket_proto_state_machine (socket.c:2247)
==49943==    by 0xFEA9D0F: socket_event_poll_in (socket.c:2263)
==49943==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943==  Address 0x1aee1cd8 is 264 bytes inside a block of size 528 alloc'd
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0xFEAE076: socket_init (socket.c:3833)
==49943==    by 0xFEAB118: socket_server_event_handler (socket.c:2723)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943== 
==49943== Invalid read of size 8
==49943==    at 0xFEA7104: __socket_read_request (socket.c:1502)
==49943==    by 0xFEA927E: __socket_read_frag (socket.c:1977)
==49943==    by 0xFEA9896: __socket_proto_state_machine (socket.c:2140)
==49943==    by 0xFEA9CBB: socket_proto_state_machine (socket.c:2247)
==49943==    by 0xFEA9D0F: socket_event_poll_in (socket.c:2263)
==49943==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943==  Address 0x1aee1c58 is 136 bytes inside a block of size 528 alloc'd
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0xFEAE076: socket_init (socket.c:3833)
==49943==    by 0xFEAB118: socket_server_event_handler (socket.c:2723)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943== 
==49943== Invalid write of size 8
==49943==    at 0xFEA7117: __socket_read_request (socket.c:1502)
==49943==    by 0xFEA927E: __socket_read_frag (socket.c:1977)
==49943==    by 0xFEA9896: __socket_proto_state_machine (socket.c:2140)
==49943==    by 0xFEA9CBB: socket_proto_state_machine (socket.c:2247)
==49943==    by 0xFEA9D0F: socket_event_poll_in (socket.c:2263)
==49943==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943==  Address 0x1aee1c50 is 128 bytes inside a block of size 528 alloc'd
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0xFEAE076: socket_init (socket.c:3833)
==49943==    by 0xFEAB118: socket_server_event_handler (socket.c:2723)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943== 
==49943== Invalid read of size 8
==49943==    at 0xFEA711F: __socket_read_request (socket.c:1502)
==49943==    by 0xFEA927E: __socket_read_frag (socket.c:1977)
==49943==    by 0xFEA9896: __socket_proto_state_machine (socket.c:2140)
==49943==    by 0xFEA9CBB: socket_proto_state_machine (socket.c:2247)
==49943==    by 0xFEA9D0F: socket_event_poll_in (socket.c:2263)
==49943==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943==  Address 0x1aee1c58 is 136 bytes inside a block of size 528 alloc'd
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0xFEAE076: socket_init (socket.c:3833)
==49943==    by 0xFEAB118: socket_server_event_handler (socket.c:2723)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943== 
==49943== Invalid read of size 8
==49943==    at 0xFEA7123: __socket_read_request (socket.c:1502)
==49943==    by 0xFEA927E: __socket_read_frag (socket.c:1977)
==49943==    by 0xFEA9896: __socket_proto_state_machine (socket.c:2140)
==49943==    by 0xFEA9CBB: socket_proto_state_machine (socket.c:2247)
==49943==    by 0xFEA9D0F: socket_event_poll_in (socket.c:2263)
==49943==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943==  Address 0x1aee1c50 is 128 bytes inside a block of size 528 alloc'd
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0xFEAE076: socket_init (socket.c:3833)
==49943==    by 0xFEAB118: socket_server_event_handler (socket.c:2723)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943== 
==49943== Invalid write of size 4
==49943==    at 0xFEA7132: __socket_read_request (socket.c:1502)
==49943==    by 0xFEA927E: __socket_read_frag (socket.c:1977)
==49943==    by 0xFEA9896: __socket_proto_state_machine (socket.c:2140)
==49943==    by 0xFEA9CBB: socket_proto_state_machine (socket.c:2247)
==49943==    by 0xFEA9D0F: socket_event_poll_in (socket.c:2263)
==49943==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943==  Address 0x1aee1c44 is 116 bytes inside a block of size 528 alloc'd
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0xFEAE076: socket_init (socket.c:3833)
==49943==    by 0xFEAB118: socket_server_event_handler (socket.c:2723)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943== 
==49943== Invalid write of size 4
==49943==    at 0xFEA7139: __socket_read_request (socket.c:1504)
==49943==    by 0xFEA927E: __socket_read_frag (socket.c:1977)
==49943==    by 0xFEA9896: __socket_proto_state_machine (socket.c:2140)
==49943==    by 0xFEA9CBB: socket_proto_state_machine (socket.c:2247)
==49943==    by 0xFEA9D0F: socket_event_poll_in (socket.c:2263)
==49943==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943==  Address 0x1aee1c60 is 144 bytes inside a block of size 528 alloc'd
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0xFEAE076: socket_init (socket.c:3833)
==49943==    by 0xFEAB118: socket_server_event_handler (socket.c:2723)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943== 
==49943== Invalid read of size 8
==49943==    at 0xFEA7166: __socket_read_request (socket.c:1509)
==49943==    by 0xFEA927E: __socket_read_frag (socket.c:1977)
==49943==    by 0xFEA9896: __socket_proto_state_machine (socket.c:2140)
==49943==    by 0xFEA9CBB: socket_proto_state_machine (socket.c:2247)
==49943==    by 0xFEA9D0F: socket_event_poll_in (socket.c:2263)
==49943==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943==  Address 0x1aee1c58 is 136 bytes inside a block of size 528 alloc'd
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0xFEAE076: socket_init (socket.c:3833)
==49943==    by 0xFEAB118: socket_server_event_handler (socket.c:2723)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943== 
==49943== Invalid read of size 8
==49943==    at 0xFEA716A: __socket_read_request (socket.c:1509)
==49943==    by 0xFEA927E: __socket_read_frag (socket.c:1977)
==49943==    by 0xFEA9896: __socket_proto_state_machine (socket.c:2140)
==49943==    by 0xFEA9CBB: socket_proto_state_machine (socket.c:2247)
==49943==    by 0xFEA9D0F: socket_event_poll_in (socket.c:2263)
==49943==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943==  Address 0x1aee1c50 is 128 bytes inside a block of size 528 alloc'd
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0xFEAE076: socket_init (socket.c:3833)
==49943==    by 0xFEAB118: socket_server_event_handler (socket.c:2723)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943== 
==49943== Invalid read of size 8
==49943==    at 0xFEA71E5: __socket_read_request (socket.c:1509)
==49943==    by 0xFEA927E: __socket_read_frag (socket.c:1977)
==49943==    by 0xFEA9896: __socket_proto_state_machine (socket.c:2140)
==49943==    by 0xFEA9CBB: socket_proto_state_machine (socket.c:2247)
==49943==    by 0xFEA9D0F: socket_event_poll_in (socket.c:2263)
==49943==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943==  Address 0x1aee1cd8 is 264 bytes inside a block of size 528 alloc'd
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0xFEAE076: socket_init (socket.c:3833)
==49943==    by 0xFEAB118: socket_server_event_handler (socket.c:2723)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943== 
==49943== Invalid read of size 8
==49943==    at 0xFEA722E: __socket_read_request (socket.c:1509)
==49943==    by 0xFEA927E: __socket_read_frag (socket.c:1977)
==49943==    by 0xFEA9896: __socket_proto_state_machine (socket.c:2140)
==49943==    by 0xFEA9CBB: socket_proto_state_machine (socket.c:2247)
==49943==    by 0xFEA9D0F: socket_event_poll_in (socket.c:2263)
==49943==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943==  Address 0x1aee1c38 is 104 bytes inside a block of size 528 alloc'd
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0xFEAE076: socket_init (socket.c:3833)
==49943==    by 0xFEAB118: socket_server_event_handler (socket.c:2723)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943== 
==49943== Invalid write of size 8
==49943==    at 0xFEA723F: __socket_read_request (socket.c:1509)
==49943==    by 0xFEA927E: __socket_read_frag (socket.c:1977)
==49943==    by 0xFEA9896: __socket_proto_state_machine (socket.c:2140)
==49943==    by 0xFEA9CBB: socket_proto_state_machine (socket.c:2247)
==49943==    by 0xFEA9D0F: socket_event_poll_in (socket.c:2263)
==49943==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943==  Address 0x1aee1c38 is 104 bytes inside a block of size 528 alloc'd
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0xFEAE076: socket_init (socket.c:3833)
==49943==    by 0xFEAB118: socket_server_event_handler (socket.c:2723)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943== 
==49943== Invalid read of size 4
==49943==    at 0xFEA7246: __socket_read_request (socket.c:1509)
==49943==    by 0xFEA927E: __socket_read_frag (socket.c:1977)
==49943==    by 0xFEA9896: __socket_proto_state_machine (socket.c:2140)
==49943==    by 0xFEA9CBB: socket_proto_state_machine (socket.c:2247)
==49943==    by 0xFEA9D0F: socket_event_poll_in (socket.c:2263)
==49943==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943==  Address 0x1aee1c40 is 112 bytes inside a block of size 528 alloc'd
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0xFEAE076: socket_init (socket.c:3833)
==49943==    by 0xFEAB118: socket_server_event_handler (socket.c:2723)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943== 
==49943== Invalid write of size 4
==49943==    at 0xFEA7256: __socket_read_request (socket.c:1509)
==49943==    by 0xFEA927E: __socket_read_frag (socket.c:1977)
==49943==    by 0xFEA9896: __socket_proto_state_machine (socket.c:2140)
==49943==    by 0xFEA9CBB: socket_proto_state_machine (socket.c:2247)
==49943==    by 0xFEA9D0F: socket_event_poll_in (socket.c:2263)
==49943==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943==  Address 0x1aee1c40 is 112 bytes inside a block of size 528 alloc'd
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0xFEAE076: socket_init (socket.c:3833)
==49943==    by 0xFEAB118: socket_server_event_handler (socket.c:2723)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943== 
==49943== Invalid read of size 4
==49943==    at 0xFEA7263: __socket_read_request (socket.c:1509)
==49943==    by 0xFEA927E: __socket_read_frag (socket.c:1977)
==49943==    by 0xFEA9896: __socket_proto_state_machine (socket.c:2140)
==49943==    by 0xFEA9CBB: socket_proto_state_machine (socket.c:2247)
==49943==    by 0xFEA9D0F: socket_event_poll_in (socket.c:2263)
==49943==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943==  Address 0x1aee1c44 is 116 bytes inside a block of size 528 alloc'd
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0xFEAE076: socket_init (socket.c:3833)
==49943==    by 0xFEAB118: socket_server_event_handler (socket.c:2723)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943== 
==49943== Invalid write of size 4
==49943==    at 0xFEA7331: __socket_read_request (socket.c:1511)
==49943==    by 0xFEA927E: __socket_read_frag (socket.c:1977)
==49943==    by 0xFEA9896: __socket_proto_state_machine (socket.c:2140)
==49943==    by 0xFEA9CBB: socket_proto_state_machine (socket.c:2247)
==49943==    by 0xFEA9D0F: socket_event_poll_in (socket.c:2263)
==49943==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943==  Address 0x1aee1c60 is 144 bytes inside a block of size 528 alloc'd
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0xFEAE076: socket_init (socket.c:3833)
==49943==    by 0xFEAB118: socket_server_event_handler (socket.c:2723)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943== 
==49943== Invalid read of size 8
==49943==    at 0xFEA733B: __socket_read_request (socket.c:1516)
==49943==    by 0xFEA927E: __socket_read_frag (socket.c:1977)
==49943==    by 0xFEA9896: __socket_proto_state_machine (socket.c:2140)
==49943==    by 0xFEA9CBB: socket_proto_state_machine (socket.c:2247)
==49943==    by 0xFEA9D0F: socket_event_poll_in (socket.c:2263)
==49943==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943==  Address 0x1aee1c80 is 176 bytes inside a block of size 528 alloc'd
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0xFEAE076: socket_init (socket.c:3833)
==49943==    by 0xFEAB118: socket_server_event_handler (socket.c:2723)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943== 
==49943== Invalid read of size 8
==49943==    at 0xFEA734B: __socket_read_request (socket.c:1517)
==49943==    by 0xFEA927E: __socket_read_frag (socket.c:1977)
==49943==    by 0xFEA9896: __socket_proto_state_machine (socket.c:2140)
==49943==    by 0xFEA9CBB: socket_proto_state_machine (socket.c:2247)
==49943==    by 0xFEA9D0F: socket_event_poll_in (socket.c:2263)
==49943==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943==  Address 0x100b6408 is 0 bytes inside data symbol "hton32"
==49943== 
==49943== Invalid read of size 8
==49943==    at 0xFEA7363: __socket_read_request (socket.c:1519)
==49943==    by 0xFEA927E: __socket_read_frag (socket.c:1977)
==49943==    by 0xFEA9896: __socket_proto_state_machine (socket.c:2140)
==49943==    by 0xFEA9CBB: socket_proto_state_machine (socket.c:2247)
==49943==    by 0xFEA9D0F: socket_event_poll_in (socket.c:2263)
==49943==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943==  Address 0x1aee1c80 is 176 bytes inside a block of size 528 alloc'd
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0xFEAE076: socket_init (socket.c:3833)
==49943==    by 0xFEAB118: socket_server_event_handler (socket.c:2723)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943== 
==49943== Invalid read of size 8
==49943==    at 0xFEA7373: __socket_read_request (socket.c:1520)
==49943==    by 0xFEA927E: __socket_read_frag (socket.c:1977)
==49943==    by 0xFEA9896: __socket_proto_state_machine (socket.c:2140)
==49943==    by 0xFEA9CBB: socket_proto_state_machine (socket.c:2247)
==49943==    by 0xFEA9D0F: socket_event_poll_in (socket.c:2263)
==49943==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943==  Address 0x100b6408 is 0 bytes inside data symbol "hton32"
==49943== 
==49943== Invalid read of size 8
==49943==    at 0xFEA738B: __socket_read_request (socket.c:1522)
==49943==    by 0xFEA927E: __socket_read_frag (socket.c:1977)
==49943==    by 0xFEA9896: __socket_proto_state_machine (socket.c:2140)
==49943==    by 0xFEA9CBB: socket_proto_state_machine (socket.c:2247)
==49943==    by 0xFEA9D0F: socket_event_poll_in (socket.c:2263)
==49943==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943==  Address 0x1aee1c80 is 176 bytes inside a block of size 528 alloc'd
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0xFEAE076: socket_init (socket.c:3833)
==49943==    by 0xFEAB118: socket_server_event_handler (socket.c:2723)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943== 
==49943== Invalid read of size 8
==49943==    at 0xFEA739B: __socket_read_request (socket.c:1523)
==49943==    by 0xFEA927E: __socket_read_frag (socket.c:1977)
==49943==    by 0xFEA9896: __socket_proto_state_machine (socket.c:2140)
==49943==    by 0xFEA9CBB: socket_proto_state_machine (socket.c:2247)
==49943==    by 0xFEA9D0F: socket_event_poll_in (socket.c:2263)
==49943==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943==  Address 0x100b6408 is 0 bytes inside data symbol "hton32"
==49943== 
==49943== Invalid read of size 4
==49943==    at 0xFEA73B3: __socket_read_request (socket.c:1525)
==49943==    by 0xFEA927E: __socket_read_frag (socket.c:1977)
==49943==    by 0xFEA9896: __socket_proto_state_machine (socket.c:2140)
==49943==    by 0xFEA9CBB: socket_proto_state_machine (socket.c:2247)
==49943==    by 0xFEA9D0F: socket_event_poll_in (socket.c:2263)
==49943==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943==  Address 0x1aee1dcc is 508 bytes inside a block of size 528 alloc'd
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0xFEAE076: socket_init (socket.c:3833)
==49943==    by 0xFEAB118: socket_server_event_handler (socket.c:2723)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943== 
==49943== Invalid read of size 8
==49943==    at 0xFEA73C7: __socket_read_request (socket.c:1529)
==49943==    by 0xFEA927E: __socket_read_frag (socket.c:1977)
==49943==    by 0xFEA9896: __socket_proto_state_machine (socket.c:2140)
==49943==    by 0xFEA9CBB: socket_proto_state_machine (socket.c:2247)
==49943==    by 0xFEA9D0F: socket_event_poll_in (socket.c:2263)
==49943==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943==  Address 0x1aee10b8 is 104 bytes inside a block of size 2,872 alloc'd
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0xFEAAF3E: socket_server_event_handler (socket.c:2682)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943== 
==49943== Invalid read of size 8
==49943==    at 0xFEA2370: ??? (in /usr/local/lib/glusterfs/3.8.12/rpc-transport/socket.so)
==49943==    by 0xFEA73D8: __socket_read_request (socket.c:1528)
==49943==    by 0xFEA927E: __socket_read_frag (socket.c:1977)
==49943==    by 0xFEA9896: __socket_proto_state_machine (socket.c:2140)
==49943==    by 0xFEA9CBB: socket_proto_state_machine (socket.c:2247)
==49943==    by 0xFEA9D0F: socket_event_poll_in (socket.c:2263)
==49943==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943==  Address 0x100b6230 is in the GOTPLT segment of /usr/local/lib/glusterfs/3.8.12/rpc-transport/socket.so
==49943== 
==49943== Invalid read of size 4
==49943==    at 0x60B4BE3: pthread_mutex_lock (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x5145F66: rpcsvc_get_program_vector_sizer (rpcsvc.c:113)
==49943==    by 0xFEA73D8: __socket_read_request (socket.c:1528)
==49943==    by 0xFEA927E: __socket_read_frag (socket.c:1977)
==49943==    by 0xFEA9896: __socket_proto_state_machine (socket.c:2140)
==49943==    by 0xFEA9CBB: socket_proto_state_machine (socket.c:2247)
==49943==    by 0xFEA9D0F: socket_event_poll_in (socket.c:2263)
==49943==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943==  Address 0x1215d9d0 is in a rw- anonymous segment
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x514603C: rpcsvc_get_program_vector_sizer (rpcsvc.c:136)
==49943==    by 0xFEA73D8: __socket_read_request (socket.c:1528)
==49943==    by 0xFEA927E: __socket_read_frag (socket.c:1977)
==49943==    by 0xFEA9896: __socket_proto_state_machine (socket.c:2140)
==49943==    by 0xFEA9CBB: socket_proto_state_machine (socket.c:2247)
==49943==    by 0xFEA9D0F: socket_event_poll_in (socket.c:2263)
==49943==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943==  Address 0x152a7650 is 1776 bytes inside data symbol "glusterfs3_3_fop_actors"
==49943== 
==49943== Invalid read of size 8
==49943==    at 0xFEA5B31: __socket_read_simple_msg (socket.c:1228)
==49943==    by 0xFEA5E20: __socket_read_simple_request (socket.c:1289)
==49943==    by 0xFEA740D: __socket_read_request (socket.c:1536)
==49943==    by 0xFEA927E: __socket_read_frag (socket.c:1977)
==49943==    by 0xFEA9896: __socket_proto_state_machine (socket.c:2140)
==49943==    by 0xFEA9CBB: socket_proto_state_machine (socket.c:2247)
==49943==    by 0xFEA9D0F: socket_event_poll_in (socket.c:2263)
==49943==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943==  Address 0x1aee10a0 is 80 bytes inside a block of size 2,872 alloc'd
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0xFEAAF3E: socket_server_event_handler (socket.c:2682)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943== 
==49943== Invalid read of size 8
==49943==    at 0xFEA5B9E: __socket_read_simple_msg (socket.c:1230)
==49943==    by 0xFEA5E20: __socket_read_simple_request (socket.c:1289)
==49943==    by 0xFEA740D: __socket_read_request (socket.c:1536)
==49943==    by 0xFEA927E: __socket_read_frag (socket.c:1977)
==49943==    by 0xFEA9896: __socket_proto_state_machine (socket.c:2140)
==49943==    by 0xFEA9CBB: socket_proto_state_machine (socket.c:2247)
==49943==    by 0xFEA9D0F: socket_event_poll_in (socket.c:2263)
==49943==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943==  Address 0x1aee10a0 is 80 bytes inside a block of size 2,872 alloc'd
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0xFEAAF3E: socket_server_event_handler (socket.c:2682)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943== 
==49943== Invalid read of size 4
==49943==    at 0xFEA5BC2: __socket_read_simple_msg (socket.c:1235)
==49943==    by 0xFEA5E20: __socket_read_simple_request (socket.c:1289)
==49943==    by 0xFEA740D: __socket_read_request (socket.c:1536)
==49943==    by 0xFEA927E: __socket_read_frag (socket.c:1977)
==49943==    by 0xFEA9896: __socket_proto_state_machine (socket.c:2140)
==49943==    by 0xFEA9CBB: socket_proto_state_machine (socket.c:2247)
==49943==    by 0xFEA9D0F: socket_event_poll_in (socket.c:2263)
==49943==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943==  Address 0x1aee1c70 is 160 bytes inside a block of size 528 alloc'd
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0xFEAE076: socket_init (socket.c:3833)
==49943==    by 0xFEAB118: socket_server_event_handler (socket.c:2723)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943== 
==49943== Invalid read of size 4
==49943==    at 0xFEA5BEC: __socket_read_simple_msg (socket.c:1238)
==49943==    by 0xFEA5E20: __socket_read_simple_request (socket.c:1289)
==49943==    by 0xFEA740D: __socket_read_request (socket.c:1536)
==49943==    by 0xFEA927E: __socket_read_frag (socket.c:1977)
==49943==    by 0xFEA9896: __socket_proto_state_machine (socket.c:2140)
==49943==    by 0xFEA9CBB: socket_proto_state_machine (socket.c:2247)
==49943==    by 0xFEA9D0F: socket_event_poll_in (socket.c:2263)
==49943==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943==  Address 0x1aee1c40 is 112 bytes inside a block of size 528 alloc'd
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0xFEAE076: socket_init (socket.c:3833)
==49943==    by 0xFEAB118: socket_server_event_handler (socket.c:2723)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943== 
==49943== Invalid read of size 4
==49943==    at 0xFEA5C1E: __socket_read_simple_msg (socket.c:1240)
==49943==    by 0xFEA5E20: __socket_read_simple_request (socket.c:1289)
==49943==    by 0xFEA740D: __socket_read_request (socket.c:1536)
==49943==    by 0xFEA927E: __socket_read_frag (socket.c:1977)
==49943==    by 0xFEA9896: __socket_proto_state_machine (socket.c:2140)
==49943==    by 0xFEA9CBB: socket_proto_state_machine (socket.c:2247)
==49943==    by 0xFEA9D0F: socket_event_poll_in (socket.c:2263)
==49943==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943==  Address 0x1aee1c40 is 112 bytes inside a block of size 528 alloc'd
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0xFEAE076: socket_init (socket.c:3833)
==49943==    by 0xFEAB118: socket_server_event_handler (socket.c:2723)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943== 
==49943== Invalid read of size 8
==49943==    at 0xFEA1F60: ??? (in /usr/local/lib/glusterfs/3.8.12/rpc-transport/socket.so)
==49943==    by 0xFEA5C4D: __socket_read_simple_msg (socket.c:1240)
==49943==    by 0xFEA5E20: __socket_read_simple_request (socket.c:1289)
==49943==    by 0xFEA740D: __socket_read_request (socket.c:1536)
==49943==    by 0xFEA927E: __socket_read_frag (socket.c:1977)
==49943==    by 0xFEA9896: __socket_proto_state_machine (socket.c:2140)
==49943==    by 0xFEA9CBB: socket_proto_state_machine (socket.c:2247)
==49943==    by 0xFEA9D0F: socket_event_poll_in (socket.c:2263)
==49943==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==  Address 0x100b6028 is in the GOTPLT segment of /usr/local/lib/glusterfs/3.8.12/rpc-transport/socket.so
==49943== 
==49943== Invalid write of size 8
==49943==    at 0x4C2DEF7: memset (vg_replace_strmem.c:1224)
==49943==    by 0xFEA5C4D: __socket_read_simple_msg (socket.c:1240)
==49943==    by 0xFEA5E20: __socket_read_simple_request (socket.c:1289)
==49943==    by 0xFEA740D: __socket_read_request (socket.c:1536)
==49943==    by 0xFEA927E: __socket_read_frag (socket.c:1977)
==49943==    by 0xFEA9896: __socket_proto_state_machine (socket.c:2140)
==49943==    by 0xFEA9CBB: socket_proto_state_machine (socket.c:2247)
==49943==    by 0xFEA9D0F: socket_event_poll_in (socket.c:2263)
==49943==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==  Address 0x1aee1c48 is 120 bytes inside a block of size 528 alloc'd
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0xFEAE076: socket_init (socket.c:3833)
==49943==    by 0xFEAB118: socket_server_event_handler (socket.c:2723)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943== 
==49943== Invalid write of size 8
==49943==    at 0xFEA5C5A: __socket_read_simple_msg (socket.c:1240)
==49943==    by 0xFEA5E20: __socket_read_simple_request (socket.c:1289)
==49943==    by 0xFEA740D: __socket_read_request (socket.c:1536)
==49943==    by 0xFEA927E: __socket_read_frag (socket.c:1977)
==49943==    by 0xFEA9896: __socket_proto_state_machine (socket.c:2140)
==49943==    by 0xFEA9CBB: socket_proto_state_machine (socket.c:2247)
==49943==    by 0xFEA9D0F: socket_event_poll_in (socket.c:2263)
==49943==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943==  Address 0x1aee1c58 is 136 bytes inside a block of size 528 alloc'd
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0xFEAE076: socket_init (socket.c:3833)
==49943==    by 0xFEAB118: socket_server_event_handler (socket.c:2723)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943== 
==49943== Invalid read of size 8
==49943==    at 0xFEA5C62: __socket_read_simple_msg (socket.c:1240)
==49943==    by 0xFEA5E20: __socket_read_simple_request (socket.c:1289)
==49943==    by 0xFEA740D: __socket_read_request (socket.c:1536)
==49943==    by 0xFEA927E: __socket_read_frag (socket.c:1977)
==49943==    by 0xFEA9896: __socket_proto_state_machine (socket.c:2140)
==49943==    by 0xFEA9CBB: socket_proto_state_machine (socket.c:2247)
==49943==    by 0xFEA9D0F: socket_event_poll_in (socket.c:2263)
==49943==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943==  Address 0x1aee1c58 is 136 bytes inside a block of size 528 alloc'd
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0xFEAE076: socket_init (socket.c:3833)
==49943==    by 0xFEAB118: socket_server_event_handler (socket.c:2723)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943== 
==49943== Invalid read of size 8
==49943==    at 0xFEA5C6A: __socket_read_simple_msg (socket.c:1240)
==49943==    by 0xFEA5E20: __socket_read_simple_request (socket.c:1289)
==49943==    by 0xFEA740D: __socket_read_request (socket.c:1536)
==49943==    by 0xFEA927E: __socket_read_frag (socket.c:1977)
==49943==    by 0xFEA9896: __socket_proto_state_machine (socket.c:2140)
==49943==    by 0xFEA9CBB: socket_proto_state_machine (socket.c:2247)
==49943==    by 0xFEA9D0F: socket_event_poll_in (socket.c:2263)
==49943==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943==  Address 0x1aee1c38 is 104 bytes inside a block of size 528 alloc'd
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0xFEAE076: socket_init (socket.c:3833)
==49943==    by 0xFEAB118: socket_server_event_handler (socket.c:2723)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943== 
==49943== Invalid write of size 8
==49943==    at 0xFEA5C6D: __socket_read_simple_msg (socket.c:1240)
==49943==    by 0xFEA5E20: __socket_read_simple_request (socket.c:1289)
==49943==    by 0xFEA740D: __socket_read_request (socket.c:1536)
==49943==    by 0xFEA927E: __socket_read_frag (socket.c:1977)
==49943==    by 0xFEA9896: __socket_proto_state_machine (socket.c:2140)
==49943==    by 0xFEA9CBB: socket_proto_state_machine (socket.c:2247)
==49943==    by 0xFEA9D0F: socket_event_poll_in (socket.c:2263)
==49943==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943==  Address 0x1aee1c48 is 120 bytes inside a block of size 528 alloc'd
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0xFEAE076: socket_init (socket.c:3833)
==49943==    by 0xFEAB118: socket_server_event_handler (socket.c:2723)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943== 
==49943== Invalid read of size 8
==49943==    at 0xFEA5C74: __socket_read_simple_msg (socket.c:1240)
==49943==    by 0xFEA5E20: __socket_read_simple_request (socket.c:1289)
==49943==    by 0xFEA740D: __socket_read_request (socket.c:1536)
==49943==    by 0xFEA927E: __socket_read_frag (socket.c:1977)
==49943==    by 0xFEA9896: __socket_proto_state_machine (socket.c:2140)
==49943==    by 0xFEA9CBB: socket_proto_state_machine (socket.c:2247)
==49943==    by 0xFEA9D0F: socket_event_poll_in (socket.c:2263)
==49943==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943==  Address 0x1aee1c58 is 136 bytes inside a block of size 528 alloc'd
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0xFEAE076: socket_init (socket.c:3833)
==49943==    by 0xFEAB118: socket_server_event_handler (socket.c:2723)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943== 
==49943== Invalid write of size 8
==49943==    at 0xFEA5C7C: __socket_read_simple_msg (socket.c:1240)
==49943==    by 0xFEA5E20: __socket_read_simple_request (socket.c:1289)
==49943==    by 0xFEA740D: __socket_read_request (socket.c:1536)
==49943==    by 0xFEA927E: __socket_read_frag (socket.c:1977)
==49943==    by 0xFEA9896: __socket_proto_state_machine (socket.c:2140)
==49943==    by 0xFEA9CBB: socket_proto_state_machine (socket.c:2247)
==49943==    by 0xFEA9D0F: socket_event_poll_in (socket.c:2263)
==49943==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943==  Address 0x1aee1cd8 is 264 bytes inside a block of size 528 alloc'd
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0xFEAE076: socket_init (socket.c:3833)
==49943==    by 0xFEAB118: socket_server_event_handler (socket.c:2723)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943== 
==49943== Invalid read of size 8
==49943==    at 0xFEA5C87: __socket_read_simple_msg (socket.c:1240)
==49943==    by 0xFEA5E20: __socket_read_simple_request (socket.c:1289)
==49943==    by 0xFEA740D: __socket_read_request (socket.c:1536)
==49943==    by 0xFEA927E: __socket_read_frag (socket.c:1977)
==49943==    by 0xFEA9896: __socket_proto_state_machine (socket.c:2140)
==49943==    by 0xFEA9CBB: socket_proto_state_machine (socket.c:2247)
==49943==    by 0xFEA9D0F: socket_event_poll_in (socket.c:2263)
==49943==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943==  Address 0x1aee1c58 is 136 bytes inside a block of size 528 alloc'd
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0xFEAE076: socket_init (socket.c:3833)
==49943==    by 0xFEAB118: socket_server_event_handler (socket.c:2723)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943== 
==49943== Invalid write of size 8
==49943==    at 0xFEA5C97: __socket_read_simple_msg (socket.c:1240)
==49943==    by 0xFEA5E20: __socket_read_simple_request (socket.c:1289)
==49943==    by 0xFEA740D: __socket_read_request (socket.c:1536)
==49943==    by 0xFEA927E: __socket_read_frag (socket.c:1977)
==49943==    by 0xFEA9896: __socket_proto_state_machine (socket.c:2140)
==49943==    by 0xFEA9CBB: socket_proto_state_machine (socket.c:2247)
==49943==    by 0xFEA9D0F: socket_event_poll_in (socket.c:2263)
==49943==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943==  Address 0x1aee1c50 is 128 bytes inside a block of size 528 alloc'd
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0xFEAE076: socket_init (socket.c:3833)
==49943==    by 0xFEAB118: socket_server_event_handler (socket.c:2723)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943== 
==49943== Invalid read of size 8
==49943==    at 0xFEA5C9F: __socket_read_simple_msg (socket.c:1240)
==49943==    by 0xFEA5E20: __socket_read_simple_request (socket.c:1289)
==49943==    by 0xFEA740D: __socket_read_request (socket.c:1536)
==49943==    by 0xFEA927E: __socket_read_frag (socket.c:1977)
==49943==    by 0xFEA9896: __socket_proto_state_machine (socket.c:2140)
==49943==    by 0xFEA9CBB: socket_proto_state_machine (socket.c:2247)
==49943==    by 0xFEA9D0F: socket_event_poll_in (socket.c:2263)
==49943==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943==  Address 0x1aee1c58 is 136 bytes inside a block of size 528 alloc'd
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0xFEAE076: socket_init (socket.c:3833)
==49943==    by 0xFEAB118: socket_server_event_handler (socket.c:2723)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943== 
==49943== Invalid read of size 8
==49943==    at 0xFEA5CA3: __socket_read_simple_msg (socket.c:1240)
==49943==    by 0xFEA5E20: __socket_read_simple_request (socket.c:1289)
==49943==    by 0xFEA740D: __socket_read_request (socket.c:1536)
==49943==    by 0xFEA927E: __socket_read_frag (socket.c:1977)
==49943==    by 0xFEA9896: __socket_proto_state_machine (socket.c:2140)
==49943==    by 0xFEA9CBB: socket_proto_state_machine (socket.c:2247)
==49943==    by 0xFEA9D0F: socket_event_poll_in (socket.c:2263)
==49943==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943==  Address 0x1aee1c50 is 128 bytes inside a block of size 528 alloc'd
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0xFEAE076: socket_init (socket.c:3833)
==49943==    by 0xFEAB118: socket_server_event_handler (socket.c:2723)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943== 
==49943== Invalid write of size 4
==49943==    at 0xFEA5CB0: __socket_read_simple_msg (socket.c:1240)
==49943==    by 0xFEA5E20: __socket_read_simple_request (socket.c:1289)
==49943==    by 0xFEA740D: __socket_read_request (socket.c:1536)
==49943==    by 0xFEA927E: __socket_read_frag (socket.c:1977)
==49943==    by 0xFEA9896: __socket_proto_state_machine (socket.c:2140)
==49943==    by 0xFEA9CBB: socket_proto_state_machine (socket.c:2247)
==49943==    by 0xFEA9D0F: socket_event_poll_in (socket.c:2263)
==49943==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943==  Address 0x1aee1c44 is 116 bytes inside a block of size 528 alloc'd
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0xFEAE076: socket_init (socket.c:3833)
==49943==    by 0xFEAB118: socket_server_event_handler (socket.c:2723)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943== 
==49943== Invalid write of size 4
==49943==    at 0xFEA5CB7: __socket_read_simple_msg (socket.c:1242)
==49943==    by 0xFEA5E20: __socket_read_simple_request (socket.c:1289)
==49943==    by 0xFEA740D: __socket_read_request (socket.c:1536)
==49943==    by 0xFEA927E: __socket_read_frag (socket.c:1977)
==49943==    by 0xFEA9896: __socket_proto_state_machine (socket.c:2140)
==49943==    by 0xFEA9CBB: socket_proto_state_machine (socket.c:2247)
==49943==    by 0xFEA9D0F: socket_event_poll_in (socket.c:2263)
==49943==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943==  Address 0x1aee1c70 is 160 bytes inside a block of size 528 alloc'd
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0xFEAE076: socket_init (socket.c:3833)
==49943==    by 0xFEAB118: socket_server_event_handler (socket.c:2723)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943== 
==49943== Invalid read of size 4
==49943==    at 0xFEA5CDA: __socket_read_simple_msg (socket.c:1249)
==49943==    by 0xFEA5E20: __socket_read_simple_request (socket.c:1289)
==49943==    by 0xFEA740D: __socket_read_request (socket.c:1536)
==49943==    by 0xFEA927E: __socket_read_frag (socket.c:1977)
==49943==    by 0xFEA9896: __socket_proto_state_machine (socket.c:2140)
==49943==    by 0xFEA9CBB: socket_proto_state_machine (socket.c:2247)
==49943==    by 0xFEA9D0F: socket_event_poll_in (socket.c:2263)
==49943==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943==  Address 0x1aee1c40 is 112 bytes inside a block of size 528 alloc'd
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0xFEAE076: socket_init (socket.c:3833)
==49943==    by 0xFEAB118: socket_server_event_handler (socket.c:2723)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943== 
==49943== Invalid read of size 8
==49943==    at 0xFEA5D04: __socket_read_simple_msg (socket.c:1252)
==49943==    by 0xFEA5E20: __socket_read_simple_request (socket.c:1289)
==49943==    by 0xFEA740D: __socket_read_request (socket.c:1536)
==49943==    by 0xFEA927E: __socket_read_frag (socket.c:1977)
==49943==    by 0xFEA9896: __socket_proto_state_machine (socket.c:2140)
==49943==    by 0xFEA9CBB: socket_proto_state_machine (socket.c:2247)
==49943==    by 0xFEA9D0F: socket_event_poll_in (socket.c:2263)
==49943==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943==  Address 0x1aee1cd8 is 264 bytes inside a block of size 528 alloc'd
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0xFEAE076: socket_init (socket.c:3833)
==49943==    by 0xFEAB118: socket_server_event_handler (socket.c:2723)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943== 
==49943== Invalid read of size 4
==49943==    at 0xFEA5D8C: __socket_read_simple_msg (socket.c:1267)
==49943==    by 0xFEA5E20: __socket_read_simple_request (socket.c:1289)
==49943==    by 0xFEA740D: __socket_read_request (socket.c:1536)
==49943==    by 0xFEA927E: __socket_read_frag (socket.c:1977)
==49943==    by 0xFEA9896: __socket_proto_state_machine (socket.c:2140)
==49943==    by 0xFEA9CBB: socket_proto_state_machine (socket.c:2247)
==49943==    by 0xFEA9D0F: socket_event_poll_in (socket.c:2263)
==49943==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943==  Address 0x1aee1c40 is 112 bytes inside a block of size 528 alloc'd
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0xFEAE076: socket_init (socket.c:3833)
==49943==    by 0xFEAB118: socket_server_event_handler (socket.c:2723)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943== 
==49943== Invalid write of size 4
==49943==    at 0xFEA5D99: __socket_read_simple_msg (socket.c:1267)
==49943==    by 0xFEA5E20: __socket_read_simple_request (socket.c:1289)
==49943==    by 0xFEA740D: __socket_read_request (socket.c:1536)
==49943==    by 0xFEA927E: __socket_read_frag (socket.c:1977)
==49943==    by 0xFEA9896: __socket_proto_state_machine (socket.c:2140)
==49943==    by 0xFEA9CBB: socket_proto_state_machine (socket.c:2247)
==49943==    by 0xFEA9D0F: socket_event_poll_in (socket.c:2263)
==49943==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943==  Address 0x1aee1c40 is 112 bytes inside a block of size 528 alloc'd
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0xFEAE076: socket_init (socket.c:3833)
==49943==    by 0xFEAB118: socket_server_event_handler (socket.c:2723)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943== 
==49943== Invalid read of size 8
==49943==    at 0xFEA5DA0: __socket_read_simple_msg (socket.c:1268)
==49943==    by 0xFEA5E20: __socket_read_simple_request (socket.c:1289)
==49943==    by 0xFEA740D: __socket_read_request (socket.c:1536)
==49943==    by 0xFEA927E: __socket_read_frag (socket.c:1977)
==49943==    by 0xFEA9896: __socket_proto_state_machine (socket.c:2140)
==49943==    by 0xFEA9CBB: socket_proto_state_machine (socket.c:2247)
==49943==    by 0xFEA9D0F: socket_event_poll_in (socket.c:2263)
==49943==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943==  Address 0x1aee1c38 is 104 bytes inside a block of size 528 alloc'd
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0xFEAE076: socket_init (socket.c:3833)
==49943==    by 0xFEAB118: socket_server_event_handler (socket.c:2723)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943== 
==49943== Invalid write of size 8
==49943==    at 0xFEA5DAE: __socket_read_simple_msg (socket.c:1268)
==49943==    by 0xFEA5E20: __socket_read_simple_request (socket.c:1289)
==49943==    by 0xFEA740D: __socket_read_request (socket.c:1536)
==49943==    by 0xFEA927E: __socket_read_frag (socket.c:1977)
==49943==    by 0xFEA9896: __socket_proto_state_machine (socket.c:2140)
==49943==    by 0xFEA9CBB: socket_proto_state_machine (socket.c:2247)
==49943==    by 0xFEA9D0F: socket_event_poll_in (socket.c:2263)
==49943==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943==  Address 0x1aee1c38 is 104 bytes inside a block of size 528 alloc'd
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0xFEAE076: socket_init (socket.c:3833)
==49943==    by 0xFEAB118: socket_server_event_handler (socket.c:2723)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943== 
==49943== Invalid write of size 4
==49943==    at 0xFEA5DF8: __socket_read_simple_msg (socket.c:1277)
==49943==    by 0xFEA5E20: __socket_read_simple_request (socket.c:1289)
==49943==    by 0xFEA740D: __socket_read_request (socket.c:1536)
==49943==    by 0xFEA927E: __socket_read_frag (socket.c:1977)
==49943==    by 0xFEA9896: __socket_proto_state_machine (socket.c:2140)
==49943==    by 0xFEA9CBB: socket_proto_state_machine (socket.c:2247)
==49943==    by 0xFEA9D0F: socket_event_poll_in (socket.c:2263)
==49943==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943==  Address 0x1aee1c70 is 160 bytes inside a block of size 528 alloc'd
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0xFEAE076: socket_init (socket.c:3833)
==49943==    by 0xFEAB118: socket_server_event_handler (socket.c:2723)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943== 
==49943== Invalid read of size 4
==49943==    at 0xFEA7426: __socket_read_request (socket.c:1539)
==49943==    by 0xFEA927E: __socket_read_frag (socket.c:1977)
==49943==    by 0xFEA9896: __socket_proto_state_machine (socket.c:2140)
==49943==    by 0xFEA9CBB: socket_proto_state_machine (socket.c:2247)
==49943==    by 0xFEA9D0F: socket_event_poll_in (socket.c:2263)
==49943==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943==  Address 0x1aee1c40 is 112 bytes inside a block of size 528 alloc'd
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0xFEAE076: socket_init (socket.c:3833)
==49943==    by 0xFEAB118: socket_server_event_handler (socket.c:2723)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943== 
==49943== Invalid write of size 4
==49943==    at 0xFEA7454: __socket_read_request (socket.c:1545)
==49943==    by 0xFEA927E: __socket_read_frag (socket.c:1977)
==49943==    by 0xFEA9896: __socket_proto_state_machine (socket.c:2140)
==49943==    by 0xFEA9CBB: socket_proto_state_machine (socket.c:2247)
==49943==    by 0xFEA9D0F: socket_event_poll_in (socket.c:2263)
==49943==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943==  Address 0x1aee1c60 is 144 bytes inside a block of size 528 alloc'd
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0xFEAE076: socket_init (socket.c:3833)
==49943==    by 0xFEAB118: socket_server_event_handler (socket.c:2723)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943== 
==49943== Invalid read of size 4
==49943==    at 0xFEA936D: __socket_read_frag (socket.c:1993)
==49943==    by 0xFEA9896: __socket_proto_state_machine (socket.c:2140)
==49943==    by 0xFEA9CBB: socket_proto_state_machine (socket.c:2247)
==49943==    by 0xFEA9D0F: socket_event_poll_in (socket.c:2263)
==49943==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943==  Address 0x1aee1c40 is 112 bytes inside a block of size 528 alloc'd
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0xFEAE076: socket_init (socket.c:3833)
==49943==    by 0xFEAB118: socket_server_event_handler (socket.c:2723)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943== 
==49943== Invalid write of size 4
==49943==    at 0xFEA939B: __socket_read_frag (socket.c:1999)
==49943==    by 0xFEA9896: __socket_proto_state_machine (socket.c:2140)
==49943==    by 0xFEA9CBB: socket_proto_state_machine (socket.c:2247)
==49943==    by 0xFEA9D0F: socket_event_poll_in (socket.c:2263)
==49943==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943==  Address 0x1aee1c74 is 164 bytes inside a block of size 528 alloc'd
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0xFEAE076: socket_init (socket.c:3833)
==49943==    by 0xFEAB118: socket_server_event_handler (socket.c:2723)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943== 
==49943== Invalid read of size 4
==49943==    at 0xFEA98A8: __socket_proto_state_machine (socket.c:2143)
==49943==    by 0xFEA9CBB: socket_proto_state_machine (socket.c:2247)
==49943==    by 0xFEA9D0F: socket_event_poll_in (socket.c:2263)
==49943==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943==  Address 0x1aee1c40 is 112 bytes inside a block of size 528 alloc'd
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0xFEAE076: socket_init (socket.c:3833)
==49943==    by 0xFEAB118: socket_server_event_handler (socket.c:2723)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943== 
==49943== Invalid write of size 4
==49943==    at 0xFEA98C6: __socket_proto_state_machine (socket.c:2147)
==49943==    by 0xFEA9CBB: socket_proto_state_machine (socket.c:2247)
==49943==    by 0xFEA9D0F: socket_event_poll_in (socket.c:2263)
==49943==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943==  Address 0x1aee1c40 is 112 bytes inside a block of size 528 alloc'd
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0xFEAE076: socket_init (socket.c:3833)
==49943==    by 0xFEAB118: socket_server_event_handler (socket.c:2723)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943== 
==49943== Invalid read of size 8
==49943==    at 0xFEA993F: __socket_proto_state_machine (socket.c:2162)
==49943==    by 0xFEA9CBB: socket_proto_state_machine (socket.c:2247)
==49943==    by 0xFEA9D0F: socket_event_poll_in (socket.c:2263)
==49943==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943==  Address 0x1aee1cf0 is 288 bytes inside a block of size 528 alloc'd
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0xFEAE076: socket_init (socket.c:3833)
==49943==    by 0xFEAB118: socket_server_event_handler (socket.c:2723)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943== 
==49943== Invalid read of size 8
==49943==    at 0xFEA994A: __socket_proto_state_machine (socket.c:2163)
==49943==    by 0xFEA9CBB: socket_proto_state_machine (socket.c:2247)
==49943==    by 0xFEA9D0F: socket_event_poll_in (socket.c:2263)
==49943==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943==  Address 0x1aee1cc0 is 240 bytes inside a block of size 528 alloc'd
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0xFEAE076: socket_init (socket.c:3833)
==49943==    by 0xFEAB118: socket_server_event_handler (socket.c:2723)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943== 
==49943== Invalid write of size 8
==49943==    at 0xFEA9958: __socket_proto_state_machine (socket.c:2162)
==49943==    by 0xFEA9CBB: socket_proto_state_machine (socket.c:2247)
==49943==    by 0xFEA9D0F: socket_event_poll_in (socket.c:2263)
==49943==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943==  Address 0x1aee1c88 is 184 bytes inside a block of size 528 alloc'd
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0xFEAE076: socket_init (socket.c:3833)
==49943==    by 0xFEAB118: socket_server_event_handler (socket.c:2723)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943== 
==49943== Invalid read of size 8
==49943==    at 0xFEA1F60: ??? (in /usr/local/lib/glusterfs/3.8.12/rpc-transport/socket.so)
==49943==    by 0xFEA9971: __socket_proto_state_machine (socket.c:2165)
==49943==    by 0xFEA9CBB: socket_proto_state_machine (socket.c:2247)
==49943==    by 0xFEA9D0F: socket_event_poll_in (socket.c:2263)
==49943==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943==  Address 0x100b6028 is in the GOTPLT segment of /usr/local/lib/glusterfs/3.8.12/rpc-transport/socket.so
==49943== 
==49943== Invalid read of size 8
==49943==    at 0xFEA9976: __socket_proto_state_machine (socket.c:2167)
==49943==    by 0xFEA9CBB: socket_proto_state_machine (socket.c:2247)
==49943==    by 0xFEA9D0F: socket_event_poll_in (socket.c:2263)
==49943==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943==  Address 0x1aee1cc8 is 248 bytes inside a block of size 528 alloc'd
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0xFEAE076: socket_init (socket.c:3833)
==49943==    by 0xFEAB118: socket_server_event_handler (socket.c:2723)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943== 
==49943== Invalid read of size 8
==49943==    at 0xFEA24B0: ??? (in /usr/local/lib/glusterfs/3.8.12/rpc-transport/socket.so)
==49943==    by 0xFEA998B: __socket_proto_state_machine (socket.c:2168)
==49943==    by 0xFEA9CBB: socket_proto_state_machine (socket.c:2247)
==49943==    by 0xFEA9D0F: socket_event_poll_in (socket.c:2263)
==49943==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943==  Address 0x100b62d0 is in the GOTPLT segment of /usr/local/lib/glusterfs/3.8.12/rpc-transport/socket.so
==49943== 
==49943== Invalid write of size 8
==49943==    at 0xFEA9990: __socket_proto_state_machine (socket.c:2168)
==49943==    by 0xFEA9CBB: socket_proto_state_machine (socket.c:2247)
==49943==    by 0xFEA9D0F: socket_event_poll_in (socket.c:2263)
==49943==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943==  Address 0x1aee1cc8 is 248 bytes inside a block of size 528 alloc'd
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0xFEAE076: socket_init (socket.c:3833)
==49943==    by 0xFEAB118: socket_server_event_handler (socket.c:2723)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943== 
==49943== Invalid read of size 8
==49943==    at 0xFEA999B: __socket_proto_state_machine (socket.c:2169)
==49943==    by 0xFEA9CBB: socket_proto_state_machine (socket.c:2247)
==49943==    by 0xFEA9D0F: socket_event_poll_in (socket.c:2263)
==49943==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943==  Address 0x1aee1cc8 is 248 bytes inside a block of size 528 alloc'd
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0xFEAE076: socket_init (socket.c:3833)
==49943==    by 0xFEAB118: socket_server_event_handler (socket.c:2723)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943== 
==49943== Invalid read of size 8
==49943==    at 0xFEA99B7: __socket_proto_state_machine (socket.c:2175)
==49943==    by 0xFEA9CBB: socket_proto_state_machine (socket.c:2247)
==49943==    by 0xFEA9D0F: socket_event_poll_in (socket.c:2263)
==49943==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943==  Address 0x1aee1c80 is 176 bytes inside a block of size 528 alloc'd
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0xFEAE076: socket_init (socket.c:3833)
==49943==    by 0xFEAB118: socket_server_event_handler (socket.c:2723)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943== 
==49943== Invalid read of size 8
==49943==    at 0xFEA99D7: __socket_proto_state_machine (socket.c:2176)
==49943==    by 0xFEA9CBB: socket_proto_state_machine (socket.c:2247)
==49943==    by 0xFEA9D0F: socket_event_poll_in (socket.c:2263)
==49943==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943==  Address 0x1aee1c88 is 184 bytes inside a block of size 528 alloc'd
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0xFEAE076: socket_init (socket.c:3833)
==49943==    by 0xFEAB118: socket_server_event_handler (socket.c:2723)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943== 
==49943== Invalid read of size 8
==49943==    at 0xFEA99F3: __socket_proto_state_machine (socket.c:2178)
==49943==    by 0xFEA9CBB: socket_proto_state_machine (socket.c:2247)
==49943==    by 0xFEA9D0F: socket_event_poll_in (socket.c:2263)
==49943==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943==  Address 0x1aee1cc8 is 248 bytes inside a block of size 528 alloc'd
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0xFEAE076: socket_init (socket.c:3833)
==49943==    by 0xFEAB118: socket_server_event_handler (socket.c:2723)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943== 
==49943== Invalid read of size 8
==49943==    at 0xFEA9A06: __socket_proto_state_machine (socket.c:2182)
==49943==    by 0xFEA9CBB: socket_proto_state_machine (socket.c:2247)
==49943==    by 0xFEA9D0F: socket_event_poll_in (socket.c:2263)
==49943==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943==  Address 0x1aee1cb8 is 232 bytes inside a block of size 528 alloc'd
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0xFEAE076: socket_init (socket.c:3833)
==49943==    by 0xFEAB118: socket_server_event_handler (socket.c:2723)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943== 
==49943== Invalid read of size 8
==49943==    at 0xFEA9A43: __socket_proto_state_machine (socket.c:2192)
==49943==    by 0xFEA9CBB: socket_proto_state_machine (socket.c:2247)
==49943==    by 0xFEA9D0F: socket_event_poll_in (socket.c:2263)
==49943==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943==  Address 0x1aee1cd0 is 256 bytes inside a block of size 528 alloc'd
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0xFEAE076: socket_init (socket.c:3833)
==49943==    by 0xFEAB118: socket_server_event_handler (socket.c:2723)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943== 
==49943== Invalid read of size 8
==49943==    at 0xFEA9A4E: __socket_proto_state_machine (socket.c:2187)
==49943==    by 0xFEA9CBB: socket_proto_state_machine (socket.c:2247)
==49943==    by 0xFEA9D0F: socket_event_poll_in (socket.c:2263)
==49943==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943==  Address 0x1aee1c80 is 176 bytes inside a block of size 528 alloc'd
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0xFEAE076: socket_init (socket.c:3833)
==49943==    by 0xFEAB118: socket_server_event_handler (socket.c:2723)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943== 
==49943== Invalid read of size 8
==49943==    at 0xFEA2500: ??? (in /usr/local/lib/glusterfs/3.8.12/rpc-transport/socket.so)
==49943==    by 0xFEA9A6E: __socket_proto_state_machine (socket.c:2187)
==49943==    by 0xFEA9CBB: socket_proto_state_machine (socket.c:2247)
==49943==    by 0xFEA9D0F: socket_event_poll_in (socket.c:2263)
==49943==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943==  Address 0x100b62f8 is in the GOTPLT segment of /usr/local/lib/glusterfs/3.8.12/rpc-transport/socket.so
==49943== 
==49943== Invalid read of size 8
==49943==    at 0xFEA9A7A: __socket_proto_state_machine (socket.c:2193)
==49943==    by 0xFEA9CBB: socket_proto_state_machine (socket.c:2247)
==49943==    by 0xFEA9D0F: socket_event_poll_in (socket.c:2263)
==49943==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943==  Address 0x1aee1c80 is 176 bytes inside a block of size 528 alloc'd
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0xFEAE076: socket_init (socket.c:3833)
==49943==    by 0xFEAB118: socket_server_event_handler (socket.c:2723)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943== 
==49943== Invalid read of size 8
==49943==    at 0xFEA2350: ??? (in /usr/local/lib/glusterfs/3.8.12/rpc-transport/socket.so)
==49943==    by 0xFEA9A85: __socket_proto_state_machine (socket.c:2193)
==49943==    by 0xFEA9CBB: socket_proto_state_machine (socket.c:2247)
==49943==    by 0xFEA9D0F: socket_event_poll_in (socket.c:2263)
==49943==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943==  Address 0x100b6220 is in the GOTPLT segment of /usr/local/lib/glusterfs/3.8.12/rpc-transport/socket.so
==49943== 
==49943== Invalid write of size 8
==49943==    at 0xFEA9A8A: __socket_proto_state_machine (socket.c:2194)
==49943==    by 0xFEA9CBB: socket_proto_state_machine (socket.c:2247)
==49943==    by 0xFEA9D0F: socket_event_poll_in (socket.c:2263)
==49943==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943==  Address 0x1aee1c80 is 176 bytes inside a block of size 528 alloc'd
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0xFEAE076: socket_init (socket.c:3833)
==49943==    by 0xFEAB118: socket_server_event_handler (socket.c:2723)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943== 
==49943== Invalid read of size 4
==49943==    at 0xFEA9AE3: __socket_proto_state_machine (socket.c:2202)
==49943==    by 0xFEA9CBB: socket_proto_state_machine (socket.c:2247)
==49943==    by 0xFEA9D0F: socket_event_poll_in (socket.c:2263)
==49943==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943==  Address 0x1aee1cec is 284 bytes inside a block of size 528 alloc'd
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0xFEAE076: socket_init (socket.c:3833)
==49943==    by 0xFEAB118: socket_server_event_handler (socket.c:2723)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943== 
==49943== Invalid write of size 8
==49943==    at 0xFEA9B00: __socket_proto_state_machine (socket.c:2205)
==49943==    by 0xFEA9CBB: socket_proto_state_machine (socket.c:2247)
==49943==    by 0xFEA9D0F: socket_event_poll_in (socket.c:2263)
==49943==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943==  Address 0x1aee1cd0 is 256 bytes inside a block of size 528 alloc'd
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0xFEAE076: socket_init (socket.c:3833)
==49943==    by 0xFEAB118: socket_server_event_handler (socket.c:2723)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943== 
==49943== Invalid write of size 4
==49943==    at 0xFEA9B0F: __socket_proto_state_machine (socket.c:2207)
==49943==    by 0xFEA9CBB: socket_proto_state_machine (socket.c:2247)
==49943==    by 0xFEA9D0F: socket_event_poll_in (socket.c:2263)
==49943==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943==  Address 0x1aee1c30 is 96 bytes inside a block of size 528 alloc'd
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0xFEAE076: socket_init (socket.c:3833)
==49943==    by 0xFEAB118: socket_server_event_handler (socket.c:2723)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943== 
==49943== Invalid read of size 4
==49943==    at 0xFEA9B60: __socket_proto_state_machine (socket.c:2219)
==49943==    by 0xFEA9CBB: socket_proto_state_machine (socket.c:2247)
==49943==    by 0xFEA9D0F: socket_event_poll_in (socket.c:2263)
==49943==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943==  Address 0x1aee1c30 is 96 bytes inside a block of size 528 alloc'd
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0xFEAE076: socket_init (socket.c:3833)
==49943==    by 0xFEAB118: socket_server_event_handler (socket.c:2723)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943== 
==49943== Invalid write of size 4
==49943==    at 0xFEA9B6B: __socket_proto_state_machine (socket.c:2220)
==49943==    by 0xFEA9CBB: socket_proto_state_machine (socket.c:2247)
==49943==    by 0xFEA9D0F: socket_event_poll_in (socket.c:2263)
==49943==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943==  Address 0x1aee1c30 is 96 bytes inside a block of size 528 alloc'd
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0xFEAE076: socket_init (socket.c:3833)
==49943==    by 0xFEAB118: socket_server_event_handler (socket.c:2723)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943== 
==49943== Invalid read of size 8
==49943==    at 0xFEA93E1: __socket_reset_priv (socket.c:2026)
==49943==    by 0xFEA9B7C: __socket_proto_state_machine (socket.c:2221)
==49943==    by 0xFEA9CBB: socket_proto_state_machine (socket.c:2247)
==49943==    by 0xFEA9D0F: socket_event_poll_in (socket.c:2263)
==49943==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943==  Address 0x1aee1cc8 is 248 bytes inside a block of size 528 alloc'd
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0xFEAE076: socket_init (socket.c:3833)
==49943==    by 0xFEAB118: socket_server_event_handler (socket.c:2723)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943== 
==49943== Invalid read of size 8
==49943==    at 0xFEA93F1: __socket_reset_priv (socket.c:2027)
==49943==    by 0xFEA9B7C: __socket_proto_state_machine (socket.c:2221)
==49943==    by 0xFEA9CBB: socket_proto_state_machine (socket.c:2247)
==49943==    by 0xFEA9D0F: socket_event_poll_in (socket.c:2263)
==49943==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943==  Address 0x1aee1cc8 is 248 bytes inside a block of size 528 alloc'd
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0xFEAE076: socket_init (socket.c:3833)
==49943==    by 0xFEAB118: socket_server_event_handler (socket.c:2723)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943== 
==49943== Invalid read of size 8
==49943==    at 0xFEA2380: ??? (in /usr/local/lib/glusterfs/3.8.12/rpc-transport/socket.so)
==49943==    by 0xFEA93FF: __socket_reset_priv (socket.c:2027)
==49943==    by 0xFEA9B7C: __socket_proto_state_machine (socket.c:2221)
==49943==    by 0xFEA9CBB: socket_proto_state_machine (socket.c:2247)
==49943==    by 0xFEA9D0F: socket_event_poll_in (socket.c:2263)
==49943==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943==  Address 0x100b6238 is in the GOTPLT segment of /usr/local/lib/glusterfs/3.8.12/rpc-transport/socket.so
==49943== 
==49943== Invalid write of size 8
==49943==    at 0xFEA9404: __socket_reset_priv (socket.c:2028)
==49943==    by 0xFEA9B7C: __socket_proto_state_machine (socket.c:2221)
==49943==    by 0xFEA9CBB: socket_proto_state_machine (socket.c:2247)
==49943==    by 0xFEA9D0F: socket_event_poll_in (socket.c:2263)
==49943==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943==  Address 0x1aee1cc8 is 248 bytes inside a block of size 528 alloc'd
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0xFEAE076: socket_init (socket.c:3833)
==49943==    by 0xFEAB118: socket_server_event_handler (socket.c:2723)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943== 
==49943== Invalid read of size 8
==49943==    at 0xFEA9413: __socket_reset_priv (socket.c:2031)
==49943==    by 0xFEA9B7C: __socket_proto_state_machine (socket.c:2221)
==49943==    by 0xFEA9CBB: socket_proto_state_machine (socket.c:2247)
==49943==    by 0xFEA9D0F: socket_event_poll_in (socket.c:2263)
==49943==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943==  Address 0x1aee1c80 is 176 bytes inside a block of size 528 alloc'd
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0xFEAE076: socket_init (socket.c:3833)
==49943==    by 0xFEAB118: socket_server_event_handler (socket.c:2723)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943== 
==49943== Invalid read of size 8
==49943==    at 0xFEA943C: __socket_reset_priv (socket.c:2036)
==49943==    by 0xFEA9B7C: __socket_proto_state_machine (socket.c:2221)
==49943==    by 0xFEA9CBB: socket_proto_state_machine (socket.c:2247)
==49943==    by 0xFEA9D0F: socket_event_poll_in (socket.c:2263)
==49943==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943==  Address 0x1aee1cd0 is 256 bytes inside a block of size 528 alloc'd
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0xFEAE076: socket_init (socket.c:3833)
==49943==    by 0xFEAB118: socket_server_event_handler (socket.c:2723)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943== 
==49943== Invalid read of size 8
==49943==    at 0xFEA1F60: ??? (in /usr/local/lib/glusterfs/3.8.12/rpc-transport/socket.so)
==49943==    by 0xFEA9485: __socket_reset_priv (socket.c:2041)
==49943==    by 0xFEA9B7C: __socket_proto_state_machine (socket.c:2221)
==49943==    by 0xFEA9CBB: socket_proto_state_machine (socket.c:2247)
==49943==    by 0xFEA9D0F: socket_event_poll_in (socket.c:2263)
==49943==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943==  Address 0x100b6028 is in the GOTPLT segment of /usr/local/lib/glusterfs/3.8.12/rpc-transport/socket.so
==49943== 
==49943== Invalid write of size 8
==49943==    at 0x4C2DEF7: memset (vg_replace_strmem.c:1224)
==49943==    by 0xFEA9485: __socket_reset_priv (socket.c:2041)
==49943==    by 0xFEA9B7C: __socket_proto_state_machine (socket.c:2221)
==49943==    by 0xFEA9CBB: socket_proto_state_machine (socket.c:2247)
==49943==    by 0xFEA9D0F: socket_event_poll_in (socket.c:2263)
==49943==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943==  Address 0x1aee1cb8 is 232 bytes inside a block of size 528 alloc'd
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0xFEAE076: socket_init (socket.c:3833)
==49943==    by 0xFEAB118: socket_server_event_handler (socket.c:2723)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943== 
==49943== Invalid read of size 8
==49943==    at 0xFEA26D0: ??? (in /usr/local/lib/glusterfs/3.8.12/rpc-transport/socket.so)
==49943==    by 0xFEA9CD0: socket_proto_state_machine (socket.c:2249)
==49943==    by 0xFEA9D0F: socket_event_poll_in (socket.c:2263)
==49943==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943==  Address 0x100b63e0 is in the GOTPLT segment of /usr/local/lib/glusterfs/3.8.12/rpc-transport/socket.so
==49943== 
==49943== Invalid read of size 4
==49943==    at 0x60B5BB0: pthread_mutex_unlock (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0xFEA9CD0: socket_proto_state_machine (socket.c:2249)
==49943==    by 0xFEA9D0F: socket_event_poll_in (socket.c:2263)
==49943==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943==  Address 0x1aee1d28 is 344 bytes inside a block of size 528 alloc'd
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0xFEAE076: socket_init (socket.c:3833)
==49943==    by 0xFEAB118: socket_server_event_handler (socket.c:2723)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943== 
==49943== Invalid write of size 4
==49943==    at 0x60B5BC8: pthread_mutex_unlock (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0xFEA9CD0: socket_proto_state_machine (socket.c:2249)
==49943==    by 0xFEA9D0F: socket_event_poll_in (socket.c:2263)
==49943==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943==  Address 0x1aee1d20 is 336 bytes inside a block of size 528 alloc'd
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0xFEAE076: socket_init (socket.c:3833)
==49943==    by 0xFEAB118: socket_server_event_handler (socket.c:2723)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943== 
==49943== Invalid read of size 4
==49943==    at 0x60B5BCF: pthread_mutex_unlock (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0xFEA9CD0: socket_proto_state_machine (socket.c:2249)
==49943==    by 0xFEA9D0F: socket_event_poll_in (socket.c:2263)
==49943==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943==  Address 0x1aee1d24 is 340 bytes inside a block of size 528 alloc'd
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0xFEAE076: socket_init (socket.c:3833)
==49943==    by 0xFEAB118: socket_server_event_handler (socket.c:2723)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943== 
==49943== Invalid read of size 4
==49943==    at 0x60B5BD9: pthread_mutex_unlock (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0xFEA9CD0: socket_proto_state_machine (socket.c:2249)
==49943==    by 0xFEA9D0F: socket_event_poll_in (socket.c:2263)
==49943==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943==  Address 0x1aee1d18 is 328 bytes inside a block of size 528 alloc'd
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0xFEAE076: socket_init (socket.c:3833)
==49943==    by 0xFEAB118: socket_server_event_handler (socket.c:2723)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943== 
==49943== Invalid write of size 4
==49943==    at 0xFEA9D20: socket_event_poll_in (socket.c:2266)
==49943==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943==  Address 0x1aee1dc4 is 500 bytes inside a block of size 528 alloc'd
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0xFEAE076: socket_init (socket.c:3833)
==49943==    by 0xFEAB118: socket_server_event_handler (socket.c:2723)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943== 
==49943== Invalid read of size 8
==49943==    at 0xFEA1FD0: ??? (in /usr/local/lib/glusterfs/3.8.12/rpc-transport/socket.so)
==49943==    by 0xFEA9D43: socket_event_poll_in (socket.c:2267)
==49943==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943==  Address 0x100b6060 is in the GOTPLT segment of /usr/local/lib/glusterfs/3.8.12/rpc-transport/socket.so
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x514CCDA: rpc_transport_notify (rpc-transport.c:540)
==49943==    by 0xFEA9D43: socket_event_poll_in (socket.c:2267)
==49943==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943==  Address 0x1aee1138 is 232 bytes inside a block of size 2,872 alloc'd
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0xFEAAF3E: socket_server_event_handler (socket.c:2682)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x514CCED: rpc_transport_notify (rpc-transport.c:541)
==49943==    by 0xFEA9D43: socket_event_poll_in (socket.c:2267)
==49943==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943==  Address 0x1aee1138 is 232 bytes inside a block of size 2,872 alloc'd
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0xFEAAF3E: socket_server_event_handler (socket.c:2682)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x514CCFB: rpc_transport_notify (rpc-transport.c:541)
==49943==    by 0xFEA9D43: socket_event_poll_in (socket.c:2267)
==49943==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943==  Address 0x1aee10b8 is 104 bytes inside a block of size 2,872 alloc'd
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0xFEAAF3E: socket_server_event_handler (socket.c:2682)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943== 
==49943== Invalid read of size 2
==49943==    at 0x5146E25: rpcsvc_handle_rpc_call (rpcsvc.c:589)
==49943==    by 0x514766E: rpcsvc_notify (rpcsvc.c:795)
==49943==    by 0x514CD1D: rpc_transport_notify (rpc-transport.c:541)
==49943==    by 0xFEA9D43: socket_event_poll_in (socket.c:2267)
==49943==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943==  Address 0x1aee1148 is 248 bytes inside a block of size 2,872 alloc'd
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0xFEAAF3E: socket_server_event_handler (socket.c:2682)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943== 
==49943== Invalid read of size 2
==49943==    at 0x5146E4A: rpcsvc_handle_rpc_call (rpcsvc.c:591)
==49943==    by 0x514766E: rpcsvc_notify (rpcsvc.c:795)
==49943==    by 0x514CD1D: rpc_transport_notify (rpc-transport.c:541)
==49943==    by 0xFEA9D43: socket_event_poll_in (socket.c:2267)
==49943==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943==  Address 0x1aee114a is 250 bytes inside a block of size 2,872 alloc'd
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0xFEAAF3E: socket_server_event_handler (socket.c:2682)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943== 
==49943== Invalid read of size 4
==49943==    at 0x60B4BD0: pthread_mutex_lock (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x514CAAC: rpc_transport_ref (rpc-transport.c:492)
==49943==    by 0x5146801: rpcsvc_request_init (rpcsvc.c:415)
==49943==    by 0x5146ACF: rpcsvc_request_create (rpcsvc.c:482)
==49943==    by 0x5146F2F: rpcsvc_handle_rpc_call (rpcsvc.c:618)
==49943==    by 0x514766E: rpcsvc_notify (rpcsvc.c:795)
==49943==    by 0x514CD1D: rpc_transport_notify (rpc-transport.c:541)
==49943==    by 0xFEA9D43: socket_event_poll_in (socket.c:2267)
==49943==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==  Address 0x1aee10d0 is 128 bytes inside a block of size 2,872 alloc'd
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0xFEAAF3E: socket_server_event_handler (socket.c:2682)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943== 
==49943== Invalid read of size 4
==49943==    at 0x60B4BE3: pthread_mutex_lock (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x514CAAC: rpc_transport_ref (rpc-transport.c:492)
==49943==    by 0x5146801: rpcsvc_request_init (rpcsvc.c:415)
==49943==    by 0x5146ACF: rpcsvc_request_create (rpcsvc.c:482)
==49943==    by 0x5146F2F: rpcsvc_handle_rpc_call (rpcsvc.c:618)
==49943==    by 0x514766E: rpcsvc_notify (rpcsvc.c:795)
==49943==    by 0x514CD1D: rpc_transport_notify (rpc-transport.c:541)
==49943==    by 0xFEA9D43: socket_event_poll_in (socket.c:2267)
==49943==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==  Address 0x1215d9d0 is in a rw- anonymous segment
==49943== 
==49943== Invalid read of size 4
==49943==    at 0x60B4BFD: pthread_mutex_lock (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x514CAAC: rpc_transport_ref (rpc-transport.c:492)
==49943==    by 0x5146801: rpcsvc_request_init (rpcsvc.c:415)
==49943==    by 0x5146ACF: rpcsvc_request_create (rpcsvc.c:482)
==49943==    by 0x5146F2F: rpcsvc_handle_rpc_call (rpcsvc.c:618)
==49943==    by 0x514766E: rpcsvc_notify (rpcsvc.c:795)
==49943==    by 0x514CD1D: rpc_transport_notify (rpc-transport.c:541)
==49943==    by 0xFEA9D43: socket_event_poll_in (socket.c:2267)
==49943==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==  Address 0x1aee10c0 is 112 bytes inside a block of size 2,872 alloc'd
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0xFEAAF3E: socket_server_event_handler (socket.c:2682)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943== 
==49943== Invalid write of size 4
==49943==    at 0x60B4C08: pthread_mutex_lock (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x514CAAC: rpc_transport_ref (rpc-transport.c:492)
==49943==    by 0x5146801: rpcsvc_request_init (rpcsvc.c:415)
==49943==    by 0x5146ACF: rpcsvc_request_create (rpcsvc.c:482)
==49943==    by 0x5146F2F: rpcsvc_handle_rpc_call (rpcsvc.c:618)
==49943==    by 0x514766E: rpcsvc_notify (rpcsvc.c:795)
==49943==    by 0x514CD1D: rpc_transport_notify (rpc-transport.c:541)
==49943==    by 0xFEA9D43: socket_event_poll_in (socket.c:2267)
==49943==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==  Address 0x1aee10c8 is 120 bytes inside a block of size 2,872 alloc'd
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0xFEAAF3E: socket_server_event_handler (socket.c:2682)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943== 
==49943== Invalid read of size 4
==49943==    at 0x60B4C0C: pthread_mutex_lock (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x514CAAC: rpc_transport_ref (rpc-transport.c:492)
==49943==    by 0x5146801: rpcsvc_request_init (rpcsvc.c:415)
==49943==    by 0x5146ACF: rpcsvc_request_create (rpcsvc.c:482)
==49943==    by 0x5146F2F: rpcsvc_handle_rpc_call (rpcsvc.c:618)
==49943==    by 0x514766E: rpcsvc_notify (rpcsvc.c:795)
==49943==    by 0x514CD1D: rpc_transport_notify (rpc-transport.c:541)
==49943==    by 0xFEA9D43: socket_event_poll_in (socket.c:2267)
==49943==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==  Address 0x1aee10cc is 124 bytes inside a block of size 2,872 alloc'd
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0xFEAAF3E: socket_server_event_handler (socket.c:2682)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943== 
==49943== Invalid read of size 4
==49943==    at 0x514CAB1: rpc_transport_ref (rpc-transport.c:494)
==49943==    by 0x5146801: rpcsvc_request_init (rpcsvc.c:415)
==49943==    by 0x5146ACF: rpcsvc_request_create (rpcsvc.c:482)
==49943==    by 0x5146F2F: rpcsvc_handle_rpc_call (rpcsvc.c:618)
==49943==    by 0x514766E: rpcsvc_notify (rpcsvc.c:795)
==49943==    by 0x514CD1D: rpc_transport_notify (rpc-transport.c:541)
==49943==    by 0xFEA9D43: socket_event_poll_in (socket.c:2267)
==49943==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943==  Address 0x1aee10e8 is 152 bytes inside a block of size 2,872 alloc'd
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0xFEAAF3E: socket_server_event_handler (socket.c:2682)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943== 
==49943== Invalid write of size 4
==49943==    at 0x514CABB: rpc_transport_ref (rpc-transport.c:494)
==49943==    by 0x5146801: rpcsvc_request_init (rpcsvc.c:415)
==49943==    by 0x5146ACF: rpcsvc_request_create (rpcsvc.c:482)
==49943==    by 0x5146F2F: rpcsvc_handle_rpc_call (rpcsvc.c:618)
==49943==    by 0x514766E: rpcsvc_notify (rpcsvc.c:795)
==49943==    by 0x514CD1D: rpc_transport_notify (rpc-transport.c:541)
==49943==    by 0xFEA9D43: socket_event_poll_in (socket.c:2267)
==49943==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943==  Address 0x1aee10e8 is 152 bytes inside a block of size 2,872 alloc'd
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0xFEAAF3E: socket_server_event_handler (socket.c:2682)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943== 
==49943== Invalid read of size 4
==49943==    at 0x60B5BB0: pthread_mutex_unlock (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x514CACD: rpc_transport_ref (rpc-transport.c:496)
==49943==    by 0x5146801: rpcsvc_request_init (rpcsvc.c:415)
==49943==    by 0x5146ACF: rpcsvc_request_create (rpcsvc.c:482)
==49943==    by 0x5146F2F: rpcsvc_handle_rpc_call (rpcsvc.c:618)
==49943==    by 0x514766E: rpcsvc_notify (rpcsvc.c:795)
==49943==    by 0x514CD1D: rpc_transport_notify (rpc-transport.c:541)
==49943==    by 0xFEA9D43: socket_event_poll_in (socket.c:2267)
==49943==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==  Address 0x1aee10d0 is 128 bytes inside a block of size 2,872 alloc'd
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0xFEAAF3E: socket_server_event_handler (socket.c:2682)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943== 
==49943== Invalid write of size 4
==49943==    at 0x60B5BC8: pthread_mutex_unlock (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x514CACD: rpc_transport_ref (rpc-transport.c:496)
==49943==    by 0x5146801: rpcsvc_request_init (rpcsvc.c:415)
==49943==    by 0x5146ACF: rpcsvc_request_create (rpcsvc.c:482)
==49943==    by 0x5146F2F: rpcsvc_handle_rpc_call (rpcsvc.c:618)
==49943==    by 0x514766E: rpcsvc_notify (rpcsvc.c:795)
==49943==    by 0x514CD1D: rpc_transport_notify (rpc-transport.c:541)
==49943==    by 0xFEA9D43: socket_event_poll_in (socket.c:2267)
==49943==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==  Address 0x1aee10c8 is 120 bytes inside a block of size 2,872 alloc'd
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0xFEAAF3E: socket_server_event_handler (socket.c:2682)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943== 
==49943== Invalid read of size 4
==49943==    at 0x60B5BCF: pthread_mutex_unlock (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x514CACD: rpc_transport_ref (rpc-transport.c:496)
==49943==    by 0x5146801: rpcsvc_request_init (rpcsvc.c:415)
==49943==    by 0x5146ACF: rpcsvc_request_create (rpcsvc.c:482)
==49943==    by 0x5146F2F: rpcsvc_handle_rpc_call (rpcsvc.c:618)
==49943==    by 0x514766E: rpcsvc_notify (rpcsvc.c:795)
==49943==    by 0x514CD1D: rpc_transport_notify (rpc-transport.c:541)
==49943==    by 0xFEA9D43: socket_event_poll_in (socket.c:2267)
==49943==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==  Address 0x1aee10cc is 124 bytes inside a block of size 2,872 alloc'd
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0xFEAAF3E: socket_server_event_handler (socket.c:2682)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943== 
==49943== Invalid read of size 4
==49943==    at 0x60B5BD9: pthread_mutex_unlock (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x514CACD: rpc_transport_ref (rpc-transport.c:496)
==49943==    by 0x5146801: rpcsvc_request_init (rpcsvc.c:415)
==49943==    by 0x5146ACF: rpcsvc_request_create (rpcsvc.c:482)
==49943==    by 0x5146F2F: rpcsvc_handle_rpc_call (rpcsvc.c:618)
==49943==    by 0x514766E: rpcsvc_notify (rpcsvc.c:795)
==49943==    by 0x514CD1D: rpc_transport_notify (rpc-transport.c:541)
==49943==    by 0xFEA9D43: socket_event_poll_in (socket.c:2267)
==49943==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==  Address 0x1aee10c0 is 112 bytes inside a block of size 2,872 alloc'd
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0xFEAAF3E: socket_server_event_handler (socket.c:2682)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x5146AD7: rpcsvc_request_create (rpcsvc.c:484)
==49943==    by 0x5146F2F: rpcsvc_handle_rpc_call (rpcsvc.c:618)
==49943==    by 0x514766E: rpcsvc_notify (rpcsvc.c:795)
==49943==    by 0x514CD1D: rpc_transport_notify (rpc-transport.c:541)
==49943==    by 0xFEA9D43: socket_event_poll_in (socket.c:2267)
==49943==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943==  Address 0x1aee1100 is 176 bytes inside a block of size 2,872 alloc'd
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0xFEAAF3E: socket_server_event_handler (socket.c:2682)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x60B751F: pthread_getspecific (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x4E9625E: glusterfs_lkowner_buf_get (globals.c:333)
==49943==    by 0x4E69951: lkowner_utoa (common-utils.c:2540)
==49943==    by 0x51533E4: auth_glusterfs_v2_authenticate (auth-glusterfs.c:235)
==49943==    by 0x51454C6: rpcsvc_authenticate (rpcsvc-auth.c:443)
==49943==    by 0x5146BF5: rpcsvc_request_create (rpcsvc.c:513)
==49943==    by 0x5146F2F: rpcsvc_handle_rpc_call (rpcsvc.c:618)
==49943==    by 0x514766E: rpcsvc_notify (rpcsvc.c:795)
==49943==    by 0x514CD1D: rpc_transport_notify (rpc-transport.c:541)
==49943==    by 0xFEA9D43: socket_event_poll_in (socket.c:2267)
==49943==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==  Address 0x1215d710 is in a rw- anonymous segment
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x60B752D: pthread_getspecific (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x4E9625E: glusterfs_lkowner_buf_get (globals.c:333)
==49943==    by 0x4E69951: lkowner_utoa (common-utils.c:2540)
==49943==    by 0x51533E4: auth_glusterfs_v2_authenticate (auth-glusterfs.c:235)
==49943==    by 0x51454C6: rpcsvc_authenticate (rpcsvc-auth.c:443)
==49943==    by 0x5146BF5: rpcsvc_request_create (rpcsvc.c:513)
==49943==    by 0x5146F2F: rpcsvc_handle_rpc_call (rpcsvc.c:618)
==49943==    by 0x514766E: rpcsvc_notify (rpcsvc.c:795)
==49943==    by 0x514CD1D: rpc_transport_notify (rpc-transport.c:541)
==49943==    by 0xFEA9D43: socket_event_poll_in (socket.c:2267)
==49943==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==  Address 0x1215da38 is in a rw- anonymous segment
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x60B7547: pthread_getspecific (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x4E9625E: glusterfs_lkowner_buf_get (globals.c:333)
==49943==    by 0x4E69951: lkowner_utoa (common-utils.c:2540)
==49943==    by 0x51533E4: auth_glusterfs_v2_authenticate (auth-glusterfs.c:235)
==49943==    by 0x51454C6: rpcsvc_authenticate (rpcsvc-auth.c:443)
==49943==    by 0x5146BF5: rpcsvc_request_create (rpcsvc.c:513)
==49943==    by 0x5146F2F: rpcsvc_handle_rpc_call (rpcsvc.c:618)
==49943==    by 0x514766E: rpcsvc_notify (rpcsvc.c:795)
==49943==    by 0x514CD1D: rpc_transport_notify (rpc-transport.c:541)
==49943==    by 0xFEA9D43: socket_event_poll_in (socket.c:2267)
==49943==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==  Address 0x1215da30 is in a rw- anonymous segment
==49943== 
==49943== Invalid read of size 4
==49943==    at 0x66F8154: vfprintf (in /usr/lib64/libc-2.17.so)
==49943==    by 0x671EA6A: vsprintf (in /usr/lib64/libc-2.17.so)
==49943==    by 0x67029A6: sprintf (in /usr/lib64/libc-2.17.so)
==49943==    by 0x4E63E53: lkowner_unparse (lkowner.h:28)
==49943==    by 0x4E6996D: lkowner_utoa (common-utils.c:2541)
==49943==    by 0x51533E4: auth_glusterfs_v2_authenticate (auth-glusterfs.c:235)
==49943==    by 0x51454C6: rpcsvc_authenticate (rpcsvc-auth.c:443)
==49943==    by 0x5146BF5: rpcsvc_request_create (rpcsvc.c:513)
==49943==    by 0x5146F2F: rpcsvc_handle_rpc_call (rpcsvc.c:618)
==49943==    by 0x514766E: rpcsvc_notify (rpcsvc.c:795)
==49943==    by 0x514CD1D: rpc_transport_notify (rpc-transport.c:541)
==49943==    by 0xFEA9D43: socket_event_poll_in (socket.c:2267)
==49943==  Address 0x1215d630 is in a rw- anonymous segment
==49943== 
==49943== Invalid read of size 4
==49943==    at 0x60B4BE3: pthread_mutex_lock (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x5146269: rpcsvc_program_actor (rpcsvc.c:240)
==49943==    by 0x5146F5E: rpcsvc_handle_rpc_call (rpcsvc.c:625)
==49943==    by 0x514766E: rpcsvc_notify (rpcsvc.c:795)
==49943==    by 0x514CD1D: rpc_transport_notify (rpc-transport.c:541)
==49943==    by 0xFEA9D43: socket_event_poll_in (socket.c:2267)
==49943==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943==  Address 0x1215d9d0 is in a rw- anonymous segment
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x51464CE: rpcsvc_program_actor (rpcsvc.c:296)
==49943==    by 0x5146F5E: rpcsvc_handle_rpc_call (rpcsvc.c:625)
==49943==    by 0x514766E: rpcsvc_notify (rpcsvc.c:795)
==49943==    by 0x514CD1D: rpc_transport_notify (rpc-transport.c:541)
==49943==    by 0xFEA9D43: socket_event_poll_in (socket.c:2267)
==49943==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943==  Address 0x152a7648 is 1768 bytes inside data symbol "glusterfs3_3_fop_actors"
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x514723A: rpcsvc_handle_rpc_call (rpcsvc.c:680)
==49943==    by 0x514766E: rpcsvc_notify (rpcsvc.c:795)
==49943==    by 0x514CD1D: rpc_transport_notify (rpc-transport.c:541)
==49943==    by 0xFEA9D43: socket_event_poll_in (socket.c:2267)
==49943==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943==  Address 0x152a7648 is 1768 bytes inside data symbol "glusterfs3_3_fop_actors"
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x15093222: server3_3_lookup (server-rpc-fops.c:6470)
==49943==    by 0x514731B: rpcsvc_handle_rpc_call (rpcsvc.c:701)
==49943==    by 0x514766E: rpcsvc_notify (rpcsvc.c:795)
==49943==    by 0x514CD1D: rpc_transport_notify (rpc-transport.c:541)
==49943==    by 0xFEA9D43: socket_event_poll_in (socket.c:2267)
==49943==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943==  Address 0x152a2df8 is in the GOT segment of /usr/local/lib/glusterfs/3.8.12/xlator/protocol/server.so
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x1505DC70: ??? (in /usr/local/lib/glusterfs/3.8.12/xlator/protocol/server.so)
==49943==    by 0x15093233: server3_3_lookup (server-rpc-fops.c:6470)
==49943==    by 0x514731B: rpcsvc_handle_rpc_call (rpcsvc.c:701)
==49943==    by 0x514766E: rpcsvc_notify (rpcsvc.c:795)
==49943==    by 0x514CD1D: rpc_transport_notify (rpc-transport.c:541)
==49943==    by 0xFEA9D43: socket_event_poll_in (socket.c:2267)
==49943==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943==  Address 0x152a31a0 is in the GOTPLT segment of /usr/local/lib/glusterfs/3.8.12/xlator/protocol/server.so
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x1506748E: get_frame_from_request (server-helpers.c:433)
==49943==    by 0x15093262: server3_3_lookup (server-rpc-fops.c:6478)
==49943==    by 0x514731B: rpcsvc_handle_rpc_call (rpcsvc.c:701)
==49943==    by 0x514766E: rpcsvc_notify (rpcsvc.c:795)
==49943==    by 0x514CD1D: rpc_transport_notify (rpc-transport.c:541)
==49943==    by 0xFEA9D43: socket_event_poll_in (socket.c:2267)
==49943==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943==  Address 0x1aee10a8 is 88 bytes inside a block of size 2,872 alloc'd
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0xFEAAF3E: socket_server_event_handler (socket.c:2682)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x1506726A: server_alloc_frame (server-helpers.c:391)
==49943==    by 0x150674A1: get_frame_from_request (server-helpers.c:435)
==49943==    by 0x15093262: server3_3_lookup (server-rpc-fops.c:6478)
==49943==    by 0x514731B: rpcsvc_handle_rpc_call (rpcsvc.c:701)
==49943==    by 0x514766E: rpcsvc_notify (rpcsvc.c:795)
==49943==    by 0x514CD1D: rpc_transport_notify (rpc-transport.c:541)
==49943==    by 0xFEA9D43: socket_event_poll_in (socket.c:2267)
==49943==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943==  Address 0x1aee10a8 is 88 bytes inside a block of size 2,872 alloc'd
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0xFEAAF3E: socket_server_event_handler (socket.c:2682)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x150672F0: server_alloc_frame (server-helpers.c:394)
==49943==    by 0x150674A1: get_frame_from_request (server-helpers.c:435)
==49943==    by 0x15093262: server3_3_lookup (server-rpc-fops.c:6478)
==49943==    by 0x514731B: rpcsvc_handle_rpc_call (rpcsvc.c:701)
==49943==    by 0x514766E: rpcsvc_notify (rpcsvc.c:795)
==49943==    by 0x514CD1D: rpc_transport_notify (rpc-transport.c:541)
==49943==    by 0xFEA9D43: socket_event_poll_in (socket.c:2267)
==49943==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943==  Address 0x1751a890 is 176 bytes inside a block of size 248 alloc'd
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x4EC6A5E: gf_client_get (client_t.c:201)
==49943==    by 0x15095B91: server_setvolume (server-handshake.c:524)
==49943==    by 0x514731B: rpcsvc_handle_rpc_call (rpcsvc.c:701)
==49943==    by 0x514766E: rpcsvc_notify (rpcsvc.c:795)
==49943==    by 0x514CD1D: rpc_transport_notify (rpc-transport.c:541)
==49943==    by 0xFEA9D43: socket_event_poll_in (socket.c:2267)
==49943==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x1505D9E0: ??? (in /usr/local/lib/glusterfs/3.8.12/xlator/protocol/server.so)
==49943==    by 0x150672FE: server_alloc_frame (server-helpers.c:394)
==49943==    by 0x150674A1: get_frame_from_request (server-helpers.c:435)
==49943==    by 0x15093262: server3_3_lookup (server-rpc-fops.c:6478)
==49943==    by 0x514731B: rpcsvc_handle_rpc_call (rpcsvc.c:701)
==49943==    by 0x514766E: rpcsvc_notify (rpcsvc.c:795)
==49943==    by 0x514CD1D: rpc_transport_notify (rpc-transport.c:541)
==49943==    by 0xFEA9D43: socket_event_poll_in (socket.c:2267)
==49943==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==  Address 0x152a3058 is in the GOTPLT segment of /usr/local/lib/glusterfs/3.8.12/xlator/protocol/server.so
==49943== 
==49943== Invalid write of size 8
==49943==    at 0x4E9903E: list_add (list.h:33)
==49943==    by 0x4E9942A: create_frame (stack.c:57)
==49943==    by 0x150672FE: server_alloc_frame (server-helpers.c:394)
==49943==    by 0x150674A1: get_frame_from_request (server-helpers.c:435)
==49943==    by 0x15093262: server3_3_lookup (server-rpc-fops.c:6478)
==49943==    by 0x514731B: rpcsvc_handle_rpc_call (rpcsvc.c:701)
==49943==    by 0x514766E: rpcsvc_notify (rpcsvc.c:795)
==49943==    by 0x514CD1D: rpc_transport_notify (rpc-transport.c:541)
==49943==    by 0xFEA9D43: socket_event_poll_in (socket.c:2267)
==49943==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==  Address 0x17549e94 is 100 bytes inside a block of size 1,924 alloc'd
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x4E908B0: mem_get (mem-pool.c:513)
==49943==    by 0x4E906CE: mem_get0 (mem-pool.c:446)
==49943==    by 0x4E9921D: create_frame (stack.c:25)
==49943==    by 0x4EA4EAD: synctask_create (syncop.c:469)
==49943==    by 0x4EA527F: synctask_new1 (syncop.c:571)
==49943==    by 0x143AE0D7: mq_synctask1 (marker-quota.c:1078)
==49943==    by 0x143AE199: mq_synctask (marker-quota.c:1097)
==49943==    by 0x143AE6F6: _mq_create_xattrs_txn (marker-quota.c:1236)
==49943==    by 0x143AE82D: mq_create_xattrs_txn (marker-quota.c:1253)
==49943==    by 0x143B0DCB: mq_inspect_directory_xattr (marker-quota.c:2027)
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x1505E620: ??? (in /usr/local/lib/glusterfs/3.8.12/xlator/protocol/server.so)
==49943==    by 0x15067329: server_alloc_frame (server-helpers.c:398)
==49943==    by 0x150674A1: get_frame_from_request (server-helpers.c:435)
==49943==    by 0x15093262: server3_3_lookup (server-rpc-fops.c:6478)
==49943==    by 0x514731B: rpcsvc_handle_rpc_call (rpcsvc.c:701)
==49943==    by 0x514766E: rpcsvc_notify (rpcsvc.c:795)
==49943==    by 0x514CD1D: rpc_transport_notify (rpc-transport.c:541)
==49943==    by 0xFEA9D43: socket_event_poll_in (socket.c:2267)
==49943==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==  Address 0x152a3678 is in the GOTPLT segment of /usr/local/lib/glusterfs/3.8.12/xlator/protocol/server.so
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x1506733E: server_alloc_frame (server-helpers.c:402)
==49943==    by 0x150674A1: get_frame_from_request (server-helpers.c:435)
==49943==    by 0x15093262: server3_3_lookup (server-rpc-fops.c:6478)
==49943==    by 0x514731B: rpcsvc_handle_rpc_call (rpcsvc.c:701)
==49943==    by 0x514766E: rpcsvc_notify (rpcsvc.c:795)
==49943==    by 0x514CD1D: rpc_transport_notify (rpc-transport.c:541)
==49943==    by 0xFEA9D43: socket_event_poll_in (socket.c:2267)
==49943==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943==  Address 0x1751a888 is 168 bytes inside a block of size 248 alloc'd
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x4EC6A5E: gf_client_get (client_t.c:201)
==49943==    by 0x15095B91: server_setvolume (server-handshake.c:524)
==49943==    by 0x514731B: rpcsvc_handle_rpc_call (rpcsvc.c:701)
==49943==    by 0x514766E: rpcsvc_notify (rpcsvc.c:795)
==49943==    by 0x514CD1D: rpc_transport_notify (rpc-transport.c:541)
==49943==    by 0xFEA9D43: socket_event_poll_in (socket.c:2267)
==49943==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x1506734B: server_alloc_frame (server-helpers.c:403)
==49943==    by 0x150674A1: get_frame_from_request (server-helpers.c:435)
==49943==    by 0x15093262: server3_3_lookup (server-rpc-fops.c:6478)
==49943==    by 0x514731B: rpcsvc_handle_rpc_call (rpcsvc.c:701)
==49943==    by 0x514766E: rpcsvc_notify (rpcsvc.c:795)
==49943==    by 0x514CD1D: rpc_transport_notify (rpc-transport.c:541)
==49943==    by 0xFEA9D43: socket_event_poll_in (socket.c:2267)
==49943==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943==  Address 0x1751a888 is 168 bytes inside a block of size 248 alloc'd
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x4EC6A5E: gf_client_get (client_t.c:201)
==49943==    by 0x15095B91: server_setvolume (server-handshake.c:524)
==49943==    by 0x514731B: rpcsvc_handle_rpc_call (rpcsvc.c:701)
==49943==    by 0x514766E: rpcsvc_notify (rpcsvc.c:795)
==49943==    by 0x514CD1D: rpc_transport_notify (rpc-transport.c:541)
==49943==    by 0xFEA9D43: socket_event_poll_in (socket.c:2267)
==49943==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x1505E1C0: ??? (in /usr/local/lib/glusterfs/3.8.12/xlator/protocol/server.so)
==49943==    by 0x1506736C: server_alloc_frame (server-helpers.c:405)
==49943==    by 0x150674A1: get_frame_from_request (server-helpers.c:435)
==49943==    by 0x15093262: server3_3_lookup (server-rpc-fops.c:6478)
==49943==    by 0x514731B: rpcsvc_handle_rpc_call (rpcsvc.c:701)
==49943==    by 0x514766E: rpcsvc_notify (rpcsvc.c:795)
==49943==    by 0x514CD1D: rpc_transport_notify (rpc-transport.c:541)
==49943==    by 0xFEA9D43: socket_event_poll_in (socket.c:2267)
==49943==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==  Address 0x152a3448 is in the GOTPLT segment of /usr/local/lib/glusterfs/3.8.12/xlator/protocol/server.so
==49943== 
==49943== Invalid read of size 4
==49943==    at 0x514CAB1: rpc_transport_ref (rpc-transport.c:494)
==49943==    by 0x1506736C: server_alloc_frame (server-helpers.c:405)
==49943==    by 0x150674A1: get_frame_from_request (server-helpers.c:435)
==49943==    by 0x15093262: server3_3_lookup (server-rpc-fops.c:6478)
==49943==    by 0x514731B: rpcsvc_handle_rpc_call (rpcsvc.c:701)
==49943==    by 0x514766E: rpcsvc_notify (rpcsvc.c:795)
==49943==    by 0x514CD1D: rpc_transport_notify (rpc-transport.c:541)
==49943==    by 0xFEA9D43: socket_event_poll_in (socket.c:2267)
==49943==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==  Address 0x1aee10e8 is 152 bytes inside a block of size 2,872 alloc'd
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0xFEAAF3E: socket_server_event_handler (socket.c:2682)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943== 
==49943== Invalid write of size 4
==49943==    at 0x514CABB: rpc_transport_ref (rpc-transport.c:494)
==49943==    by 0x1506736C: server_alloc_frame (server-helpers.c:405)
==49943==    by 0x150674A1: get_frame_from_request (server-helpers.c:435)
==49943==    by 0x15093262: server3_3_lookup (server-rpc-fops.c:6478)
==49943==    by 0x514731B: rpcsvc_handle_rpc_call (rpcsvc.c:701)
==49943==    by 0x514766E: rpcsvc_notify (rpcsvc.c:795)
==49943==    by 0x514CD1D: rpc_transport_notify (rpc-transport.c:541)
==49943==    by 0xFEA9D43: socket_event_poll_in (socket.c:2267)
==49943==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==  Address 0x1aee10e8 is 152 bytes inside a block of size 2,872 alloc'd
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0xFEAAF3E: socket_server_event_handler (socket.c:2682)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x150673C3: server_alloc_frame (server-helpers.c:413)
==49943==    by 0x150674A1: get_frame_from_request (server-helpers.c:435)
==49943==    by 0x15093262: server3_3_lookup (server-rpc-fops.c:6478)
==49943==    by 0x514731B: rpcsvc_handle_rpc_call (rpcsvc.c:701)
==49943==    by 0x514766E: rpcsvc_notify (rpcsvc.c:795)
==49943==    by 0x514CD1D: rpc_transport_notify (rpc-transport.c:541)
==49943==    by 0xFEA9D43: socket_event_poll_in (socket.c:2267)
==49943==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943==  Address 0x1751a890 is 176 bytes inside a block of size 248 alloc'd
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x4EC6A5E: gf_client_get (client_t.c:201)
==49943==    by 0x15095B91: server_setvolume (server-handshake.c:524)
==49943==    by 0x514731B: rpcsvc_handle_rpc_call (rpcsvc.c:701)
==49943==    by 0x514766E: rpcsvc_notify (rpcsvc.c:795)
==49943==    by 0x514CD1D: rpc_transport_notify (rpc-transport.c:541)
==49943==    by 0xFEA9D43: socket_event_poll_in (socket.c:2267)
==49943==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x150674E1: get_frame_from_request (server-helpers.c:443)
==49943==    by 0x15093262: server3_3_lookup (server-rpc-fops.c:6478)
==49943==    by 0x514731B: rpcsvc_handle_rpc_call (rpcsvc.c:701)
==49943==    by 0x514766E: rpcsvc_notify (rpcsvc.c:795)
==49943==    by 0x514CD1D: rpc_transport_notify (rpc-transport.c:541)
==49943==    by 0xFEA9D43: socket_event_poll_in (socket.c:2267)
==49943==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943==  Address 0x1aee10a8 is 88 bytes inside a block of size 2,872 alloc'd
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0xFEAAF3E: socket_server_event_handler (socket.c:2682)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x150674F0: get_frame_from_request (server-helpers.c:444)
==49943==    by 0x15093262: server3_3_lookup (server-rpc-fops.c:6478)
==49943==    by 0x514731B: rpcsvc_handle_rpc_call (rpcsvc.c:701)
==49943==    by 0x514766E: rpcsvc_notify (rpcsvc.c:795)
==49943==    by 0x514CD1D: rpc_transport_notify (rpc-transport.c:541)
==49943==    by 0xFEA9D43: socket_event_poll_in (socket.c:2267)
==49943==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943==  Address 0x1aee10b0 is 96 bytes inside a block of size 2,872 alloc'd
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0xFEAAF3E: socket_server_event_handler (socket.c:2682)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x15067554: get_frame_from_request (server-helpers.c:461)
==49943==    by 0x15093262: server3_3_lookup (server-rpc-fops.c:6478)
==49943==    by 0x514731B: rpcsvc_handle_rpc_call (rpcsvc.c:701)
==49943==    by 0x514766E: rpcsvc_notify (rpcsvc.c:795)
==49943==    by 0x514CD1D: rpc_transport_notify (rpc-transport.c:541)
==49943==    by 0xFEA9D43: socket_event_poll_in (socket.c:2267)
==49943==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943==  Address 0x1751a8c0 is 224 bytes inside a block of size 248 alloc'd
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x4EC6A5E: gf_client_get (client_t.c:201)
==49943==    by 0x15095B91: server_setvolume (server-handshake.c:524)
==49943==    by 0x514731B: rpcsvc_handle_rpc_call (rpcsvc.c:701)
==49943==    by 0x514766E: rpcsvc_notify (rpcsvc.c:795)
==49943==    by 0x514CD1D: rpc_transport_notify (rpc-transport.c:541)
==49943==    by 0xFEA9D43: socket_event_poll_in (socket.c:2267)
==49943==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x1506762B: get_frame_from_request (server-helpers.c:477)
==49943==    by 0x15093262: server3_3_lookup (server-rpc-fops.c:6478)
==49943==    by 0x514731B: rpcsvc_handle_rpc_call (rpcsvc.c:701)
==49943==    by 0x514766E: rpcsvc_notify (rpcsvc.c:795)
==49943==    by 0x514CD1D: rpc_transport_notify (rpc-transport.c:541)
==49943==    by 0xFEA9D43: socket_event_poll_in (socket.c:2267)
==49943==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943==  Address 0x1751a8c0 is 224 bytes inside a block of size 248 alloc'd
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x4EC6A5E: gf_client_get (client_t.c:201)
==49943==    by 0x15095B91: server_setvolume (server-handshake.c:524)
==49943==    by 0x514731B: rpcsvc_handle_rpc_call (rpcsvc.c:701)
==49943==    by 0x514766E: rpcsvc_notify (rpcsvc.c:795)
==49943==    by 0x514CD1D: rpc_transport_notify (rpc-transport.c:541)
==49943==    by 0xFEA9D43: socket_event_poll_in (socket.c:2267)
==49943==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x1505DAA0: ??? (in /usr/local/lib/glusterfs/3.8.12/xlator/protocol/server.so)
==49943==    by 0x15067852: get_frame_from_request (server-helpers.c:499)
==49943==    by 0x15093262: server3_3_lookup (server-rpc-fops.c:6478)
==49943==    by 0x514731B: rpcsvc_handle_rpc_call (rpcsvc.c:701)
==49943==    by 0x514766E: rpcsvc_notify (rpcsvc.c:795)
==49943==    by 0x514CD1D: rpc_transport_notify (rpc-transport.c:541)
==49943==    by 0xFEA9D43: socket_event_poll_in (socket.c:2267)
==49943==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943==  Address 0x152a30b8 is in the GOTPLT segment of /usr/local/lib/glusterfs/3.8.12/xlator/protocol/server.so
==49943== 
==49943== Invalid read of size 4
==49943==    at 0x4EC6FA4: gf_client_ref (client_t.c:325)
==49943==    by 0x15067852: get_frame_from_request (server-helpers.c:499)
==49943==    by 0x15093262: server3_3_lookup (server-rpc-fops.c:6478)
==49943==    by 0x514731B: rpcsvc_handle_rpc_call (rpcsvc.c:701)
==49943==    by 0x514766E: rpcsvc_notify (rpcsvc.c:795)
==49943==    by 0x514CD1D: rpc_transport_notify (rpc-transport.c:541)
==49943==    by 0xFEA9D43: socket_event_poll_in (socket.c:2267)
==49943==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943==  Address 0x1751a884 is 164 bytes inside a block of size 248 alloc'd
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x4EC6A5E: gf_client_get (client_t.c:201)
==49943==    by 0x15095B91: server_setvolume (server-handshake.c:524)
==49943==    by 0x514731B: rpcsvc_handle_rpc_call (rpcsvc.c:701)
==49943==    by 0x514766E: rpcsvc_notify (rpcsvc.c:795)
==49943==    by 0x514CD1D: rpc_transport_notify (rpc-transport.c:541)
==49943==    by 0xFEA9D43: socket_event_poll_in (socket.c:2267)
==49943==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943== 
==49943== Invalid read of size 4
==49943==    at 0x4EC6FAC: gf_client_ref (client_t.c:326)
==49943==    by 0x15067852: get_frame_from_request (server-helpers.c:499)
==49943==    by 0x15093262: server3_3_lookup (server-rpc-fops.c:6478)
==49943==    by 0x514731B: rpcsvc_handle_rpc_call (rpcsvc.c:701)
==49943==    by 0x514766E: rpcsvc_notify (rpcsvc.c:795)
==49943==    by 0x514CD1D: rpc_transport_notify (rpc-transport.c:541)
==49943==    by 0xFEA9D43: socket_event_poll_in (socket.c:2267)
==49943==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943==  Address 0x1751a884 is 164 bytes inside a block of size 248 alloc'd
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x4EC6A5E: gf_client_get (client_t.c:201)
==49943==    by 0x15095B91: server_setvolume (server-handshake.c:524)
==49943==    by 0x514731B: rpcsvc_handle_rpc_call (rpcsvc.c:701)
==49943==    by 0x514766E: rpcsvc_notify (rpcsvc.c:795)
==49943==    by 0x514CD1D: rpc_transport_notify (rpc-transport.c:541)
==49943==    by 0xFEA9D43: socket_event_poll_in (socket.c:2267)
==49943==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x4EC6FB3: gf_client_ref (client_t.c:326)
==49943==    by 0x15067852: get_frame_from_request (server-helpers.c:499)
==49943==    by 0x15093262: server3_3_lookup (server-rpc-fops.c:6478)
==49943==    by 0x514731B: rpcsvc_handle_rpc_call (rpcsvc.c:701)
==49943==    by 0x514766E: rpcsvc_notify (rpcsvc.c:795)
==49943==    by 0x514CD1D: rpc_transport_notify (rpc-transport.c:541)
==49943==    by 0xFEA9D43: socket_event_poll_in (socket.c:2267)
==49943==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943==  Address 0x1751a8a0 is 192 bytes inside a block of size 248 alloc'd
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x4EC6A5E: gf_client_get (client_t.c:201)
==49943==    by 0x15095B91: server_setvolume (server-handshake.c:524)
==49943==    by 0x514731B: rpcsvc_handle_rpc_call (rpcsvc.c:701)
==49943==    by 0x514766E: rpcsvc_notify (rpcsvc.c:795)
==49943==    by 0x514CD1D: rpc_transport_notify (rpc-transport.c:541)
==49943==    by 0xFEA9D43: socket_event_poll_in (socket.c:2267)
==49943==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x1505E700: ??? (in /usr/local/lib/glusterfs/3.8.12/xlator/protocol/server.so)
==49943==    by 0x15067905: get_frame_from_request (server-helpers.c:509)
==49943==    by 0x15093262: server3_3_lookup (server-rpc-fops.c:6478)
==49943==    by 0x514731B: rpcsvc_handle_rpc_call (rpcsvc.c:701)
==49943==    by 0x514766E: rpcsvc_notify (rpcsvc.c:795)
==49943==    by 0x514CD1D: rpc_transport_notify (rpc-transport.c:541)
==49943==    by 0xFEA9D43: socket_event_poll_in (socket.c:2267)
==49943==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943==  Address 0x152a36e8 is in the GOTPLT segment of /usr/local/lib/glusterfs/3.8.12/xlator/protocol/server.so
==49943== 
==49943== Invalid read of size 2
==49943==    at 0x4C2C0D0: memcpy@@GLIBC_2.14 (vg_replace_strmem.c:1018)
==49943==    by 0x15067905: get_frame_from_request (server-helpers.c:509)
==49943==    by 0x15093262: server3_3_lookup (server-rpc-fops.c:6478)
==49943==    by 0x514731B: rpcsvc_handle_rpc_call (rpcsvc.c:701)
==49943==    by 0x514766E: rpcsvc_notify (rpcsvc.c:795)
==49943==    by 0x514CD1D: rpc_transport_notify (rpc-transport.c:541)
==49943==    by 0xFEA9D43: socket_event_poll_in (socket.c:2267)
==49943==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943==  Address 0x1aee11cc is 380 bytes inside a block of size 2,872 alloc'd
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0xFEAAF3E: socket_server_event_handler (socket.c:2682)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943== 
==49943== Invalid read of size 2
==49943==    at 0x4C2C0DF: memcpy@@GLIBC_2.14 (vg_replace_strmem.c:1018)
==49943==    by 0x15067905: get_frame_from_request (server-helpers.c:509)
==49943==    by 0x15093262: server3_3_lookup (server-rpc-fops.c:6478)
==49943==    by 0x514731B: rpcsvc_handle_rpc_call (rpcsvc.c:701)
==49943==    by 0x514766E: rpcsvc_notify (rpcsvc.c:795)
==49943==    by 0x514CD1D: rpc_transport_notify (rpc-transport.c:541)
==49943==    by 0xFEA9D43: socket_event_poll_in (socket.c:2267)
==49943==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943==  Address 0x1aee11d0 is 384 bytes inside a block of size 2,872 alloc'd
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0xFEAAF3E: socket_server_event_handler (socket.c:2682)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x150932B3: server3_3_lookup (server-rpc-fops.c:6491)
==49943==    by 0x514731B: rpcsvc_handle_rpc_call (rpcsvc.c:701)
==49943==    by 0x514766E: rpcsvc_notify (rpcsvc.c:795)
==49943==    by 0x514CD1D: rpc_transport_notify (rpc-transport.c:541)
==49943==    by 0xFEA9D43: socket_event_poll_in (socket.c:2267)
==49943==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943==  Address 0x1751a888 is 168 bytes inside a block of size 248 alloc'd
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x4EC6A5E: gf_client_get (client_t.c:201)
==49943==    by 0x15095B91: server_setvolume (server-handshake.c:524)
==49943==    by 0x514731B: rpcsvc_handle_rpc_call (rpcsvc.c:701)
==49943==    by 0x514766E: rpcsvc_notify (rpcsvc.c:795)
==49943==    by 0x514CD1D: rpc_transport_notify (rpc-transport.c:541)
==49943==    by 0xFEA9D43: socket_event_poll_in (socket.c:2267)
==49943==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x1505E480: ??? (in /usr/local/lib/glusterfs/3.8.12/xlator/protocol/server.so)
==49943==    by 0x15093355: server3_3_lookup (server-rpc-fops.c:6506)
==49943==    by 0x514731B: rpcsvc_handle_rpc_call (rpcsvc.c:701)
==49943==    by 0x514766E: rpcsvc_notify (rpcsvc.c:795)
==49943==    by 0x514CD1D: rpc_transport_notify (rpc-transport.c:541)
==49943==    by 0xFEA9D43: socket_event_poll_in (socket.c:2267)
==49943==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943==  Address 0x152a35a8 is in the GOTPLT segment of /usr/local/lib/glusterfs/3.8.12/xlator/protocol/server.so
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x1505D980: ??? (in /usr/local/lib/glusterfs/3.8.12/xlator/protocol/server.so)
==49943==    by 0x150933FC: server3_3_lookup (server-rpc-fops.c:6506)
==49943==    by 0x514731B: rpcsvc_handle_rpc_call (rpcsvc.c:701)
==49943==    by 0x514766E: rpcsvc_notify (rpcsvc.c:795)
==49943==    by 0x514CD1D: rpc_transport_notify (rpc-transport.c:541)
==49943==    by 0xFEA9D43: socket_event_poll_in (socket.c:2267)
==49943==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943==  Address 0x152a3028 is in the GOTPLT segment of /usr/local/lib/glusterfs/3.8.12/xlator/protocol/server.so
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x1505E6D0: ??? (in /usr/local/lib/glusterfs/3.8.12/xlator/protocol/server.so)
==49943==    by 0x1506358D: gf_uuid_is_null (compat-uuid.h:45)
==49943==    by 0x15064C9F: server_resolve (server-resolve.c:556)
==49943==    by 0x15064E6B: server_resolve_all (server-resolve.c:614)
==49943==    by 0x15064F80: resolve_and_resume (server-resolve.c:645)
==49943==    by 0x15093491: server3_3_lookup (server-rpc-fops.c:6513)
==49943==    by 0x514731B: rpcsvc_handle_rpc_call (rpcsvc.c:701)
==49943==    by 0x514766E: rpcsvc_notify (rpcsvc.c:795)
==49943==    by 0x514CD1D: rpc_transport_notify (rpc-transport.c:541)
==49943==    by 0xFEA9D43: socket_event_poll_in (socket.c:2267)
==49943==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==  Address 0x152a36d0 is in the GOTPLT segment of /usr/local/lib/glusterfs/3.8.12/xlator/protocol/server.so
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x1505DBE0: ??? (in /usr/local/lib/glusterfs/3.8.12/xlator/protocol/server.so)
==49943==    by 0x15064756: resolve_inode_simple (server-resolve.c:385)
==49943==    by 0x1506482E: server_resolve_inode (server-resolve.c:417)
==49943==    by 0x15064CD4: server_resolve (server-resolve.c:562)
==49943==    by 0x15064E6B: server_resolve_all (server-resolve.c:614)
==49943==    by 0x15064F80: resolve_and_resume (server-resolve.c:645)
==49943==    by 0x15093491: server3_3_lookup (server-rpc-fops.c:6513)
==49943==    by 0x514731B: rpcsvc_handle_rpc_call (rpcsvc.c:701)
==49943==    by 0x514766E: rpcsvc_notify (rpcsvc.c:795)
==49943==    by 0x514CD1D: rpc_transport_notify (rpc-transport.c:541)
==49943==    by 0xFEA9D43: socket_event_poll_in (socket.c:2267)
==49943==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==49943==  Address 0x152a3158 is in the GOTPLT segment of /usr/local/lib/glusterfs/3.8.12/xlator/protocol/server.so
==49943== 
==49943== Invalid read of size 4
==49943==    at 0x60B4BE3: pthread_mutex_lock (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x4E7082A: inode_find (inode.c:910)
==49943==    by 0x15064756: resolve_inode_simple (server-resolve.c:385)
==49943==    by 0x1506482E: server_resolve_inode (server-resolve.c:417)
==49943==    by 0x15064CD4: server_resolve (server-resolve.c:562)
==49943==    by 0x15064E6B: server_resolve_all (server-resolve.c:614)
==49943==    by 0x15064F80: resolve_and_resume (server-resolve.c:645)
==49943==    by 0x15093491: server3_3_lookup (server-rpc-fops.c:6513)
==49943==    by 0x514731B: rpcsvc_handle_rpc_call (rpcsvc.c:701)
==49943==    by 0x514766E: rpcsvc_notify (rpcsvc.c:795)
==49943==    by 0x514CD1D: rpc_transport_notify (rpc-transport.c:541)
==49943==    by 0xFEA9D43: socket_event_poll_in (socket.c:2267)
==49943==  Address 0x1215d9d0 is in a rw- anonymous segment
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x5799623: uuid_compare (in /usr/lib64/libuuid.so.1.3.0)
==49943==    by 0x4E6E7B6: gf_uuid_compare (compat-uuid.h:27)
==49943==    by 0x4E70653: __is_root_gfid (inode.c:860)
==49943==    by 0x4E706FC: __inode_find (inode.c:881)
==49943==    by 0x4E7083D: inode_find (inode.c:912)
==49943==    by 0x15064756: resolve_inode_simple (server-resolve.c:385)
==49943==    by 0x1506482E: server_resolve_inode (server-resolve.c:417)
==49943==    by 0x15064CD4: server_resolve (server-resolve.c:562)
==49943==    by 0x15064E6B: server_resolve_all (server-resolve.c:614)
==49943==    by 0x15064F80: resolve_and_resume (server-resolve.c:645)
==49943==    by 0x15093491: server3_3_lookup (server-rpc-fops.c:6513)
==49943==    by 0x514731B: rpcsvc_handle_rpc_call (rpcsvc.c:701)
==49943==  Address 0x1215d728 is in a rw- anonymous segment
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x5799656: uuid_compare (in /usr/lib64/libuuid.so.1.3.0)
==49943==    by 0x4E6E7B6: gf_uuid_compare (compat-uuid.h:27)
==49943==    by 0x4E70653: __is_root_gfid (inode.c:860)
==49943==    by 0x4E706FC: __inode_find (inode.c:881)
==49943==    by 0x4E7083D: inode_find (inode.c:912)
==49943==    by 0x15064756: resolve_inode_simple (server-resolve.c:385)
==49943==    by 0x1506482E: server_resolve_inode (server-resolve.c:417)
==49943==    by 0x15064CD4: server_resolve (server-resolve.c:562)
==49943==    by 0x15064E6B: server_resolve_all (server-resolve.c:614)
==49943==    by 0x15064F80: resolve_and_resume (server-resolve.c:645)
==49943==    by 0x15093491: server3_3_lookup (server-rpc-fops.c:6513)
==49943==    by 0x514731B: rpcsvc_handle_rpc_call (rpcsvc.c:701)
==49943==  Address 0x1215d728 is in a rw- anonymous segment
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x1505DF60: ??? (in /usr/local/lib/glusterfs/3.8.12/xlator/protocol/server.so)
==49943==    by 0x1506479E: resolve_inode_simple (server-resolve.c:396)
==49943==    by 0x1506482E: server_resolve_inode (server-resolve.c:417)
==49943==    by 0x15064CD4: server_resolve (server-resolve.c:562)
==49943==    by 0x15064E6B: server_resolve_all (server-resolve.c:614)
==49943==    by 0x15064F80: resolve_and_resume (server-resolve.c:645)
==49943==    by 0x15093491: server3_3_lookup (server-rpc-fops.c:6513)
==49943==    by 0x514731B: rpcsvc_handle_rpc_call (rpcsvc.c:701)
==49943==    by 0x514766E: rpcsvc_notify (rpcsvc.c:795)
==49943==    by 0x514CD1D: rpc_transport_notify (rpc-transport.c:541)
==49943==    by 0xFEA9D43: socket_event_poll_in (socket.c:2267)
==49943==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==49943==  Address 0x152a3318 is in the GOTPLT segment of /usr/local/lib/glusterfs/3.8.12/xlator/protocol/server.so
==49943== 
==49943== Invalid read of size 4
==49943==    at 0x60B4BE3: pthread_mutex_lock (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x4E6FBE8: inode_ref (inode.c:540)
==49943==    by 0x1506479E: resolve_inode_simple (server-resolve.c:396)
==49943==    by 0x1506482E: server_resolve_inode (server-resolve.c:417)
==49943==    by 0x15064CD4: server_resolve (server-resolve.c:562)
==49943==    by 0x15064E6B: server_resolve_all (server-resolve.c:614)
==49943==    by 0x15064F80: resolve_and_resume (server-resolve.c:645)
==49943==    by 0x15093491: server3_3_lookup (server-rpc-fops.c:6513)
==49943==    by 0x514731B: rpcsvc_handle_rpc_call (rpcsvc.c:701)
==49943==    by 0x514766E: rpcsvc_notify (rpcsvc.c:795)
==49943==    by 0x514CD1D: rpc_transport_notify (rpc-transport.c:541)
==49943==    by 0xFEA9D43: socket_event_poll_in (socket.c:2267)
==49943==  Address 0x1215d9d0 is in a rw- anonymous segment
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x1505E4D0: ??? (in /usr/local/lib/glusterfs/3.8.12/xlator/protocol/server.so)
==49943==    by 0x15063573: gf_uuid_copy (compat-uuid.h:33)
==49943==    by 0x150647C4: resolve_inode_simple (server-resolve.c:397)
==49943==    by 0x1506482E: server_resolve_inode (server-resolve.c:417)
==49943==    by 0x15064CD4: server_resolve (server-resolve.c:562)
==49943==    by 0x15064E6B: server_resolve_all (server-resolve.c:614)
==49943==    by 0x15064F80: resolve_and_resume (server-resolve.c:645)
==49943==    by 0x15093491: server3_3_lookup (server-rpc-fops.c:6513)
==49943==    by 0x514731B: rpcsvc_handle_rpc_call (rpcsvc.c:701)
==49943==    by 0x514766E: rpcsvc_notify (rpcsvc.c:795)
==49943==    by 0x514CD1D: rpc_transport_notify (rpc-transport.c:541)
==49943==    by 0xFEA9D43: socket_event_poll_in (socket.c:2267)
==49943==  Address 0x152a35d0 is in the GOTPLT segment of /usr/local/lib/glusterfs/3.8.12/xlator/protocol/server.so
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x1505E440: ??? (in /usr/local/lib/glusterfs/3.8.12/xlator/protocol/server.so)
==49943==    by 0x150647D7: resolve_inode_simple (server-resolve.c:401)
==49943==    by 0x1506482E: server_resolve_inode (server-resolve.c:417)
==49943==    by 0x15064CD4: server_resolve (server-resolve.c:562)
==49943==    by 0x15064E6B: server_resolve_all (server-resolve.c:614)
==49943==    by 0x15064F80: resolve_and_resume (server-resolve.c:645)
==49943==    by 0x15093491: server3_3_lookup (server-rpc-fops.c:6513)
==49943==    by 0x514731B: rpcsvc_handle_rpc_call (rpcsvc.c:701)
==49943==    by 0x514766E: rpcsvc_notify (rpcsvc.c:795)
==49943==    by 0x514CD1D: rpc_transport_notify (rpc-transport.c:541)
==49943==    by 0xFEA9D43: socket_event_poll_in (socket.c:2267)
==49943==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==49943==  Address 0x152a3588 is in the GOTPLT segment of /usr/local/lib/glusterfs/3.8.12/xlator/protocol/server.so
==49943== 
==49943== Invalid read of size 4
==49943==    at 0x60B4BE3: pthread_mutex_lock (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x4E6FB81: inode_unref (inode.c:518)
==49943==    by 0x150647D7: resolve_inode_simple (server-resolve.c:401)
==49943==    by 0x1506482E: server_resolve_inode (server-resolve.c:417)
==49943==    by 0x15064CD4: server_resolve (server-resolve.c:562)
==49943==    by 0x15064E6B: server_resolve_all (server-resolve.c:614)
==49943==    by 0x15064F80: resolve_and_resume (server-resolve.c:645)
==49943==    by 0x15093491: server3_3_lookup (server-rpc-fops.c:6513)
==49943==    by 0x514731B: rpcsvc_handle_rpc_call (rpcsvc.c:701)
==49943==    by 0x514766E: rpcsvc_notify (rpcsvc.c:795)
==49943==    by 0x514CD1D: rpc_transport_notify (rpc-transport.c:541)
==49943==    by 0xFEA9D43: socket_event_poll_in (socket.c:2267)
==49943==  Address 0x1215d9d0 is in a rw- anonymous segment
==49943== 
==49943== Invalid read of size 4
==49943==    at 0x60B4BE3: pthread_mutex_lock (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x4E71C74: inode_table_prune (inode.c:1513)
==49943==    by 0x4E6FBA9: inode_unref (inode.c:524)
==49943==    by 0x150647D7: resolve_inode_simple (server-resolve.c:401)
==49943==    by 0x1506482E: server_resolve_inode (server-resolve.c:417)
==49943==    by 0x15064CD4: server_resolve (server-resolve.c:562)
==49943==    by 0x15064E6B: server_resolve_all (server-resolve.c:614)
==49943==    by 0x15064F80: resolve_and_resume (server-resolve.c:645)
==49943==    by 0x15093491: server3_3_lookup (server-rpc-fops.c:6513)
==49943==    by 0x514731B: rpcsvc_handle_rpc_call (rpcsvc.c:701)
==49943==    by 0x514766E: rpcsvc_notify (rpcsvc.c:795)
==49943==    by 0x514CD1D: rpc_transport_notify (rpc-transport.c:541)
==49943==  Address 0x1215d9d0 is in a rw- anonymous segment
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x1505DB20: ??? (in /usr/local/lib/glusterfs/3.8.12/xlator/protocol/server.so)
==49943==    by 0x15063606: resolve_loc_touchup (server-resolve.c:41)
==49943==    by 0x15064868: server_resolve_inode (server-resolve.c:426)
==49943==    by 0x15064CD4: server_resolve (server-resolve.c:562)
==49943==    by 0x15064E6B: server_resolve_all (server-resolve.c:614)
==49943==    by 0x15064F80: resolve_and_resume (server-resolve.c:645)
==49943==    by 0x15093491: server3_3_lookup (server-rpc-fops.c:6513)
==49943==    by 0x514731B: rpcsvc_handle_rpc_call (rpcsvc.c:701)
==49943==    by 0x514766E: rpcsvc_notify (rpcsvc.c:795)
==49943==    by 0x514CD1D: rpc_transport_notify (rpc-transport.c:541)
==49943==    by 0xFEA9D43: socket_event_poll_in (socket.c:2267)
==49943==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==49943==  Address 0x152a30f8 is in the GOTPLT segment of /usr/local/lib/glusterfs/3.8.12/xlator/protocol/server.so
==49943== 
==49943== Invalid read of size 4
==49943==    at 0x60B4BE3: pthread_mutex_lock (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x4E71B81: inode_path (inode.c:1468)
==49943==    by 0x4E5C9DA: loc_touchup (xlator.c:807)
==49943==    by 0x15063606: resolve_loc_touchup (server-resolve.c:41)
==49943==    by 0x15064868: server_resolve_inode (server-resolve.c:426)
==49943==    by 0x15064CD4: server_resolve (server-resolve.c:562)
==49943==    by 0x15064E6B: server_resolve_all (server-resolve.c:614)
==49943==    by 0x15064F80: resolve_and_resume (server-resolve.c:645)
==49943==    by 0x15093491: server3_3_lookup (server-rpc-fops.c:6513)
==49943==    by 0x514731B: rpcsvc_handle_rpc_call (rpcsvc.c:701)
==49943==    by 0x514766E: rpcsvc_notify (rpcsvc.c:795)
==49943==    by 0x514CD1D: rpc_transport_notify (rpc-transport.c:541)
==49943==  Address 0x1215d9d0 is in a rw- anonymous segment
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x15064DD9: server_resolve_done (server-resolve.c:590)
==49943==    by 0x15064EE9: server_resolve_all (server-resolve.c:625)
==49943==    by 0x15064D8F: server_resolve (server-resolve.c:574)
==49943==    by 0x15064EC0: server_resolve_all (server-resolve.c:621)
==49943==    by 0x15064874: server_resolve_inode (server-resolve.c:428)
==49943==    by 0x15064CD4: server_resolve (server-resolve.c:562)
==49943==    by 0x15064E6B: server_resolve_all (server-resolve.c:614)
==49943==    by 0x15064F80: resolve_and_resume (server-resolve.c:645)
==49943==    by 0x15093491: server3_3_lookup (server-rpc-fops.c:6513)
==49943==    by 0x514731B: rpcsvc_handle_rpc_call (rpcsvc.c:701)
==49943==    by 0x514766E: rpcsvc_notify (rpcsvc.c:795)
==49943==    by 0x514CD1D: rpc_transport_notify (rpc-transport.c:541)
==49943==  Address 0x1751a888 is 168 bytes inside a block of size 248 alloc'd
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x4EC6A5E: gf_client_get (client_t.c:201)
==49943==    by 0x15095B91: server_setvolume (server-handshake.c:524)
==49943==    by 0x514731B: rpcsvc_handle_rpc_call (rpcsvc.c:701)
==49943==    by 0x514766E: rpcsvc_notify (rpcsvc.c:795)
==49943==    by 0x514CD1D: rpc_transport_notify (rpc-transport.c:541)
==49943==    by 0xFEA9D43: socket_event_poll_in (socket.c:2267)
==49943==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x1505DC00: ??? (in /usr/local/lib/glusterfs/3.8.12/xlator/protocol/server.so)
==49943==    by 0x1508780B: server_lookup_resume (server-rpc-fops.c:3113)
==49943==    by 0x15064DE8: server_resolve_done (server-resolve.c:590)
==49943==    by 0x15064EE9: server_resolve_all (server-resolve.c:625)
==49943==    by 0x15064D8F: server_resolve (server-resolve.c:574)
==49943==    by 0x15064EC0: server_resolve_all (server-resolve.c:621)
==49943==    by 0x15064874: server_resolve_inode (server-resolve.c:428)
==49943==    by 0x15064CD4: server_resolve (server-resolve.c:562)
==49943==    by 0x15064E6B: server_resolve_all (server-resolve.c:614)
==49943==    by 0x15064F80: resolve_and_resume (server-resolve.c:645)
==49943==    by 0x15093491: server3_3_lookup (server-rpc-fops.c:6513)
==49943==    by 0x514731B: rpcsvc_handle_rpc_call (rpcsvc.c:701)
==49943==  Address 0x152a3168 is in the GOTPLT segment of /usr/local/lib/glusterfs/3.8.12/xlator/protocol/server.so
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x1508789B: server_lookup_resume (server-rpc-fops.c:3113)
==49943==    by 0x15064DE8: server_resolve_done (server-resolve.c:590)
==49943==    by 0x15064EE9: server_resolve_all (server-resolve.c:625)
==49943==    by 0x15064D8F: server_resolve (server-resolve.c:574)
==49943==    by 0x15064EC0: server_resolve_all (server-resolve.c:621)
==49943==    by 0x15064874: server_resolve_inode (server-resolve.c:428)
==49943==    by 0x15064CD4: server_resolve (server-resolve.c:562)
==49943==    by 0x15064E6B: server_resolve_all (server-resolve.c:614)
==49943==    by 0x15064F80: resolve_and_resume (server-resolve.c:645)
==49943==    by 0x15093491: server3_3_lookup (server-rpc-fops.c:6513)
==49943==    by 0x514731B: rpcsvc_handle_rpc_call (rpcsvc.c:701)
==49943==    by 0x514766E: rpcsvc_notify (rpcsvc.c:795)
==49943==  Address 0x152a2e28 is in the GOT segment of /usr/local/lib/glusterfs/3.8.12/xlator/protocol/server.so
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x1505DB80: ??? (in /usr/local/lib/glusterfs/3.8.12/xlator/protocol/server.so)
==49943==    by 0x150878BC: server_lookup_resume (server-rpc-fops.c:3113)
==49943==    by 0x15064DE8: server_resolve_done (server-resolve.c:590)
==49943==    by 0x15064EE9: server_resolve_all (server-resolve.c:625)
==49943==    by 0x15064D8F: server_resolve (server-resolve.c:574)
==49943==    by 0x15064EC0: server_resolve_all (server-resolve.c:621)
==49943==    by 0x15064874: server_resolve_inode (server-resolve.c:428)
==49943==    by 0x15064CD4: server_resolve (server-resolve.c:562)
==49943==    by 0x15064E6B: server_resolve_all (server-resolve.c:614)
==49943==    by 0x15064F80: resolve_and_resume (server-resolve.c:645)
==49943==    by 0x15093491: server3_3_lookup (server-rpc-fops.c:6513)
==49943==    by 0x514731B: rpcsvc_handle_rpc_call (rpcsvc.c:701)
==49943==  Address 0x152a3128 is in the GOTPLT segment of /usr/local/lib/glusterfs/3.8.12/xlator/protocol/server.so
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x150878D4: server_lookup_resume (server-rpc-fops.c:3113)
==49943==    by 0x15064DE8: server_resolve_done (server-resolve.c:590)
==49943==    by 0x15064EE9: server_resolve_all (server-resolve.c:625)
==49943==    by 0x15064D8F: server_resolve (server-resolve.c:574)
==49943==    by 0x15064EC0: server_resolve_all (server-resolve.c:621)
==49943==    by 0x15064874: server_resolve_inode (server-resolve.c:428)
==49943==    by 0x15064CD4: server_resolve (server-resolve.c:562)
==49943==    by 0x15064E6B: server_resolve_all (server-resolve.c:614)
==49943==    by 0x15064F80: resolve_and_resume (server-resolve.c:645)
==49943==    by 0x15093491: server3_3_lookup (server-rpc-fops.c:6513)
==49943==    by 0x514731B: rpcsvc_handle_rpc_call (rpcsvc.c:701)
==49943==    by 0x514766E: rpcsvc_notify (rpcsvc.c:795)
==49943==  Address 0x152a2e28 is in the GOT segment of /usr/local/lib/glusterfs/3.8.12/xlator/protocol/server.so
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x1505E650: ??? (in /usr/local/lib/glusterfs/3.8.12/xlator/protocol/server.so)
==49943==    by 0x150878F3: server_lookup_resume (server-rpc-fops.c:3113)
==49943==    by 0x15064DE8: server_resolve_done (server-resolve.c:590)
==49943==    by 0x15064EE9: server_resolve_all (server-resolve.c:625)
==49943==    by 0x15064D8F: server_resolve (server-resolve.c:574)
==49943==    by 0x15064EC0: server_resolve_all (server-resolve.c:621)
==49943==    by 0x15064874: server_resolve_inode (server-resolve.c:428)
==49943==    by 0x15064CD4: server_resolve (server-resolve.c:562)
==49943==    by 0x15064E6B: server_resolve_all (server-resolve.c:614)
==49943==    by 0x15064F80: resolve_and_resume (server-resolve.c:645)
==49943==    by 0x15093491: server3_3_lookup (server-rpc-fops.c:6513)
==49943==    by 0x514731B: rpcsvc_handle_rpc_call (rpcsvc.c:701)
==49943==  Address 0x152a3690 is in the GOTPLT segment of /usr/local/lib/glusterfs/3.8.12/xlator/protocol/server.so
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x1508793B: server_lookup_resume (server-rpc-fops.c:3113)
==49943==    by 0x15064DE8: server_resolve_done (server-resolve.c:590)
==49943==    by 0x15064EE9: server_resolve_all (server-resolve.c:625)
==49943==    by 0x15064D8F: server_resolve (server-resolve.c:574)
==49943==    by 0x15064EC0: server_resolve_all (server-resolve.c:621)
==49943==    by 0x15064874: server_resolve_inode (server-resolve.c:428)
==49943==    by 0x15064CD4: server_resolve (server-resolve.c:562)
==49943==    by 0x15064E6B: server_resolve_all (server-resolve.c:614)
==49943==    by 0x15064F80: resolve_and_resume (server-resolve.c:645)
==49943==    by 0x15093491: server3_3_lookup (server-rpc-fops.c:6513)
==49943==    by 0x514731B: rpcsvc_handle_rpc_call (rpcsvc.c:701)
==49943==    by 0x514766E: rpcsvc_notify (rpcsvc.c:795)
==49943==  Address 0x152a2e28 is in the GOT segment of /usr/local/lib/glusterfs/3.8.12/xlator/protocol/server.so
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x1505DCC0: ??? (in /usr/local/lib/glusterfs/3.8.12/xlator/protocol/server.so)
==49943==    by 0x1508795A: server_lookup_resume (server-rpc-fops.c:3113)
==49943==    by 0x15064DE8: server_resolve_done (server-resolve.c:590)
==49943==    by 0x15064EE9: server_resolve_all (server-resolve.c:625)
==49943==    by 0x15064D8F: server_resolve (server-resolve.c:574)
==49943==    by 0x15064EC0: server_resolve_all (server-resolve.c:621)
==49943==    by 0x15064874: server_resolve_inode (server-resolve.c:428)
==49943==    by 0x15064CD4: server_resolve (server-resolve.c:562)
==49943==    by 0x15064E6B: server_resolve_all (server-resolve.c:614)
==49943==    by 0x15064F80: resolve_and_resume (server-resolve.c:645)
==49943==    by 0x15093491: server3_3_lookup (server-rpc-fops.c:6513)
==49943==    by 0x514731B: rpcsvc_handle_rpc_call (rpcsvc.c:701)
==49943==  Address 0x152a31c8 is in the GOTPLT segment of /usr/local/lib/glusterfs/3.8.12/xlator/protocol/server.so
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x1505E5D0: ??? (in /usr/local/lib/glusterfs/3.8.12/xlator/protocol/server.so)
==49943==    by 0x15087979: server_lookup_resume (server-rpc-fops.c:3113)
==49943==    by 0x15064DE8: server_resolve_done (server-resolve.c:590)
==49943==    by 0x15064EE9: server_resolve_all (server-resolve.c:625)
==49943==    by 0x15064D8F: server_resolve (server-resolve.c:574)
==49943==    by 0x15064EC0: server_resolve_all (server-resolve.c:621)
==49943==    by 0x15064874: server_resolve_inode (server-resolve.c:428)
==49943==    by 0x15064CD4: server_resolve (server-resolve.c:562)
==49943==    by 0x15064E6B: server_resolve_all (server-resolve.c:614)
==49943==    by 0x15064F80: resolve_and_resume (server-resolve.c:645)
==49943==    by 0x15093491: server3_3_lookup (server-rpc-fops.c:6513)
==49943==    by 0x514731B: rpcsvc_handle_rpc_call (rpcsvc.c:701)
==49943==  Address 0x152a3650 is in the GOTPLT segment of /usr/local/lib/glusterfs/3.8.12/xlator/protocol/server.so
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x1505E5D0: ??? (in /usr/local/lib/glusterfs/3.8.12/xlator/protocol/server.so)
==49943==    by 0x1508798A: server_lookup_resume (server-rpc-fops.c:3113)
==49943==    by 0x15064DE8: server_resolve_done (server-resolve.c:590)
==49943==    by 0x15064EE9: server_resolve_all (server-resolve.c:625)
==49943==    by 0x15064D8F: server_resolve (server-resolve.c:574)
==49943==    by 0x15064EC0: server_resolve_all (server-resolve.c:621)
==49943==    by 0x15064874: server_resolve_inode (server-resolve.c:428)
==49943==    by 0x15064CD4: server_resolve (server-resolve.c:562)
==49943==    by 0x15064E6B: server_resolve_all (server-resolve.c:614)
==49943==    by 0x15064F80: resolve_and_resume (server-resolve.c:645)
==49943==    by 0x15093491: server3_3_lookup (server-rpc-fops.c:6513)
==49943==    by 0x514731B: rpcsvc_handle_rpc_call (rpcsvc.c:701)
==49943==  Address 0x152a3650 is in the GOTPLT segment of /usr/local/lib/glusterfs/3.8.12/xlator/protocol/server.so
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x1505E5D0: ??? (in /usr/local/lib/glusterfs/3.8.12/xlator/protocol/server.so)
==49943==    by 0x1508799B: server_lookup_resume (server-rpc-fops.c:3113)
==49943==    by 0x15064DE8: server_resolve_done (server-resolve.c:590)
==49943==    by 0x15064EE9: server_resolve_all (server-resolve.c:625)
==49943==    by 0x15064D8F: server_resolve (server-resolve.c:574)
==49943==    by 0x15064EC0: server_resolve_all (server-resolve.c:621)
==49943==    by 0x15064874: server_resolve_inode (server-resolve.c:428)
==49943==    by 0x15064CD4: server_resolve (server-resolve.c:562)
==49943==    by 0x15064E6B: server_resolve_all (server-resolve.c:614)
==49943==    by 0x15064F80: resolve_and_resume (server-resolve.c:645)
==49943==    by 0x15093491: server3_3_lookup (server-rpc-fops.c:6513)
==49943==    by 0x514731B: rpcsvc_handle_rpc_call (rpcsvc.c:701)
==49943==  Address 0x152a3650 is in the GOTPLT segment of /usr/local/lib/glusterfs/3.8.12/xlator/protocol/server.so
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x1505DDC0: ??? (in /usr/local/lib/glusterfs/3.8.12/xlator/protocol/server.so)
==49943==    by 0x15087A0A: server_lookup_resume (server-rpc-fops.c:3113)
==49943==    by 0x15064DE8: server_resolve_done (server-resolve.c:590)
==49943==    by 0x15064EE9: server_resolve_all (server-resolve.c:625)
==49943==    by 0x15064D8F: server_resolve (server-resolve.c:574)
==49943==    by 0x15064EC0: server_resolve_all (server-resolve.c:621)
==49943==    by 0x15064874: server_resolve_inode (server-resolve.c:428)
==49943==    by 0x15064CD4: server_resolve (server-resolve.c:562)
==49943==    by 0x15064E6B: server_resolve_all (server-resolve.c:614)
==49943==    by 0x15064F80: resolve_and_resume (server-resolve.c:645)
==49943==    by 0x15093491: server3_3_lookup (server-rpc-fops.c:6513)
==49943==    by 0x514731B: rpcsvc_handle_rpc_call (rpcsvc.c:701)
==49943==  Address 0x152a3248 is in the GOTPLT segment of /usr/local/lib/glusterfs/3.8.12/xlator/protocol/server.so
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x15087A47: server_lookup_resume (server-rpc-fops.c:3113)
==49943==    by 0x15064DE8: server_resolve_done (server-resolve.c:590)
==49943==    by 0x15064EE9: server_resolve_all (server-resolve.c:625)
==49943==    by 0x15064D8F: server_resolve (server-resolve.c:574)
==49943==    by 0x15064EC0: server_resolve_all (server-resolve.c:621)
==49943==    by 0x15064874: server_resolve_inode (server-resolve.c:428)
==49943==    by 0x15064CD4: server_resolve (server-resolve.c:562)
==49943==    by 0x15064E6B: server_resolve_all (server-resolve.c:614)
==49943==    by 0x15064F80: resolve_and_resume (server-resolve.c:645)
==49943==    by 0x15093491: server3_3_lookup (server-rpc-fops.c:6513)
==49943==    by 0x514731B: rpcsvc_handle_rpc_call (rpcsvc.c:701)
==49943==    by 0x514766E: rpcsvc_notify (rpcsvc.c:795)
==49943==  Address 0x15056240 is 0 bytes inside data symbol "fops"
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x4F1061F: default_lookup (defaults.c:2572)
==49943==    by 0x15087A6C: server_lookup_resume (server-rpc-fops.c:3113)
==49943==    by 0x15064DE8: server_resolve_done (server-resolve.c:590)
==49943==    by 0x15064EE9: server_resolve_all (server-resolve.c:625)
==49943==    by 0x15064D8F: server_resolve (server-resolve.c:574)
==49943==    by 0x15064EC0: server_resolve_all (server-resolve.c:621)
==49943==    by 0x15064874: server_resolve_inode (server-resolve.c:428)
==49943==    by 0x15064CD4: server_resolve (server-resolve.c:562)
==49943==    by 0x15064E6B: server_resolve_all (server-resolve.c:614)
==49943==    by 0x15064F80: resolve_and_resume (server-resolve.c:645)
==49943==    by 0x15093491: server3_3_lookup (server-rpc-fops.c:6513)
==49943==    by 0x514731B: rpcsvc_handle_rpc_call (rpcsvc.c:701)
==49943==  Address 0x14e31b40 is 0 bytes inside data symbol "fops"
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x14C0BD70: ??? (in /usr/local/lib/glusterfs/3.8.12/xlator/debug/io-stats.so)
==49943==    by 0x14C1E876: io_stats_lookup (io-stats.c:2535)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x15087A6C: server_lookup_resume (server-rpc-fops.c:3113)
==49943==    by 0x15064DE8: server_resolve_done (server-resolve.c:590)
==49943==    by 0x15064EE9: server_resolve_all (server-resolve.c:625)
==49943==    by 0x15064D8F: server_resolve (server-resolve.c:574)
==49943==    by 0x15064EC0: server_resolve_all (server-resolve.c:621)
==49943==    by 0x15064874: server_resolve_inode (server-resolve.c:428)
==49943==    by 0x15064CD4: server_resolve (server-resolve.c:562)
==49943==    by 0x15064E6B: server_resolve_all (server-resolve.c:614)
==49943==    by 0x15064F80: resolve_and_resume (server-resolve.c:645)
==49943==  Address 0x14e2e020 is in the GOTPLT segment of /usr/local/lib/glusterfs/3.8.12/xlator/debug/io-stats.so
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x14C0BE00: ??? (in /usr/local/lib/glusterfs/3.8.12/xlator/debug/io-stats.so)
==49943==    by 0x14C1E89D: io_stats_lookup (io-stats.c:2537)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x15087A6C: server_lookup_resume (server-rpc-fops.c:3113)
==49943==    by 0x15064DE8: server_resolve_done (server-resolve.c:590)
==49943==    by 0x15064EE9: server_resolve_all (server-resolve.c:625)
==49943==    by 0x15064D8F: server_resolve (server-resolve.c:574)
==49943==    by 0x15064EC0: server_resolve_all (server-resolve.c:621)
==49943==    by 0x15064874: server_resolve_inode (server-resolve.c:428)
==49943==    by 0x15064CD4: server_resolve (server-resolve.c:562)
==49943==    by 0x15064E6B: server_resolve_all (server-resolve.c:614)
==49943==    by 0x15064F80: resolve_and_resume (server-resolve.c:645)
==49943==  Address 0x14e2e068 is in the GOTPLT segment of /usr/local/lib/glusterfs/3.8.12/xlator/debug/io-stats.so
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x14C1E934: io_stats_lookup (io-stats.c:2537)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x15087A6C: server_lookup_resume (server-rpc-fops.c:3113)
==49943==    by 0x15064DE8: server_resolve_done (server-resolve.c:590)
==49943==    by 0x15064EE9: server_resolve_all (server-resolve.c:625)
==49943==    by 0x15064D8F: server_resolve (server-resolve.c:574)
==49943==    by 0x15064EC0: server_resolve_all (server-resolve.c:621)
==49943==    by 0x15064874: server_resolve_inode (server-resolve.c:428)
==49943==    by 0x15064CD4: server_resolve (server-resolve.c:562)
==49943==    by 0x15064E6B: server_resolve_all (server-resolve.c:614)
==49943==    by 0x15064F80: resolve_and_resume (server-resolve.c:645)
==49943==    by 0x15093491: server3_3_lookup (server-rpc-fops.c:6513)
==49943==  Address 0x14e2dff0 is in the GOT segment of /usr/local/lib/glusterfs/3.8.12/xlator/debug/io-stats.so
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x14C0BDD0: ??? (in /usr/local/lib/glusterfs/3.8.12/xlator/debug/io-stats.so)
==49943==    by 0x14C1E955: io_stats_lookup (io-stats.c:2537)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x15087A6C: server_lookup_resume (server-rpc-fops.c:3113)
==49943==    by 0x15064DE8: server_resolve_done (server-resolve.c:590)
==49943==    by 0x15064EE9: server_resolve_all (server-resolve.c:625)
==49943==    by 0x15064D8F: server_resolve (server-resolve.c:574)
==49943==    by 0x15064EC0: server_resolve_all (server-resolve.c:621)
==49943==    by 0x15064874: server_resolve_inode (server-resolve.c:428)
==49943==    by 0x15064CD4: server_resolve (server-resolve.c:562)
==49943==    by 0x15064E6B: server_resolve_all (server-resolve.c:614)
==49943==    by 0x15064F80: resolve_and_resume (server-resolve.c:645)
==49943==  Address 0x14e2e050 is in the GOTPLT segment of /usr/local/lib/glusterfs/3.8.12/xlator/debug/io-stats.so
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x14C1E96D: io_stats_lookup (io-stats.c:2537)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x15087A6C: server_lookup_resume (server-rpc-fops.c:3113)
==49943==    by 0x15064DE8: server_resolve_done (server-resolve.c:590)
==49943==    by 0x15064EE9: server_resolve_all (server-resolve.c:625)
==49943==    by 0x15064D8F: server_resolve (server-resolve.c:574)
==49943==    by 0x15064EC0: server_resolve_all (server-resolve.c:621)
==49943==    by 0x15064874: server_resolve_inode (server-resolve.c:428)
==49943==    by 0x15064CD4: server_resolve (server-resolve.c:562)
==49943==    by 0x15064E6B: server_resolve_all (server-resolve.c:614)
==49943==    by 0x15064F80: resolve_and_resume (server-resolve.c:645)
==49943==    by 0x15093491: server3_3_lookup (server-rpc-fops.c:6513)
==49943==  Address 0x14e2dff0 is in the GOT segment of /usr/local/lib/glusterfs/3.8.12/xlator/debug/io-stats.so
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x14C0C2E0: ??? (in /usr/local/lib/glusterfs/3.8.12/xlator/debug/io-stats.so)
==49943==    by 0x14C1E98C: io_stats_lookup (io-stats.c:2537)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x15087A6C: server_lookup_resume (server-rpc-fops.c:3113)
==49943==    by 0x15064DE8: server_resolve_done (server-resolve.c:590)
==49943==    by 0x15064EE9: server_resolve_all (server-resolve.c:625)
==49943==    by 0x15064D8F: server_resolve (server-resolve.c:574)
==49943==    by 0x15064EC0: server_resolve_all (server-resolve.c:621)
==49943==    by 0x15064874: server_resolve_inode (server-resolve.c:428)
==49943==    by 0x15064CD4: server_resolve (server-resolve.c:562)
==49943==    by 0x15064E6B: server_resolve_all (server-resolve.c:614)
==49943==    by 0x15064F80: resolve_and_resume (server-resolve.c:645)
==49943==  Address 0x14e2e2d8 is in the GOTPLT segment of /usr/local/lib/glusterfs/3.8.12/xlator/debug/io-stats.so
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x14C1E9D4: io_stats_lookup (io-stats.c:2537)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x15087A6C: server_lookup_resume (server-rpc-fops.c:3113)
==49943==    by 0x15064DE8: server_resolve_done (server-resolve.c:590)
==49943==    by 0x15064EE9: server_resolve_all (server-resolve.c:625)
==49943==    by 0x15064D8F: server_resolve (server-resolve.c:574)
==49943==    by 0x15064EC0: server_resolve_all (server-resolve.c:621)
==49943==    by 0x15064874: server_resolve_inode (server-resolve.c:428)
==49943==    by 0x15064CD4: server_resolve (server-resolve.c:562)
==49943==    by 0x15064E6B: server_resolve_all (server-resolve.c:614)
==49943==    by 0x15064F80: resolve_and_resume (server-resolve.c:645)
==49943==    by 0x15093491: server3_3_lookup (server-rpc-fops.c:6513)
==49943==  Address 0x14e2dff0 is in the GOT segment of /usr/local/lib/glusterfs/3.8.12/xlator/debug/io-stats.so
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x14C0BE50: ??? (in /usr/local/lib/glusterfs/3.8.12/xlator/debug/io-stats.so)
==49943==    by 0x14C1E9F3: io_stats_lookup (io-stats.c:2537)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x15087A6C: server_lookup_resume (server-rpc-fops.c:3113)
==49943==    by 0x15064DE8: server_resolve_done (server-resolve.c:590)
==49943==    by 0x15064EE9: server_resolve_all (server-resolve.c:625)
==49943==    by 0x15064D8F: server_resolve (server-resolve.c:574)
==49943==    by 0x15064EC0: server_resolve_all (server-resolve.c:621)
==49943==    by 0x15064874: server_resolve_inode (server-resolve.c:428)
==49943==    by 0x15064CD4: server_resolve (server-resolve.c:562)
==49943==    by 0x15064E6B: server_resolve_all (server-resolve.c:614)
==49943==    by 0x15064F80: resolve_and_resume (server-resolve.c:645)
==49943==  Address 0x14e2e090 is in the GOTPLT segment of /usr/local/lib/glusterfs/3.8.12/xlator/debug/io-stats.so
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x14C0C2A0: ??? (in /usr/local/lib/glusterfs/3.8.12/xlator/debug/io-stats.so)
==49943==    by 0x14C1EA12: io_stats_lookup (io-stats.c:2537)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x15087A6C: server_lookup_resume (server-rpc-fops.c:3113)
==49943==    by 0x15064DE8: server_resolve_done (server-resolve.c:590)
==49943==    by 0x15064EE9: server_resolve_all (server-resolve.c:625)
==49943==    by 0x15064D8F: server_resolve (server-resolve.c:574)
==49943==    by 0x15064EC0: server_resolve_all (server-resolve.c:621)
==49943==    by 0x15064874: server_resolve_inode (server-resolve.c:428)
==49943==    by 0x15064CD4: server_resolve (server-resolve.c:562)
==49943==    by 0x15064E6B: server_resolve_all (server-resolve.c:614)
==49943==    by 0x15064F80: resolve_and_resume (server-resolve.c:645)
==49943==  Address 0x14e2e2b8 is in the GOTPLT segment of /usr/local/lib/glusterfs/3.8.12/xlator/debug/io-stats.so
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x14C0C2A0: ??? (in /usr/local/lib/glusterfs/3.8.12/xlator/debug/io-stats.so)
==49943==    by 0x14C1EA23: io_stats_lookup (io-stats.c:2537)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x15087A6C: server_lookup_resume (server-rpc-fops.c:3113)
==49943==    by 0x15064DE8: server_resolve_done (server-resolve.c:590)
==49943==    by 0x15064EE9: server_resolve_all (server-resolve.c:625)
==49943==    by 0x15064D8F: server_resolve (server-resolve.c:574)
==49943==    by 0x15064EC0: server_resolve_all (server-resolve.c:621)
==49943==    by 0x15064874: server_resolve_inode (server-resolve.c:428)
==49943==    by 0x15064CD4: server_resolve (server-resolve.c:562)
==49943==    by 0x15064E6B: server_resolve_all (server-resolve.c:614)
==49943==    by 0x15064F80: resolve_and_resume (server-resolve.c:645)
==49943==  Address 0x14e2e2b8 is in the GOTPLT segment of /usr/local/lib/glusterfs/3.8.12/xlator/debug/io-stats.so
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x14C0C2A0: ??? (in /usr/local/lib/glusterfs/3.8.12/xlator/debug/io-stats.so)
==49943==    by 0x14C1EA3B: io_stats_lookup (io-stats.c:2537)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x15087A6C: server_lookup_resume (server-rpc-fops.c:3113)
==49943==    by 0x15064DE8: server_resolve_done (server-resolve.c:590)
==49943==    by 0x15064EE9: server_resolve_all (server-resolve.c:625)
==49943==    by 0x15064D8F: server_resolve (server-resolve.c:574)
==49943==    by 0x15064EC0: server_resolve_all (server-resolve.c:621)
==49943==    by 0x15064874: server_resolve_inode (server-resolve.c:428)
==49943==    by 0x15064CD4: server_resolve (server-resolve.c:562)
==49943==    by 0x15064E6B: server_resolve_all (server-resolve.c:614)
==49943==    by 0x15064F80: resolve_and_resume (server-resolve.c:645)
==49943==  Address 0x14e2e2b8 is in the GOTPLT segment of /usr/local/lib/glusterfs/3.8.12/xlator/debug/io-stats.so
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x14C0BEA0: ??? (in /usr/local/lib/glusterfs/3.8.12/xlator/debug/io-stats.so)
==49943==    by 0x14C1EAAA: io_stats_lookup (io-stats.c:2537)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x15087A6C: server_lookup_resume (server-rpc-fops.c:3113)
==49943==    by 0x15064DE8: server_resolve_done (server-resolve.c:590)
==49943==    by 0x15064EE9: server_resolve_all (server-resolve.c:625)
==49943==    by 0x15064D8F: server_resolve (server-resolve.c:574)
==49943==    by 0x15064EC0: server_resolve_all (server-resolve.c:621)
==49943==    by 0x15064874: server_resolve_inode (server-resolve.c:428)
==49943==    by 0x15064CD4: server_resolve (server-resolve.c:562)
==49943==    by 0x15064E6B: server_resolve_all (server-resolve.c:614)
==49943==    by 0x15064F80: resolve_and_resume (server-resolve.c:645)
==49943==  Address 0x14e2e0b8 is in the GOTPLT segment of /usr/local/lib/glusterfs/3.8.12/xlator/debug/io-stats.so
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x14C1EAF5: io_stats_lookup (io-stats.c:2537)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x15087A6C: server_lookup_resume (server-rpc-fops.c:3113)
==49943==    by 0x15064DE8: server_resolve_done (server-resolve.c:590)
==49943==    by 0x15064EE9: server_resolve_all (server-resolve.c:625)
==49943==    by 0x15064D8F: server_resolve (server-resolve.c:574)
==49943==    by 0x15064EC0: server_resolve_all (server-resolve.c:621)
==49943==    by 0x15064874: server_resolve_inode (server-resolve.c:428)
==49943==    by 0x15064CD4: server_resolve (server-resolve.c:562)
==49943==    by 0x15064E6B: server_resolve_all (server-resolve.c:614)
==49943==    by 0x15064F80: resolve_and_resume (server-resolve.c:645)
==49943==    by 0x15093491: server3_3_lookup (server-rpc-fops.c:6513)
==49943==  Address 0x14c08440 is 0 bytes inside data symbol "fops"
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x149DDA80: ??? (in /usr/local/lib/glusterfs/3.8.12/xlator/features/quota.so)
==49943==    by 0x149E367F: quota_lookup (quota.c:1641)
==49943==    by 0x14C1EB10: io_stats_lookup (io-stats.c:2537)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x15087A6C: server_lookup_resume (server-rpc-fops.c:3113)
==49943==    by 0x15064DE8: server_resolve_done (server-resolve.c:590)
==49943==    by 0x15064EE9: server_resolve_all (server-resolve.c:625)
==49943==    by 0x15064D8F: server_resolve (server-resolve.c:574)
==49943==    by 0x15064EC0: server_resolve_all (server-resolve.c:621)
==49943==    by 0x15064874: server_resolve_inode (server-resolve.c:428)
==49943==    by 0x15064CD4: server_resolve (server-resolve.c:562)
==49943==    by 0x15064E6B: server_resolve_all (server-resolve.c:614)
==49943==  Address 0x14c06028 is in the GOTPLT segment of /usr/local/lib/glusterfs/3.8.12/xlator/features/quota.so
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x149DE020: ??? (in /usr/local/lib/glusterfs/3.8.12/xlator/features/quota.so)
==49943==    by 0x149DF92B: quota_local_new (quota.c:192)
==49943==    by 0x149E36A6: quota_lookup (quota.c:1645)
==49943==    by 0x14C1EB10: io_stats_lookup (io-stats.c:2537)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x15087A6C: server_lookup_resume (server-rpc-fops.c:3113)
==49943==    by 0x15064DE8: server_resolve_done (server-resolve.c:590)
==49943==    by 0x15064EE9: server_resolve_all (server-resolve.c:625)
==49943==    by 0x15064D8F: server_resolve (server-resolve.c:574)
==49943==    by 0x15064EC0: server_resolve_all (server-resolve.c:621)
==49943==    by 0x15064874: server_resolve_inode (server-resolve.c:428)
==49943==    by 0x15064CD4: server_resolve (server-resolve.c:562)
==49943==  Address 0x14c062f8 is in the GOTPLT segment of /usr/local/lib/glusterfs/3.8.12/xlator/features/quota.so
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x149DDB40: ??? (in /usr/local/lib/glusterfs/3.8.12/xlator/features/quota.so)
==49943==    by 0x149DF93D: quota_local_new (quota.c:192)
==49943==    by 0x149E36A6: quota_lookup (quota.c:1645)
==49943==    by 0x14C1EB10: io_stats_lookup (io-stats.c:2537)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x15087A6C: server_lookup_resume (server-rpc-fops.c:3113)
==49943==    by 0x15064DE8: server_resolve_done (server-resolve.c:590)
==49943==    by 0x15064EE9: server_resolve_all (server-resolve.c:625)
==49943==    by 0x15064D8F: server_resolve (server-resolve.c:574)
==49943==    by 0x15064EC0: server_resolve_all (server-resolve.c:621)
==49943==    by 0x15064874: server_resolve_inode (server-resolve.c:428)
==49943==    by 0x15064CD4: server_resolve (server-resolve.c:562)
==49943==  Address 0x14c06088 is in the GOTPLT segment of /usr/local/lib/glusterfs/3.8.12/xlator/features/quota.so
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x149DF94B: quota_local_new (quota.c:196)
==49943==    by 0x149E36A6: quota_lookup (quota.c:1645)
==49943==    by 0x14C1EB10: io_stats_lookup (io-stats.c:2537)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x15087A6C: server_lookup_resume (server-rpc-fops.c:3113)
==49943==    by 0x15064DE8: server_resolve_done (server-resolve.c:590)
==49943==    by 0x15064EE9: server_resolve_all (server-resolve.c:625)
==49943==    by 0x15064D8F: server_resolve (server-resolve.c:574)
==49943==    by 0x15064EC0: server_resolve_all (server-resolve.c:621)
==49943==    by 0x15064874: server_resolve_inode (server-resolve.c:428)
==49943==    by 0x15064CD4: server_resolve (server-resolve.c:562)
==49943==    by 0x15064E6B: server_resolve_all (server-resolve.c:614)
==49943==  Address 0x14c05fd8 is in the GOT segment of /usr/local/lib/glusterfs/3.8.12/xlator/features/quota.so
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x149DDB00: ??? (in /usr/local/lib/glusterfs/3.8.12/xlator/features/quota.so)
==49943==    by 0x149DF968: quota_local_new (quota.c:196)
==49943==    by 0x149E36A6: quota_lookup (quota.c:1645)
==49943==    by 0x14C1EB10: io_stats_lookup (io-stats.c:2537)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x15087A6C: server_lookup_resume (server-rpc-fops.c:3113)
==49943==    by 0x15064DE8: server_resolve_done (server-resolve.c:590)
==49943==    by 0x15064EE9: server_resolve_all (server-resolve.c:625)
==49943==    by 0x15064D8F: server_resolve (server-resolve.c:574)
==49943==    by 0x15064EC0: server_resolve_all (server-resolve.c:621)
==49943==    by 0x15064874: server_resolve_inode (server-resolve.c:428)
==49943==    by 0x15064CD4: server_resolve (server-resolve.c:562)
==49943==  Address 0x14c06068 is in the GOTPLT segment of /usr/local/lib/glusterfs/3.8.12/xlator/features/quota.so
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x149DDE00: ??? (in /usr/local/lib/glusterfs/3.8.12/xlator/features/quota.so)
==49943==    by 0x149E36DF: quota_lookup (quota.c:1651)
==49943==    by 0x14C1EB10: io_stats_lookup (io-stats.c:2537)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x15087A6C: server_lookup_resume (server-rpc-fops.c:3113)
==49943==    by 0x15064DE8: server_resolve_done (server-resolve.c:590)
==49943==    by 0x15064EE9: server_resolve_all (server-resolve.c:625)
==49943==    by 0x15064D8F: server_resolve (server-resolve.c:574)
==49943==    by 0x15064EC0: server_resolve_all (server-resolve.c:621)
==49943==    by 0x15064874: server_resolve_inode (server-resolve.c:428)
==49943==    by 0x15064CD4: server_resolve (server-resolve.c:562)
==49943==    by 0x15064E6B: server_resolve_all (server-resolve.c:614)
==49943==  Address 0x14c061e8 is in the GOTPLT segment of /usr/local/lib/glusterfs/3.8.12/xlator/features/quota.so
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x149DDFD0: ??? (in /usr/local/lib/glusterfs/3.8.12/xlator/features/quota.so)
==49943==    by 0x149E36FA: quota_lookup (quota.c:1653)
==49943==    by 0x14C1EB10: io_stats_lookup (io-stats.c:2537)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x15087A6C: server_lookup_resume (server-rpc-fops.c:3113)
==49943==    by 0x15064DE8: server_resolve_done (server-resolve.c:590)
==49943==    by 0x15064EE9: server_resolve_all (server-resolve.c:625)
==49943==    by 0x15064D8F: server_resolve (server-resolve.c:574)
==49943==    by 0x15064EC0: server_resolve_all (server-resolve.c:621)
==49943==    by 0x15064874: server_resolve_inode (server-resolve.c:428)
==49943==    by 0x15064CD4: server_resolve (server-resolve.c:562)
==49943==    by 0x15064E6B: server_resolve_all (server-resolve.c:614)
==49943==  Address 0x14c062d0 is in the GOTPLT segment of /usr/local/lib/glusterfs/3.8.12/xlator/features/quota.so
==49943== 
==49943== Invalid read of size 4
==49943==    at 0x66F8154: vfprintf (in /usr/lib64/libc-2.17.so)
==49943==    by 0x6725178: vsnprintf (in /usr/lib64/libc-2.17.so)
==49943==    by 0x4E8FDD0: gf_vasprintf (mem-pool.c:219)
==49943==    by 0x4E8FEDF: gf_asprintf (mem-pool.c:240)
==49943==    by 0x4E558D5: data_from_int8 (dict.c:743)
==49943==    by 0x4E579A8: dict_set_int8 (dict.c:1681)
==49943==    by 0x149E36FA: quota_lookup (quota.c:1653)
==49943==    by 0x14C1EB10: io_stats_lookup (io-stats.c:2537)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x15087A6C: server_lookup_resume (server-rpc-fops.c:3113)
==49943==    by 0x15064DE8: server_resolve_done (server-resolve.c:590)
==49943==    by 0x15064EE9: server_resolve_all (server-resolve.c:625)
==49943==  Address 0x1215d630 is in a rw- anonymous segment
==49943== 
==49943== Invalid read of size 1
==49943==    at 0x4C2BB94: __strcmp_sse42 (vg_replace_strmem.c:845)
==49943==    by 0x4E54692: dict_lookup_common (dict.c:288)
==49943==    by 0x4E54895: dict_set_lk (dict.c:346)
==49943==    by 0x4E54B82: dict_set (dict.c:424)
==49943==    by 0x4E579D3: dict_set_int8 (dict.c:1687)
==49943==    by 0x149E36FA: quota_lookup (quota.c:1653)
==49943==    by 0x14C1EB10: io_stats_lookup (io-stats.c:2537)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x15087A6C: server_lookup_resume (server-rpc-fops.c:3113)
==49943==    by 0x15064DE8: server_resolve_done (server-resolve.c:590)
==49943==    by 0x15064EE9: server_resolve_all (server-resolve.c:625)
==49943==    by 0x15064D8F: server_resolve (server-resolve.c:574)
==49943==  Address 0x14a01c28 is in a r-x mapped file /usr/local/lib/glusterfs/3.8.12/xlator/features/quota.so segment
==49943== 
==49943== Invalid read of size 1
==49943==    at 0x4C2BBAB: __strcmp_sse42 (vg_replace_strmem.c:845)
==49943==    by 0x4E54692: dict_lookup_common (dict.c:288)
==49943==    by 0x4E54895: dict_set_lk (dict.c:346)
==49943==    by 0x4E54B82: dict_set (dict.c:424)
==49943==    by 0x4E579D3: dict_set_int8 (dict.c:1687)
==49943==    by 0x149E36FA: quota_lookup (quota.c:1653)
==49943==    by 0x14C1EB10: io_stats_lookup (io-stats.c:2537)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x15087A6C: server_lookup_resume (server-rpc-fops.c:3113)
==49943==    by 0x15064DE8: server_resolve_done (server-resolve.c:590)
==49943==    by 0x15064EE9: server_resolve_all (server-resolve.c:625)
==49943==    by 0x15064D8F: server_resolve (server-resolve.c:574)
==49943==  Address 0x14a01c29 is in a r-x mapped file /usr/local/lib/glusterfs/3.8.12/xlator/features/quota.so segment
==49943== 
==49943== Invalid read of size 1
==49943==    at 0x4C2A9D2: strlen (vg_replace_strmem.c:454)
==49943==    by 0x4E54981: dict_set_lk (dict.c:378)
==49943==    by 0x4E54B82: dict_set (dict.c:424)
==49943==    by 0x4E579D3: dict_set_int8 (dict.c:1687)
==49943==    by 0x149E36FA: quota_lookup (quota.c:1653)
==49943==    by 0x14C1EB10: io_stats_lookup (io-stats.c:2537)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x15087A6C: server_lookup_resume (server-rpc-fops.c:3113)
==49943==    by 0x15064DE8: server_resolve_done (server-resolve.c:590)
==49943==    by 0x15064EE9: server_resolve_all (server-resolve.c:625)
==49943==    by 0x15064D8F: server_resolve (server-resolve.c:574)
==49943==    by 0x15064EC0: server_resolve_all (server-resolve.c:621)
==49943==  Address 0x14a01c28 is in a r-x mapped file /usr/local/lib/glusterfs/3.8.12/xlator/features/quota.so segment
==49943== 
==49943== Invalid read of size 1
==49943==    at 0x4C2A9E4: strlen (vg_replace_strmem.c:454)
==49943==    by 0x4E54981: dict_set_lk (dict.c:378)
==49943==    by 0x4E54B82: dict_set (dict.c:424)
==49943==    by 0x4E579D3: dict_set_int8 (dict.c:1687)
==49943==    by 0x149E36FA: quota_lookup (quota.c:1653)
==49943==    by 0x14C1EB10: io_stats_lookup (io-stats.c:2537)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x15087A6C: server_lookup_resume (server-rpc-fops.c:3113)
==49943==    by 0x15064DE8: server_resolve_done (server-resolve.c:590)
==49943==    by 0x15064EE9: server_resolve_all (server-resolve.c:625)
==49943==    by 0x15064D8F: server_resolve (server-resolve.c:574)
==49943==    by 0x15064EC0: server_resolve_all (server-resolve.c:621)
==49943==  Address 0x14a01c29 is in a r-x mapped file /usr/local/lib/glusterfs/3.8.12/xlator/features/quota.so segment
==49943== 
==49943== Invalid read of size 1
==49943==    at 0x4C2AAB7: strcpy (vg_replace_strmem.c:506)
==49943==    by 0x4E549FE: dict_set_lk (dict.c:389)
==49943==    by 0x4E54B82: dict_set (dict.c:424)
==49943==    by 0x4E579D3: dict_set_int8 (dict.c:1687)
==49943==    by 0x149E36FA: quota_lookup (quota.c:1653)
==49943==    by 0x14C1EB10: io_stats_lookup (io-stats.c:2537)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x15087A6C: server_lookup_resume (server-rpc-fops.c:3113)
==49943==    by 0x15064DE8: server_resolve_done (server-resolve.c:590)
==49943==    by 0x15064EE9: server_resolve_all (server-resolve.c:625)
==49943==    by 0x15064D8F: server_resolve (server-resolve.c:574)
==49943==    by 0x15064EC0: server_resolve_all (server-resolve.c:621)
==49943==  Address 0x14a01c28 is in a r-x mapped file /usr/local/lib/glusterfs/3.8.12/xlator/features/quota.so segment
==49943== 
==49943== Invalid read of size 1
==49943==    at 0x4C2AAD4: strcpy (vg_replace_strmem.c:506)
==49943==    by 0x4E549FE: dict_set_lk (dict.c:389)
==49943==    by 0x4E54B82: dict_set (dict.c:424)
==49943==    by 0x4E579D3: dict_set_int8 (dict.c:1687)
==49943==    by 0x149E36FA: quota_lookup (quota.c:1653)
==49943==    by 0x14C1EB10: io_stats_lookup (io-stats.c:2537)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x15087A6C: server_lookup_resume (server-rpc-fops.c:3113)
==49943==    by 0x15064DE8: server_resolve_done (server-resolve.c:590)
==49943==    by 0x15064EE9: server_resolve_all (server-resolve.c:625)
==49943==    by 0x15064D8F: server_resolve (server-resolve.c:574)
==49943==    by 0x15064EC0: server_resolve_all (server-resolve.c:621)
==49943==  Address 0x14a01c29 is in a r-x mapped file /usr/local/lib/glusterfs/3.8.12/xlator/features/quota.so segment
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x149DDFD0: ??? (in /usr/local/lib/glusterfs/3.8.12/xlator/features/quota.so)
==49943==    by 0x149E3775: quota_lookup (quota.c:1661)
==49943==    by 0x14C1EB10: io_stats_lookup (io-stats.c:2537)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x15087A6C: server_lookup_resume (server-rpc-fops.c:3113)
==49943==    by 0x15064DE8: server_resolve_done (server-resolve.c:590)
==49943==    by 0x15064EE9: server_resolve_all (server-resolve.c:625)
==49943==    by 0x15064D8F: server_resolve (server-resolve.c:574)
==49943==    by 0x15064EC0: server_resolve_all (server-resolve.c:621)
==49943==    by 0x15064874: server_resolve_inode (server-resolve.c:428)
==49943==    by 0x15064CD4: server_resolve (server-resolve.c:562)
==49943==    by 0x15064E6B: server_resolve_all (server-resolve.c:614)
==49943==  Address 0x14c062d0 is in the GOTPLT segment of /usr/local/lib/glusterfs/3.8.12/xlator/features/quota.so
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x149DDB40: ??? (in /usr/local/lib/glusterfs/3.8.12/xlator/features/quota.so)
==49943==    by 0x149E37FF: quota_lookup (quota.c:1668)
==49943==    by 0x14C1EB10: io_stats_lookup (io-stats.c:2537)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x15087A6C: server_lookup_resume (server-rpc-fops.c:3113)
==49943==    by 0x15064DE8: server_resolve_done (server-resolve.c:590)
==49943==    by 0x15064EE9: server_resolve_all (server-resolve.c:625)
==49943==    by 0x15064D8F: server_resolve (server-resolve.c:574)
==49943==    by 0x15064EC0: server_resolve_all (server-resolve.c:621)
==49943==    by 0x15064874: server_resolve_inode (server-resolve.c:428)
==49943==    by 0x15064CD4: server_resolve (server-resolve.c:562)
==49943==    by 0x15064E6B: server_resolve_all (server-resolve.c:614)
==49943==  Address 0x14c06088 is in the GOTPLT segment of /usr/local/lib/glusterfs/3.8.12/xlator/features/quota.so
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x149E389F: quota_lookup (quota.c:1668)
==49943==    by 0x14C1EB10: io_stats_lookup (io-stats.c:2537)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x15087A6C: server_lookup_resume (server-rpc-fops.c:3113)
==49943==    by 0x15064DE8: server_resolve_done (server-resolve.c:590)
==49943==    by 0x15064EE9: server_resolve_all (server-resolve.c:625)
==49943==    by 0x15064D8F: server_resolve (server-resolve.c:574)
==49943==    by 0x15064EC0: server_resolve_all (server-resolve.c:621)
==49943==    by 0x15064874: server_resolve_inode (server-resolve.c:428)
==49943==    by 0x15064CD4: server_resolve (server-resolve.c:562)
==49943==    by 0x15064E6B: server_resolve_all (server-resolve.c:614)
==49943==    by 0x15064F80: resolve_and_resume (server-resolve.c:645)
==49943==  Address 0x14c05fd8 is in the GOT segment of /usr/local/lib/glusterfs/3.8.12/xlator/features/quota.so
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x149DDB00: ??? (in /usr/local/lib/glusterfs/3.8.12/xlator/features/quota.so)
==49943==    by 0x149E38C0: quota_lookup (quota.c:1668)
==49943==    by 0x14C1EB10: io_stats_lookup (io-stats.c:2537)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x15087A6C: server_lookup_resume (server-rpc-fops.c:3113)
==49943==    by 0x15064DE8: server_resolve_done (server-resolve.c:590)
==49943==    by 0x15064EE9: server_resolve_all (server-resolve.c:625)
==49943==    by 0x15064D8F: server_resolve (server-resolve.c:574)
==49943==    by 0x15064EC0: server_resolve_all (server-resolve.c:621)
==49943==    by 0x15064874: server_resolve_inode (server-resolve.c:428)
==49943==    by 0x15064CD4: server_resolve (server-resolve.c:562)
==49943==    by 0x15064E6B: server_resolve_all (server-resolve.c:614)
==49943==  Address 0x14c06068 is in the GOTPLT segment of /usr/local/lib/glusterfs/3.8.12/xlator/features/quota.so
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x149E38D8: quota_lookup (quota.c:1668)
==49943==    by 0x14C1EB10: io_stats_lookup (io-stats.c:2537)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x15087A6C: server_lookup_resume (server-rpc-fops.c:3113)
==49943==    by 0x15064DE8: server_resolve_done (server-resolve.c:590)
==49943==    by 0x15064EE9: server_resolve_all (server-resolve.c:625)
==49943==    by 0x15064D8F: server_resolve (server-resolve.c:574)
==49943==    by 0x15064EC0: server_resolve_all (server-resolve.c:621)
==49943==    by 0x15064874: server_resolve_inode (server-resolve.c:428)
==49943==    by 0x15064CD4: server_resolve (server-resolve.c:562)
==49943==    by 0x15064E6B: server_resolve_all (server-resolve.c:614)
==49943==    by 0x15064F80: resolve_and_resume (server-resolve.c:645)
==49943==  Address 0x14c05fd8 is in the GOT segment of /usr/local/lib/glusterfs/3.8.12/xlator/features/quota.so
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x149DE060: ??? (in /usr/local/lib/glusterfs/3.8.12/xlator/features/quota.so)
==49943==    by 0x149E38FA: quota_lookup (quota.c:1668)
==49943==    by 0x14C1EB10: io_stats_lookup (io-stats.c:2537)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x15087A6C: server_lookup_resume (server-rpc-fops.c:3113)
==49943==    by 0x15064DE8: server_resolve_done (server-resolve.c:590)
==49943==    by 0x15064EE9: server_resolve_all (server-resolve.c:625)
==49943==    by 0x15064D8F: server_resolve (server-resolve.c:574)
==49943==    by 0x15064EC0: server_resolve_all (server-resolve.c:621)
==49943==    by 0x15064874: server_resolve_inode (server-resolve.c:428)
==49943==    by 0x15064CD4: server_resolve (server-resolve.c:562)
==49943==    by 0x15064E6B: server_resolve_all (server-resolve.c:614)
==49943==  Address 0x14c06318 is in the GOTPLT segment of /usr/local/lib/glusterfs/3.8.12/xlator/features/quota.so
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x149E394E: quota_lookup (quota.c:1668)
==49943==    by 0x14C1EB10: io_stats_lookup (io-stats.c:2537)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x15087A6C: server_lookup_resume (server-rpc-fops.c:3113)
==49943==    by 0x15064DE8: server_resolve_done (server-resolve.c:590)
==49943==    by 0x15064EE9: server_resolve_all (server-resolve.c:625)
==49943==    by 0x15064D8F: server_resolve (server-resolve.c:574)
==49943==    by 0x15064EC0: server_resolve_all (server-resolve.c:621)
==49943==    by 0x15064874: server_resolve_inode (server-resolve.c:428)
==49943==    by 0x15064CD4: server_resolve (server-resolve.c:562)
==49943==    by 0x15064E6B: server_resolve_all (server-resolve.c:614)
==49943==    by 0x15064F80: resolve_and_resume (server-resolve.c:645)
==49943==  Address 0x14c05fd8 is in the GOT segment of /usr/local/lib/glusterfs/3.8.12/xlator/features/quota.so
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x149DDBD0: ??? (in /usr/local/lib/glusterfs/3.8.12/xlator/features/quota.so)
==49943==    by 0x149E3970: quota_lookup (quota.c:1668)
==49943==    by 0x14C1EB10: io_stats_lookup (io-stats.c:2537)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x15087A6C: server_lookup_resume (server-rpc-fops.c:3113)
==49943==    by 0x15064DE8: server_resolve_done (server-resolve.c:590)
==49943==    by 0x15064EE9: server_resolve_all (server-resolve.c:625)
==49943==    by 0x15064D8F: server_resolve (server-resolve.c:574)
==49943==    by 0x15064EC0: server_resolve_all (server-resolve.c:621)
==49943==    by 0x15064874: server_resolve_inode (server-resolve.c:428)
==49943==    by 0x15064CD4: server_resolve (server-resolve.c:562)
==49943==    by 0x15064E6B: server_resolve_all (server-resolve.c:614)
==49943==  Address 0x14c060d0 is in the GOTPLT segment of /usr/local/lib/glusterfs/3.8.12/xlator/features/quota.so
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x149DE020: ??? (in /usr/local/lib/glusterfs/3.8.12/xlator/features/quota.so)
==49943==    by 0x149E3992: quota_lookup (quota.c:1668)
==49943==    by 0x14C1EB10: io_stats_lookup (io-stats.c:2537)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x15087A6C: server_lookup_resume (server-rpc-fops.c:3113)
==49943==    by 0x15064DE8: server_resolve_done (server-resolve.c:590)
==49943==    by 0x15064EE9: server_resolve_all (server-resolve.c:625)
==49943==    by 0x15064D8F: server_resolve (server-resolve.c:574)
==49943==    by 0x15064EC0: server_resolve_all (server-resolve.c:621)
==49943==    by 0x15064874: server_resolve_inode (server-resolve.c:428)
==49943==    by 0x15064CD4: server_resolve (server-resolve.c:562)
==49943==    by 0x15064E6B: server_resolve_all (server-resolve.c:614)
==49943==  Address 0x14c062f8 is in the GOTPLT segment of /usr/local/lib/glusterfs/3.8.12/xlator/features/quota.so
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x149DE020: ??? (in /usr/local/lib/glusterfs/3.8.12/xlator/features/quota.so)
==49943==    by 0x149E39A3: quota_lookup (quota.c:1668)
==49943==    by 0x14C1EB10: io_stats_lookup (io-stats.c:2537)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x15087A6C: server_lookup_resume (server-rpc-fops.c:3113)
==49943==    by 0x15064DE8: server_resolve_done (server-resolve.c:590)
==49943==    by 0x15064EE9: server_resolve_all (server-resolve.c:625)
==49943==    by 0x15064D8F: server_resolve (server-resolve.c:574)
==49943==    by 0x15064EC0: server_resolve_all (server-resolve.c:621)
==49943==    by 0x15064874: server_resolve_inode (server-resolve.c:428)
==49943==    by 0x15064CD4: server_resolve (server-resolve.c:562)
==49943==    by 0x15064E6B: server_resolve_all (server-resolve.c:614)
==49943==  Address 0x14c062f8 is in the GOTPLT segment of /usr/local/lib/glusterfs/3.8.12/xlator/features/quota.so
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x149DE020: ??? (in /usr/local/lib/glusterfs/3.8.12/xlator/features/quota.so)
==49943==    by 0x149E39BE: quota_lookup (quota.c:1668)
==49943==    by 0x14C1EB10: io_stats_lookup (io-stats.c:2537)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x15087A6C: server_lookup_resume (server-rpc-fops.c:3113)
==49943==    by 0x15064DE8: server_resolve_done (server-resolve.c:590)
==49943==    by 0x15064EE9: server_resolve_all (server-resolve.c:625)
==49943==    by 0x15064D8F: server_resolve (server-resolve.c:574)
==49943==    by 0x15064EC0: server_resolve_all (server-resolve.c:621)
==49943==    by 0x15064874: server_resolve_inode (server-resolve.c:428)
==49943==    by 0x15064CD4: server_resolve (server-resolve.c:562)
==49943==    by 0x15064E6B: server_resolve_all (server-resolve.c:614)
==49943==  Address 0x14c062f8 is in the GOTPLT segment of /usr/local/lib/glusterfs/3.8.12/xlator/features/quota.so
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x149DDC10: ??? (in /usr/local/lib/glusterfs/3.8.12/xlator/features/quota.so)
==49943==    by 0x149E3A30: quota_lookup (quota.c:1668)
==49943==    by 0x14C1EB10: io_stats_lookup (io-stats.c:2537)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x15087A6C: server_lookup_resume (server-rpc-fops.c:3113)
==49943==    by 0x15064DE8: server_resolve_done (server-resolve.c:590)
==49943==    by 0x15064EE9: server_resolve_all (server-resolve.c:625)
==49943==    by 0x15064D8F: server_resolve (server-resolve.c:574)
==49943==    by 0x15064EC0: server_resolve_all (server-resolve.c:621)
==49943==    by 0x15064874: server_resolve_inode (server-resolve.c:428)
==49943==    by 0x15064CD4: server_resolve (server-resolve.c:562)
==49943==    by 0x15064E6B: server_resolve_all (server-resolve.c:614)
==49943==  Address 0x14c060f0 is in the GOTPLT segment of /usr/local/lib/glusterfs/3.8.12/xlator/features/quota.so
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x149E3A84: quota_lookup (quota.c:1668)
==49943==    by 0x14C1EB10: io_stats_lookup (io-stats.c:2537)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x15087A6C: server_lookup_resume (server-rpc-fops.c:3113)
==49943==    by 0x15064DE8: server_resolve_done (server-resolve.c:590)
==49943==    by 0x15064EE9: server_resolve_all (server-resolve.c:625)
==49943==    by 0x15064D8F: server_resolve (server-resolve.c:574)
==49943==    by 0x15064EC0: server_resolve_all (server-resolve.c:621)
==49943==    by 0x15064874: server_resolve_inode (server-resolve.c:428)
==49943==    by 0x15064CD4: server_resolve (server-resolve.c:562)
==49943==    by 0x15064E6B: server_resolve_all (server-resolve.c:614)
==49943==    by 0x15064F80: resolve_and_resume (server-resolve.c:645)
==49943==  Address 0x149da000 is 0 bytes inside data symbol "fops"
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x147C9FC0: ??? (in /usr/local/lib/glusterfs/3.8.12/xlator/features/index.so)
==49943==    by 0x147CA26D: gf_uuid_is_null (compat-uuid.h:45)
==49943==    by 0x147CAFEF: index_is_fop_on_internal_inode (index.c:142)
==49943==    by 0x147D2CDC: index_lookup (index.c:2023)
==49943==    by 0x149E3AA8: quota_lookup (quota.c:1668)
==49943==    by 0x14C1EB10: io_stats_lookup (io-stats.c:2537)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x15087A6C: server_lookup_resume (server-rpc-fops.c:3113)
==49943==    by 0x15064DE8: server_resolve_done (server-resolve.c:590)
==49943==    by 0x15064EE9: server_resolve_all (server-resolve.c:625)
==49943==    by 0x15064D8F: server_resolve (server-resolve.c:574)
==49943==    by 0x15064EC0: server_resolve_all (server-resolve.c:621)
==49943==  Address 0x149d9390 is in the GOTPLT segment of /usr/local/lib/glusterfs/3.8.12/xlator/features/index.so
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x147C9EA0: ??? (in /usr/local/lib/glusterfs/3.8.12/xlator/features/index.so)
==49943==    by 0x147CA239: gf_uuid_copy (compat-uuid.h:33)
==49943==    by 0x147CB006: index_is_fop_on_internal_inode (index.c:143)
==49943==    by 0x147D2CDC: index_lookup (index.c:2023)
==49943==    by 0x149E3AA8: quota_lookup (quota.c:1668)
==49943==    by 0x14C1EB10: io_stats_lookup (io-stats.c:2537)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x15087A6C: server_lookup_resume (server-rpc-fops.c:3113)
==49943==    by 0x15064DE8: server_resolve_done (server-resolve.c:590)
==49943==    by 0x15064EE9: server_resolve_all (server-resolve.c:625)
==49943==    by 0x15064D8F: server_resolve (server-resolve.c:574)
==49943==    by 0x15064EC0: server_resolve_all (server-resolve.c:621)
==49943==  Address 0x149d9300 is in the GOTPLT segment of /usr/local/lib/glusterfs/3.8.12/xlator/features/index.so
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x147C9E00: ??? (in /usr/local/lib/glusterfs/3.8.12/xlator/features/index.so)
==49943==    by 0x147CA214: gf_uuid_compare (compat-uuid.h:27)
==49943==    by 0x147CACE3: index_get_type_from_vgfid (index.c:46)
==49943==    by 0x147CAD20: index_is_virtual_gfid (index.c:55)
==49943==    by 0x147CB032: index_is_fop_on_internal_inode (index.c:147)
==49943==    by 0x147D2CDC: index_lookup (index.c:2023)
==49943==    by 0x149E3AA8: quota_lookup (quota.c:1668)
==49943==    by 0x14C1EB10: io_stats_lookup (io-stats.c:2537)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x15087A6C: server_lookup_resume (server-rpc-fops.c:3113)
==49943==    by 0x15064DE8: server_resolve_done (server-resolve.c:590)
==49943==    by 0x15064EE9: server_resolve_all (server-resolve.c:625)
==49943==  Address 0x149d92b0 is in the GOTPLT segment of /usr/local/lib/glusterfs/3.8.12/xlator/features/index.so
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x5799623: uuid_compare (in /usr/lib64/libuuid.so.1.3.0)
==49943==    by 0x147CA214: gf_uuid_compare (compat-uuid.h:27)
==49943==    by 0x147CACE3: index_get_type_from_vgfid (index.c:46)
==49943==    by 0x147CAD20: index_is_virtual_gfid (index.c:55)
==49943==    by 0x147CB032: index_is_fop_on_internal_inode (index.c:147)
==49943==    by 0x147D2CDC: index_lookup (index.c:2023)
==49943==    by 0x149E3AA8: quota_lookup (quota.c:1668)
==49943==    by 0x14C1EB10: io_stats_lookup (io-stats.c:2537)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x15087A6C: server_lookup_resume (server-rpc-fops.c:3113)
==49943==    by 0x15064DE8: server_resolve_done (server-resolve.c:590)
==49943==    by 0x15064EE9: server_resolve_all (server-resolve.c:625)
==49943==  Address 0x1215d728 is in a rw- anonymous segment
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x5799656: uuid_compare (in /usr/lib64/libuuid.so.1.3.0)
==49943==    by 0x147CA214: gf_uuid_compare (compat-uuid.h:27)
==49943==    by 0x147CACE3: index_get_type_from_vgfid (index.c:46)
==49943==    by 0x147CAD20: index_is_virtual_gfid (index.c:55)
==49943==    by 0x147CB032: index_is_fop_on_internal_inode (index.c:147)
==49943==    by 0x147D2CDC: index_lookup (index.c:2023)
==49943==    by 0x149E3AA8: quota_lookup (quota.c:1668)
==49943==    by 0x14C1EB10: io_stats_lookup (io-stats.c:2537)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x15087A6C: server_lookup_resume (server-rpc-fops.c:3113)
==49943==    by 0x15064DE8: server_resolve_done (server-resolve.c:590)
==49943==    by 0x15064EE9: server_resolve_all (server-resolve.c:625)
==49943==  Address 0x1215d728 is in a rw- anonymous segment
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x147CAE41: index_inode_ctx_get (index.c:96)
==49943==    by 0x147CAF10: index_is_subdir_of_entry_changes (index.c:115)
==49943==    by 0x147CB050: index_is_fop_on_internal_inode (index.c:149)
==49943==    by 0x147D2CDC: index_lookup (index.c:2023)
==49943==    by 0x149E3AA8: quota_lookup (quota.c:1668)
==49943==    by 0x14C1EB10: io_stats_lookup (io-stats.c:2537)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x15087A6C: server_lookup_resume (server-rpc-fops.c:3113)
==49943==    by 0x15064DE8: server_resolve_done (server-resolve.c:590)
==49943==    by 0x15064EE9: server_resolve_all (server-resolve.c:625)
==49943==    by 0x15064D8F: server_resolve (server-resolve.c:574)
==49943==    by 0x15064EC0: server_resolve_all (server-resolve.c:621)
==49943==  Address 0x149d8fc8 is in the GOT segment of /usr/local/lib/glusterfs/3.8.12/xlator/features/index.so
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x147C9F80: ??? (in /usr/local/lib/glusterfs/3.8.12/xlator/features/index.so)
==49943==    by 0x147CAE5D: index_inode_ctx_get (index.c:96)
==49943==    by 0x147CAF10: index_is_subdir_of_entry_changes (index.c:115)
==49943==    by 0x147CB050: index_is_fop_on_internal_inode (index.c:149)
==49943==    by 0x147D2CDC: index_lookup (index.c:2023)
==49943==    by 0x149E3AA8: quota_lookup (quota.c:1668)
==49943==    by 0x14C1EB10: io_stats_lookup (io-stats.c:2537)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x15087A6C: server_lookup_resume (server-rpc-fops.c:3113)
==49943==    by 0x15064DE8: server_resolve_done (server-resolve.c:590)
==49943==    by 0x15064EE9: server_resolve_all (server-resolve.c:625)
==49943==    by 0x15064D8F: server_resolve (server-resolve.c:574)
==49943==  Address 0x149d9370 is in the GOTPLT segment of /usr/local/lib/glusterfs/3.8.12/xlator/features/index.so
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x147C9A90: ??? (in /usr/local/lib/glusterfs/3.8.12/xlator/features/index.so)
==49943==    by 0x147CAD74: __index_inode_ctx_get (index.c:67)
==49943==    by 0x147CAE86: index_inode_ctx_get (index.c:98)
==49943==    by 0x147CAF10: index_is_subdir_of_entry_changes (index.c:115)
==49943==    by 0x147CB050: index_is_fop_on_internal_inode (index.c:149)
==49943==    by 0x147D2CDC: index_lookup (index.c:2023)
==49943==    by 0x149E3AA8: quota_lookup (quota.c:1668)
==49943==    by 0x14C1EB10: io_stats_lookup (io-stats.c:2537)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x15087A6C: server_lookup_resume (server-rpc-fops.c:3113)
==49943==    by 0x15064DE8: server_resolve_done (server-resolve.c:590)
==49943==    by 0x15064EE9: server_resolve_all (server-resolve.c:625)
==49943==  Address 0x149d90f8 is in the GOTPLT segment of /usr/local/lib/glusterfs/3.8.12/xlator/features/index.so
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x147CAE8A: index_inode_ctx_get (index.c:100)
==49943==    by 0x147CAF10: index_is_subdir_of_entry_changes (index.c:115)
==49943==    by 0x147CB050: index_is_fop_on_internal_inode (index.c:149)
==49943==    by 0x147D2CDC: index_lookup (index.c:2023)
==49943==    by 0x149E3AA8: quota_lookup (quota.c:1668)
==49943==    by 0x14C1EB10: io_stats_lookup (io-stats.c:2537)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x15087A6C: server_lookup_resume (server-rpc-fops.c:3113)
==49943==    by 0x15064DE8: server_resolve_done (server-resolve.c:590)
==49943==    by 0x15064EE9: server_resolve_all (server-resolve.c:625)
==49943==    by 0x15064D8F: server_resolve (server-resolve.c:574)
==49943==    by 0x15064EC0: server_resolve_all (server-resolve.c:621)
==49943==  Address 0x149d8fc8 is in the GOT segment of /usr/local/lib/glusterfs/3.8.12/xlator/features/index.so
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x147C9AB0: ??? (in /usr/local/lib/glusterfs/3.8.12/xlator/features/index.so)
==49943==    by 0x147CAEA6: index_inode_ctx_get (index.c:100)
==49943==    by 0x147CAF10: index_is_subdir_of_entry_changes (index.c:115)
==49943==    by 0x147CB050: index_is_fop_on_internal_inode (index.c:149)
==49943==    by 0x147D2CDC: index_lookup (index.c:2023)
==49943==    by 0x149E3AA8: quota_lookup (quota.c:1668)
==49943==    by 0x14C1EB10: io_stats_lookup (io-stats.c:2537)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x15087A6C: server_lookup_resume (server-rpc-fops.c:3113)
==49943==    by 0x15064DE8: server_resolve_done (server-resolve.c:590)
==49943==    by 0x15064EE9: server_resolve_all (server-resolve.c:625)
==49943==    by 0x15064D8F: server_resolve (server-resolve.c:574)
==49943==  Address 0x149d9108 is in the GOTPLT segment of /usr/local/lib/glusterfs/3.8.12/xlator/features/index.so
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x147C9D30: ??? (in /usr/local/lib/glusterfs/3.8.12/xlator/features/index.so)
==49943==    by 0x147D2CF7: index_lookup (index.c:2024)
==49943==    by 0x149E3AA8: quota_lookup (quota.c:1668)
==49943==    by 0x14C1EB10: io_stats_lookup (io-stats.c:2537)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x15087A6C: server_lookup_resume (server-rpc-fops.c:3113)
==49943==    by 0x15064DE8: server_resolve_done (server-resolve.c:590)
==49943==    by 0x15064EE9: server_resolve_all (server-resolve.c:625)
==49943==    by 0x15064D8F: server_resolve (server-resolve.c:574)
==49943==    by 0x15064EC0: server_resolve_all (server-resolve.c:621)
==49943==    by 0x15064874: server_resolve_inode (server-resolve.c:428)
==49943==    by 0x15064CD4: server_resolve (server-resolve.c:562)
==49943==  Address 0x149d9248 is in the GOTPLT segment of /usr/local/lib/glusterfs/3.8.12/xlator/features/index.so
==49943== 
==49943== Invalid read of size 4
==49943==    at 0x60B4BE3: pthread_mutex_lock (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x4E73939: inode_is_linked (inode.c:2302)
==49943==    by 0x147D2CF7: index_lookup (index.c:2024)
==49943==    by 0x149E3AA8: quota_lookup (quota.c:1668)
==49943==    by 0x14C1EB10: io_stats_lookup (io-stats.c:2537)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x15087A6C: server_lookup_resume (server-rpc-fops.c:3113)
==49943==    by 0x15064DE8: server_resolve_done (server-resolve.c:590)
==49943==    by 0x15064EE9: server_resolve_all (server-resolve.c:625)
==49943==    by 0x15064D8F: server_resolve (server-resolve.c:574)
==49943==    by 0x15064EC0: server_resolve_all (server-resolve.c:621)
==49943==    by 0x15064874: server_resolve_inode (server-resolve.c:428)
==49943==  Address 0x1215d9d0 is in a rw- anonymous segment
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x147C9D00: ??? (in /usr/local/lib/glusterfs/3.8.12/xlator/features/index.so)
==49943==    by 0x147D305B: index_lookup (index.c:2046)
==49943==    by 0x149E3AA8: quota_lookup (quota.c:1668)
==49943==    by 0x14C1EB10: io_stats_lookup (io-stats.c:2537)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x15087A6C: server_lookup_resume (server-rpc-fops.c:3113)
==49943==    by 0x15064DE8: server_resolve_done (server-resolve.c:590)
==49943==    by 0x15064EE9: server_resolve_all (server-resolve.c:625)
==49943==    by 0x15064D8F: server_resolve (server-resolve.c:574)
==49943==    by 0x15064EC0: server_resolve_all (server-resolve.c:621)
==49943==    by 0x15064874: server_resolve_inode (server-resolve.c:428)
==49943==    by 0x15064CD4: server_resolve (server-resolve.c:562)
==49943==  Address 0x149d9230 is in the GOTPLT segment of /usr/local/lib/glusterfs/3.8.12/xlator/features/index.so
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x147C9A30: ??? (in /usr/local/lib/glusterfs/3.8.12/xlator/features/index.so)
==49943==    by 0x147D3397: index_lookup (index.c:2051)
==49943==    by 0x149E3AA8: quota_lookup (quota.c:1668)
==49943==    by 0x14C1EB10: io_stats_lookup (io-stats.c:2537)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x15087A6C: server_lookup_resume (server-rpc-fops.c:3113)
==49943==    by 0x15064DE8: server_resolve_done (server-resolve.c:590)
==49943==    by 0x15064EE9: server_resolve_all (server-resolve.c:625)
==49943==    by 0x15064D8F: server_resolve (server-resolve.c:574)
==49943==    by 0x15064EC0: server_resolve_all (server-resolve.c:621)
==49943==    by 0x15064874: server_resolve_inode (server-resolve.c:428)
==49943==    by 0x15064CD4: server_resolve (server-resolve.c:562)
==49943==  Address 0x149d90c8 is in the GOTPLT segment of /usr/local/lib/glusterfs/3.8.12/xlator/features/index.so
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x147D33A8: index_lookup (index.c:2051)
==49943==    by 0x149E3AA8: quota_lookup (quota.c:1668)
==49943==    by 0x14C1EB10: io_stats_lookup (io-stats.c:2537)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x15087A6C: server_lookup_resume (server-rpc-fops.c:3113)
==49943==    by 0x15064DE8: server_resolve_done (server-resolve.c:590)
==49943==    by 0x15064EE9: server_resolve_all (server-resolve.c:625)
==49943==    by 0x15064D8F: server_resolve (server-resolve.c:574)
==49943==    by 0x15064EC0: server_resolve_all (server-resolve.c:621)
==49943==    by 0x15064874: server_resolve_inode (server-resolve.c:428)
==49943==    by 0x15064CD4: server_resolve (server-resolve.c:562)
==49943==    by 0x15064E6B: server_resolve_all (server-resolve.c:614)
==49943==  Address 0x149d8f90 is in the GOT segment of /usr/local/lib/glusterfs/3.8.12/xlator/features/index.so
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x147D3437: index_lookup (index.c:2051)
==49943==    by 0x149E3AA8: quota_lookup (quota.c:1668)
==49943==    by 0x14C1EB10: io_stats_lookup (io-stats.c:2537)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x15087A6C: server_lookup_resume (server-rpc-fops.c:3113)
==49943==    by 0x15064DE8: server_resolve_done (server-resolve.c:590)
==49943==    by 0x15064EE9: server_resolve_all (server-resolve.c:625)
==49943==    by 0x15064D8F: server_resolve (server-resolve.c:574)
==49943==    by 0x15064EC0: server_resolve_all (server-resolve.c:621)
==49943==    by 0x15064874: server_resolve_inode (server-resolve.c:428)
==49943==    by 0x15064CD4: server_resolve (server-resolve.c:562)
==49943==    by 0x15064E6B: server_resolve_all (server-resolve.c:614)
==49943==  Address 0x149d8fc8 is in the GOT segment of /usr/local/lib/glusterfs/3.8.12/xlator/features/index.so
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x147C99D0: ??? (in /usr/local/lib/glusterfs/3.8.12/xlator/features/index.so)
==49943==    by 0x147D3458: index_lookup (index.c:2051)
==49943==    by 0x149E3AA8: quota_lookup (quota.c:1668)
==49943==    by 0x14C1EB10: io_stats_lookup (io-stats.c:2537)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x15087A6C: server_lookup_resume (server-rpc-fops.c:3113)
==49943==    by 0x15064DE8: server_resolve_done (server-resolve.c:590)
==49943==    by 0x15064EE9: server_resolve_all (server-resolve.c:625)
==49943==    by 0x15064D8F: server_resolve (server-resolve.c:574)
==49943==    by 0x15064EC0: server_resolve_all (server-resolve.c:621)
==49943==    by 0x15064874: server_resolve_inode (server-resolve.c:428)
==49943==    by 0x15064CD4: server_resolve (server-resolve.c:562)
==49943==  Address 0x149d9098 is in the GOTPLT segment of /usr/local/lib/glusterfs/3.8.12/xlator/features/index.so
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x147D3470: index_lookup (index.c:2051)
==49943==    by 0x149E3AA8: quota_lookup (quota.c:1668)
==49943==    by 0x14C1EB10: io_stats_lookup (io-stats.c:2537)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x15087A6C: server_lookup_resume (server-rpc-fops.c:3113)
==49943==    by 0x15064DE8: server_resolve_done (server-resolve.c:590)
==49943==    by 0x15064EE9: server_resolve_all (server-resolve.c:625)
==49943==    by 0x15064D8F: server_resolve (server-resolve.c:574)
==49943==    by 0x15064EC0: server_resolve_all (server-resolve.c:621)
==49943==    by 0x15064874: server_resolve_inode (server-resolve.c:428)
==49943==    by 0x15064CD4: server_resolve (server-resolve.c:562)
==49943==    by 0x15064E6B: server_resolve_all (server-resolve.c:614)
==49943==  Address 0x149d8fc8 is in the GOT segment of /usr/local/lib/glusterfs/3.8.12/xlator/features/index.so
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x147C9F80: ??? (in /usr/local/lib/glusterfs/3.8.12/xlator/features/index.so)
==49943==    by 0x147D3492: index_lookup (index.c:2051)
==49943==    by 0x149E3AA8: quota_lookup (quota.c:1668)
==49943==    by 0x14C1EB10: io_stats_lookup (io-stats.c:2537)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x15087A6C: server_lookup_resume (server-rpc-fops.c:3113)
==49943==    by 0x15064DE8: server_resolve_done (server-resolve.c:590)
==49943==    by 0x15064EE9: server_resolve_all (server-resolve.c:625)
==49943==    by 0x15064D8F: server_resolve (server-resolve.c:574)
==49943==    by 0x15064EC0: server_resolve_all (server-resolve.c:621)
==49943==    by 0x15064874: server_resolve_inode (server-resolve.c:428)
==49943==    by 0x15064CD4: server_resolve (server-resolve.c:562)
==49943==  Address 0x149d9370 is in the GOTPLT segment of /usr/local/lib/glusterfs/3.8.12/xlator/features/index.so
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x147D34E6: index_lookup (index.c:2051)
==49943==    by 0x149E3AA8: quota_lookup (quota.c:1668)
==49943==    by 0x14C1EB10: io_stats_lookup (io-stats.c:2537)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x15087A6C: server_lookup_resume (server-rpc-fops.c:3113)
==49943==    by 0x15064DE8: server_resolve_done (server-resolve.c:590)
==49943==    by 0x15064EE9: server_resolve_all (server-resolve.c:625)
==49943==    by 0x15064D8F: server_resolve (server-resolve.c:574)
==49943==    by 0x15064EC0: server_resolve_all (server-resolve.c:621)
==49943==    by 0x15064874: server_resolve_inode (server-resolve.c:428)
==49943==    by 0x15064CD4: server_resolve (server-resolve.c:562)
==49943==    by 0x15064E6B: server_resolve_all (server-resolve.c:614)
==49943==  Address 0x149d8fc8 is in the GOT segment of /usr/local/lib/glusterfs/3.8.12/xlator/features/index.so
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x147C9AB0: ??? (in /usr/local/lib/glusterfs/3.8.12/xlator/features/index.so)
==49943==    by 0x147D3508: index_lookup (index.c:2051)
==49943==    by 0x149E3AA8: quota_lookup (quota.c:1668)
==49943==    by 0x14C1EB10: io_stats_lookup (io-stats.c:2537)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x15087A6C: server_lookup_resume (server-rpc-fops.c:3113)
==49943==    by 0x15064DE8: server_resolve_done (server-resolve.c:590)
==49943==    by 0x15064EE9: server_resolve_all (server-resolve.c:625)
==49943==    by 0x15064D8F: server_resolve (server-resolve.c:574)
==49943==    by 0x15064EC0: server_resolve_all (server-resolve.c:621)
==49943==    by 0x15064874: server_resolve_inode (server-resolve.c:428)
==49943==    by 0x15064CD4: server_resolve (server-resolve.c:562)
==49943==  Address 0x149d9108 is in the GOTPLT segment of /usr/local/lib/glusterfs/3.8.12/xlator/features/index.so
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x147C9F50: ??? (in /usr/local/lib/glusterfs/3.8.12/xlator/features/index.so)
==49943==    by 0x147D352A: index_lookup (index.c:2051)
==49943==    by 0x149E3AA8: quota_lookup (quota.c:1668)
==49943==    by 0x14C1EB10: io_stats_lookup (io-stats.c:2537)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x15087A6C: server_lookup_resume (server-rpc-fops.c:3113)
==49943==    by 0x15064DE8: server_resolve_done (server-resolve.c:590)
==49943==    by 0x15064EE9: server_resolve_all (server-resolve.c:625)
==49943==    by 0x15064D8F: server_resolve (server-resolve.c:574)
==49943==    by 0x15064EC0: server_resolve_all (server-resolve.c:621)
==49943==    by 0x15064874: server_resolve_inode (server-resolve.c:428)
==49943==    by 0x15064CD4: server_resolve (server-resolve.c:562)
==49943==  Address 0x149d9358 is in the GOTPLT segment of /usr/local/lib/glusterfs/3.8.12/xlator/features/index.so
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x147C9F50: ??? (in /usr/local/lib/glusterfs/3.8.12/xlator/features/index.so)
==49943==    by 0x147D353B: index_lookup (index.c:2051)
==49943==    by 0x149E3AA8: quota_lookup (quota.c:1668)
==49943==    by 0x14C1EB10: io_stats_lookup (io-stats.c:2537)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x15087A6C: server_lookup_resume (server-rpc-fops.c:3113)
==49943==    by 0x15064DE8: server_resolve_done (server-resolve.c:590)
==49943==    by 0x15064EE9: server_resolve_all (server-resolve.c:625)
==49943==    by 0x15064D8F: server_resolve (server-resolve.c:574)
==49943==    by 0x15064EC0: server_resolve_all (server-resolve.c:621)
==49943==    by 0x15064874: server_resolve_inode (server-resolve.c:428)
==49943==    by 0x15064CD4: server_resolve (server-resolve.c:562)
==49943==  Address 0x149d9358 is in the GOTPLT segment of /usr/local/lib/glusterfs/3.8.12/xlator/features/index.so
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x147C9F50: ??? (in /usr/local/lib/glusterfs/3.8.12/xlator/features/index.so)
==49943==    by 0x147D3556: index_lookup (index.c:2051)
==49943==    by 0x149E3AA8: quota_lookup (quota.c:1668)
==49943==    by 0x14C1EB10: io_stats_lookup (io-stats.c:2537)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x15087A6C: server_lookup_resume (server-rpc-fops.c:3113)
==49943==    by 0x15064DE8: server_resolve_done (server-resolve.c:590)
==49943==    by 0x15064EE9: server_resolve_all (server-resolve.c:625)
==49943==    by 0x15064D8F: server_resolve (server-resolve.c:574)
==49943==    by 0x15064EC0: server_resolve_all (server-resolve.c:621)
==49943==    by 0x15064874: server_resolve_inode (server-resolve.c:428)
==49943==    by 0x15064CD4: server_resolve (server-resolve.c:562)
==49943==  Address 0x149d9358 is in the GOTPLT segment of /usr/local/lib/glusterfs/3.8.12/xlator/features/index.so
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x147C9B40: ??? (in /usr/local/lib/glusterfs/3.8.12/xlator/features/index.so)
==49943==    by 0x147D35C8: index_lookup (index.c:2051)
==49943==    by 0x149E3AA8: quota_lookup (quota.c:1668)
==49943==    by 0x14C1EB10: io_stats_lookup (io-stats.c:2537)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x15087A6C: server_lookup_resume (server-rpc-fops.c:3113)
==49943==    by 0x15064DE8: server_resolve_done (server-resolve.c:590)
==49943==    by 0x15064EE9: server_resolve_all (server-resolve.c:625)
==49943==    by 0x15064D8F: server_resolve (server-resolve.c:574)
==49943==    by 0x15064EC0: server_resolve_all (server-resolve.c:621)
==49943==    by 0x15064874: server_resolve_inode (server-resolve.c:428)
==49943==    by 0x15064CD4: server_resolve (server-resolve.c:562)
==49943==  Address 0x149d9150 is in the GOTPLT segment of /usr/local/lib/glusterfs/3.8.12/xlator/features/index.so
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x147D361C: index_lookup (index.c:2051)
==49943==    by 0x149E3AA8: quota_lookup (quota.c:1668)
==49943==    by 0x14C1EB10: io_stats_lookup (io-stats.c:2537)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x15087A6C: server_lookup_resume (server-rpc-fops.c:3113)
==49943==    by 0x15064DE8: server_resolve_done (server-resolve.c:590)
==49943==    by 0x15064EE9: server_resolve_all (server-resolve.c:625)
==49943==    by 0x15064D8F: server_resolve (server-resolve.c:574)
==49943==    by 0x15064EC0: server_resolve_all (server-resolve.c:621)
==49943==    by 0x15064874: server_resolve_inode (server-resolve.c:428)
==49943==    by 0x15064CD4: server_resolve (server-resolve.c:562)
==49943==    by 0x15064E6B: server_resolve_all (server-resolve.c:614)
==49943==  Address 0x147c61a0 is 0 bytes inside data symbol "fops"
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x4F1061F: default_lookup (defaults.c:2572)
==49943==    by 0x147D3640: index_lookup (index.c:2051)
==49943==    by 0x149E3AA8: quota_lookup (quota.c:1668)
==49943==    by 0x14C1EB10: io_stats_lookup (io-stats.c:2537)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x15087A6C: server_lookup_resume (server-rpc-fops.c:3113)
==49943==    by 0x15064DE8: server_resolve_done (server-resolve.c:590)
==49943==    by 0x15064EE9: server_resolve_all (server-resolve.c:625)
==49943==    by 0x15064D8F: server_resolve (server-resolve.c:574)
==49943==    by 0x15064EC0: server_resolve_all (server-resolve.c:621)
==49943==    by 0x15064874: server_resolve_inode (server-resolve.c:428)
==49943==    by 0x15064CD4: server_resolve (server-resolve.c:562)
==49943==  Address 0x145ba680 is 0 bytes inside data symbol "fops"
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x14392770: ??? (in /usr/local/lib/glusterfs/3.8.12/xlator/features/marker.so)
==49943==    by 0x143A6F03: marker_lookup (marker.c:2982)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x147D3640: index_lookup (index.c:2051)
==49943==    by 0x149E3AA8: quota_lookup (quota.c:1668)
==49943==    by 0x14C1EB10: io_stats_lookup (io-stats.c:2537)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x15087A6C: server_lookup_resume (server-rpc-fops.c:3113)
==49943==    by 0x15064DE8: server_resolve_done (server-resolve.c:590)
==49943==    by 0x15064EE9: server_resolve_all (server-resolve.c:625)
==49943==    by 0x15064D8F: server_resolve (server-resolve.c:574)
==49943==    by 0x15064EC0: server_resolve_all (server-resolve.c:621)
==49943==  Address 0x145b9028 is in the GOTPLT segment of /usr/local/lib/glusterfs/3.8.12/xlator/features/marker.so
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x14393C23: marker_key_replace_with_ver (marker.c:63)
==49943==    by 0x143A6F2D: marker_lookup (marker.c:2986)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x147D3640: index_lookup (index.c:2051)
==49943==    by 0x149E3AA8: quota_lookup (quota.c:1668)
==49943==    by 0x14C1EB10: io_stats_lookup (io-stats.c:2537)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x15087A6C: server_lookup_resume (server-rpc-fops.c:3113)
==49943==    by 0x15064DE8: server_resolve_done (server-resolve.c:590)
==49943==    by 0x15064EE9: server_resolve_all (server-resolve.c:625)
==49943==    by 0x15064D8F: server_resolve (server-resolve.c:574)
==49943==    by 0x15064EC0: server_resolve_all (server-resolve.c:621)
==49943==  Address 0x145b93e0 is 0 bytes inside data symbol "mq_ext_xattrs"
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x14393AC1: marker_key_replace_with_ver (marker.c:64)
==49943==    by 0x143A6F2D: marker_lookup (marker.c:2986)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x147D3640: index_lookup (index.c:2051)
==49943==    by 0x149E3AA8: quota_lookup (quota.c:1668)
==49943==    by 0x14C1EB10: io_stats_lookup (io-stats.c:2537)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x15087A6C: server_lookup_resume (server-rpc-fops.c:3113)
==49943==    by 0x15064DE8: server_resolve_done (server-resolve.c:590)
==49943==    by 0x15064EE9: server_resolve_all (server-resolve.c:625)
==49943==    by 0x15064D8F: server_resolve (server-resolve.c:574)
==49943==    by 0x15064EC0: server_resolve_all (server-resolve.c:621)
==49943==  Address 0x145b93e0 is 0 bytes inside data symbol "mq_ext_xattrs"
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x14392C20: ??? (in /usr/local/lib/glusterfs/3.8.12/xlator/features/marker.so)
==49943==    by 0x14393AD6: marker_key_replace_with_ver (marker.c:64)
==49943==    by 0x143A6F2D: marker_lookup (marker.c:2986)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x147D3640: index_lookup (index.c:2051)
==49943==    by 0x149E3AA8: quota_lookup (quota.c:1668)
==49943==    by 0x14C1EB10: io_stats_lookup (io-stats.c:2537)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x15087A6C: server_lookup_resume (server-rpc-fops.c:3113)
==49943==    by 0x15064DE8: server_resolve_done (server-resolve.c:590)
==49943==    by 0x15064EE9: server_resolve_all (server-resolve.c:625)
==49943==    by 0x15064D8F: server_resolve (server-resolve.c:574)
==49943==  Address 0x145b9280 is in the GOTPLT segment of /usr/local/lib/glusterfs/3.8.12/xlator/features/marker.so
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x14393B18: marker_key_replace_with_ver (marker.c:65)
==49943==    by 0x143A6F2D: marker_lookup (marker.c:2986)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x147D3640: index_lookup (index.c:2051)
==49943==    by 0x149E3AA8: quota_lookup (quota.c:1668)
==49943==    by 0x14C1EB10: io_stats_lookup (io-stats.c:2537)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x15087A6C: server_lookup_resume (server-rpc-fops.c:3113)
==49943==    by 0x15064DE8: server_resolve_done (server-resolve.c:590)
==49943==    by 0x15064EE9: server_resolve_all (server-resolve.c:625)
==49943==    by 0x15064D8F: server_resolve (server-resolve.c:574)
==49943==    by 0x15064EC0: server_resolve_all (server-resolve.c:621)
==49943==  Address 0x145b93e8 is 8 bytes inside data symbol "mq_ext_xattrs"
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x143927D0: ??? (in /usr/local/lib/glusterfs/3.8.12/xlator/features/marker.so)
==49943==    by 0x14393B41: marker_key_replace_with_ver (marker.c:65)
==49943==    by 0x143A6F2D: marker_lookup (marker.c:2986)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x147D3640: index_lookup (index.c:2051)
==49943==    by 0x149E3AA8: quota_lookup (quota.c:1668)
==49943==    by 0x14C1EB10: io_stats_lookup (io-stats.c:2537)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x15087A6C: server_lookup_resume (server-rpc-fops.c:3113)
==49943==    by 0x15064DE8: server_resolve_done (server-resolve.c:590)
==49943==    by 0x15064EE9: server_resolve_all (server-resolve.c:625)
==49943==    by 0x15064D8F: server_resolve (server-resolve.c:574)
==49943==  Address 0x145b9058 is in the GOTPLT segment of /usr/local/lib/glusterfs/3.8.12/xlator/features/marker.so
==49943== 
==49943== Invalid read of size 1
==49943==    at 0x6741150: strchrnul (in /usr/lib64/libc-2.17.so)
==49943==    by 0x66F81C1: vfprintf (in /usr/lib64/libc-2.17.so)
==49943==    by 0x6725178: vsnprintf (in /usr/lib64/libc-2.17.so)
==49943==    by 0x6702911: snprintf (in /usr/lib64/libc-2.17.so)
==49943==    by 0x14393B41: marker_key_replace_with_ver (marker.c:65)
==49943==    by 0x143A6F2D: marker_lookup (marker.c:2986)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x147D3640: index_lookup (index.c:2051)
==49943==    by 0x149E3AA8: quota_lookup (quota.c:1668)
==49943==    by 0x14C1EB10: io_stats_lookup (io-stats.c:2537)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x15087A6C: server_lookup_resume (server-rpc-fops.c:3113)
==49943==  Address 0x143b3466 is in a r-x mapped file /usr/local/lib/glusterfs/3.8.12/xlator/features/marker.so segment
==49943== 
==49943== Invalid read of size 1
==49943==    at 0x66F83EB: vfprintf (in /usr/lib64/libc-2.17.so)
==49943==    by 0x6725178: vsnprintf (in /usr/lib64/libc-2.17.so)
==49943==    by 0x6702911: snprintf (in /usr/lib64/libc-2.17.so)
==49943==    by 0x14393B41: marker_key_replace_with_ver (marker.c:65)
==49943==    by 0x143A6F2D: marker_lookup (marker.c:2986)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x147D3640: index_lookup (index.c:2051)
==49943==    by 0x149E3AA8: quota_lookup (quota.c:1668)
==49943==    by 0x14C1EB10: io_stats_lookup (io-stats.c:2537)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x15087A6C: server_lookup_resume (server-rpc-fops.c:3113)
==49943==    by 0x15064DE8: server_resolve_done (server-resolve.c:590)
==49943==  Address 0x143b3466 is in a r-x mapped file /usr/local/lib/glusterfs/3.8.12/xlator/features/marker.so segment
==49943== 
==49943== Invalid read of size 1
==49943==    at 0x66F846C: vfprintf (in /usr/lib64/libc-2.17.so)
==49943==    by 0x6725178: vsnprintf (in /usr/lib64/libc-2.17.so)
==49943==    by 0x6702911: snprintf (in /usr/lib64/libc-2.17.so)
==49943==    by 0x14393B41: marker_key_replace_with_ver (marker.c:65)
==49943==    by 0x143A6F2D: marker_lookup (marker.c:2986)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x147D3640: index_lookup (index.c:2051)
==49943==    by 0x149E3AA8: quota_lookup (quota.c:1668)
==49943==    by 0x14C1EB10: io_stats_lookup (io-stats.c:2537)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x15087A6C: server_lookup_resume (server-rpc-fops.c:3113)
==49943==    by 0x15064DE8: server_resolve_done (server-resolve.c:590)
==49943==  Address 0x143b3467 is in a r-x mapped file /usr/local/lib/glusterfs/3.8.12/xlator/features/marker.so segment
==49943== 
==49943== Invalid read of size 1
==49943==    at 0x66F9694: vfprintf (in /usr/lib64/libc-2.17.so)
==49943==    by 0x6725178: vsnprintf (in /usr/lib64/libc-2.17.so)
==49943==    by 0x6702911: snprintf (in /usr/lib64/libc-2.17.so)
==49943==    by 0x14393B41: marker_key_replace_with_ver (marker.c:65)
==49943==    by 0x143A6F2D: marker_lookup (marker.c:2986)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x147D3640: index_lookup (index.c:2051)
==49943==    by 0x149E3AA8: quota_lookup (quota.c:1668)
==49943==    by 0x14C1EB10: io_stats_lookup (io-stats.c:2537)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x15087A6C: server_lookup_resume (server-rpc-fops.c:3113)
==49943==    by 0x15064DE8: server_resolve_done (server-resolve.c:590)
==49943==  Address 0x143b3418 is in a r-x mapped file /usr/local/lib/glusterfs/3.8.12/xlator/features/marker.so segment
==49943== 
==49943== Invalid read of size 1
==49943==    at 0x4C2EA28: __GI_mempcpy (vg_replace_strmem.c:1508)
==49943==    by 0x6729648: _IO_default_xsputn (in /usr/lib64/libc-2.17.so)
==49943==    by 0x66F964C: vfprintf (in /usr/lib64/libc-2.17.so)
==49943==    by 0x6725178: vsnprintf (in /usr/lib64/libc-2.17.so)
==49943==    by 0x6702911: snprintf (in /usr/lib64/libc-2.17.so)
==49943==    by 0x14393B41: marker_key_replace_with_ver (marker.c:65)
==49943==    by 0x143A6F2D: marker_lookup (marker.c:2986)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x147D3640: index_lookup (index.c:2051)
==49943==    by 0x149E3AA8: quota_lookup (quota.c:1668)
==49943==    by 0x14C1EB10: io_stats_lookup (io-stats.c:2537)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==  Address 0x143b3418 is in a r-x mapped file /usr/local/lib/glusterfs/3.8.12/xlator/features/marker.so segment
==49943== 
==49943== Invalid read of size 1
==49943==    at 0x4C2EA36: __GI_mempcpy (vg_replace_strmem.c:1508)
==49943==    by 0x6729648: _IO_default_xsputn (in /usr/lib64/libc-2.17.so)
==49943==    by 0x66F964C: vfprintf (in /usr/lib64/libc-2.17.so)
==49943==    by 0x6725178: vsnprintf (in /usr/lib64/libc-2.17.so)
==49943==    by 0x6702911: snprintf (in /usr/lib64/libc-2.17.so)
==49943==    by 0x14393B41: marker_key_replace_with_ver (marker.c:65)
==49943==    by 0x143A6F2D: marker_lookup (marker.c:2986)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x147D3640: index_lookup (index.c:2051)
==49943==    by 0x149E3AA8: quota_lookup (quota.c:1668)
==49943==    by 0x14C1EB10: io_stats_lookup (io-stats.c:2537)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==  Address 0x143b341a is in a r-x mapped file /usr/local/lib/glusterfs/3.8.12/xlator/features/marker.so segment
==49943== 
==49943== Invalid read of size 1
==49943==    at 0x6741150: strchrnul (in /usr/lib64/libc-2.17.so)
==49943==    by 0x66F8917: vfprintf (in /usr/lib64/libc-2.17.so)
==49943==    by 0x6725178: vsnprintf (in /usr/lib64/libc-2.17.so)
==49943==    by 0x6702911: snprintf (in /usr/lib64/libc-2.17.so)
==49943==    by 0x14393B41: marker_key_replace_with_ver (marker.c:65)
==49943==    by 0x143A6F2D: marker_lookup (marker.c:2986)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x147D3640: index_lookup (index.c:2051)
==49943==    by 0x149E3AA8: quota_lookup (quota.c:1668)
==49943==    by 0x14C1EB10: io_stats_lookup (io-stats.c:2537)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x15087A6C: server_lookup_resume (server-rpc-fops.c:3113)
==49943==  Address 0x143b3468 is in a r-x mapped file /usr/local/lib/glusterfs/3.8.12/xlator/features/marker.so segment
==49943== 
==49943== Invalid read of size 1
==49943==    at 0x4C2E768: strchrnul (vg_replace_strmem.c:1365)
==49943==    by 0x66F8917: vfprintf (in /usr/lib64/libc-2.17.so)
==49943==    by 0x6725178: vsnprintf (in /usr/lib64/libc-2.17.so)
==49943==    by 0x6702911: snprintf (in /usr/lib64/libc-2.17.so)
==49943==    by 0x14393B41: marker_key_replace_with_ver (marker.c:65)
==49943==    by 0x143A6F2D: marker_lookup (marker.c:2986)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x147D3640: index_lookup (index.c:2051)
==49943==    by 0x149E3AA8: quota_lookup (quota.c:1668)
==49943==    by 0x14C1EB10: io_stats_lookup (io-stats.c:2537)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x15087A6C: server_lookup_resume (server-rpc-fops.c:3113)
==49943==  Address 0x143b3469 is in a r-x mapped file /usr/local/lib/glusterfs/3.8.12/xlator/features/marker.so segment
==49943== 
==49943== Invalid read of size 1
==49943==    at 0x6729668: _IO_default_xsputn (in /usr/lib64/libc-2.17.so)
==49943==    by 0x66F8934: vfprintf (in /usr/lib64/libc-2.17.so)
==49943==    by 0x6725178: vsnprintf (in /usr/lib64/libc-2.17.so)
==49943==    by 0x6702911: snprintf (in /usr/lib64/libc-2.17.so)
==49943==    by 0x14393B41: marker_key_replace_with_ver (marker.c:65)
==49943==    by 0x143A6F2D: marker_lookup (marker.c:2986)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x147D3640: index_lookup (index.c:2051)
==49943==    by 0x149E3AA8: quota_lookup (quota.c:1668)
==49943==    by 0x14C1EB10: io_stats_lookup (io-stats.c:2537)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x15087A6C: server_lookup_resume (server-rpc-fops.c:3113)
==49943==  Address 0x143b3468 is in a r-x mapped file /usr/local/lib/glusterfs/3.8.12/xlator/features/marker.so segment
==49943== 
==49943== Invalid read of size 1
==49943==    at 0x66F8973: vfprintf (in /usr/lib64/libc-2.17.so)
==49943==    by 0x6725178: vsnprintf (in /usr/lib64/libc-2.17.so)
==49943==    by 0x6702911: snprintf (in /usr/lib64/libc-2.17.so)
==49943==    by 0x14393B41: marker_key_replace_with_ver (marker.c:65)
==49943==    by 0x143A6F2D: marker_lookup (marker.c:2986)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x147D3640: index_lookup (index.c:2051)
==49943==    by 0x149E3AA8: quota_lookup (quota.c:1668)
==49943==    by 0x14C1EB10: io_stats_lookup (io-stats.c:2537)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x15087A6C: server_lookup_resume (server-rpc-fops.c:3113)
==49943==    by 0x15064DE8: server_resolve_done (server-resolve.c:590)
==49943==  Address 0x143b3469 is in a r-x mapped file /usr/local/lib/glusterfs/3.8.12/xlator/features/marker.so segment
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x14393BA4: marker_key_replace_with_ver (marker.c:69)
==49943==    by 0x143A6F2D: marker_lookup (marker.c:2986)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x147D3640: index_lookup (index.c:2051)
==49943==    by 0x149E3AA8: quota_lookup (quota.c:1668)
==49943==    by 0x14C1EB10: io_stats_lookup (io-stats.c:2537)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x15087A6C: server_lookup_resume (server-rpc-fops.c:3113)
==49943==    by 0x15064DE8: server_resolve_done (server-resolve.c:590)
==49943==    by 0x15064EE9: server_resolve_all (server-resolve.c:625)
==49943==    by 0x15064D8F: server_resolve (server-resolve.c:574)
==49943==    by 0x15064EC0: server_resolve_all (server-resolve.c:621)
==49943==  Address 0x145b93e8 is 8 bytes inside data symbol "mq_ext_xattrs"
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x14392C20: ??? (in /usr/local/lib/glusterfs/3.8.12/xlator/features/marker.so)
==49943==    by 0x14393BB9: marker_key_replace_with_ver (marker.c:69)
==49943==    by 0x143A6F2D: marker_lookup (marker.c:2986)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x147D3640: index_lookup (index.c:2051)
==49943==    by 0x149E3AA8: quota_lookup (quota.c:1668)
==49943==    by 0x14C1EB10: io_stats_lookup (io-stats.c:2537)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x15087A6C: server_lookup_resume (server-rpc-fops.c:3113)
==49943==    by 0x15064DE8: server_resolve_done (server-resolve.c:590)
==49943==    by 0x15064EE9: server_resolve_all (server-resolve.c:625)
==49943==    by 0x15064D8F: server_resolve (server-resolve.c:574)
==49943==  Address 0x145b9280 is in the GOTPLT segment of /usr/local/lib/glusterfs/3.8.12/xlator/features/marker.so
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x14392950: ??? (in /usr/local/lib/glusterfs/3.8.12/xlator/features/marker.so)
==49943==    by 0x14393BD5: marker_key_replace_with_ver (marker.c:69)
==49943==    by 0x143A6F2D: marker_lookup (marker.c:2986)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x147D3640: index_lookup (index.c:2051)
==49943==    by 0x149E3AA8: quota_lookup (quota.c:1668)
==49943==    by 0x14C1EB10: io_stats_lookup (io-stats.c:2537)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x15087A6C: server_lookup_resume (server-rpc-fops.c:3113)
==49943==    by 0x15064DE8: server_resolve_done (server-resolve.c:590)
==49943==    by 0x15064EE9: server_resolve_all (server-resolve.c:625)
==49943==    by 0x15064D8F: server_resolve (server-resolve.c:574)
==49943==  Address 0x145b9118 is in the GOTPLT segment of /usr/local/lib/glusterfs/3.8.12/xlator/features/marker.so
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x14393BF5: marker_key_replace_with_ver (marker.c:74)
==49943==    by 0x143A6F2D: marker_lookup (marker.c:2986)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x147D3640: index_lookup (index.c:2051)
==49943==    by 0x149E3AA8: quota_lookup (quota.c:1668)
==49943==    by 0x14C1EB10: io_stats_lookup (io-stats.c:2537)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x15087A6C: server_lookup_resume (server-rpc-fops.c:3113)
==49943==    by 0x15064DE8: server_resolve_done (server-resolve.c:590)
==49943==    by 0x15064EE9: server_resolve_all (server-resolve.c:625)
==49943==    by 0x15064D8F: server_resolve (server-resolve.c:574)
==49943==    by 0x15064EC0: server_resolve_all (server-resolve.c:621)
==49943==  Address 0x145b93e8 is 8 bytes inside data symbol "mq_ext_xattrs"
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x143929F0: ??? (in /usr/local/lib/glusterfs/3.8.12/xlator/features/marker.so)
==49943==    by 0x14393C0A: marker_key_replace_with_ver (marker.c:74)
==49943==    by 0x143A6F2D: marker_lookup (marker.c:2986)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x147D3640: index_lookup (index.c:2051)
==49943==    by 0x149E3AA8: quota_lookup (quota.c:1668)
==49943==    by 0x14C1EB10: io_stats_lookup (io-stats.c:2537)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x15087A6C: server_lookup_resume (server-rpc-fops.c:3113)
==49943==    by 0x15064DE8: server_resolve_done (server-resolve.c:590)
==49943==    by 0x15064EE9: server_resolve_all (server-resolve.c:625)
==49943==    by 0x15064D8F: server_resolve (server-resolve.c:574)
==49943==  Address 0x145b9168 is in the GOTPLT segment of /usr/local/lib/glusterfs/3.8.12/xlator/features/marker.so
==49943== 
==49943== Invalid read of size 1
==49943==    at 0x4C2BB94: __strcmp_sse42 (vg_replace_strmem.c:845)
==49943==    by 0x4E54EFB: dict_del (dict.c:501)
==49943==    by 0x14393C0A: marker_key_replace_with_ver (marker.c:74)
==49943==    by 0x143A6F2D: marker_lookup (marker.c:2986)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x147D3640: index_lookup (index.c:2051)
==49943==    by 0x149E3AA8: quota_lookup (quota.c:1668)
==49943==    by 0x14C1EB10: io_stats_lookup (io-stats.c:2537)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x15087A6C: server_lookup_resume (server-rpc-fops.c:3113)
==49943==    by 0x15064DE8: server_resolve_done (server-resolve.c:590)
==49943==    by 0x15064EE9: server_resolve_all (server-resolve.c:625)
==49943==  Address 0x143b3418 is in a r-x mapped file /usr/local/lib/glusterfs/3.8.12/xlator/features/marker.so segment
==49943== 
==49943== Invalid read of size 1
==49943==    at 0x4C2BBAB: __strcmp_sse42 (vg_replace_strmem.c:845)
==49943==    by 0x4E54EFB: dict_del (dict.c:501)
==49943==    by 0x14393C0A: marker_key_replace_with_ver (marker.c:74)
==49943==    by 0x143A6F2D: marker_lookup (marker.c:2986)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x147D3640: index_lookup (index.c:2051)
==49943==    by 0x149E3AA8: quota_lookup (quota.c:1668)
==49943==    by 0x14C1EB10: io_stats_lookup (io-stats.c:2537)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x15087A6C: server_lookup_resume (server-rpc-fops.c:3113)
==49943==    by 0x15064DE8: server_resolve_done (server-resolve.c:590)
==49943==    by 0x15064EE9: server_resolve_all (server-resolve.c:625)
==49943==  Address 0x143b3419 is in a r-x mapped file /usr/local/lib/glusterfs/3.8.12/xlator/features/marker.so segment
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x14392890: ??? (in /usr/local/lib/glusterfs/3.8.12/xlator/features/marker.so)
==49943==    by 0x143A6F5E: marker_lookup (marker.c:2993)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x147D3640: index_lookup (index.c:2051)
==49943==    by 0x149E3AA8: quota_lookup (quota.c:1668)
==49943==    by 0x14C1EB10: io_stats_lookup (io-stats.c:2537)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x15087A6C: server_lookup_resume (server-rpc-fops.c:3113)
==49943==    by 0x15064DE8: server_resolve_done (server-resolve.c:590)
==49943==    by 0x15064EE9: server_resolve_all (server-resolve.c:625)
==49943==    by 0x15064D8F: server_resolve (server-resolve.c:574)
==49943==    by 0x15064EC0: server_resolve_all (server-resolve.c:621)
==49943==  Address 0x145b90b8 is in the GOTPLT segment of /usr/local/lib/glusterfs/3.8.12/xlator/features/marker.so
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x143927C0: ??? (in /usr/local/lib/glusterfs/3.8.12/xlator/features/marker.so)
==49943==    by 0x143A6FA5: marker_lookup (marker.c:2997)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x147D3640: index_lookup (index.c:2051)
==49943==    by 0x149E3AA8: quota_lookup (quota.c:1668)
==49943==    by 0x14C1EB10: io_stats_lookup (io-stats.c:2537)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x15087A6C: server_lookup_resume (server-rpc-fops.c:3113)
==49943==    by 0x15064DE8: server_resolve_done (server-resolve.c:590)
==49943==    by 0x15064EE9: server_resolve_all (server-resolve.c:625)
==49943==    by 0x15064D8F: server_resolve (server-resolve.c:574)
==49943==    by 0x15064EC0: server_resolve_all (server-resolve.c:621)
==49943==  Address 0x145b9050 is in the GOTPLT segment of /usr/local/lib/glusterfs/3.8.12/xlator/features/marker.so
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x143A6FD0: marker_lookup (marker.c:2997)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x147D3640: index_lookup (index.c:2051)
==49943==    by 0x149E3AA8: quota_lookup (quota.c:1668)
==49943==    by 0x14C1EB10: io_stats_lookup (io-stats.c:2537)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x15087A6C: server_lookup_resume (server-rpc-fops.c:3113)
==49943==    by 0x15064DE8: server_resolve_done (server-resolve.c:590)
==49943==    by 0x15064EE9: server_resolve_all (server-resolve.c:625)
==49943==    by 0x15064D8F: server_resolve (server-resolve.c:574)
==49943==    by 0x15064EC0: server_resolve_all (server-resolve.c:621)
==49943==    by 0x15064874: server_resolve_inode (server-resolve.c:428)
==49943==  Address 0x145b8fd8 is in the GOT segment of /usr/local/lib/glusterfs/3.8.12/xlator/features/marker.so
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x14392850: ??? (in /usr/local/lib/glusterfs/3.8.12/xlator/features/marker.so)
==49943==    by 0x143A6FF3: marker_lookup (marker.c:2997)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x147D3640: index_lookup (index.c:2051)
==49943==    by 0x149E3AA8: quota_lookup (quota.c:1668)
==49943==    by 0x14C1EB10: io_stats_lookup (io-stats.c:2537)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x15087A6C: server_lookup_resume (server-rpc-fops.c:3113)
==49943==    by 0x15064DE8: server_resolve_done (server-resolve.c:590)
==49943==    by 0x15064EE9: server_resolve_all (server-resolve.c:625)
==49943==    by 0x15064D8F: server_resolve (server-resolve.c:574)
==49943==    by 0x15064EC0: server_resolve_all (server-resolve.c:621)
==49943==  Address 0x145b9098 is in the GOTPLT segment of /usr/local/lib/glusterfs/3.8.12/xlator/features/marker.so
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x14392AD0: ??? (in /usr/local/lib/glusterfs/3.8.12/xlator/features/marker.so)
==49943==    by 0x143A7032: marker_lookup (marker.c:2999)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x147D3640: index_lookup (index.c:2051)
==49943==    by 0x149E3AA8: quota_lookup (quota.c:1668)
==49943==    by 0x14C1EB10: io_stats_lookup (io-stats.c:2537)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x15087A6C: server_lookup_resume (server-rpc-fops.c:3113)
==49943==    by 0x15064DE8: server_resolve_done (server-resolve.c:590)
==49943==    by 0x15064EE9: server_resolve_all (server-resolve.c:625)
==49943==    by 0x15064D8F: server_resolve (server-resolve.c:574)
==49943==    by 0x15064EC0: server_resolve_all (server-resolve.c:621)
==49943==  Address 0x145b91d8 is in the GOTPLT segment of /usr/local/lib/glusterfs/3.8.12/xlator/features/marker.so
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x14392CD0: ??? (in /usr/local/lib/glusterfs/3.8.12/xlator/features/marker.so)
==49943==    by 0x143B160B: mq_req_xattr (marker-quota.c:2143)
==49943==    by 0x143A7070: marker_lookup (marker.c:3004)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x147D3640: index_lookup (index.c:2051)
==49943==    by 0x149E3AA8: quota_lookup (quota.c:1668)
==49943==    by 0x14C1EB10: io_stats_lookup (io-stats.c:2537)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x15087A6C: server_lookup_resume (server-rpc-fops.c:3113)
==49943==    by 0x15064DE8: server_resolve_done (server-resolve.c:590)
==49943==    by 0x15064EE9: server_resolve_all (server-resolve.c:625)
==49943==    by 0x15064D8F: server_resolve (server-resolve.c:574)
==49943==  Address 0x145b92d8 is in the GOTPLT segment of /usr/local/lib/glusterfs/3.8.12/xlator/features/marker.so
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x143927D0: ??? (in /usr/local/lib/glusterfs/3.8.12/xlator/features/marker.so)
==49943==    by 0x143B1697: mq_req_xattr (marker-quota.c:2150)
==49943==    by 0x143A7070: marker_lookup (marker.c:3004)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x147D3640: index_lookup (index.c:2051)
==49943==    by 0x149E3AA8: quota_lookup (quota.c:1668)
==49943==    by 0x14C1EB10: io_stats_lookup (io-stats.c:2537)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x15087A6C: server_lookup_resume (server-rpc-fops.c:3113)
==49943==    by 0x15064DE8: server_resolve_done (server-resolve.c:590)
==49943==    by 0x15064EE9: server_resolve_all (server-resolve.c:625)
==49943==    by 0x15064D8F: server_resolve (server-resolve.c:574)
==49943==  Address 0x145b9058 is in the GOTPLT segment of /usr/local/lib/glusterfs/3.8.12/xlator/features/marker.so
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x14392800: ??? (in /usr/local/lib/glusterfs/3.8.12/xlator/features/marker.so)
==49943==    by 0x143B172C: mq_req_xattr (marker-quota.c:2156)
==49943==    by 0x143A7070: marker_lookup (marker.c:3004)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x147D3640: index_lookup (index.c:2051)
==49943==    by 0x149E3AA8: quota_lookup (quota.c:1668)
==49943==    by 0x14C1EB10: io_stats_lookup (io-stats.c:2537)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x15087A6C: server_lookup_resume (server-rpc-fops.c:3113)
==49943==    by 0x15064DE8: server_resolve_done (server-resolve.c:590)
==49943==    by 0x15064EE9: server_resolve_all (server-resolve.c:625)
==49943==    by 0x15064D8F: server_resolve (server-resolve.c:574)
==49943==  Address 0x145b9070 is in the GOTPLT segment of /usr/local/lib/glusterfs/3.8.12/xlator/features/marker.so
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x14392CA0: ??? (in /usr/local/lib/glusterfs/3.8.12/xlator/features/marker.so)
==49943==    by 0x143B1752: mq_req_xattr (marker-quota.c:2160)
==49943==    by 0x143A7070: marker_lookup (marker.c:3004)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x147D3640: index_lookup (index.c:2051)
==49943==    by 0x149E3AA8: quota_lookup (quota.c:1668)
==49943==    by 0x14C1EB10: io_stats_lookup (io-stats.c:2537)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x15087A6C: server_lookup_resume (server-rpc-fops.c:3113)
==49943==    by 0x15064DE8: server_resolve_done (server-resolve.c:590)
==49943==    by 0x15064EE9: server_resolve_all (server-resolve.c:625)
==49943==    by 0x15064D8F: server_resolve (server-resolve.c:574)
==49943==  Address 0x145b92c0 is in the GOTPLT segment of /usr/local/lib/glusterfs/3.8.12/xlator/features/marker.so
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x14392890: ??? (in /usr/local/lib/glusterfs/3.8.12/xlator/features/marker.so)
==49943==    by 0x143A7097: marker_lookup (marker.c:3007)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x147D3640: index_lookup (index.c:2051)
==49943==    by 0x149E3AA8: quota_lookup (quota.c:1668)
==49943==    by 0x14C1EB10: io_stats_lookup (io-stats.c:2537)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x15087A6C: server_lookup_resume (server-rpc-fops.c:3113)
==49943==    by 0x15064DE8: server_resolve_done (server-resolve.c:590)
==49943==    by 0x15064EE9: server_resolve_all (server-resolve.c:625)
==49943==    by 0x15064D8F: server_resolve (server-resolve.c:574)
==49943==    by 0x15064EC0: server_resolve_all (server-resolve.c:621)
==49943==  Address 0x145b90b8 is in the GOTPLT segment of /usr/local/lib/glusterfs/3.8.12/xlator/features/marker.so
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x143A712E: marker_lookup (marker.c:3007)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x147D3640: index_lookup (index.c:2051)
==49943==    by 0x149E3AA8: quota_lookup (quota.c:1668)
==49943==    by 0x14C1EB10: io_stats_lookup (io-stats.c:2537)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x15087A6C: server_lookup_resume (server-rpc-fops.c:3113)
==49943==    by 0x15064DE8: server_resolve_done (server-resolve.c:590)
==49943==    by 0x15064EE9: server_resolve_all (server-resolve.c:625)
==49943==    by 0x15064D8F: server_resolve (server-resolve.c:574)
==49943==    by 0x15064EC0: server_resolve_all (server-resolve.c:621)
==49943==    by 0x15064874: server_resolve_inode (server-resolve.c:428)
==49943==  Address 0x145b8fd8 is in the GOT segment of /usr/local/lib/glusterfs/3.8.12/xlator/features/marker.so
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x14392850: ??? (in /usr/local/lib/glusterfs/3.8.12/xlator/features/marker.so)
==49943==    by 0x143A714F: marker_lookup (marker.c:3007)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x147D3640: index_lookup (index.c:2051)
==49943==    by 0x149E3AA8: quota_lookup (quota.c:1668)
==49943==    by 0x14C1EB10: io_stats_lookup (io-stats.c:2537)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x15087A6C: server_lookup_resume (server-rpc-fops.c:3113)
==49943==    by 0x15064DE8: server_resolve_done (server-resolve.c:590)
==49943==    by 0x15064EE9: server_resolve_all (server-resolve.c:625)
==49943==    by 0x15064D8F: server_resolve (server-resolve.c:574)
==49943==    by 0x15064EC0: server_resolve_all (server-resolve.c:621)
==49943==  Address 0x145b9098 is in the GOTPLT segment of /usr/local/lib/glusterfs/3.8.12/xlator/features/marker.so
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x143A7167: marker_lookup (marker.c:3007)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x147D3640: index_lookup (index.c:2051)
==49943==    by 0x149E3AA8: quota_lookup (quota.c:1668)
==49943==    by 0x14C1EB10: io_stats_lookup (io-stats.c:2537)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x15087A6C: server_lookup_resume (server-rpc-fops.c:3113)
==49943==    by 0x15064DE8: server_resolve_done (server-resolve.c:590)
==49943==    by 0x15064EE9: server_resolve_all (server-resolve.c:625)
==49943==    by 0x15064D8F: server_resolve (server-resolve.c:574)
==49943==    by 0x15064EC0: server_resolve_all (server-resolve.c:621)
==49943==    by 0x15064874: server_resolve_inode (server-resolve.c:428)
==49943==  Address 0x145b8fd8 is in the GOT segment of /usr/local/lib/glusterfs/3.8.12/xlator/features/marker.so
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x14392D50: ??? (in /usr/local/lib/glusterfs/3.8.12/xlator/features/marker.so)
==49943==    by 0x143A7186: marker_lookup (marker.c:3007)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x147D3640: index_lookup (index.c:2051)
==49943==    by 0x149E3AA8: quota_lookup (quota.c:1668)
==49943==    by 0x14C1EB10: io_stats_lookup (io-stats.c:2537)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x15087A6C: server_lookup_resume (server-rpc-fops.c:3113)
==49943==    by 0x15064DE8: server_resolve_done (server-resolve.c:590)
==49943==    by 0x15064EE9: server_resolve_all (server-resolve.c:625)
==49943==    by 0x15064D8F: server_resolve (server-resolve.c:574)
==49943==    by 0x15064EC0: server_resolve_all (server-resolve.c:621)
==49943==  Address 0x145b9318 is in the GOTPLT segment of /usr/local/lib/glusterfs/3.8.12/xlator/features/marker.so
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x143A71CE: marker_lookup (marker.c:3007)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x147D3640: index_lookup (index.c:2051)
==49943==    by 0x149E3AA8: quota_lookup (quota.c:1668)
==49943==    by 0x14C1EB10: io_stats_lookup (io-stats.c:2537)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x15087A6C: server_lookup_resume (server-rpc-fops.c:3113)
==49943==    by 0x15064DE8: server_resolve_done (server-resolve.c:590)
==49943==    by 0x15064EE9: server_resolve_all (server-resolve.c:625)
==49943==    by 0x15064D8F: server_resolve (server-resolve.c:574)
==49943==    by 0x15064EC0: server_resolve_all (server-resolve.c:621)
==49943==    by 0x15064874: server_resolve_inode (server-resolve.c:428)
==49943==  Address 0x145b8fd8 is in the GOT segment of /usr/local/lib/glusterfs/3.8.12/xlator/features/marker.so
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x14392920: ??? (in /usr/local/lib/glusterfs/3.8.12/xlator/features/marker.so)
==49943==    by 0x143A71ED: marker_lookup (marker.c:3007)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x147D3640: index_lookup (index.c:2051)
==49943==    by 0x149E3AA8: quota_lookup (quota.c:1668)
==49943==    by 0x14C1EB10: io_stats_lookup (io-stats.c:2537)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x15087A6C: server_lookup_resume (server-rpc-fops.c:3113)
==49943==    by 0x15064DE8: server_resolve_done (server-resolve.c:590)
==49943==    by 0x15064EE9: server_resolve_all (server-resolve.c:625)
==49943==    by 0x15064D8F: server_resolve (server-resolve.c:574)
==49943==    by 0x15064EC0: server_resolve_all (server-resolve.c:621)
==49943==  Address 0x145b9100 is in the GOTPLT segment of /usr/local/lib/glusterfs/3.8.12/xlator/features/marker.so
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x14392CF0: ??? (in /usr/local/lib/glusterfs/3.8.12/xlator/features/marker.so)
==49943==    by 0x143A720C: marker_lookup (marker.c:3007)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x147D3640: index_lookup (index.c:2051)
==49943==    by 0x149E3AA8: quota_lookup (quota.c:1668)
==49943==    by 0x14C1EB10: io_stats_lookup (io-stats.c:2537)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x15087A6C: server_lookup_resume (server-rpc-fops.c:3113)
==49943==    by 0x15064DE8: server_resolve_done (server-resolve.c:590)
==49943==    by 0x15064EE9: server_resolve_all (server-resolve.c:625)
==49943==    by 0x15064D8F: server_resolve (server-resolve.c:574)
==49943==    by 0x15064EC0: server_resolve_all (server-resolve.c:621)
==49943==  Address 0x145b92e8 is in the GOTPLT segment of /usr/local/lib/glusterfs/3.8.12/xlator/features/marker.so
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x14392CF0: ??? (in /usr/local/lib/glusterfs/3.8.12/xlator/features/marker.so)
==49943==    by 0x143A721D: marker_lookup (marker.c:3007)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x147D3640: index_lookup (index.c:2051)
==49943==    by 0x149E3AA8: quota_lookup (quota.c:1668)
==49943==    by 0x14C1EB10: io_stats_lookup (io-stats.c:2537)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x15087A6C: server_lookup_resume (server-rpc-fops.c:3113)
==49943==    by 0x15064DE8: server_resolve_done (server-resolve.c:590)
==49943==    by 0x15064EE9: server_resolve_all (server-resolve.c:625)
==49943==    by 0x15064D8F: server_resolve (server-resolve.c:574)
==49943==    by 0x15064EC0: server_resolve_all (server-resolve.c:621)
==49943==  Address 0x145b92e8 is in the GOTPLT segment of /usr/local/lib/glusterfs/3.8.12/xlator/features/marker.so
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x14392CF0: ??? (in /usr/local/lib/glusterfs/3.8.12/xlator/features/marker.so)
==49943==    by 0x143A7235: marker_lookup (marker.c:3007)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x147D3640: index_lookup (index.c:2051)
==49943==    by 0x149E3AA8: quota_lookup (quota.c:1668)
==49943==    by 0x14C1EB10: io_stats_lookup (io-stats.c:2537)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x15087A6C: server_lookup_resume (server-rpc-fops.c:3113)
==49943==    by 0x15064DE8: server_resolve_done (server-resolve.c:590)
==49943==    by 0x15064EE9: server_resolve_all (server-resolve.c:625)
==49943==    by 0x15064D8F: server_resolve (server-resolve.c:574)
==49943==    by 0x15064EC0: server_resolve_all (server-resolve.c:621)
==49943==  Address 0x145b92e8 is in the GOTPLT segment of /usr/local/lib/glusterfs/3.8.12/xlator/features/marker.so
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x14392980: ??? (in /usr/local/lib/glusterfs/3.8.12/xlator/features/marker.so)
==49943==    by 0x143A72A4: marker_lookup (marker.c:3007)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x147D3640: index_lookup (index.c:2051)
==49943==    by 0x149E3AA8: quota_lookup (quota.c:1668)
==49943==    by 0x14C1EB10: io_stats_lookup (io-stats.c:2537)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x15087A6C: server_lookup_resume (server-rpc-fops.c:3113)
==49943==    by 0x15064DE8: server_resolve_done (server-resolve.c:590)
==49943==    by 0x15064EE9: server_resolve_all (server-resolve.c:625)
==49943==    by 0x15064D8F: server_resolve (server-resolve.c:574)
==49943==    by 0x15064EC0: server_resolve_all (server-resolve.c:621)
==49943==  Address 0x145b9130 is in the GOTPLT segment of /usr/local/lib/glusterfs/3.8.12/xlator/features/marker.so
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x143A72EF: marker_lookup (marker.c:3007)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x147D3640: index_lookup (index.c:2051)
==49943==    by 0x149E3AA8: quota_lookup (quota.c:1668)
==49943==    by 0x14C1EB10: io_stats_lookup (io-stats.c:2537)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x15087A6C: server_lookup_resume (server-rpc-fops.c:3113)
==49943==    by 0x15064DE8: server_resolve_done (server-resolve.c:590)
==49943==    by 0x15064EE9: server_resolve_all (server-resolve.c:625)
==49943==    by 0x15064D8F: server_resolve (server-resolve.c:574)
==49943==    by 0x15064EC0: server_resolve_all (server-resolve.c:621)
==49943==    by 0x15064874: server_resolve_inode (server-resolve.c:428)
==49943==  Address 0x1438f180 is 0 bytes inside data symbol "fops"
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x141795C0: ??? (in /usr/local/lib/glusterfs/3.8.12/xlator/features/upcall.so)
==49943==    by 0x141812C5: up_lookup (upcall.c:775)
==49943==    by 0x143A730A: marker_lookup (marker.c:3007)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x147D3640: index_lookup (index.c:2051)
==49943==    by 0x149E3AA8: quota_lookup (quota.c:1668)
==49943==    by 0x14C1EB10: io_stats_lookup (io-stats.c:2537)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x15087A6C: server_lookup_resume (server-rpc-fops.c:3113)
==49943==    by 0x15064DE8: server_resolve_done (server-resolve.c:590)
==49943==    by 0x15064EE9: server_resolve_all (server-resolve.c:625)
==49943==    by 0x15064D8F: server_resolve (server-resolve.c:574)
==49943==  Address 0x1438f038 is in the GOTPLT segment of /usr/local/lib/glusterfs/3.8.12/xlator/features/upcall.so
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x1418135C: up_lookup (upcall.c:775)
==49943==    by 0x143A730A: marker_lookup (marker.c:3007)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x147D3640: index_lookup (index.c:2051)
==49943==    by 0x149E3AA8: quota_lookup (quota.c:1668)
==49943==    by 0x14C1EB10: io_stats_lookup (io-stats.c:2537)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x15087A6C: server_lookup_resume (server-rpc-fops.c:3113)
==49943==    by 0x15064DE8: server_resolve_done (server-resolve.c:590)
==49943==    by 0x15064EE9: server_resolve_all (server-resolve.c:625)
==49943==    by 0x15064D8F: server_resolve (server-resolve.c:574)
==49943==    by 0x15064EC0: server_resolve_all (server-resolve.c:621)
==49943==  Address 0x1438eff8 is in the GOT segment of /usr/local/lib/glusterfs/3.8.12/xlator/features/upcall.so
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x141795A0: ??? (in /usr/local/lib/glusterfs/3.8.12/xlator/features/upcall.so)
==49943==    by 0x1418137D: up_lookup (upcall.c:775)
==49943==    by 0x143A730A: marker_lookup (marker.c:3007)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x147D3640: index_lookup (index.c:2051)
==49943==    by 0x149E3AA8: quota_lookup (quota.c:1668)
==49943==    by 0x14C1EB10: io_stats_lookup (io-stats.c:2537)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x15087A6C: server_lookup_resume (server-rpc-fops.c:3113)
==49943==    by 0x15064DE8: server_resolve_done (server-resolve.c:590)
==49943==    by 0x15064EE9: server_resolve_all (server-resolve.c:625)
==49943==    by 0x15064D8F: server_resolve (server-resolve.c:574)
==49943==  Address 0x1438f028 is in the GOTPLT segment of /usr/local/lib/glusterfs/3.8.12/xlator/features/upcall.so
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x14181395: up_lookup (upcall.c:775)
==49943==    by 0x143A730A: marker_lookup (marker.c:3007)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x147D3640: index_lookup (index.c:2051)
==49943==    by 0x149E3AA8: quota_lookup (quota.c:1668)
==49943==    by 0x14C1EB10: io_stats_lookup (io-stats.c:2537)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x15087A6C: server_lookup_resume (server-rpc-fops.c:3113)
==49943==    by 0x15064DE8: server_resolve_done (server-resolve.c:590)
==49943==    by 0x15064EE9: server_resolve_all (server-resolve.c:625)
==49943==    by 0x15064D8F: server_resolve (server-resolve.c:574)
==49943==    by 0x15064EC0: server_resolve_all (server-resolve.c:621)
==49943==  Address 0x1438eff8 is in the GOT segment of /usr/local/lib/glusterfs/3.8.12/xlator/features/upcall.so
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x141797E0: ??? (in /usr/local/lib/glusterfs/3.8.12/xlator/features/upcall.so)
==49943==    by 0x141813B4: up_lookup (upcall.c:775)
==49943==    by 0x143A730A: marker_lookup (marker.c:3007)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x147D3640: index_lookup (index.c:2051)
==49943==    by 0x149E3AA8: quota_lookup (quota.c:1668)
==49943==    by 0x14C1EB10: io_stats_lookup (io-stats.c:2537)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x15087A6C: server_lookup_resume (server-rpc-fops.c:3113)
==49943==    by 0x15064DE8: server_resolve_done (server-resolve.c:590)
==49943==    by 0x15064EE9: server_resolve_all (server-resolve.c:625)
==49943==    by 0x15064D8F: server_resolve (server-resolve.c:574)
==49943==  Address 0x1438f148 is in the GOTPLT segment of /usr/local/lib/glusterfs/3.8.12/xlator/features/upcall.so
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x141813FC: up_lookup (upcall.c:775)
==49943==    by 0x143A730A: marker_lookup (marker.c:3007)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x147D3640: index_lookup (index.c:2051)
==49943==    by 0x149E3AA8: quota_lookup (quota.c:1668)
==49943==    by 0x14C1EB10: io_stats_lookup (io-stats.c:2537)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x15087A6C: server_lookup_resume (server-rpc-fops.c:3113)
==49943==    by 0x15064DE8: server_resolve_done (server-resolve.c:590)
==49943==    by 0x15064EE9: server_resolve_all (server-resolve.c:625)
==49943==    by 0x15064D8F: server_resolve (server-resolve.c:574)
==49943==    by 0x15064EC0: server_resolve_all (server-resolve.c:621)
==49943==  Address 0x1438eff8 is in the GOT segment of /usr/local/lib/glusterfs/3.8.12/xlator/features/upcall.so
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x141795F0: ??? (in /usr/local/lib/glusterfs/3.8.12/xlator/features/upcall.so)
==49943==    by 0x1418141B: up_lookup (upcall.c:775)
==49943==    by 0x143A730A: marker_lookup (marker.c:3007)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x147D3640: index_lookup (index.c:2051)
==49943==    by 0x149E3AA8: quota_lookup (quota.c:1668)
==49943==    by 0x14C1EB10: io_stats_lookup (io-stats.c:2537)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x15087A6C: server_lookup_resume (server-rpc-fops.c:3113)
==49943==    by 0x15064DE8: server_resolve_done (server-resolve.c:590)
==49943==    by 0x15064EE9: server_resolve_all (server-resolve.c:625)
==49943==    by 0x15064D8F: server_resolve (server-resolve.c:574)
==49943==  Address 0x1438f050 is in the GOTPLT segment of /usr/local/lib/glusterfs/3.8.12/xlator/features/upcall.so
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x141797B0: ??? (in /usr/local/lib/glusterfs/3.8.12/xlator/features/upcall.so)
==49943==    by 0x1418143A: up_lookup (upcall.c:775)
==49943==    by 0x143A730A: marker_lookup (marker.c:3007)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x147D3640: index_lookup (index.c:2051)
==49943==    by 0x149E3AA8: quota_lookup (quota.c:1668)
==49943==    by 0x14C1EB10: io_stats_lookup (io-stats.c:2537)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x15087A6C: server_lookup_resume (server-rpc-fops.c:3113)
==49943==    by 0x15064DE8: server_resolve_done (server-resolve.c:590)
==49943==    by 0x15064EE9: server_resolve_all (server-resolve.c:625)
==49943==    by 0x15064D8F: server_resolve (server-resolve.c:574)
==49943==  Address 0x1438f130 is in the GOTPLT segment of /usr/local/lib/glusterfs/3.8.12/xlator/features/upcall.so
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x141797B0: ??? (in /usr/local/lib/glusterfs/3.8.12/xlator/features/upcall.so)
==49943==    by 0x1418144B: up_lookup (upcall.c:775)
==49943==    by 0x143A730A: marker_lookup (marker.c:3007)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x147D3640: index_lookup (index.c:2051)
==49943==    by 0x149E3AA8: quota_lookup (quota.c:1668)
==49943==    by 0x14C1EB10: io_stats_lookup (io-stats.c:2537)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x15087A6C: server_lookup_resume (server-rpc-fops.c:3113)
==49943==    by 0x15064DE8: server_resolve_done (server-resolve.c:590)
==49943==    by 0x15064EE9: server_resolve_all (server-resolve.c:625)
==49943==    by 0x15064D8F: server_resolve (server-resolve.c:574)
==49943==  Address 0x1438f130 is in the GOTPLT segment of /usr/local/lib/glusterfs/3.8.12/xlator/features/upcall.so
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x141797B0: ??? (in /usr/local/lib/glusterfs/3.8.12/xlator/features/upcall.so)
==49943==    by 0x14181463: up_lookup (upcall.c:775)
==49943==    by 0x143A730A: marker_lookup (marker.c:3007)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x147D3640: index_lookup (index.c:2051)
==49943==    by 0x149E3AA8: quota_lookup (quota.c:1668)
==49943==    by 0x14C1EB10: io_stats_lookup (io-stats.c:2537)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x15087A6C: server_lookup_resume (server-rpc-fops.c:3113)
==49943==    by 0x15064DE8: server_resolve_done (server-resolve.c:590)
==49943==    by 0x15064EE9: server_resolve_all (server-resolve.c:625)
==49943==    by 0x15064D8F: server_resolve (server-resolve.c:574)
==49943==  Address 0x1438f130 is in the GOTPLT segment of /usr/local/lib/glusterfs/3.8.12/xlator/features/upcall.so
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x14179610: ??? (in /usr/local/lib/glusterfs/3.8.12/xlator/features/upcall.so)
==49943==    by 0x141814D2: up_lookup (upcall.c:775)
==49943==    by 0x143A730A: marker_lookup (marker.c:3007)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x147D3640: index_lookup (index.c:2051)
==49943==    by 0x149E3AA8: quota_lookup (quota.c:1668)
==49943==    by 0x14C1EB10: io_stats_lookup (io-stats.c:2537)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x15087A6C: server_lookup_resume (server-rpc-fops.c:3113)
==49943==    by 0x15064DE8: server_resolve_done (server-resolve.c:590)
==49943==    by 0x15064EE9: server_resolve_all (server-resolve.c:625)
==49943==    by 0x15064D8F: server_resolve (server-resolve.c:574)
==49943==  Address 0x1438f060 is in the GOTPLT segment of /usr/local/lib/glusterfs/3.8.12/xlator/features/upcall.so
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x1418151D: up_lookup (upcall.c:775)
==49943==    by 0x143A730A: marker_lookup (marker.c:3007)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x147D3640: index_lookup (index.c:2051)
==49943==    by 0x149E3AA8: quota_lookup (quota.c:1668)
==49943==    by 0x14C1EB10: io_stats_lookup (io-stats.c:2537)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x15087A6C: server_lookup_resume (server-rpc-fops.c:3113)
==49943==    by 0x15064DE8: server_resolve_done (server-resolve.c:590)
==49943==    by 0x15064EE9: server_resolve_all (server-resolve.c:625)
==49943==    by 0x15064D8F: server_resolve (server-resolve.c:574)
==49943==    by 0x15064EC0: server_resolve_all (server-resolve.c:621)
==49943==  Address 0x14177240 is 0 bytes inside data symbol "fops"
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x4F1061F: default_lookup (defaults.c:2572)
==49943==    by 0x14181538: up_lookup (upcall.c:775)
==49943==    by 0x143A730A: marker_lookup (marker.c:3007)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x147D3640: index_lookup (index.c:2051)
==49943==    by 0x149E3AA8: quota_lookup (quota.c:1668)
==49943==    by 0x14C1EB10: io_stats_lookup (io-stats.c:2537)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x15087A6C: server_lookup_resume (server-rpc-fops.c:3113)
==49943==    by 0x15064DE8: server_resolve_done (server-resolve.c:590)
==49943==    by 0x15064EE9: server_resolve_all (server-resolve.c:625)
==49943==    by 0x15064D8F: server_resolve (server-resolve.c:574)
==49943==  Address 0x13f5d0e0 is 0 bytes inside data symbol "fops"
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x4F1061F: default_lookup (defaults.c:2572)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x14181538: up_lookup (upcall.c:775)
==49943==    by 0x143A730A: marker_lookup (marker.c:3007)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x147D3640: index_lookup (index.c:2051)
==49943==    by 0x149E3AA8: quota_lookup (quota.c:1668)
==49943==    by 0x14C1EB10: io_stats_lookup (io-stats.c:2537)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x15087A6C: server_lookup_resume (server-rpc-fops.c:3113)
==49943==    by 0x15064DE8: server_resolve_done (server-resolve.c:590)
==49943==    by 0x15064EE9: server_resolve_all (server-resolve.c:625)
==49943==  Address 0x13d531c0 is 0 bytes inside data symbol "fops"
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x1391D770: ??? (in /usr/local/lib/glusterfs/3.8.12/xlator/features/locks.so)
==49943==    by 0x13921168: pl_has_xdata_requests (posix.c:119)
==49943==    by 0x13930E24: pl_lookup (posix.c:2656)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x14181538: up_lookup (upcall.c:775)
==49943==    by 0x143A730A: marker_lookup (marker.c:3007)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x147D3640: index_lookup (index.c:2051)
==49943==    by 0x149E3AA8: quota_lookup (quota.c:1668)
==49943==    by 0x14C1EB10: io_stats_lookup (io-stats.c:2537)
==49943==  Address 0x13b44288 is in the GOTPLT segment of /usr/local/lib/glusterfs/3.8.12/xlator/features/locks.so
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x1391D390: ??? (in /usr/local/lib/glusterfs/3.8.12/xlator/features/locks.so)
==49943==    by 0x13930EAE: pl_lookup (posix.c:2657)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x14181538: up_lookup (upcall.c:775)
==49943==    by 0x143A730A: marker_lookup (marker.c:3007)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x147D3640: index_lookup (index.c:2051)
==49943==    by 0x149E3AA8: quota_lookup (quota.c:1668)
==49943==    by 0x14C1EB10: io_stats_lookup (io-stats.c:2537)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==  Address 0x13b44098 is in the GOTPLT segment of /usr/local/lib/glusterfs/3.8.12/xlator/features/locks.so
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x13930F45: pl_lookup (posix.c:2657)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x14181538: up_lookup (upcall.c:775)
==49943==    by 0x143A730A: marker_lookup (marker.c:3007)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x147D3640: index_lookup (index.c:2051)
==49943==    by 0x149E3AA8: quota_lookup (quota.c:1668)
==49943==    by 0x14C1EB10: io_stats_lookup (io-stats.c:2537)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x15087A6C: server_lookup_resume (server-rpc-fops.c:3113)
==49943==  Address 0x13b43fe8 is in the GOT segment of /usr/local/lib/glusterfs/3.8.12/xlator/features/locks.so
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x1391D370: ??? (in /usr/local/lib/glusterfs/3.8.12/xlator/features/locks.so)
==49943==    by 0x13930F66: pl_lookup (posix.c:2657)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x14181538: up_lookup (upcall.c:775)
==49943==    by 0x143A730A: marker_lookup (marker.c:3007)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x147D3640: index_lookup (index.c:2051)
==49943==    by 0x149E3AA8: quota_lookup (quota.c:1668)
==49943==    by 0x14C1EB10: io_stats_lookup (io-stats.c:2537)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==  Address 0x13b44088 is in the GOTPLT segment of /usr/local/lib/glusterfs/3.8.12/xlator/features/locks.so
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x13930F7E: pl_lookup (posix.c:2657)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x14181538: up_lookup (upcall.c:775)
==49943==    by 0x143A730A: marker_lookup (marker.c:3007)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x147D3640: index_lookup (index.c:2051)
==49943==    by 0x149E3AA8: quota_lookup (quota.c:1668)
==49943==    by 0x14C1EB10: io_stats_lookup (io-stats.c:2537)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x15087A6C: server_lookup_resume (server-rpc-fops.c:3113)
==49943==  Address 0x13b43fe8 is in the GOT segment of /usr/local/lib/glusterfs/3.8.12/xlator/features/locks.so
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x1391D820: ??? (in /usr/local/lib/glusterfs/3.8.12/xlator/features/locks.so)
==49943==    by 0x13930F9D: pl_lookup (posix.c:2657)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x14181538: up_lookup (upcall.c:775)
==49943==    by 0x143A730A: marker_lookup (marker.c:3007)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x147D3640: index_lookup (index.c:2051)
==49943==    by 0x149E3AA8: quota_lookup (quota.c:1668)
==49943==    by 0x14C1EB10: io_stats_lookup (io-stats.c:2537)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==  Address 0x13b442e0 is in the GOTPLT segment of /usr/local/lib/glusterfs/3.8.12/xlator/features/locks.so
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x13930FE5: pl_lookup (posix.c:2657)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x14181538: up_lookup (upcall.c:775)
==49943==    by 0x143A730A: marker_lookup (marker.c:3007)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x147D3640: index_lookup (index.c:2051)
==49943==    by 0x149E3AA8: quota_lookup (quota.c:1668)
==49943==    by 0x14C1EB10: io_stats_lookup (io-stats.c:2537)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x15087A6C: server_lookup_resume (server-rpc-fops.c:3113)
==49943==  Address 0x13b43fe8 is in the GOT segment of /usr/local/lib/glusterfs/3.8.12/xlator/features/locks.so
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x1391D400: ??? (in /usr/local/lib/glusterfs/3.8.12/xlator/features/locks.so)
==49943==    by 0x13931004: pl_lookup (posix.c:2657)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x14181538: up_lookup (upcall.c:775)
==49943==    by 0x143A730A: marker_lookup (marker.c:3007)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x147D3640: index_lookup (index.c:2051)
==49943==    by 0x149E3AA8: quota_lookup (quota.c:1668)
==49943==    by 0x14C1EB10: io_stats_lookup (io-stats.c:2537)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==  Address 0x13b440d0 is in the GOTPLT segment of /usr/local/lib/glusterfs/3.8.12/xlator/features/locks.so
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x1391D7E0: ??? (in /usr/local/lib/glusterfs/3.8.12/xlator/features/locks.so)
==49943==    by 0x13931023: pl_lookup (posix.c:2657)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x14181538: up_lookup (upcall.c:775)
==49943==    by 0x143A730A: marker_lookup (marker.c:3007)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x147D3640: index_lookup (index.c:2051)
==49943==    by 0x149E3AA8: quota_lookup (quota.c:1668)
==49943==    by 0x14C1EB10: io_stats_lookup (io-stats.c:2537)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==  Address 0x13b442c0 is in the GOTPLT segment of /usr/local/lib/glusterfs/3.8.12/xlator/features/locks.so
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x1391D7E0: ??? (in /usr/local/lib/glusterfs/3.8.12/xlator/features/locks.so)
==49943==    by 0x13931034: pl_lookup (posix.c:2657)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x14181538: up_lookup (upcall.c:775)
==49943==    by 0x143A730A: marker_lookup (marker.c:3007)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x147D3640: index_lookup (index.c:2051)
==49943==    by 0x149E3AA8: quota_lookup (quota.c:1668)
==49943==    by 0x14C1EB10: io_stats_lookup (io-stats.c:2537)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==  Address 0x13b442c0 is in the GOTPLT segment of /usr/local/lib/glusterfs/3.8.12/xlator/features/locks.so
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x1391D7E0: ??? (in /usr/local/lib/glusterfs/3.8.12/xlator/features/locks.so)
==49943==    by 0x1393104C: pl_lookup (posix.c:2657)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x14181538: up_lookup (upcall.c:775)
==49943==    by 0x143A730A: marker_lookup (marker.c:3007)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x147D3640: index_lookup (index.c:2051)
==49943==    by 0x149E3AA8: quota_lookup (quota.c:1668)
==49943==    by 0x14C1EB10: io_stats_lookup (io-stats.c:2537)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==  Address 0x13b442c0 is in the GOTPLT segment of /usr/local/lib/glusterfs/3.8.12/xlator/features/locks.so
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x1391D440: ??? (in /usr/local/lib/glusterfs/3.8.12/xlator/features/locks.so)
==49943==    by 0x139310BB: pl_lookup (posix.c:2657)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x14181538: up_lookup (upcall.c:775)
==49943==    by 0x143A730A: marker_lookup (marker.c:3007)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x147D3640: index_lookup (index.c:2051)
==49943==    by 0x149E3AA8: quota_lookup (quota.c:1668)
==49943==    by 0x14C1EB10: io_stats_lookup (io-stats.c:2537)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==  Address 0x13b440f0 is in the GOTPLT segment of /usr/local/lib/glusterfs/3.8.12/xlator/features/locks.so
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x13931106: pl_lookup (posix.c:2657)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x14181538: up_lookup (upcall.c:775)
==49943==    by 0x143A730A: marker_lookup (marker.c:3007)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x147D3640: index_lookup (index.c:2051)
==49943==    by 0x149E3AA8: quota_lookup (quota.c:1668)
==49943==    by 0x14C1EB10: io_stats_lookup (io-stats.c:2537)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x15087A6C: server_lookup_resume (server-rpc-fops.c:3113)
==49943==  Address 0x1391a660 is 0 bytes inside data symbol "fops"
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x137063B0: ??? (in /usr/local/lib/glusterfs/3.8.12/xlator/system/posix-acl.so)
==49943==    by 0x13708F78: posix_acl_lookup (posix-acl.c:955)
==49943==    by 0x13931121: pl_lookup (posix.c:2657)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x14181538: up_lookup (upcall.c:775)
==49943==    by 0x143A730A: marker_lookup (marker.c:3007)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x147D3640: index_lookup (index.c:2051)
==49943==    by 0x149E3AA8: quota_lookup (quota.c:1668)
==49943==    by 0x14C1EB10: io_stats_lookup (io-stats.c:2537)
==49943==  Address 0x1391a018 is in the GOTPLT segment of /usr/local/lib/glusterfs/3.8.12/xlator/system/posix-acl.so
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x13706580: ??? (in /usr/local/lib/glusterfs/3.8.12/xlator/system/posix-acl.so)
==49943==    by 0x13708F9F: posix_acl_lookup (posix-acl.c:960)
==49943==    by 0x13931121: pl_lookup (posix.c:2657)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x14181538: up_lookup (upcall.c:775)
==49943==    by 0x143A730A: marker_lookup (marker.c:3007)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x147D3640: index_lookup (index.c:2051)
==49943==    by 0x149E3AA8: quota_lookup (quota.c:1668)
==49943==    by 0x14C1EB10: io_stats_lookup (io-stats.c:2537)
==49943==  Address 0x1391a100 is in the GOTPLT segment of /usr/local/lib/glusterfs/3.8.12/xlator/system/posix-acl.so
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x13706580: ??? (in /usr/local/lib/glusterfs/3.8.12/xlator/system/posix-acl.so)
==49943==    by 0x13708FFF: posix_acl_lookup (posix-acl.c:965)
==49943==    by 0x13931121: pl_lookup (posix.c:2657)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x14181538: up_lookup (upcall.c:775)
==49943==    by 0x143A730A: marker_lookup (marker.c:3007)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x147D3640: index_lookup (index.c:2051)
==49943==    by 0x149E3AA8: quota_lookup (quota.c:1668)
==49943==    by 0x14C1EB10: io_stats_lookup (io-stats.c:2537)
==49943==  Address 0x1391a100 is in the GOTPLT segment of /usr/local/lib/glusterfs/3.8.12/xlator/system/posix-acl.so
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x13706400: ??? (in /usr/local/lib/glusterfs/3.8.12/xlator/system/posix-acl.so)
==49943==    by 0x1370907A: posix_acl_lookup (posix-acl.c:971)
==49943==    by 0x13931121: pl_lookup (posix.c:2657)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x14181538: up_lookup (upcall.c:775)
==49943==    by 0x143A730A: marker_lookup (marker.c:3007)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x147D3640: index_lookup (index.c:2051)
==49943==    by 0x149E3AA8: quota_lookup (quota.c:1668)
==49943==    by 0x14C1EB10: io_stats_lookup (io-stats.c:2537)
==49943==  Address 0x1391a040 is in the GOTPLT segment of /usr/local/lib/glusterfs/3.8.12/xlator/system/posix-acl.so
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x13709111: posix_acl_lookup (posix-acl.c:971)
==49943==    by 0x13931121: pl_lookup (posix.c:2657)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x14181538: up_lookup (upcall.c:775)
==49943==    by 0x143A730A: marker_lookup (marker.c:3007)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x147D3640: index_lookup (index.c:2051)
==49943==    by 0x149E3AA8: quota_lookup (quota.c:1668)
==49943==    by 0x14C1EB10: io_stats_lookup (io-stats.c:2537)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==  Address 0x13919ff8 is in the GOT segment of /usr/local/lib/glusterfs/3.8.12/xlator/system/posix-acl.so
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x137063E0: ??? (in /usr/local/lib/glusterfs/3.8.12/xlator/system/posix-acl.so)
==49943==    by 0x13709132: posix_acl_lookup (posix-acl.c:971)
==49943==    by 0x13931121: pl_lookup (posix.c:2657)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x14181538: up_lookup (upcall.c:775)
==49943==    by 0x143A730A: marker_lookup (marker.c:3007)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x147D3640: index_lookup (index.c:2051)
==49943==    by 0x149E3AA8: quota_lookup (quota.c:1668)
==49943==    by 0x14C1EB10: io_stats_lookup (io-stats.c:2537)
==49943==  Address 0x1391a030 is in the GOTPLT segment of /usr/local/lib/glusterfs/3.8.12/xlator/system/posix-acl.so
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x1370914A: posix_acl_lookup (posix-acl.c:971)
==49943==    by 0x13931121: pl_lookup (posix.c:2657)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x14181538: up_lookup (upcall.c:775)
==49943==    by 0x143A730A: marker_lookup (marker.c:3007)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x147D3640: index_lookup (index.c:2051)
==49943==    by 0x149E3AA8: quota_lookup (quota.c:1668)
==49943==    by 0x14C1EB10: io_stats_lookup (io-stats.c:2537)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==  Address 0x13919ff8 is in the GOT segment of /usr/local/lib/glusterfs/3.8.12/xlator/system/posix-acl.so
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x137065D0: ??? (in /usr/local/lib/glusterfs/3.8.12/xlator/system/posix-acl.so)
==49943==    by 0x13709169: posix_acl_lookup (posix-acl.c:971)
==49943==    by 0x13931121: pl_lookup (posix.c:2657)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x14181538: up_lookup (upcall.c:775)
==49943==    by 0x143A730A: marker_lookup (marker.c:3007)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x147D3640: index_lookup (index.c:2051)
==49943==    by 0x149E3AA8: quota_lookup (quota.c:1668)
==49943==    by 0x14C1EB10: io_stats_lookup (io-stats.c:2537)
==49943==  Address 0x1391a128 is in the GOTPLT segment of /usr/local/lib/glusterfs/3.8.12/xlator/system/posix-acl.so
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x137091B1: posix_acl_lookup (posix-acl.c:971)
==49943==    by 0x13931121: pl_lookup (posix.c:2657)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x14181538: up_lookup (upcall.c:775)
==49943==    by 0x143A730A: marker_lookup (marker.c:3007)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x147D3640: index_lookup (index.c:2051)
==49943==    by 0x149E3AA8: quota_lookup (quota.c:1668)
==49943==    by 0x14C1EB10: io_stats_lookup (io-stats.c:2537)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==  Address 0x13919ff8 is in the GOT segment of /usr/local/lib/glusterfs/3.8.12/xlator/system/posix-acl.so
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x13706420: ??? (in /usr/local/lib/glusterfs/3.8.12/xlator/system/posix-acl.so)
==49943==    by 0x137091D0: posix_acl_lookup (posix-acl.c:971)
==49943==    by 0x13931121: pl_lookup (posix.c:2657)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x14181538: up_lookup (upcall.c:775)
==49943==    by 0x143A730A: marker_lookup (marker.c:3007)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x147D3640: index_lookup (index.c:2051)
==49943==    by 0x149E3AA8: quota_lookup (quota.c:1668)
==49943==    by 0x14C1EB10: io_stats_lookup (io-stats.c:2537)
==49943==  Address 0x1391a050 is in the GOTPLT segment of /usr/local/lib/glusterfs/3.8.12/xlator/system/posix-acl.so
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x137065A0: ??? (in /usr/local/lib/glusterfs/3.8.12/xlator/system/posix-acl.so)
==49943==    by 0x137091EF: posix_acl_lookup (posix-acl.c:971)
==49943==    by 0x13931121: pl_lookup (posix.c:2657)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x14181538: up_lookup (upcall.c:775)
==49943==    by 0x143A730A: marker_lookup (marker.c:3007)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x147D3640: index_lookup (index.c:2051)
==49943==    by 0x149E3AA8: quota_lookup (quota.c:1668)
==49943==    by 0x14C1EB10: io_stats_lookup (io-stats.c:2537)
==49943==  Address 0x1391a110 is in the GOTPLT segment of /usr/local/lib/glusterfs/3.8.12/xlator/system/posix-acl.so
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x137065A0: ??? (in /usr/local/lib/glusterfs/3.8.12/xlator/system/posix-acl.so)
==49943==    by 0x13709200: posix_acl_lookup (posix-acl.c:971)
==49943==    by 0x13931121: pl_lookup (posix.c:2657)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x14181538: up_lookup (upcall.c:775)
==49943==    by 0x143A730A: marker_lookup (marker.c:3007)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x147D3640: index_lookup (index.c:2051)
==49943==    by 0x149E3AA8: quota_lookup (quota.c:1668)
==49943==    by 0x14C1EB10: io_stats_lookup (io-stats.c:2537)
==49943==  Address 0x1391a110 is in the GOTPLT segment of /usr/local/lib/glusterfs/3.8.12/xlator/system/posix-acl.so
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x137065A0: ??? (in /usr/local/lib/glusterfs/3.8.12/xlator/system/posix-acl.so)
==49943==    by 0x13709218: posix_acl_lookup (posix-acl.c:971)
==49943==    by 0x13931121: pl_lookup (posix.c:2657)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x14181538: up_lookup (upcall.c:775)
==49943==    by 0x143A730A: marker_lookup (marker.c:3007)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x147D3640: index_lookup (index.c:2051)
==49943==    by 0x149E3AA8: quota_lookup (quota.c:1668)
==49943==    by 0x14C1EB10: io_stats_lookup (io-stats.c:2537)
==49943==  Address 0x1391a110 is in the GOTPLT segment of /usr/local/lib/glusterfs/3.8.12/xlator/system/posix-acl.so
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x13706460: ??? (in /usr/local/lib/glusterfs/3.8.12/xlator/system/posix-acl.so)
==49943==    by 0x13709287: posix_acl_lookup (posix-acl.c:971)
==49943==    by 0x13931121: pl_lookup (posix.c:2657)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x14181538: up_lookup (upcall.c:775)
==49943==    by 0x143A730A: marker_lookup (marker.c:3007)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x147D3640: index_lookup (index.c:2051)
==49943==    by 0x149E3AA8: quota_lookup (quota.c:1668)
==49943==    by 0x14C1EB10: io_stats_lookup (io-stats.c:2537)
==49943==  Address 0x1391a070 is in the GOTPLT segment of /usr/local/lib/glusterfs/3.8.12/xlator/system/posix-acl.so
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x137092D2: posix_acl_lookup (posix-acl.c:971)
==49943==    by 0x13931121: pl_lookup (posix.c:2657)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x14181538: up_lookup (upcall.c:775)
==49943==    by 0x143A730A: marker_lookup (marker.c:3007)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x147D3640: index_lookup (index.c:2051)
==49943==    by 0x149E3AA8: quota_lookup (quota.c:1668)
==49943==    by 0x14C1EB10: io_stats_lookup (io-stats.c:2537)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==  Address 0x13704360 is 0 bytes inside data symbol "fops"
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x134EB8B0: ??? (in /usr/local/lib/glusterfs/3.8.12/xlator/features/bitrot-stub.so)
==49943==    by 0x134EE31F: gf_uuid_compare (compat-uuid.h:27)
==49943==    by 0x134FD636: br_stub_lookup (bit-rot-stub.c:2733)
==49943==    by 0x137092ED: posix_acl_lookup (posix-acl.c:971)
==49943==    by 0x13931121: pl_lookup (posix.c:2657)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x14181538: up_lookup (upcall.c:775)
==49943==    by 0x143A730A: marker_lookup (marker.c:3007)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x147D3640: index_lookup (index.c:2051)
==49943==  Address 0x13704240 is in the GOTPLT segment of /usr/local/lib/glusterfs/3.8.12/xlator/features/bitrot-stub.so
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x5799623: uuid_compare (in /usr/lib64/libuuid.so.1.3.0)
==49943==    by 0x134EE31F: gf_uuid_compare (compat-uuid.h:27)
==49943==    by 0x134FD636: br_stub_lookup (bit-rot-stub.c:2733)
==49943==    by 0x137092ED: posix_acl_lookup (posix-acl.c:971)
==49943==    by 0x13931121: pl_lookup (posix.c:2657)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x14181538: up_lookup (upcall.c:775)
==49943==    by 0x143A730A: marker_lookup (marker.c:3007)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x147D3640: index_lookup (index.c:2051)
==49943==  Address 0x1215d728 is in a rw- anonymous segment
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x5799656: uuid_compare (in /usr/lib64/libuuid.so.1.3.0)
==49943==    by 0x134EE31F: gf_uuid_compare (compat-uuid.h:27)
==49943==    by 0x134FD636: br_stub_lookup (bit-rot-stub.c:2733)
==49943==    by 0x137092ED: posix_acl_lookup (posix-acl.c:971)
==49943==    by 0x13931121: pl_lookup (posix.c:2657)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x14181538: up_lookup (upcall.c:775)
==49943==    by 0x143A730A: marker_lookup (marker.c:3007)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x147D3640: index_lookup (index.c:2051)
==49943==  Address 0x1215d728 is in a rw- anonymous segment
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x134EE8E9: br_stub_get_inode_ctx (bit-rot-stub.h:206)
==49943==    by 0x134FD6D2: br_stub_lookup (bit-rot-stub.c:2746)
==49943==    by 0x137092ED: posix_acl_lookup (posix-acl.c:971)
==49943==    by 0x13931121: pl_lookup (posix.c:2657)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x14181538: up_lookup (upcall.c:775)
==49943==    by 0x143A730A: marker_lookup (marker.c:3007)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x147D3640: index_lookup (index.c:2051)
==49943==    by 0x149E3AA8: quota_lookup (quota.c:1668)
==49943==  Address 0x13703fd8 is in the GOT segment of /usr/local/lib/glusterfs/3.8.12/xlator/features/bitrot-stub.so
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x134EBA20: ??? (in /usr/local/lib/glusterfs/3.8.12/xlator/features/bitrot-stub.so)
==49943==    by 0x134EE905: br_stub_get_inode_ctx (bit-rot-stub.h:206)
==49943==    by 0x134FD6D2: br_stub_lookup (bit-rot-stub.c:2746)
==49943==    by 0x137092ED: posix_acl_lookup (posix-acl.c:971)
==49943==    by 0x13931121: pl_lookup (posix.c:2657)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x14181538: up_lookup (upcall.c:775)
==49943==    by 0x143A730A: marker_lookup (marker.c:3007)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x147D3640: index_lookup (index.c:2051)
==49943==  Address 0x137042f8 is in the GOTPLT segment of /usr/local/lib/glusterfs/3.8.12/xlator/features/bitrot-stub.so
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x134EB5A0: ??? (in /usr/local/lib/glusterfs/3.8.12/xlator/features/bitrot-stub.so)
==49943==    by 0x134EE8CB: __br_stub_get_inode_ctx (bit-rot-stub.h:197)
==49943==    by 0x134EE92E: br_stub_get_inode_ctx (bit-rot-stub.h:208)
==49943==    by 0x134FD6D2: br_stub_lookup (bit-rot-stub.c:2746)
==49943==    by 0x137092ED: posix_acl_lookup (posix-acl.c:971)
==49943==    by 0x13931121: pl_lookup (posix.c:2657)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x14181538: up_lookup (upcall.c:775)
==49943==    by 0x143A730A: marker_lookup (marker.c:3007)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==  Address 0x137040b8 is in the GOTPLT segment of /usr/local/lib/glusterfs/3.8.12/xlator/features/bitrot-stub.so
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x134EE932: br_stub_get_inode_ctx (bit-rot-stub.h:210)
==49943==    by 0x134FD6D2: br_stub_lookup (bit-rot-stub.c:2746)
==49943==    by 0x137092ED: posix_acl_lookup (posix-acl.c:971)
==49943==    by 0x13931121: pl_lookup (posix.c:2657)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x14181538: up_lookup (upcall.c:775)
==49943==    by 0x143A730A: marker_lookup (marker.c:3007)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x147D3640: index_lookup (index.c:2051)
==49943==    by 0x149E3AA8: quota_lookup (quota.c:1668)
==49943==  Address 0x13703fd8 is in the GOT segment of /usr/local/lib/glusterfs/3.8.12/xlator/features/bitrot-stub.so
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x134EB5D0: ??? (in /usr/local/lib/glusterfs/3.8.12/xlator/features/bitrot-stub.so)
==49943==    by 0x134EE94E: br_stub_get_inode_ctx (bit-rot-stub.h:210)
==49943==    by 0x134FD6D2: br_stub_lookup (bit-rot-stub.c:2746)
==49943==    by 0x137092ED: posix_acl_lookup (posix-acl.c:971)
==49943==    by 0x13931121: pl_lookup (posix.c:2657)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x14181538: up_lookup (upcall.c:775)
==49943==    by 0x143A730A: marker_lookup (marker.c:3007)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x147D3640: index_lookup (index.c:2051)
==49943==  Address 0x137040d0 is in the GOTPLT segment of /usr/local/lib/glusterfs/3.8.12/xlator/features/bitrot-stub.so
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x134EB490: ??? (in /usr/local/lib/glusterfs/3.8.12/xlator/features/bitrot-stub.so)
==49943==    by 0x134FD72C: br_stub_lookup (bit-rot-stub.c:2761)
==49943==    by 0x137092ED: posix_acl_lookup (posix-acl.c:971)
==49943==    by 0x13931121: pl_lookup (posix.c:2657)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x14181538: up_lookup (upcall.c:775)
==49943==    by 0x143A730A: marker_lookup (marker.c:3007)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x147D3640: index_lookup (index.c:2051)
==49943==    by 0x149E3AA8: quota_lookup (quota.c:1668)
==49943==  Address 0x13704030 is in the GOTPLT segment of /usr/local/lib/glusterfs/3.8.12/xlator/features/bitrot-stub.so
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x134EB480: ??? (in /usr/local/lib/glusterfs/3.8.12/xlator/features/bitrot-stub.so)
==49943==    by 0x134FD75C: br_stub_lookup (bit-rot-stub.c:2772)
==49943==    by 0x137092ED: posix_acl_lookup (posix-acl.c:971)
==49943==    by 0x13931121: pl_lookup (posix.c:2657)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x14181538: up_lookup (upcall.c:775)
==49943==    by 0x143A730A: marker_lookup (marker.c:3007)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x147D3640: index_lookup (index.c:2051)
==49943==    by 0x149E3AA8: quota_lookup (quota.c:1668)
==49943==  Address 0x13704028 is in the GOTPLT segment of /usr/local/lib/glusterfs/3.8.12/xlator/features/bitrot-stub.so
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x134EB480: ??? (in /usr/local/lib/glusterfs/3.8.12/xlator/features/bitrot-stub.so)
==49943==    by 0x134FD785: br_stub_lookup (bit-rot-stub.c:2775)
==49943==    by 0x137092ED: posix_acl_lookup (posix-acl.c:971)
==49943==    by 0x13931121: pl_lookup (posix.c:2657)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x14181538: up_lookup (upcall.c:775)
==49943==    by 0x143A730A: marker_lookup (marker.c:3007)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x147D3640: index_lookup (index.c:2051)
==49943==    by 0x149E3AA8: quota_lookup (quota.c:1668)
==49943==  Address 0x13704028 is in the GOTPLT segment of /usr/local/lib/glusterfs/3.8.12/xlator/features/bitrot-stub.so
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x134EB480: ??? (in /usr/local/lib/glusterfs/3.8.12/xlator/features/bitrot-stub.so)
==49943==    by 0x134FD7AE: br_stub_lookup (bit-rot-stub.c:2778)
==49943==    by 0x137092ED: posix_acl_lookup (posix-acl.c:971)
==49943==    by 0x13931121: pl_lookup (posix.c:2657)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x14181538: up_lookup (upcall.c:775)
==49943==    by 0x143A730A: marker_lookup (marker.c:3007)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x147D3640: index_lookup (index.c:2051)
==49943==    by 0x149E3AA8: quota_lookup (quota.c:1668)
==49943==  Address 0x13704028 is in the GOTPLT segment of /usr/local/lib/glusterfs/3.8.12/xlator/features/bitrot-stub.so
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x134EB560: ??? (in /usr/local/lib/glusterfs/3.8.12/xlator/features/bitrot-stub.so)
==49943==    by 0x134FD7EB: br_stub_lookup (bit-rot-stub.c:2784)
==49943==    by 0x137092ED: posix_acl_lookup (posix-acl.c:971)
==49943==    by 0x13931121: pl_lookup (posix.c:2657)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x14181538: up_lookup (upcall.c:775)
==49943==    by 0x143A730A: marker_lookup (marker.c:3007)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x147D3640: index_lookup (index.c:2051)
==49943==    by 0x149E3AA8: quota_lookup (quota.c:1668)
==49943==  Address 0x13704098 is in the GOTPLT segment of /usr/local/lib/glusterfs/3.8.12/xlator/features/bitrot-stub.so
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x134FD883: br_stub_lookup (bit-rot-stub.c:2784)
==49943==    by 0x137092ED: posix_acl_lookup (posix-acl.c:971)
==49943==    by 0x13931121: pl_lookup (posix.c:2657)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x14181538: up_lookup (upcall.c:775)
==49943==    by 0x143A730A: marker_lookup (marker.c:3007)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x147D3640: index_lookup (index.c:2051)
==49943==    by 0x149E3AA8: quota_lookup (quota.c:1668)
==49943==    by 0x14C1EB10: io_stats_lookup (io-stats.c:2537)
==49943==  Address 0x13703fd8 is in the GOT segment of /usr/local/lib/glusterfs/3.8.12/xlator/features/bitrot-stub.so
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x134EB520: ??? (in /usr/local/lib/glusterfs/3.8.12/xlator/features/bitrot-stub.so)
==49943==    by 0x134FD8A4: br_stub_lookup (bit-rot-stub.c:2784)
==49943==    by 0x137092ED: posix_acl_lookup (posix-acl.c:971)
==49943==    by 0x13931121: pl_lookup (posix.c:2657)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x14181538: up_lookup (upcall.c:775)
==49943==    by 0x143A730A: marker_lookup (marker.c:3007)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x147D3640: index_lookup (index.c:2051)
==49943==    by 0x149E3AA8: quota_lookup (quota.c:1668)
==49943==  Address 0x13704078 is in the GOTPLT segment of /usr/local/lib/glusterfs/3.8.12/xlator/features/bitrot-stub.so
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x134FD8BC: br_stub_lookup (bit-rot-stub.c:2784)
==49943==    by 0x137092ED: posix_acl_lookup (posix-acl.c:971)
==49943==    by 0x13931121: pl_lookup (posix.c:2657)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x14181538: up_lookup (upcall.c:775)
==49943==    by 0x143A730A: marker_lookup (marker.c:3007)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x147D3640: index_lookup (index.c:2051)
==49943==    by 0x149E3AA8: quota_lookup (quota.c:1668)
==49943==    by 0x14C1EB10: io_stats_lookup (io-stats.c:2537)
==49943==  Address 0x13703fd8 is in the GOT segment of /usr/local/lib/glusterfs/3.8.12/xlator/features/bitrot-stub.so
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x134EBA20: ??? (in /usr/local/lib/glusterfs/3.8.12/xlator/features/bitrot-stub.so)
==49943==    by 0x134FD8DB: br_stub_lookup (bit-rot-stub.c:2784)
==49943==    by 0x137092ED: posix_acl_lookup (posix-acl.c:971)
==49943==    by 0x13931121: pl_lookup (posix.c:2657)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x14181538: up_lookup (upcall.c:775)
==49943==    by 0x143A730A: marker_lookup (marker.c:3007)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x147D3640: index_lookup (index.c:2051)
==49943==    by 0x149E3AA8: quota_lookup (quota.c:1668)
==49943==  Address 0x137042f8 is in the GOTPLT segment of /usr/local/lib/glusterfs/3.8.12/xlator/features/bitrot-stub.so
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x134FD923: br_stub_lookup (bit-rot-stub.c:2784)
==49943==    by 0x137092ED: posix_acl_lookup (posix-acl.c:971)
==49943==    by 0x13931121: pl_lookup (posix.c:2657)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x14181538: up_lookup (upcall.c:775)
==49943==    by 0x143A730A: marker_lookup (marker.c:3007)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x147D3640: index_lookup (index.c:2051)
==49943==    by 0x149E3AA8: quota_lookup (quota.c:1668)
==49943==    by 0x14C1EB10: io_stats_lookup (io-stats.c:2537)
==49943==  Address 0x13703fd8 is in the GOT segment of /usr/local/lib/glusterfs/3.8.12/xlator/features/bitrot-stub.so
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x134EB5D0: ??? (in /usr/local/lib/glusterfs/3.8.12/xlator/features/bitrot-stub.so)
==49943==    by 0x134FD942: br_stub_lookup (bit-rot-stub.c:2784)
==49943==    by 0x137092ED: posix_acl_lookup (posix-acl.c:971)
==49943==    by 0x13931121: pl_lookup (posix.c:2657)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x14181538: up_lookup (upcall.c:775)
==49943==    by 0x143A730A: marker_lookup (marker.c:3007)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x147D3640: index_lookup (index.c:2051)
==49943==    by 0x149E3AA8: quota_lookup (quota.c:1668)
==49943==  Address 0x137040d0 is in the GOTPLT segment of /usr/local/lib/glusterfs/3.8.12/xlator/features/bitrot-stub.so
==49943== 
==49943== Invalid write of size 8
==49943==    at 0x134FD96E: br_stub_lookup (bit-rot-stub.c:2784)
==49943==    by 0x137092ED: posix_acl_lookup (posix-acl.c:971)
==49943==    by 0x13931121: pl_lookup (posix.c:2657)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x14181538: up_lookup (upcall.c:775)
==49943==    by 0x143A730A: marker_lookup (marker.c:3007)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x147D3640: index_lookup (index.c:2051)
==49943==    by 0x149E3AA8: quota_lookup (quota.c:1668)
==49943==    by 0x14C1EB10: io_stats_lookup (io-stats.c:2537)
==49943==  Address 0x134e6698 is 408 bytes inside data symbol "fops"
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x134EB9D0: ??? (in /usr/local/lib/glusterfs/3.8.12/xlator/features/bitrot-stub.so)
==49943==    by 0x134FD97E: br_stub_lookup (bit-rot-stub.c:2784)
==49943==    by 0x137092ED: posix_acl_lookup (posix-acl.c:971)
==49943==    by 0x13931121: pl_lookup (posix.c:2657)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x14181538: up_lookup (upcall.c:775)
==49943==    by 0x143A730A: marker_lookup (marker.c:3007)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x147D3640: index_lookup (index.c:2051)
==49943==    by 0x149E3AA8: quota_lookup (quota.c:1668)
==49943==  Address 0x137042d0 is in the GOTPLT segment of /usr/local/lib/glusterfs/3.8.12/xlator/features/bitrot-stub.so
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x134EB9D0: ??? (in /usr/local/lib/glusterfs/3.8.12/xlator/features/bitrot-stub.so)
==49943==    by 0x134FD98F: br_stub_lookup (bit-rot-stub.c:2784)
==49943==    by 0x137092ED: posix_acl_lookup (posix-acl.c:971)
==49943==    by 0x13931121: pl_lookup (posix.c:2657)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x14181538: up_lookup (upcall.c:775)
==49943==    by 0x143A730A: marker_lookup (marker.c:3007)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x147D3640: index_lookup (index.c:2051)
==49943==    by 0x149E3AA8: quota_lookup (quota.c:1668)
==49943==  Address 0x137042d0 is in the GOTPLT segment of /usr/local/lib/glusterfs/3.8.12/xlator/features/bitrot-stub.so
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x134EB9D0: ??? (in /usr/local/lib/glusterfs/3.8.12/xlator/features/bitrot-stub.so)
==49943==    by 0x134FD9A7: br_stub_lookup (bit-rot-stub.c:2784)
==49943==    by 0x137092ED: posix_acl_lookup (posix-acl.c:971)
==49943==    by 0x13931121: pl_lookup (posix.c:2657)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x14181538: up_lookup (upcall.c:775)
==49943==    by 0x143A730A: marker_lookup (marker.c:3007)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x147D3640: index_lookup (index.c:2051)
==49943==    by 0x149E3AA8: quota_lookup (quota.c:1668)
==49943==  Address 0x137042d0 is in the GOTPLT segment of /usr/local/lib/glusterfs/3.8.12/xlator/features/bitrot-stub.so
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x134EB660: ??? (in /usr/local/lib/glusterfs/3.8.12/xlator/features/bitrot-stub.so)
==49943==    by 0x134FDA16: br_stub_lookup (bit-rot-stub.c:2784)
==49943==    by 0x137092ED: posix_acl_lookup (posix-acl.c:971)
==49943==    by 0x13931121: pl_lookup (posix.c:2657)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x14181538: up_lookup (upcall.c:775)
==49943==    by 0x143A730A: marker_lookup (marker.c:3007)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x147D3640: index_lookup (index.c:2051)
==49943==    by 0x149E3AA8: quota_lookup (quota.c:1668)
==49943==  Address 0x13704118 is in the GOTPLT segment of /usr/local/lib/glusterfs/3.8.12/xlator/features/bitrot-stub.so
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x134FDA64: br_stub_lookup (bit-rot-stub.c:2784)
==49943==    by 0x137092ED: posix_acl_lookup (posix-acl.c:971)
==49943==    by 0x13931121: pl_lookup (posix.c:2657)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x14181538: up_lookup (upcall.c:775)
==49943==    by 0x143A730A: marker_lookup (marker.c:3007)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x147D3640: index_lookup (index.c:2051)
==49943==    by 0x149E3AA8: quota_lookup (quota.c:1668)
==49943==    by 0x14C1EB10: io_stats_lookup (io-stats.c:2537)
==49943==  Address 0x134e6500 is 0 bytes inside data symbol "fops"
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x4F1061F: default_lookup (defaults.c:2572)
==49943==    by 0x134FDA85: br_stub_lookup (bit-rot-stub.c:2784)
==49943==    by 0x137092ED: posix_acl_lookup (posix-acl.c:971)
==49943==    by 0x13931121: pl_lookup (posix.c:2657)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x14181538: up_lookup (upcall.c:775)
==49943==    by 0x143A730A: marker_lookup (marker.c:3007)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x147D3640: index_lookup (index.c:2051)
==49943==    by 0x149E3AA8: quota_lookup (quota.c:1668)
==49943==  Address 0x12df5180 is 0 bytes inside data symbol "fops"
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x12BD9570: ??? (in /usr/local/lib/glusterfs/3.8.12/xlator/features/changetimerecorder.so)
==49943==    by 0x12BDCAC4: ctr_lookup (changetimerecorder.c:357)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x134FDA85: br_stub_lookup (bit-rot-stub.c:2784)
==49943==    by 0x137092ED: posix_acl_lookup (posix-acl.c:971)
==49943==    by 0x13931121: pl_lookup (posix.c:2657)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x14181538: up_lookup (upcall.c:775)
==49943==    by 0x143A730A: marker_lookup (marker.c:3007)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==  Address 0x12df2060 is in the GOTPLT segment of /usr/local/lib/glusterfs/3.8.12/xlator/features/changetimerecorder.so
==49943== 
==49943== Invalid read of size 4
==49943==    at 0x4E8F61C: gf_mem_set_acct_info (mem-pool.c:65)
==49943==    by 0x4E8FABC: __gf_calloc (mem-pool.c:123)
==49943==    by 0x4E908B0: mem_get (mem-pool.c:513)
==49943==    by 0x4E906CE: mem_get0 (mem-pool.c:446)
==49943==    by 0x12BDCAC4: ctr_lookup (changetimerecorder.c:357)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x134FDA85: br_stub_lookup (bit-rot-stub.c:2784)
==49943==    by 0x137092ED: posix_acl_lookup (posix-acl.c:971)
==49943==    by 0x13931121: pl_lookup (posix.c:2657)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==  Address 0x173b65a0 is 0 bytes inside a block of size 12,616 alloc'd
==49943==    at 0x4C27BE3: malloc (vg_replace_malloc.c:299)
==49943==    by 0x4E5A12B: __gf_default_malloc (mem-pool.h:108)
==49943==    by 0x4E5BF6C: xlator_mem_acct_init (xlator.c:520)
==49943==    by 0x12BEA597: mem_acct_init (changetimerecorder.c:2161)
==49943==    by 0x4E5BB06: xlator_init (xlator.c:419)
==49943==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==49943==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==49943==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==49943==    by 0x40ECA5: mgmt_getspec_cbk (glusterfsd-mgmt.c:1648)
==49943==    by 0x51505D2: rpc_clnt_handle_reply (rpc-clnt.c:791)
==49943==    by 0x5150B34: rpc_clnt_notify (rpc-clnt.c:971)
==49943==    by 0x514CD1D: rpc_transport_notify (rpc-transport.c:541)
==49943== 
==49943== Invalid read of size 4
==49943==    at 0x60B7210: pthread_spin_lock (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x4E8FABC: __gf_calloc (mem-pool.c:123)
==49943==    by 0x4E908B0: mem_get (mem-pool.c:513)
==49943==    by 0x4E906CE: mem_get0 (mem-pool.c:446)
==49943==    by 0x12BDCAC4: ctr_lookup (changetimerecorder.c:357)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x134FDA85: br_stub_lookup (bit-rot-stub.c:2784)
==49943==    by 0x137092ED: posix_acl_lookup (posix-acl.c:971)
==49943==    by 0x13931121: pl_lookup (posix.c:2657)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==  Address 0x173b7500 is 3,936 bytes inside a block of size 12,616 alloc'd
==49943==    at 0x4C27BE3: malloc (vg_replace_malloc.c:299)
==49943==    by 0x4E5A12B: __gf_default_malloc (mem-pool.h:108)
==49943==    by 0x4E5BF6C: xlator_mem_acct_init (xlator.c:520)
==49943==    by 0x12BEA597: mem_acct_init (changetimerecorder.c:2161)
==49943==    by 0x4E5BB06: xlator_init (xlator.c:419)
==49943==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==49943==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==49943==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==49943==    by 0x40ECA5: mgmt_getspec_cbk (glusterfsd-mgmt.c:1648)
==49943==    by 0x51505D2: rpc_clnt_handle_reply (rpc-clnt.c:791)
==49943==    by 0x5150B34: rpc_clnt_notify (rpc-clnt.c:971)
==49943==    by 0x514CD1D: rpc_transport_notify (rpc-transport.c:541)
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x4E8F6D2: gf_mem_set_acct_info (mem-pool.c:69)
==49943==    by 0x4E8FABC: __gf_calloc (mem-pool.c:123)
==49943==    by 0x4E908B0: mem_get (mem-pool.c:513)
==49943==    by 0x4E906CE: mem_get0 (mem-pool.c:446)
==49943==    by 0x12BDCAC4: ctr_lookup (changetimerecorder.c:357)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x134FDA85: br_stub_lookup (bit-rot-stub.c:2784)
==49943==    by 0x137092ED: posix_acl_lookup (posix-acl.c:971)
==49943==    by 0x13931121: pl_lookup (posix.c:2657)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==  Address 0x173b74d8 is 3,896 bytes inside a block of size 12,616 alloc'd
==49943==    at 0x4C27BE3: malloc (vg_replace_malloc.c:299)
==49943==    by 0x4E5A12B: __gf_default_malloc (mem-pool.h:108)
==49943==    by 0x4E5BF6C: xlator_mem_acct_init (xlator.c:520)
==49943==    by 0x12BEA597: mem_acct_init (changetimerecorder.c:2161)
==49943==    by 0x4E5BB06: xlator_init (xlator.c:419)
==49943==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==49943==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==49943==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==49943==    by 0x40ECA5: mgmt_getspec_cbk (glusterfsd-mgmt.c:1648)
==49943==    by 0x51505D2: rpc_clnt_handle_reply (rpc-clnt.c:791)
==49943==    by 0x5150B34: rpc_clnt_notify (rpc-clnt.c:971)
==49943==    by 0x514CD1D: rpc_transport_notify (rpc-transport.c:541)
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x4E8F732: gf_mem_set_acct_info (mem-pool.c:71)
==49943==    by 0x4E8FABC: __gf_calloc (mem-pool.c:123)
==49943==    by 0x4E908B0: mem_get (mem-pool.c:513)
==49943==    by 0x4E906CE: mem_get0 (mem-pool.c:446)
==49943==    by 0x12BDCAC4: ctr_lookup (changetimerecorder.c:357)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x134FDA85: br_stub_lookup (bit-rot-stub.c:2784)
==49943==    by 0x137092ED: posix_acl_lookup (posix-acl.c:971)
==49943==    by 0x13931121: pl_lookup (posix.c:2657)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==  Address 0x173b74e0 is 3,904 bytes inside a block of size 12,616 alloc'd
==49943==    at 0x4C27BE3: malloc (vg_replace_malloc.c:299)
==49943==    by 0x4E5A12B: __gf_default_malloc (mem-pool.h:108)
==49943==    by 0x4E5BF6C: xlator_mem_acct_init (xlator.c:520)
==49943==    by 0x12BEA597: mem_acct_init (changetimerecorder.c:2161)
==49943==    by 0x4E5BB06: xlator_init (xlator.c:419)
==49943==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==49943==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==49943==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==49943==    by 0x40ECA5: mgmt_getspec_cbk (glusterfsd-mgmt.c:1648)
==49943==    by 0x51505D2: rpc_clnt_handle_reply (rpc-clnt.c:791)
==49943==    by 0x5150B34: rpc_clnt_notify (rpc-clnt.c:971)
==49943==    by 0x514CD1D: rpc_transport_notify (rpc-transport.c:541)
==49943== 
==49943== Invalid write of size 8
==49943==    at 0x4E8F755: gf_mem_set_acct_info (mem-pool.c:71)
==49943==    by 0x4E8FABC: __gf_calloc (mem-pool.c:123)
==49943==    by 0x4E908B0: mem_get (mem-pool.c:513)
==49943==    by 0x4E906CE: mem_get0 (mem-pool.c:446)
==49943==    by 0x12BDCAC4: ctr_lookup (changetimerecorder.c:357)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x134FDA85: br_stub_lookup (bit-rot-stub.c:2784)
==49943==    by 0x137092ED: posix_acl_lookup (posix-acl.c:971)
==49943==    by 0x13931121: pl_lookup (posix.c:2657)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==  Address 0x173b74e0 is 3,904 bytes inside a block of size 12,616 alloc'd
==49943==    at 0x4C27BE3: malloc (vg_replace_malloc.c:299)
==49943==    by 0x4E5A12B: __gf_default_malloc (mem-pool.h:108)
==49943==    by 0x4E5BF6C: xlator_mem_acct_init (xlator.c:520)
==49943==    by 0x12BEA597: mem_acct_init (changetimerecorder.c:2161)
==49943==    by 0x4E5BB06: xlator_init (xlator.c:419)
==49943==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==49943==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==49943==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==49943==    by 0x40ECA5: mgmt_getspec_cbk (glusterfsd-mgmt.c:1648)
==49943==    by 0x51505D2: rpc_clnt_handle_reply (rpc-clnt.c:791)
==49943==    by 0x5150B34: rpc_clnt_notify (rpc-clnt.c:971)
==49943==    by 0x514CD1D: rpc_transport_notify (rpc-transport.c:541)
==49943== 
==49943== Invalid read of size 4
==49943==    at 0x4E8F77B: gf_mem_set_acct_info (mem-pool.c:72)
==49943==    by 0x4E8FABC: __gf_calloc (mem-pool.c:123)
==49943==    by 0x4E908B0: mem_get (mem-pool.c:513)
==49943==    by 0x4E906CE: mem_get0 (mem-pool.c:446)
==49943==    by 0x12BDCAC4: ctr_lookup (changetimerecorder.c:357)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x134FDA85: br_stub_lookup (bit-rot-stub.c:2784)
==49943==    by 0x137092ED: posix_acl_lookup (posix-acl.c:971)
==49943==    by 0x13931121: pl_lookup (posix.c:2657)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==  Address 0x173b74f0 is 3,920 bytes inside a block of size 12,616 alloc'd
==49943==    at 0x4C27BE3: malloc (vg_replace_malloc.c:299)
==49943==    by 0x4E5A12B: __gf_default_malloc (mem-pool.h:108)
==49943==    by 0x4E5BF6C: xlator_mem_acct_init (xlator.c:520)
==49943==    by 0x12BEA597: mem_acct_init (changetimerecorder.c:2161)
==49943==    by 0x4E5BB06: xlator_init (xlator.c:419)
==49943==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==49943==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==49943==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==49943==    by 0x40ECA5: mgmt_getspec_cbk (glusterfsd-mgmt.c:1648)
==49943==    by 0x51505D2: rpc_clnt_handle_reply (rpc-clnt.c:791)
==49943==    by 0x5150B34: rpc_clnt_notify (rpc-clnt.c:971)
==49943==    by 0x514CD1D: rpc_transport_notify (rpc-transport.c:541)
==49943== 
==49943== Invalid write of size 4
==49943==    at 0x4E8F799: gf_mem_set_acct_info (mem-pool.c:72)
==49943==    by 0x4E8FABC: __gf_calloc (mem-pool.c:123)
==49943==    by 0x4E908B0: mem_get (mem-pool.c:513)
==49943==    by 0x4E906CE: mem_get0 (mem-pool.c:446)
==49943==    by 0x12BDCAC4: ctr_lookup (changetimerecorder.c:357)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x134FDA85: br_stub_lookup (bit-rot-stub.c:2784)
==49943==    by 0x137092ED: posix_acl_lookup (posix-acl.c:971)
==49943==    by 0x13931121: pl_lookup (posix.c:2657)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==  Address 0x173b74f0 is 3,920 bytes inside a block of size 12,616 alloc'd
==49943==    at 0x4C27BE3: malloc (vg_replace_malloc.c:299)
==49943==    by 0x4E5A12B: __gf_default_malloc (mem-pool.h:108)
==49943==    by 0x4E5BF6C: xlator_mem_acct_init (xlator.c:520)
==49943==    by 0x12BEA597: mem_acct_init (changetimerecorder.c:2161)
==49943==    by 0x4E5BB06: xlator_init (xlator.c:419)
==49943==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==49943==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==49943==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==49943==    by 0x40ECA5: mgmt_getspec_cbk (glusterfsd-mgmt.c:1648)
==49943==    by 0x51505D2: rpc_clnt_handle_reply (rpc-clnt.c:791)
==49943==    by 0x5150B34: rpc_clnt_notify (rpc-clnt.c:971)
==49943==    by 0x514CD1D: rpc_transport_notify (rpc-transport.c:541)
==49943== 
==49943== Invalid read of size 4
==49943==    at 0x4E8F7BF: gf_mem_set_acct_info (mem-pool.c:73)
==49943==    by 0x4E8FABC: __gf_calloc (mem-pool.c:123)
==49943==    by 0x4E908B0: mem_get (mem-pool.c:513)
==49943==    by 0x4E906CE: mem_get0 (mem-pool.c:446)
==49943==    by 0x12BDCAC4: ctr_lookup (changetimerecorder.c:357)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x134FDA85: br_stub_lookup (bit-rot-stub.c:2784)
==49943==    by 0x137092ED: posix_acl_lookup (posix-acl.c:971)
==49943==    by 0x13931121: pl_lookup (posix.c:2657)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==  Address 0x173b74f4 is 3,924 bytes inside a block of size 12,616 alloc'd
==49943==    at 0x4C27BE3: malloc (vg_replace_malloc.c:299)
==49943==    by 0x4E5A12B: __gf_default_malloc (mem-pool.h:108)
==49943==    by 0x4E5BF6C: xlator_mem_acct_init (xlator.c:520)
==49943==    by 0x12BEA597: mem_acct_init (changetimerecorder.c:2161)
==49943==    by 0x4E5BB06: xlator_init (xlator.c:419)
==49943==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==49943==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==49943==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==49943==    by 0x40ECA5: mgmt_getspec_cbk (glusterfsd-mgmt.c:1648)
==49943==    by 0x51505D2: rpc_clnt_handle_reply (rpc-clnt.c:791)
==49943==    by 0x5150B34: rpc_clnt_notify (rpc-clnt.c:971)
==49943==    by 0x514CD1D: rpc_transport_notify (rpc-transport.c:541)
==49943== 
==49943== Invalid write of size 4
==49943==    at 0x4E8F7DD: gf_mem_set_acct_info (mem-pool.c:73)
==49943==    by 0x4E8FABC: __gf_calloc (mem-pool.c:123)
==49943==    by 0x4E908B0: mem_get (mem-pool.c:513)
==49943==    by 0x4E906CE: mem_get0 (mem-pool.c:446)
==49943==    by 0x12BDCAC4: ctr_lookup (changetimerecorder.c:357)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x134FDA85: br_stub_lookup (bit-rot-stub.c:2784)
==49943==    by 0x137092ED: posix_acl_lookup (posix-acl.c:971)
==49943==    by 0x13931121: pl_lookup (posix.c:2657)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==  Address 0x173b74f4 is 3,924 bytes inside a block of size 12,616 alloc'd
==49943==    at 0x4C27BE3: malloc (vg_replace_malloc.c:299)
==49943==    by 0x4E5A12B: __gf_default_malloc (mem-pool.h:108)
==49943==    by 0x4E5BF6C: xlator_mem_acct_init (xlator.c:520)
==49943==    by 0x12BEA597: mem_acct_init (changetimerecorder.c:2161)
==49943==    by 0x4E5BB06: xlator_init (xlator.c:419)
==49943==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==49943==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==49943==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==49943==    by 0x40ECA5: mgmt_getspec_cbk (glusterfsd-mgmt.c:1648)
==49943==    by 0x51505D2: rpc_clnt_handle_reply (rpc-clnt.c:791)
==49943==    by 0x5150B34: rpc_clnt_notify (rpc-clnt.c:971)
==49943==    by 0x514CD1D: rpc_transport_notify (rpc-transport.c:541)
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x4E8F80E: gf_mem_set_acct_info (mem-pool.c:75)
==49943==    by 0x4E8FABC: __gf_calloc (mem-pool.c:123)
==49943==    by 0x4E908B0: mem_get (mem-pool.c:513)
==49943==    by 0x4E906CE: mem_get0 (mem-pool.c:446)
==49943==    by 0x12BDCAC4: ctr_lookup (changetimerecorder.c:357)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x134FDA85: br_stub_lookup (bit-rot-stub.c:2784)
==49943==    by 0x137092ED: posix_acl_lookup (posix-acl.c:971)
==49943==    by 0x13931121: pl_lookup (posix.c:2657)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==  Address 0x173b74e0 is 3,904 bytes inside a block of size 12,616 alloc'd
==49943==    at 0x4C27BE3: malloc (vg_replace_malloc.c:299)
==49943==    by 0x4E5A12B: __gf_default_malloc (mem-pool.h:108)
==49943==    by 0x4E5BF6C: xlator_mem_acct_init (xlator.c:520)
==49943==    by 0x12BEA597: mem_acct_init (changetimerecorder.c:2161)
==49943==    by 0x4E5BB06: xlator_init (xlator.c:419)
==49943==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==49943==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==49943==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==49943==    by 0x40ECA5: mgmt_getspec_cbk (glusterfsd-mgmt.c:1648)
==49943==    by 0x51505D2: rpc_clnt_handle_reply (rpc-clnt.c:791)
==49943==    by 0x5150B34: rpc_clnt_notify (rpc-clnt.c:971)
==49943==    by 0x514CD1D: rpc_transport_notify (rpc-transport.c:541)
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x4E8F834: gf_mem_set_acct_info (mem-pool.c:75)
==49943==    by 0x4E8FABC: __gf_calloc (mem-pool.c:123)
==49943==    by 0x4E908B0: mem_get (mem-pool.c:513)
==49943==    by 0x4E906CE: mem_get0 (mem-pool.c:446)
==49943==    by 0x12BDCAC4: ctr_lookup (changetimerecorder.c:357)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x134FDA85: br_stub_lookup (bit-rot-stub.c:2784)
==49943==    by 0x137092ED: posix_acl_lookup (posix-acl.c:971)
==49943==    by 0x13931121: pl_lookup (posix.c:2657)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==  Address 0x173b74e8 is 3,912 bytes inside a block of size 12,616 alloc'd
==49943==    at 0x4C27BE3: malloc (vg_replace_malloc.c:299)
==49943==    by 0x4E5A12B: __gf_default_malloc (mem-pool.h:108)
==49943==    by 0x4E5BF6C: xlator_mem_acct_init (xlator.c:520)
==49943==    by 0x12BEA597: mem_acct_init (changetimerecorder.c:2161)
==49943==    by 0x4E5BB06: xlator_init (xlator.c:419)
==49943==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==49943==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==49943==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==49943==    by 0x40ECA5: mgmt_getspec_cbk (glusterfsd-mgmt.c:1648)
==49943==    by 0x51505D2: rpc_clnt_handle_reply (rpc-clnt.c:791)
==49943==    by 0x5150B34: rpc_clnt_notify (rpc-clnt.c:971)
==49943==    by 0x514CD1D: rpc_transport_notify (rpc-transport.c:541)
==49943== 
==49943== Invalid write of size 8
==49943==    at 0x4E8F859: gf_mem_set_acct_info (mem-pool.c:74)
==49943==    by 0x4E8FABC: __gf_calloc (mem-pool.c:123)
==49943==    by 0x4E908B0: mem_get (mem-pool.c:513)
==49943==    by 0x4E906CE: mem_get0 (mem-pool.c:446)
==49943==    by 0x12BDCAC4: ctr_lookup (changetimerecorder.c:357)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x134FDA85: br_stub_lookup (bit-rot-stub.c:2784)
==49943==    by 0x137092ED: posix_acl_lookup (posix-acl.c:971)
==49943==    by 0x13931121: pl_lookup (posix.c:2657)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==  Address 0x173b74e8 is 3,912 bytes inside a block of size 12,616 alloc'd
==49943==    at 0x4C27BE3: malloc (vg_replace_malloc.c:299)
==49943==    by 0x4E5A12B: __gf_default_malloc (mem-pool.h:108)
==49943==    by 0x4E5BF6C: xlator_mem_acct_init (xlator.c:520)
==49943==    by 0x12BEA597: mem_acct_init (changetimerecorder.c:2161)
==49943==    by 0x4E5BB06: xlator_init (xlator.c:419)
==49943==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==49943==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==49943==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==49943==    by 0x40ECA5: mgmt_getspec_cbk (glusterfsd-mgmt.c:1648)
==49943==    by 0x51505D2: rpc_clnt_handle_reply (rpc-clnt.c:791)
==49943==    by 0x5150B34: rpc_clnt_notify (rpc-clnt.c:971)
==49943==    by 0x514CD1D: rpc_transport_notify (rpc-transport.c:541)
==49943== 
==49943== Invalid read of size 4
==49943==    at 0x4E8F88A: gf_mem_set_acct_info (mem-pool.c:78)
==49943==    by 0x4E8FABC: __gf_calloc (mem-pool.c:123)
==49943==    by 0x4E908B0: mem_get (mem-pool.c:513)
==49943==    by 0x4E906CE: mem_get0 (mem-pool.c:446)
==49943==    by 0x12BDCAC4: ctr_lookup (changetimerecorder.c:357)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x134FDA85: br_stub_lookup (bit-rot-stub.c:2784)
==49943==    by 0x137092ED: posix_acl_lookup (posix-acl.c:971)
==49943==    by 0x13931121: pl_lookup (posix.c:2657)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==  Address 0x173b74f0 is 3,920 bytes inside a block of size 12,616 alloc'd
==49943==    at 0x4C27BE3: malloc (vg_replace_malloc.c:299)
==49943==    by 0x4E5A12B: __gf_default_malloc (mem-pool.h:108)
==49943==    by 0x4E5BF6C: xlator_mem_acct_init (xlator.c:520)
==49943==    by 0x12BEA597: mem_acct_init (changetimerecorder.c:2161)
==49943==    by 0x4E5BB06: xlator_init (xlator.c:419)
==49943==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==49943==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==49943==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==49943==    by 0x40ECA5: mgmt_getspec_cbk (glusterfsd-mgmt.c:1648)
==49943==    by 0x51505D2: rpc_clnt_handle_reply (rpc-clnt.c:791)
==49943==    by 0x5150B34: rpc_clnt_notify (rpc-clnt.c:971)
==49943==    by 0x514CD1D: rpc_transport_notify (rpc-transport.c:541)
==49943== 
==49943== Invalid read of size 4
==49943==    at 0x4E8F8B0: gf_mem_set_acct_info (mem-pool.c:78)
==49943==    by 0x4E8FABC: __gf_calloc (mem-pool.c:123)
==49943==    by 0x4E908B0: mem_get (mem-pool.c:513)
==49943==    by 0x4E906CE: mem_get0 (mem-pool.c:446)
==49943==    by 0x12BDCAC4: ctr_lookup (changetimerecorder.c:357)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x134FDA85: br_stub_lookup (bit-rot-stub.c:2784)
==49943==    by 0x137092ED: posix_acl_lookup (posix-acl.c:971)
==49943==    by 0x13931121: pl_lookup (posix.c:2657)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==  Address 0x173b74f8 is 3,928 bytes inside a block of size 12,616 alloc'd
==49943==    at 0x4C27BE3: malloc (vg_replace_malloc.c:299)
==49943==    by 0x4E5A12B: __gf_default_malloc (mem-pool.h:108)
==49943==    by 0x4E5BF6C: xlator_mem_acct_init (xlator.c:520)
==49943==    by 0x12BEA597: mem_acct_init (changetimerecorder.c:2161)
==49943==    by 0x4E5BB06: xlator_init (xlator.c:419)
==49943==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==49943==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==49943==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==49943==    by 0x40ECA5: mgmt_getspec_cbk (glusterfsd-mgmt.c:1648)
==49943==    by 0x51505D2: rpc_clnt_handle_reply (rpc-clnt.c:791)
==49943==    by 0x5150B34: rpc_clnt_notify (rpc-clnt.c:971)
==49943==    by 0x514CD1D: rpc_transport_notify (rpc-transport.c:541)
==49943== 
==49943== Invalid write of size 4
==49943==    at 0x4E8F8D2: gf_mem_set_acct_info (mem-pool.c:77)
==49943==    by 0x4E8FABC: __gf_calloc (mem-pool.c:123)
==49943==    by 0x4E908B0: mem_get (mem-pool.c:513)
==49943==    by 0x4E906CE: mem_get0 (mem-pool.c:446)
==49943==    by 0x12BDCAC4: ctr_lookup (changetimerecorder.c:357)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x134FDA85: br_stub_lookup (bit-rot-stub.c:2784)
==49943==    by 0x137092ED: posix_acl_lookup (posix-acl.c:971)
==49943==    by 0x13931121: pl_lookup (posix.c:2657)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==  Address 0x173b74f8 is 3,928 bytes inside a block of size 12,616 alloc'd
==49943==    at 0x4C27BE3: malloc (vg_replace_malloc.c:299)
==49943==    by 0x4E5A12B: __gf_default_malloc (mem-pool.h:108)
==49943==    by 0x4E5BF6C: xlator_mem_acct_init (xlator.c:520)
==49943==    by 0x12BEA597: mem_acct_init (changetimerecorder.c:2161)
==49943==    by 0x4E5BB06: xlator_init (xlator.c:419)
==49943==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==49943==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==49943==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==49943==    by 0x40ECA5: mgmt_getspec_cbk (glusterfsd-mgmt.c:1648)
==49943==    by 0x51505D2: rpc_clnt_handle_reply (rpc-clnt.c:791)
==49943==    by 0x5150B34: rpc_clnt_notify (rpc-clnt.c:971)
==49943==    by 0x514CD1D: rpc_transport_notify (rpc-transport.c:541)
==49943== 
==49943== Invalid write of size 4
==49943==    at 0x60B7250: pthread_spin_init (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x4E8FABC: __gf_calloc (mem-pool.c:123)
==49943==    by 0x4E908B0: mem_get (mem-pool.c:513)
==49943==    by 0x4E906CE: mem_get0 (mem-pool.c:446)
==49943==    by 0x12BDCAC4: ctr_lookup (changetimerecorder.c:357)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x134FDA85: br_stub_lookup (bit-rot-stub.c:2784)
==49943==    by 0x137092ED: posix_acl_lookup (posix-acl.c:971)
==49943==    by 0x13931121: pl_lookup (posix.c:2657)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==  Address 0x173b7500 is 3,936 bytes inside a block of size 12,616 alloc'd
==49943==    at 0x4C27BE3: malloc (vg_replace_malloc.c:299)
==49943==    by 0x4E5A12B: __gf_default_malloc (mem-pool.h:108)
==49943==    by 0x4E5BF6C: xlator_mem_acct_init (xlator.c:520)
==49943==    by 0x12BEA597: mem_acct_init (changetimerecorder.c:2161)
==49943==    by 0x4E5BB06: xlator_init (xlator.c:419)
==49943==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==49943==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==49943==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==49943==    by 0x40ECA5: mgmt_getspec_cbk (glusterfsd-mgmt.c:1648)
==49943==    by 0x51505D2: rpc_clnt_handle_reply (rpc-clnt.c:791)
==49943==    by 0x5150B34: rpc_clnt_notify (rpc-clnt.c:971)
==49943==    by 0x514CD1D: rpc_transport_notify (rpc-transport.c:541)
==49943== 
==49943== Invalid read of size 4
==49943==    at 0x4E8F951: gf_mem_set_acct_info (mem-pool.c:83)
==49943==    by 0x4E8FABC: __gf_calloc (mem-pool.c:123)
==49943==    by 0x4E908B0: mem_get (mem-pool.c:513)
==49943==    by 0x4E906CE: mem_get0 (mem-pool.c:446)
==49943==    by 0x12BDCAC4: ctr_lookup (changetimerecorder.c:357)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x134FDA85: br_stub_lookup (bit-rot-stub.c:2784)
==49943==    by 0x137092ED: posix_acl_lookup (posix-acl.c:971)
==49943==    by 0x13931121: pl_lookup (posix.c:2657)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==  Address 0x173b65d0 is 48 bytes inside a block of size 12,616 alloc'd
==49943==    at 0x4C27BE3: malloc (vg_replace_malloc.c:299)
==49943==    by 0x4E5A12B: __gf_default_malloc (mem-pool.h:108)
==49943==    by 0x4E5BF6C: xlator_mem_acct_init (xlator.c:520)
==49943==    by 0x12BEA597: mem_acct_init (changetimerecorder.c:2161)
==49943==    by 0x4E5BB06: xlator_init (xlator.c:419)
==49943==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==49943==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==49943==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==49943==    by 0x40ECA5: mgmt_getspec_cbk (glusterfsd-mgmt.c:1648)
==49943==    by 0x51505D2: rpc_clnt_handle_reply (rpc-clnt.c:791)
==49943==    by 0x5150B34: rpc_clnt_notify (rpc-clnt.c:971)
==49943==    by 0x514CD1D: rpc_transport_notify (rpc-transport.c:541)
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x12BDCB64: ctr_lookup (changetimerecorder.c:357)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x134FDA85: br_stub_lookup (bit-rot-stub.c:2784)
==49943==    by 0x137092ED: posix_acl_lookup (posix-acl.c:971)
==49943==    by 0x13931121: pl_lookup (posix.c:2657)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x14181538: up_lookup (upcall.c:775)
==49943==    by 0x143A730A: marker_lookup (marker.c:3007)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x147D3640: index_lookup (index.c:2051)
==49943==  Address 0x12df1ff8 is in the GOT segment of /usr/local/lib/glusterfs/3.8.12/xlator/features/changetimerecorder.so
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x12BD9540: ??? (in /usr/local/lib/glusterfs/3.8.12/xlator/features/changetimerecorder.so)
==49943==    by 0x12BDCB85: ctr_lookup (changetimerecorder.c:357)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x134FDA85: br_stub_lookup (bit-rot-stub.c:2784)
==49943==    by 0x137092ED: posix_acl_lookup (posix-acl.c:971)
==49943==    by 0x13931121: pl_lookup (posix.c:2657)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x14181538: up_lookup (upcall.c:775)
==49943==    by 0x143A730A: marker_lookup (marker.c:3007)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==  Address 0x12df2048 is in the GOTPLT segment of /usr/local/lib/glusterfs/3.8.12/xlator/features/changetimerecorder.so
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x12BDCB9D: ctr_lookup (changetimerecorder.c:357)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x134FDA85: br_stub_lookup (bit-rot-stub.c:2784)
==49943==    by 0x137092ED: posix_acl_lookup (posix-acl.c:971)
==49943==    by 0x13931121: pl_lookup (posix.c:2657)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x14181538: up_lookup (upcall.c:775)
==49943==    by 0x143A730A: marker_lookup (marker.c:3007)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x147D3640: index_lookup (index.c:2051)
==49943==  Address 0x12df1ff8 is in the GOT segment of /usr/local/lib/glusterfs/3.8.12/xlator/features/changetimerecorder.so
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x12BD98E0: ??? (in /usr/local/lib/glusterfs/3.8.12/xlator/features/changetimerecorder.so)
==49943==    by 0x12BDCBBF: ctr_lookup (changetimerecorder.c:357)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x134FDA85: br_stub_lookup (bit-rot-stub.c:2784)
==49943==    by 0x137092ED: posix_acl_lookup (posix-acl.c:971)
==49943==    by 0x13931121: pl_lookup (posix.c:2657)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x14181538: up_lookup (upcall.c:775)
==49943==    by 0x143A730A: marker_lookup (marker.c:3007)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==  Address 0x12df2218 is in the GOTPLT segment of /usr/local/lib/glusterfs/3.8.12/xlator/features/changetimerecorder.so
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x12BDCC13: ctr_lookup (changetimerecorder.c:357)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x134FDA85: br_stub_lookup (bit-rot-stub.c:2784)
==49943==    by 0x137092ED: posix_acl_lookup (posix-acl.c:971)
==49943==    by 0x13931121: pl_lookup (posix.c:2657)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x14181538: up_lookup (upcall.c:775)
==49943==    by 0x143A730A: marker_lookup (marker.c:3007)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x147D3640: index_lookup (index.c:2051)
==49943==  Address 0x12df1ff8 is in the GOT segment of /usr/local/lib/glusterfs/3.8.12/xlator/features/changetimerecorder.so
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x12BD95D0: ??? (in /usr/local/lib/glusterfs/3.8.12/xlator/features/changetimerecorder.so)
==49943==    by 0x12BDCC35: ctr_lookup (changetimerecorder.c:357)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x134FDA85: br_stub_lookup (bit-rot-stub.c:2784)
==49943==    by 0x137092ED: posix_acl_lookup (posix-acl.c:971)
==49943==    by 0x13931121: pl_lookup (posix.c:2657)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x14181538: up_lookup (upcall.c:775)
==49943==    by 0x143A730A: marker_lookup (marker.c:3007)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==  Address 0x12df2090 is in the GOTPLT segment of /usr/local/lib/glusterfs/3.8.12/xlator/features/changetimerecorder.so
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x12BD98B0: ??? (in /usr/local/lib/glusterfs/3.8.12/xlator/features/changetimerecorder.so)
==49943==    by 0x12BDCC57: ctr_lookup (changetimerecorder.c:357)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x134FDA85: br_stub_lookup (bit-rot-stub.c:2784)
==49943==    by 0x137092ED: posix_acl_lookup (posix-acl.c:971)
==49943==    by 0x13931121: pl_lookup (posix.c:2657)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x14181538: up_lookup (upcall.c:775)
==49943==    by 0x143A730A: marker_lookup (marker.c:3007)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==  Address 0x12df2200 is in the GOTPLT segment of /usr/local/lib/glusterfs/3.8.12/xlator/features/changetimerecorder.so
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x12BD98B0: ??? (in /usr/local/lib/glusterfs/3.8.12/xlator/features/changetimerecorder.so)
==49943==    by 0x12BDCC68: ctr_lookup (changetimerecorder.c:357)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x134FDA85: br_stub_lookup (bit-rot-stub.c:2784)
==49943==    by 0x137092ED: posix_acl_lookup (posix-acl.c:971)
==49943==    by 0x13931121: pl_lookup (posix.c:2657)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x14181538: up_lookup (upcall.c:775)
==49943==    by 0x143A730A: marker_lookup (marker.c:3007)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==  Address 0x12df2200 is in the GOTPLT segment of /usr/local/lib/glusterfs/3.8.12/xlator/features/changetimerecorder.so
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x12BD98B0: ??? (in /usr/local/lib/glusterfs/3.8.12/xlator/features/changetimerecorder.so)
==49943==    by 0x12BDCC83: ctr_lookup (changetimerecorder.c:357)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x134FDA85: br_stub_lookup (bit-rot-stub.c:2784)
==49943==    by 0x137092ED: posix_acl_lookup (posix-acl.c:971)
==49943==    by 0x13931121: pl_lookup (posix.c:2657)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x14181538: up_lookup (upcall.c:775)
==49943==    by 0x143A730A: marker_lookup (marker.c:3007)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==  Address 0x12df2200 is in the GOTPLT segment of /usr/local/lib/glusterfs/3.8.12/xlator/features/changetimerecorder.so
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x12BD9620: ??? (in /usr/local/lib/glusterfs/3.8.12/xlator/features/changetimerecorder.so)
==49943==    by 0x12BDCCF5: ctr_lookup (changetimerecorder.c:357)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x134FDA85: br_stub_lookup (bit-rot-stub.c:2784)
==49943==    by 0x137092ED: posix_acl_lookup (posix-acl.c:971)
==49943==    by 0x13931121: pl_lookup (posix.c:2657)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x14181538: up_lookup (upcall.c:775)
==49943==    by 0x143A730A: marker_lookup (marker.c:3007)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==  Address 0x12df20b8 is in the GOTPLT segment of /usr/local/lib/glusterfs/3.8.12/xlator/features/changetimerecorder.so
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x12BDCD49: ctr_lookup (changetimerecorder.c:357)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x134FDA85: br_stub_lookup (bit-rot-stub.c:2784)
==49943==    by 0x137092ED: posix_acl_lookup (posix-acl.c:971)
==49943==    by 0x13931121: pl_lookup (posix.c:2657)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x14181538: up_lookup (upcall.c:775)
==49943==    by 0x143A730A: marker_lookup (marker.c:3007)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x147D3640: index_lookup (index.c:2051)
==49943==  Address 0x12bd52c0 is 0 bytes inside data symbol "fops"
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x4F1061F: default_lookup (defaults.c:2572)
==49943==    by 0x12BDCD6D: ctr_lookup (changetimerecorder.c:357)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x134FDA85: br_stub_lookup (bit-rot-stub.c:2784)
==49943==    by 0x137092ED: posix_acl_lookup (posix-acl.c:971)
==49943==    by 0x13931121: pl_lookup (posix.c:2657)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x14181538: up_lookup (upcall.c:775)
==49943==    by 0x143A730A: marker_lookup (marker.c:3007)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==  Address 0x123a40a0 is 0 bytes inside data symbol "fops"
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x12162C60: ??? (in /usr/local/lib/glusterfs/3.8.12/xlator/storage/posix.so)
==49943==    by 0x121641DF: posix_lookup (posix.c:173)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x12BDCD6D: ctr_lookup (changetimerecorder.c:357)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x134FDA85: br_stub_lookup (bit-rot-stub.c:2784)
==49943==    by 0x137092ED: posix_acl_lookup (posix-acl.c:971)
==49943==    by 0x13931121: pl_lookup (posix.c:2657)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x14181538: up_lookup (upcall.c:775)
==49943==  Address 0x123a14f0 is in the GOTPLT segment of /usr/local/lib/glusterfs/3.8.12/xlator/storage/posix.so
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x12162B30: ??? (in /usr/local/lib/glusterfs/3.8.12/xlator/storage/posix.so)
==49943==    by 0x121642A7: posix_lookup (posix.c:183)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x12BDCD6D: ctr_lookup (changetimerecorder.c:357)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x134FDA85: br_stub_lookup (bit-rot-stub.c:2784)
==49943==    by 0x137092ED: posix_acl_lookup (posix-acl.c:971)
==49943==    by 0x13931121: pl_lookup (posix.c:2657)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x14181538: up_lookup (upcall.c:775)
==49943==  Address 0x123a1458 is in the GOTPLT segment of /usr/local/lib/glusterfs/3.8.12/xlator/storage/posix.so
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x12162DE0: ??? (in /usr/local/lib/glusterfs/3.8.12/xlator/storage/posix.so)
==49943==    by 0x121630B1: gf_uuid_is_null (compat-uuid.h:45)
==49943==    by 0x121642C4: posix_lookup (posix.c:185)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x12BDCD6D: ctr_lookup (changetimerecorder.c:357)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x134FDA85: br_stub_lookup (bit-rot-stub.c:2784)
==49943==    by 0x137092ED: posix_acl_lookup (posix-acl.c:971)
==49943==    by 0x13931121: pl_lookup (posix.c:2657)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==  Address 0x123a15b0 is in the GOTPLT segment of /usr/local/lib/glusterfs/3.8.12/xlator/storage/posix.so
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x121626A0: ??? (in /usr/local/lib/glusterfs/3.8.12/xlator/storage/posix.so)
==49943==    by 0x121643DA: posix_lookup (posix.c:187)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x12BDCD6D: ctr_lookup (changetimerecorder.c:357)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x134FDA85: br_stub_lookup (bit-rot-stub.c:2784)
==49943==    by 0x137092ED: posix_acl_lookup (posix-acl.c:971)
==49943==    by 0x13931121: pl_lookup (posix.c:2657)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x14181538: up_lookup (upcall.c:775)
==49943==  Address 0x123a1210 is in the GOTPLT segment of /usr/local/lib/glusterfs/3.8.12/xlator/storage/posix.so
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x12162B80: ??? (in /usr/local/lib/glusterfs/3.8.12/xlator/storage/posix.so)
==49943==    by 0x12164527: posix_lookup (posix.c:187)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x12BDCD6D: ctr_lookup (changetimerecorder.c:357)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x134FDA85: br_stub_lookup (bit-rot-stub.c:2784)
==49943==    by 0x137092ED: posix_acl_lookup (posix-acl.c:971)
==49943==    by 0x13931121: pl_lookup (posix.c:2657)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x14181538: up_lookup (upcall.c:775)
==49943==  Address 0x123a1480 is in the GOTPLT segment of /usr/local/lib/glusterfs/3.8.12/xlator/storage/posix.so
==49943== 
==49943== Invalid read of size 1
==49943==    at 0x4C2AAB7: strcpy (vg_replace_strmem.c:506)
==49943==    by 0x12164527: posix_lookup (posix.c:187)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x12BDCD6D: ctr_lookup (changetimerecorder.c:357)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x134FDA85: br_stub_lookup (bit-rot-stub.c:2784)
==49943==    by 0x137092ED: posix_acl_lookup (posix-acl.c:971)
==49943==    by 0x13931121: pl_lookup (posix.c:2657)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x14181538: up_lookup (upcall.c:775)
==49943==  Address 0x173c4cd0 is 64 bytes inside a block of size 94 alloc'd
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x1216314A: gf_strdup (mem-pool.h:187)
==49943==    by 0x1218BBA6: init (posix.c:7090)
==49943==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==49943==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==49943==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==49943==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==49943==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==49943==    by 0x40ECA5: mgmt_getspec_cbk (glusterfsd-mgmt.c:1648)
==49943==    by 0x51505D2: rpc_clnt_handle_reply (rpc-clnt.c:791)
==49943==    by 0x5150B34: rpc_clnt_notify (rpc-clnt.c:971)
==49943== 
==49943== Invalid read of size 1
==49943==    at 0x4C2AAD4: strcpy (vg_replace_strmem.c:506)
==49943==    by 0x12164527: posix_lookup (posix.c:187)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x12BDCD6D: ctr_lookup (changetimerecorder.c:357)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x134FDA85: br_stub_lookup (bit-rot-stub.c:2784)
==49943==    by 0x137092ED: posix_acl_lookup (posix-acl.c:971)
==49943==    by 0x13931121: pl_lookup (posix.c:2657)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x14181538: up_lookup (upcall.c:775)
==49943==  Address 0x173c4cd1 is 65 bytes inside a block of size 94 alloc'd
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x1216314A: gf_strdup (mem-pool.h:187)
==49943==    by 0x1218BBA6: init (posix.c:7090)
==49943==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==49943==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==49943==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==49943==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==49943==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==49943==    by 0x40ECA5: mgmt_getspec_cbk (glusterfsd-mgmt.c:1648)
==49943==    by 0x51505D2: rpc_clnt_handle_reply (rpc-clnt.c:791)
==49943==    by 0x5150B34: rpc_clnt_notify (rpc-clnt.c:971)
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x12162B80: ??? (in /usr/local/lib/glusterfs/3.8.12/xlator/storage/posix.so)
==49943==    by 0x12164557: posix_lookup (posix.c:187)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x12BDCD6D: ctr_lookup (changetimerecorder.c:357)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x134FDA85: br_stub_lookup (bit-rot-stub.c:2784)
==49943==    by 0x137092ED: posix_acl_lookup (posix-acl.c:971)
==49943==    by 0x13931121: pl_lookup (posix.c:2657)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x14181538: up_lookup (upcall.c:775)
==49943==  Address 0x123a1480 is in the GOTPLT segment of /usr/local/lib/glusterfs/3.8.12/xlator/storage/posix.so
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x12162DE0: ??? (in /usr/local/lib/glusterfs/3.8.12/xlator/storage/posix.so)
==49943==    by 0x1218CE2E: gf_uuid_is_null (compat-uuid.h:45)
==49943==    by 0x1218F5E8: posix_pstat (posix-helpers.c:693)
==49943==    by 0x1216457C: posix_lookup (posix.c:187)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x12BDCD6D: ctr_lookup (changetimerecorder.c:357)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x134FDA85: br_stub_lookup (bit-rot-stub.c:2784)
==49943==    by 0x137092ED: posix_acl_lookup (posix-acl.c:971)
==49943==    by 0x13931121: pl_lookup (posix.c:2657)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==  Address 0x123a15b0 is in the GOTPLT segment of /usr/local/lib/glusterfs/3.8.12/xlator/storage/posix.so
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x12162BF0: ??? (in /usr/local/lib/glusterfs/3.8.12/xlator/storage/posix.so)
==49943==    by 0x1218CE14: gf_uuid_copy (compat-uuid.h:33)
==49943==    by 0x1218F609: posix_pstat (posix-helpers.c:694)
==49943==    by 0x1216457C: posix_lookup (posix.c:187)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x12BDCD6D: ctr_lookup (changetimerecorder.c:357)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x134FDA85: br_stub_lookup (bit-rot-stub.c:2784)
==49943==    by 0x137092ED: posix_acl_lookup (posix-acl.c:971)
==49943==    by 0x13931121: pl_lookup (posix.c:2657)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==  Address 0x123a14b8 is in the GOTPLT segment of /usr/local/lib/glusterfs/3.8.12/xlator/storage/posix.so
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x121625A0: ??? (in /usr/local/lib/glusterfs/3.8.12/xlator/storage/posix.so)
==49943==    by 0x1218F644: posix_pstat (posix-helpers.c:698)
==49943==    by 0x1216457C: posix_lookup (posix.c:187)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x12BDCD6D: ctr_lookup (changetimerecorder.c:357)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x134FDA85: br_stub_lookup (bit-rot-stub.c:2784)
==49943==    by 0x137092ED: posix_acl_lookup (posix-acl.c:971)
==49943==    by 0x13931121: pl_lookup (posix.c:2657)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==  Address 0x123a1190 is in the GOTPLT segment of /usr/local/lib/glusterfs/3.8.12/xlator/storage/posix.so
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x12162550: ??? (in /usr/local/lib/glusterfs/3.8.12/xlator/storage/posix.so)
==49943==    by 0x1218D274: iatt_from_stat (iatt.h:260)
==49943==    by 0x1218F7C4: posix_pstat (posix-helpers.c:728)
==49943==    by 0x1216457C: posix_lookup (posix.c:187)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x12BDCD6D: ctr_lookup (changetimerecorder.c:357)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x134FDA85: br_stub_lookup (bit-rot-stub.c:2784)
==49943==    by 0x137092ED: posix_acl_lookup (posix-acl.c:971)
==49943==    by 0x13931121: pl_lookup (posix.c:2657)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==  Address 0x123a1168 is in the GOTPLT segment of /usr/local/lib/glusterfs/3.8.12/xlator/storage/posix.so
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x12162C90: ??? (in /usr/local/lib/glusterfs/3.8.12/xlator/storage/posix.so)
==49943==    by 0x1218D286: iatt_from_stat (iatt.h:260)
==49943==    by 0x1218F7C4: posix_pstat (posix-helpers.c:728)
==49943==    by 0x1216457C: posix_lookup (posix.c:187)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x12BDCD6D: ctr_lookup (changetimerecorder.c:357)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x134FDA85: br_stub_lookup (bit-rot-stub.c:2784)
==49943==    by 0x137092ED: posix_acl_lookup (posix-acl.c:971)
==49943==    by 0x13931121: pl_lookup (posix.c:2657)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==  Address 0x123a1508 is in the GOTPLT segment of /usr/local/lib/glusterfs/3.8.12/xlator/storage/posix.so
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x12162A80: ??? (in /usr/local/lib/glusterfs/3.8.12/xlator/storage/posix.so)
==49943==    by 0x121651E4: posix_lookup (posix.c:198)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x12BDCD6D: ctr_lookup (changetimerecorder.c:357)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x134FDA85: br_stub_lookup (bit-rot-stub.c:2784)
==49943==    by 0x137092ED: posix_acl_lookup (posix-acl.c:971)
==49943==    by 0x13931121: pl_lookup (posix.c:2657)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x14181538: up_lookup (upcall.c:775)
==49943==  Address 0x123a1400 is in the GOTPLT segment of /usr/local/lib/glusterfs/3.8.12/xlator/storage/posix.so
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x60BB777: __errno_location (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x121651E4: posix_lookup (posix.c:198)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x12BDCD6D: ctr_lookup (changetimerecorder.c:357)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x134FDA85: br_stub_lookup (bit-rot-stub.c:2784)
==49943==    by 0x137092ED: posix_acl_lookup (posix-acl.c:971)
==49943==    by 0x13931121: pl_lookup (posix.c:2657)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x14181538: up_lookup (upcall.c:775)
==49943==  Address 0x1215d700 is in a rw- anonymous segment
==49943== 
==49943== Invalid read of size 4
==49943==    at 0x121651E5: posix_lookup (posix.c:198)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x12BDCD6D: ctr_lookup (changetimerecorder.c:357)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x134FDA85: br_stub_lookup (bit-rot-stub.c:2784)
==49943==    by 0x137092ED: posix_acl_lookup (posix-acl.c:971)
==49943==    by 0x13931121: pl_lookup (posix.c:2657)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x14181538: up_lookup (upcall.c:775)
==49943==    by 0x143A730A: marker_lookup (marker.c:3007)
==49943==  Address 0x1215d630 is in a rw- anonymous segment
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x12162BC0: ??? (in /usr/local/lib/glusterfs/3.8.12/xlator/storage/posix.so)
==49943==    by 0x1218FB14: posix_xattr_fill (posix-helpers.c:806)
==49943==    by 0x121652B3: posix_lookup (posix.c:213)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x12BDCD6D: ctr_lookup (changetimerecorder.c:357)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x134FDA85: br_stub_lookup (bit-rot-stub.c:2784)
==49943==    by 0x137092ED: posix_acl_lookup (posix-acl.c:971)
==49943==    by 0x13931121: pl_lookup (posix.c:2657)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==  Address 0x123a14a0 is in the GOTPLT segment of /usr/local/lib/glusterfs/3.8.12/xlator/storage/posix.so
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x12162B90: ??? (in /usr/local/lib/glusterfs/3.8.12/xlator/storage/posix.so)
==49943==    by 0x1218FB3B: posix_xattr_fill (posix-helpers.c:811)
==49943==    by 0x121652B3: posix_lookup (posix.c:213)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x12BDCD6D: ctr_lookup (changetimerecorder.c:357)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x134FDA85: br_stub_lookup (bit-rot-stub.c:2784)
==49943==    by 0x137092ED: posix_acl_lookup (posix-acl.c:971)
==49943==    by 0x13931121: pl_lookup (posix.c:2657)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==  Address 0x123a1488 is in the GOTPLT segment of /usr/local/lib/glusterfs/3.8.12/xlator/storage/posix.so
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x12162320: ??? (in /usr/local/lib/glusterfs/3.8.12/xlator/storage/posix.so)
==49943==    by 0x1218FB9B: posix_xattr_fill (posix-helpers.c:824)
==49943==    by 0x121652B3: posix_lookup (posix.c:213)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x12BDCD6D: ctr_lookup (changetimerecorder.c:357)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x134FDA85: br_stub_lookup (bit-rot-stub.c:2784)
==49943==    by 0x137092ED: posix_acl_lookup (posix-acl.c:971)
==49943==    by 0x13931121: pl_lookup (posix.c:2657)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==  Address 0x123a1050 is in the GOTPLT segment of /usr/local/lib/glusterfs/3.8.12/xlator/storage/posix.so
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x1218DD54: _is_in_array (posix-helpers.c:157)
==49943==    by 0x1218DD81: posix_xattr_ignorable (posix-helpers.c:167)
==49943==    by 0x1218E863: _posix_xattr_get_set (posix-helpers.c:403)
==49943==    by 0x4E56B26: dict_foreach_match (dict.c:1236)
==49943==    by 0x4E56A12: dict_foreach (dict.c:1194)
==49943==    by 0x1218FB9B: posix_xattr_fill (posix-helpers.c:824)
==49943==    by 0x121652B3: posix_lookup (posix.c:213)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x12BDCD6D: ctr_lookup (changetimerecorder.c:357)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x134FDA85: br_stub_lookup (bit-rot-stub.c:2784)
==49943==    by 0x137092ED: posix_acl_lookup (posix-acl.c:971)
==49943==  Address 0x123a44a0 is 0 bytes inside data symbol "posix_ignore_xattrs"
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x1218DD1F: _is_in_array (posix-helpers.c:158)
==49943==    by 0x1218DD81: posix_xattr_ignorable (posix-helpers.c:167)
==49943==    by 0x1218E863: _posix_xattr_get_set (posix-helpers.c:403)
==49943==    by 0x4E56B26: dict_foreach_match (dict.c:1236)
==49943==    by 0x4E56A12: dict_foreach (dict.c:1194)
==49943==    by 0x1218FB9B: posix_xattr_fill (posix-helpers.c:824)
==49943==    by 0x121652B3: posix_lookup (posix.c:213)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x12BDCD6D: ctr_lookup (changetimerecorder.c:357)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x134FDA85: br_stub_lookup (bit-rot-stub.c:2784)
==49943==    by 0x137092ED: posix_acl_lookup (posix-acl.c:971)
==49943==  Address 0x123a44a0 is 0 bytes inside data symbol "posix_ignore_xattrs"
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x12162B00: ??? (in /usr/local/lib/glusterfs/3.8.12/xlator/storage/posix.so)
==49943==    by 0x1218DD30: _is_in_array (posix-helpers.c:158)
==49943==    by 0x1218DD81: posix_xattr_ignorable (posix-helpers.c:167)
==49943==    by 0x1218E863: _posix_xattr_get_set (posix-helpers.c:403)
==49943==    by 0x4E56B26: dict_foreach_match (dict.c:1236)
==49943==    by 0x4E56A12: dict_foreach (dict.c:1194)
==49943==    by 0x1218FB9B: posix_xattr_fill (posix-helpers.c:824)
==49943==    by 0x121652B3: posix_lookup (posix.c:213)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x12BDCD6D: ctr_lookup (changetimerecorder.c:357)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x134FDA85: br_stub_lookup (bit-rot-stub.c:2784)
==49943==  Address 0x123a1440 is in the GOTPLT segment of /usr/local/lib/glusterfs/3.8.12/xlator/storage/posix.so
==49943== 
==49943== Invalid read of size 1
==49943==    at 0x4C2BB94: __strcmp_sse42 (vg_replace_strmem.c:845)
==49943==    by 0x1218DD30: _is_in_array (posix-helpers.c:158)
==49943==    by 0x1218DD81: posix_xattr_ignorable (posix-helpers.c:167)
==49943==    by 0x1218E863: _posix_xattr_get_set (posix-helpers.c:403)
==49943==    by 0x4E56B26: dict_foreach_match (dict.c:1236)
==49943==    by 0x4E56A12: dict_foreach (dict.c:1194)
==49943==    by 0x1218FB9B: posix_xattr_fill (posix-helpers.c:824)
==49943==    by 0x121652B3: posix_lookup (posix.c:213)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x12BDCD6D: ctr_lookup (changetimerecorder.c:357)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x134FDA85: br_stub_lookup (bit-rot-stub.c:2784)
==49943==  Address 0x1219c0af is in a r-x mapped file /usr/local/lib/glusterfs/3.8.12/xlator/storage/posix.so segment
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x12162B00: ??? (in /usr/local/lib/glusterfs/3.8.12/xlator/storage/posix.so)
==49943==    by 0x1218E87F: _posix_xattr_get_set (posix-helpers.c:406)
==49943==    by 0x4E56B26: dict_foreach_match (dict.c:1236)
==49943==    by 0x4E56A12: dict_foreach (dict.c:1194)
==49943==    by 0x1218FB9B: posix_xattr_fill (posix-helpers.c:824)
==49943==    by 0x121652B3: posix_lookup (posix.c:213)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x12BDCD6D: ctr_lookup (changetimerecorder.c:357)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x134FDA85: br_stub_lookup (bit-rot-stub.c:2784)
==49943==    by 0x137092ED: posix_acl_lookup (posix-acl.c:971)
==49943==    by 0x13931121: pl_lookup (posix.c:2657)
==49943==  Address 0x123a1440 is in the GOTPLT segment of /usr/local/lib/glusterfs/3.8.12/xlator/storage/posix.so
==49943== 
==49943== Invalid read of size 1
==49943==    at 0x4C2BB94: __strcmp_sse42 (vg_replace_strmem.c:845)
==49943==    by 0x1218E87F: _posix_xattr_get_set (posix-helpers.c:406)
==49943==    by 0x4E56B26: dict_foreach_match (dict.c:1236)
==49943==    by 0x4E56A12: dict_foreach (dict.c:1194)
==49943==    by 0x1218FB9B: posix_xattr_fill (posix-helpers.c:824)
==49943==    by 0x121652B3: posix_lookup (posix.c:213)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x12BDCD6D: ctr_lookup (changetimerecorder.c:357)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x134FDA85: br_stub_lookup (bit-rot-stub.c:2784)
==49943==    by 0x137092ED: posix_acl_lookup (posix-acl.c:971)
==49943==    by 0x13931121: pl_lookup (posix.c:2657)
==49943==  Address 0x1219c356 is in a r-x mapped file /usr/local/lib/glusterfs/3.8.12/xlator/storage/posix.so segment
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x12162B00: ??? (in /usr/local/lib/glusterfs/3.8.12/xlator/storage/posix.so)
==49943==    by 0x1218EB7E: _posix_xattr_get_set (posix-helpers.c:476)
==49943==    by 0x4E56B26: dict_foreach_match (dict.c:1236)
==49943==    by 0x4E56A12: dict_foreach (dict.c:1194)
==49943==    by 0x1218FB9B: posix_xattr_fill (posix-helpers.c:824)
==49943==    by 0x121652B3: posix_lookup (posix.c:213)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x12BDCD6D: ctr_lookup (changetimerecorder.c:357)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x134FDA85: br_stub_lookup (bit-rot-stub.c:2784)
==49943==    by 0x137092ED: posix_acl_lookup (posix-acl.c:971)
==49943==    by 0x13931121: pl_lookup (posix.c:2657)
==49943==  Address 0x123a1440 is in the GOTPLT segment of /usr/local/lib/glusterfs/3.8.12/xlator/storage/posix.so
==49943== 
==49943== Invalid read of size 1
==49943==    at 0x4C2BB94: __strcmp_sse42 (vg_replace_strmem.c:845)
==49943==    by 0x1218EB7E: _posix_xattr_get_set (posix-helpers.c:476)
==49943==    by 0x4E56B26: dict_foreach_match (dict.c:1236)
==49943==    by 0x4E56A12: dict_foreach (dict.c:1194)
==49943==    by 0x1218FB9B: posix_xattr_fill (posix-helpers.c:824)
==49943==    by 0x121652B3: posix_lookup (posix.c:213)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x12BDCD6D: ctr_lookup (changetimerecorder.c:357)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x134FDA85: br_stub_lookup (bit-rot-stub.c:2784)
==49943==    by 0x137092ED: posix_acl_lookup (posix-acl.c:971)
==49943==    by 0x13931121: pl_lookup (posix.c:2657)
==49943==  Address 0x1219c3db is in a r-x mapped file /usr/local/lib/glusterfs/3.8.12/xlator/storage/posix.so segment
==49943== 
==49943== Invalid read of size 8
==49943==    at 0x12162B00: ??? (in /usr/local/lib/glusterfs/3.8.12/xlator/storage/posix.so)
==49943==    by 0x1218EC55: _posix_xattr_get_set (posix-helpers.c:488)
==49943==    by 0x4E56B26: dict_foreach_match (dict.c:1236)
==49943==    by 0x4E56A12: dict_foreach (dict.c:1194)
==49943==    by 0x1218FB9B: posix_xattr_fill (posix-helpers.c:824)
==49943==    by 0x121652B3: posix_lookup (posix.c:213)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x12BDCD6D: ctr_lookup (changetimerecorder.c:357)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x134FDA85: br_stub_lookup (bit-rot-stub.c:2784)
==49943==    by 0x137092ED: posix_acl_lookup (posix-acl.c:971)
==49943==    by 0x13931121: pl_lookup (posix.c:2657)
==49943==  Address 0x123a1440 is in the GOTPLT segment of /usr/local/lib/glusterfs/3.8.12/xlator/storage/posix.so
==49943== 
==49943== Invalid read of size 1
==49943==    at 0x4C2BB94: __strcmp_sse42 (vg_replace_strmem.c:845)
==49943==    by 0x1218EC55: _posix_xattr_get_set (posix-helpers.c:488)
==49943==    by 0x4E56B26: dict_foreach_match (dict.c:1236)
==49943==    by 0x4E56A12: dict_foreach (dict.c:1194)
==49943==    by 0x1218FB9B: posix_xattr_fill (posix-helpers.c:824)
==49943==    by 0x121652B3: posix_lookup (posix.c:213)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x12BDCD6D: ctr_lookup (changetimerecorder.c:357)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x134FDA85: br_stub_lookup (bit-rot-stub.c:2784)
==49943==    by 0x137092ED: posix_acl_lookup (posix-acl.c:971)
==49943==    by 0x13931121: pl_lookup (posix.c:2657)
==49943==  Address 0x1219c3f3 is in a r-x mapped file /usr/local/lib/glusterfs/3.8.12/xlator/storage/posix.so segment
==49943== 
==49943== 
==49943== More than 1000 different errors detected.  I'm not reporting any more.
==49943== Final error counts will be inaccurate.  Go fix your program!
==49943== Rerun with --error-limit=no to disable this cutoff.  Note
==49943== that errors may occur in your program without prior warning from
==49943== Valgrind, because errors are no longer being displayed.
==49943== 
==49943== 
==49943== HEAP SUMMARY:
==49943==     in use at exit: 17,452,354 bytes in 4,230 blocks
==49943==   total heap usage: 12,988 allocs, 8,758 frees, 19,330,273 bytes allocated
==49943== 
==49943== Thread 1:
==49943== 8 bytes in 1 blocks are definitely lost in loss record 5 of 718
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E95D66: __gf_default_calloc (mem-pool.h:120)
==49943==    by 0x4E95F07: __glusterfs_this_location (globals.c:147)
==49943==    by 0x134F0BDD: br_stub_signth (bit-rot-stub.c:769)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943== 
==49943== 8 bytes in 1 blocks are definitely lost in loss record 6 of 718
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E95D66: __gf_default_calloc (mem-pool.h:120)
==49943==    by 0x4E95F07: __glusterfs_this_location (globals.c:147)
==49943==    by 0x147CB19D: index_worker (index.c:203)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943== 
==49943== 8 bytes in 1 blocks are definitely lost in loss record 7 of 718
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E95D66: __gf_default_calloc (mem-pool.h:120)
==49943==    by 0x4E95F07: __glusterfs_this_location (globals.c:147)
==49943==    by 0x134ECFE6: br_stub_worker (bit-rot-stub-helpers.c:361)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943== 
==49943== 8 bytes in 1 blocks are definitely lost in loss record 8 of 718
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E95D66: __gf_default_calloc (mem-pool.h:120)
==49943==    by 0x4E95F07: __glusterfs_this_location (globals.c:147)
==49943==    by 0x4E621C3: _gf_msg (logging.c:2031)
==49943==    by 0x12192498: posix_health_check_thread_proc (posix-helpers.c:1846)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943== 
==49943== 8 bytes in 1 blocks are definitely lost in loss record 9 of 718
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E95D66: __gf_default_calloc (mem-pool.h:120)
==49943==    by 0x4E95F07: __glusterfs_this_location (globals.c:147)
==49943==    by 0x12191266: posix_janitor_thread_proc (posix-helpers.c:1421)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943== 
==49943== 16 bytes in 1 blocks are definitely lost in loss record 10 of 718
==49943==    at 0x4C27BE3: malloc (vg_replace_malloc.c:299)
==49943==    by 0x130402E6: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==49943==    by 0x1301B6A9: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==49943==    by 0x13023A25: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==49943==    by 0x1303409C: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==49943==    by 0x1303424B: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==49943==    by 0x1309E40A: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==49943==    by 0x12E01B48: gf_open_sqlite3_conn (gfdb_sqlite3.c:192)
==49943==    by 0x12E02CAF: gf_sqlite3_init (gfdb_sqlite3.c:440)
==49943==    by 0x12DF97B5: init_db (gfdb_data_store.c:270)
==49943==    by 0x12BEA41F: init (changetimerecorder.c:2118)
==49943==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==49943== 
==49943== 16 bytes in 1 blocks are definitely lost in loss record 11 of 718
==49943==    at 0x4C27BE3: malloc (vg_replace_malloc.c:299)
==49943==    by 0x130402E6: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==49943==    by 0x1301B6A9: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==49943==    by 0x13023A25: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==49943==    by 0x1303409C: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==49943==    by 0x1303424B: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==49943==    by 0x1309E47D: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==49943==    by 0x12E01B48: gf_open_sqlite3_conn (gfdb_sqlite3.c:192)
==49943==    by 0x12E02CAF: gf_sqlite3_init (gfdb_sqlite3.c:440)
==49943==    by 0x12DF97B5: init_db (gfdb_data_store.c:270)
==49943==    by 0x12BEA41F: init (changetimerecorder.c:2118)
==49943==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==49943== 
==49943== 16 bytes in 2 blocks are definitely lost in loss record 12 of 718
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E95D66: __gf_default_calloc (mem-pool.h:120)
==49943==    by 0x4E95F07: __glusterfs_this_location (globals.c:147)
==49943==    by 0x4E621C3: _gf_msg (logging.c:2031)
==49943==    by 0x4ECB14F: event_dispatch_epoll_worker (event-epoll.c:627)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943== 
==49943== 16 bytes in 2 blocks are definitely lost in loss record 13 of 718
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E95D66: __gf_default_calloc (mem-pool.h:120)
==49943==    by 0x4E95F07: __glusterfs_this_location (globals.c:147)
==49943==    by 0x4EA54EB: synctask_switchto (syncop.c:655)
==49943==    by 0x4EA563C: syncenv_processor (syncop.c:699)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943== 
==49943== 24 bytes in 1 blocks are definitely lost in loss record 154 of 718
==49943==    at 0x4C27BE3: malloc (vg_replace_malloc.c:299)
==49943==    by 0x130402E6: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==49943==    by 0x1301B6A9: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==49943==    by 0x13023A25: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==49943==    by 0x1303F007: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==49943==    by 0x1305A2B1: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==49943==    by 0x1309E1B6: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==49943==    by 0x12E01B48: gf_open_sqlite3_conn (gfdb_sqlite3.c:192)
==49943==    by 0x12E02CAF: gf_sqlite3_init (gfdb_sqlite3.c:440)
==49943==    by 0x12DF97B5: init_db (gfdb_data_store.c:270)
==49943==    by 0x12BEA41F: init (changetimerecorder.c:2118)
==49943==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==49943== 
==49943== 32 bytes in 1 blocks are definitely lost in loss record 158 of 718
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x5EA861F: _dlerror_run (in /usr/lib64/libdl-2.17.so)
==49943==    by 0x5EA8050: dlopen@@GLIBC_2.2.5 (in /usr/lib64/libdl-2.17.so)
==49943==    by 0x4E5B01D: xlator_dynload (xlator.c:195)
==49943==    by 0x4E5B63B: xlator_set_type (xlator.c:295)
==49943==    by 0x4EE9362: volume_type (graph.y:207)
==49943==    by 0x4EE89E8: graphyyparse (graph.y:63)
==49943==    by 0x4EEA42D: glusterfs_graph_construct (graph.y:590)
==49943==    by 0x40A211: glusterfs_process_volfp (glusterfsd.c:2305)
==49943==    by 0x40ECA5: mgmt_getspec_cbk (glusterfsd-mgmt.c:1648)
==49943==    by 0x51505D2: rpc_clnt_handle_reply (rpc-clnt.c:791)
==49943==    by 0x5150B34: rpc_clnt_notify (rpc-clnt.c:971)
==49943== 
==49943== 48 bytes in 1 blocks are definitely lost in loss record 171 of 718
==49943==    at 0x4C27BE3: malloc (vg_replace_malloc.c:299)
==49943==    by 0x130402E6: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==49943==    by 0x1301B6A9: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==49943==    by 0x13023A25: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==49943==    by 0x1303409C: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==49943==    by 0x13034224: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==49943==    by 0x1309E40A: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==49943==    by 0x12E01B48: gf_open_sqlite3_conn (gfdb_sqlite3.c:192)
==49943==    by 0x12E02CAF: gf_sqlite3_init (gfdb_sqlite3.c:440)
==49943==    by 0x12DF97B5: init_db (gfdb_data_store.c:270)
==49943==    by 0x12BEA41F: init (changetimerecorder.c:2118)
==49943==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==49943== 
==49943== 48 bytes in 1 blocks are definitely lost in loss record 172 of 718
==49943==    at 0x4C27BE3: malloc (vg_replace_malloc.c:299)
==49943==    by 0x130402E6: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==49943==    by 0x1301B6A9: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==49943==    by 0x13023A25: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==49943==    by 0x13023B60: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==49943==    by 0x130496CA: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==49943==    by 0x1309E5A4: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==49943==    by 0x12E01B48: gf_open_sqlite3_conn (gfdb_sqlite3.c:192)
==49943==    by 0x12E02CAF: gf_sqlite3_init (gfdb_sqlite3.c:440)
==49943==    by 0x12DF97B5: init_db (gfdb_data_store.c:270)
==49943==    by 0x12BEA41F: init (changetimerecorder.c:2118)
==49943==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==49943== 
==49943== 48 bytes in 1 blocks are definitely lost in loss record 173 of 718
==49943==    at 0x4C27BE3: malloc (vg_replace_malloc.c:299)
==49943==    by 0x130402E6: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==49943==    by 0x1301B6A9: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==49943==    by 0x13023A25: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==49943==    by 0x13023B60: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==49943==    by 0x130496CA: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==49943==    by 0x1309E5C8: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==49943==    by 0x12E01B48: gf_open_sqlite3_conn (gfdb_sqlite3.c:192)
==49943==    by 0x12E02CAF: gf_sqlite3_init (gfdb_sqlite3.c:440)
==49943==    by 0x12DF97B5: init_db (gfdb_data_store.c:270)
==49943==    by 0x12BEA41F: init (changetimerecorder.c:2118)
==49943==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==49943== 
==49943== 48 bytes in 1 blocks are definitely lost in loss record 174 of 718
==49943==    at 0x4C27BE3: malloc (vg_replace_malloc.c:299)
==49943==    by 0x130402E6: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==49943==    by 0x1301B6A9: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==49943==    by 0x13023A25: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==49943==    by 0x13025BCA: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==49943==    by 0x13049711: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==49943==    by 0x1309E5C8: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==49943==    by 0x12E01B48: gf_open_sqlite3_conn (gfdb_sqlite3.c:192)
==49943==    by 0x12E02CAF: gf_sqlite3_init (gfdb_sqlite3.c:440)
==49943==    by 0x12DF97B5: init_db (gfdb_data_store.c:270)
==49943==    by 0x12BEA41F: init (changetimerecorder.c:2118)
==49943==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==49943== 
==49943== 48 bytes in 1 blocks are definitely lost in loss record 175 of 718
==49943==    at 0x4C27BE3: malloc (vg_replace_malloc.c:299)
==49943==    by 0x130402E6: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==49943==    by 0x1301B6A9: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==49943==    by 0x13023A25: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==49943==    by 0x13025BCA: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==49943==    by 0x13049711: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==49943==    by 0x1309E5E9: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==49943==    by 0x12E01B48: gf_open_sqlite3_conn (gfdb_sqlite3.c:192)
==49943==    by 0x12E02CAF: gf_sqlite3_init (gfdb_sqlite3.c:440)
==49943==    by 0x12DF97B5: init_db (gfdb_data_store.c:270)
==49943==    by 0x12BEA41F: init (changetimerecorder.c:2118)
==49943==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==49943== 
==49943== 48 bytes in 1 blocks are definitely lost in loss record 176 of 718
==49943==    at 0x4C27BE3: malloc (vg_replace_malloc.c:299)
==49943==    by 0x130402E6: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==49943==    by 0x1301B6A9: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==49943==    by 0x13023A25: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==49943==    by 0x13023B60: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==49943==    by 0x130496CA: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==49943==    by 0x1309E68E: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==49943==    by 0x12E01B48: gf_open_sqlite3_conn (gfdb_sqlite3.c:192)
==49943==    by 0x12E02CAF: gf_sqlite3_init (gfdb_sqlite3.c:440)
==49943==    by 0x12DF97B5: init_db (gfdb_data_store.c:270)
==49943==    by 0x12BEA41F: init (changetimerecorder.c:2118)
==49943==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==49943== 
==49943== 48 bytes in 1 blocks are definitely lost in loss record 177 of 718
==49943==    at 0x4C27BE3: malloc (vg_replace_malloc.c:299)
==49943==    by 0x130402E6: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==49943==    by 0x1301B6A9: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==49943==    by 0x13023A25: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==49943==    by 0x13025BCA: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==49943==    by 0x13049711: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==49943==    by 0x1309E68E: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==49943==    by 0x12E01B48: gf_open_sqlite3_conn (gfdb_sqlite3.c:192)
==49943==    by 0x12E02CAF: gf_sqlite3_init (gfdb_sqlite3.c:440)
==49943==    by 0x12DF97B5: init_db (gfdb_data_store.c:270)
==49943==    by 0x12BEA41F: init (changetimerecorder.c:2118)
==49943==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==49943== 
==49943== 50 bytes in 1 blocks are definitely lost in loss record 178 of 718
==49943==    at 0x4C27BE3: malloc (vg_replace_malloc.c:299)
==49943==    by 0x4E95CFE: __gf_default_malloc (mem-pool.h:108)
==49943==    by 0x4E961B9: glusterfs_uuid_buf_get (globals.c:301)
==49943==    by 0x4E698E7: uuid_utoa (common-utils.c:2521)
==49943==    by 0x134EC69B: br_stub_container_entry (bit-rot-stub-helpers.c:127)
==49943==    by 0x134ECE7C: br_stub_dir_create (bit-rot-stub-helpers.c:304)
==49943==    by 0x134EF184: br_stub_bad_object_container_init (bit-rot-stub.c:95)
==49943==    by 0x134EF4CF: init (bit-rot-stub.c:166)
==49943==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==49943==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==49943==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==49943==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==49943== 
==49943== 50 bytes in 1 blocks are definitely lost in loss record 179 of 718
==49943==    at 0x4C27BE3: malloc (vg_replace_malloc.c:299)
==49943==    by 0x4E95CFE: __gf_default_malloc (mem-pool.h:108)
==49943==    by 0x4E961B9: glusterfs_uuid_buf_get (globals.c:301)
==49943==    by 0x4E698E7: uuid_utoa (common-utils.c:2521)
==49943==    by 0x12195C67: posix_handle_soft (posix-handle.c:798)
==49943==    by 0x1218FE81: posix_gfid_set (posix-helpers.c:893)
==49943==    by 0x121916A0: posix_gfid_heal (posix-helpers.c:1548)
==49943==    by 0x12164C6B: posix_lookup (posix.c:192)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x12BDCD6D: ctr_lookup (changetimerecorder.c:357)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x134FDA85: br_stub_lookup (bit-rot-stub.c:2784)
==49943== 
==49943== 56 bytes in 1 blocks are definitely lost in loss record 182 of 718
==49943==    at 0x4C27BE3: malloc (vg_replace_malloc.c:299)
==49943==    by 0x130402E6: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==49943==    by 0x1301B6A9: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==49943==    by 0x13023A25: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==49943==    by 0x13023B60: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==49943==    by 0x130496CA: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==49943==    by 0x1309E5E9: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==49943==    by 0x12E01B48: gf_open_sqlite3_conn (gfdb_sqlite3.c:192)
==49943==    by 0x12E02CAF: gf_sqlite3_init (gfdb_sqlite3.c:440)
==49943==    by 0x12DF97B5: init_db (gfdb_data_store.c:270)
==49943==    by 0x12BEA41F: init (changetimerecorder.c:2118)
==49943==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==49943== 
==49943== 56 bytes in 1 blocks are definitely lost in loss record 183 of 718
==49943==    at 0x4C27BE3: malloc (vg_replace_malloc.c:299)
==49943==    by 0x130402E6: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==49943==    by 0x1301B6A9: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==49943==    by 0x13023A25: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==49943==    by 0x13023B60: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==49943==    by 0x130496CA: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==49943==    by 0x1309E6B4: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==49943==    by 0x12E01B48: gf_open_sqlite3_conn (gfdb_sqlite3.c:192)
==49943==    by 0x12E02CAF: gf_sqlite3_init (gfdb_sqlite3.c:440)
==49943==    by 0x12DF97B5: init_db (gfdb_data_store.c:270)
==49943==    by 0x12BEA41F: init (changetimerecorder.c:2118)
==49943==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==49943== 
==49943== 64 bytes in 1 blocks are possibly lost in loss record 184 of 718
==49943==    at 0x4C27BE3: malloc (vg_replace_malloc.c:299)
==49943==    by 0x678DF3C: gaih_inet (in /usr/lib64/libc-2.17.so)
==49943==    by 0x6791A3C: getaddrinfo (in /usr/lib64/libc-2.17.so)
==49943==    by 0x4E64B96: gf_resolve_ip6 (common-utils.c:291)
==49943==    by 0xFEAFDCE: af_inet_client_get_remote_sockaddr (name.c:258)
==49943==    by 0xFEB0857: socket_client_get_remote_sockaddr (name.c:530)
==49943==    by 0xFEABB53: socket_connect (socket.c:2955)
==49943==    by 0x514C7A1: rpc_transport_connect (rpc-transport.c:422)
==49943==    by 0x514FA2D: rpc_clnt_reconnect (rpc-clnt.c:423)
==49943==    by 0x51512AC: rpc_clnt_start (rpc-clnt.c:1201)
==49943==    by 0x40FF84: glusterfs_mgmt_init (glusterfsd-mgmt.c:2184)
==49943==    by 0x40A412: glusterfs_volumes_init (glusterfsd.c:2365)
==49943== 
==49943== 64 (32 direct, 32 indirect) bytes in 1 blocks are definitely lost in loss record 186 of 718
==49943==    at 0x4C27BE3: malloc (vg_replace_malloc.c:299)
==49943==    by 0x6330592: CRYPTO_malloc (in /usr/lib64/libcrypto.so.1.0.1e)
==49943==    by 0x63AB14E: sk_new (in /usr/lib64/libcrypto.so.1.0.1e)
==49943==    by 0x10105919: ??? (in /usr/lib64/libssl.so.1.0.1e)
==49943==    by 0x101078C8: SSL_COMP_get_compression_methods (in /usr/lib64/libssl.so.1.0.1e)
==49943==    by 0x1010D268: SSL_library_init (in /usr/lib64/libssl.so.1.0.1e)
==49943==    by 0xFEADF7F: init_openssl_mt (socket.c:3806)
==49943==    by 0x400F1E2: _dl_init (in /usr/lib64/ld-2.17.so)
==49943==    by 0x40138F5: dl_open_worker (in /usr/lib64/ld-2.17.so)
==49943==    by 0x400EFF3: _dl_catch_error (in /usr/lib64/ld-2.17.so)
==49943==    by 0x4012FEA: _dl_open (in /usr/lib64/ld-2.17.so)
==49943==    by 0x5EA7FBA: dlopen_doit (in /usr/lib64/libdl-2.17.so)
==49943== 
==49943== 74 bytes in 1 blocks are definitely lost in loss record 191 of 718
==49943==    at 0x4C27BE3: malloc (vg_replace_malloc.c:299)
==49943==    by 0x4E8FB45: __gf_malloc (mem-pool.c:142)
==49943==    by 0x4E8FDF0: gf_vasprintf (mem-pool.c:221)
==49943==    by 0x4E8FEDF: gf_asprintf (mem-pool.c:240)
==49943==    by 0x4E5558B: int_to_data (dict.c:665)
==49943==    by 0x147D54D8: index_make_xattrop_watchlist (index.c:2208)
==49943==    by 0x147D5A4E: init (index.c:2334)
==49943==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==49943==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==49943==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==49943==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==49943==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==49943== 
==49943== 74 bytes in 1 blocks are definitely lost in loss record 192 of 718
==49943==    at 0x4C27BE3: malloc (vg_replace_malloc.c:299)
==49943==    by 0x4E8FB45: __gf_malloc (mem-pool.c:142)
==49943==    by 0x4E8FDF0: gf_vasprintf (mem-pool.c:221)
==49943==    by 0x4E8FEDF: gf_asprintf (mem-pool.c:240)
==49943==    by 0x4E5558B: int_to_data (dict.c:665)
==49943==    by 0x147D54D8: index_make_xattrop_watchlist (index.c:2208)
==49943==    by 0x147D5ACA: init (index.c:2340)
==49943==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==49943==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==49943==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==49943==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==49943==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==49943== 
==49943== 76 bytes in 1 blocks are definitely lost in loss record 193 of 718
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x5145846: gf_strdup (mem-pool.h:187)
==49943==    by 0x5149466: rpcsvc_create_listeners (rpcsvc.c:1726)
==49943==    by 0x1506250B: init (server.c:1056)
==49943==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==49943==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==49943==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==49943==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==49943==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==49943==    by 0x40ECA5: mgmt_getspec_cbk (glusterfsd-mgmt.c:1648)
==49943==    by 0x51505D2: rpc_clnt_handle_reply (rpc-clnt.c:791)
==49943== 
==49943== 78 bytes in 1 blocks are definitely lost in loss record 194 of 718
==49943==    at 0x4C27BE3: malloc (vg_replace_malloc.c:299)
==49943==    by 0x4E8FB45: __gf_malloc (mem-pool.c:142)
==49943==    by 0x4E8FDF0: gf_vasprintf (mem-pool.c:221)
==49943==    by 0x4E8FEDF: gf_asprintf (mem-pool.c:240)
==49943==    by 0x4E5572E: data_from_int32 (dict.c:703)
==49943==    by 0x4E57BB4: dict_set_int32 (dict.c:1771)
==49943==    by 0x514D1CD: rpc_transport_inet_options_build (rpc-transport.c:684)
==49943==    by 0x40FD9D: glusterfs_mgmt_init (glusterfsd-mgmt.c:2139)
==49943==    by 0x40A412: glusterfs_volumes_init (glusterfsd.c:2365)
==49943==    by 0x40A892: main (glusterfsd.c:2488)
==49943== 
==49943== 79 bytes in 1 blocks are definitely lost in loss record 195 of 718
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x5145846: gf_strdup (mem-pool.h:187)
==49943==    by 0x5149466: rpcsvc_create_listeners (rpcsvc.c:1726)
==49943==    by 0x40F98A: glusterfs_listener_init (glusterfsd-mgmt.c:2037)
==49943==    by 0x40A3EC: glusterfs_volumes_init (glusterfsd.c:2359)
==49943==    by 0x40A892: main (glusterfsd.c:2488)
==49943== 
==49943== 80 bytes in 1 blocks are definitely lost in loss record 197 of 718
==49943==    at 0x4C27BE3: malloc (vg_replace_malloc.c:299)
==49943==    by 0x130402E6: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==49943==    by 0x1301B6A9: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==49943==    by 0x13023A25: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==49943==    by 0x1303F37B: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==49943==    by 0x1305A2B1: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==49943==    by 0x1309E1B6: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==49943==    by 0x12E01B48: gf_open_sqlite3_conn (gfdb_sqlite3.c:192)
==49943==    by 0x12E02CAF: gf_sqlite3_init (gfdb_sqlite3.c:440)
==49943==    by 0x12DF97B5: init_db (gfdb_data_store.c:270)
==49943==    by 0x12BEA41F: init (changetimerecorder.c:2118)
==49943==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==49943== 
==49943== 80 bytes in 1 blocks are definitely lost in loss record 198 of 718
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x143B324D: marker_inode_ctx_new (marker-common.c:18)
==49943==    by 0x143B32F7: marker_force_inode_ctx_get (marker-common.c:41)
==49943==    by 0x143B2CD6: __mq_inode_ctx_new (marker-quota-helper.c:353)
==49943==    by 0x143B2DE8: mq_inode_ctx_new (marker-quota-helper.c:385)
==49943==    by 0x143A6A6C: marker_lookup_cbk (marker.c:2935)
==49943==    by 0x141811E0: up_lookup_cbk (upcall.c:753)
==49943==    by 0x13930D5A: pl_lookup_cbk (posix.c:2648)
==49943==    by 0x13708E35: posix_acl_lookup_cbk (posix-acl.c:919)
==49943==    by 0x134FD448: br_stub_lookup_cbk (bit-rot-stub.c:2709)
==49943==    by 0x12BDC56C: ctr_lookup_cbk (changetimerecorder.c:306)
==49943== 
==49943== 82 bytes in 1 blocks are possibly lost in loss record 199 of 718
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x514E36C: gf_strdup (mem-pool.h:187)
==49943==    by 0x5150CA3: rpc_clnt_connection_init (rpc-clnt.c:1036)
==49943==    by 0x5151169: rpc_clnt_new (rpc-clnt.c:1159)
==49943==    by 0x40FE46: glusterfs_mgmt_init (glusterfsd-mgmt.c:2157)
==49943==    by 0x40A412: glusterfs_volumes_init (glusterfsd.c:2365)
==49943==    by 0x40A892: main (glusterfsd.c:2488)
==49943== 
==49943== 82 bytes in 1 blocks are possibly lost in loss record 200 of 718
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x514B4A5: gf_strdup (mem-pool.h:187)
==49943==    by 0x514BC2B: rpc_transport_load (rpc-transport.c:191)
==49943==    by 0x5150E30: rpc_clnt_connection_init (rpc-clnt.c:1067)
==49943==    by 0x5151169: rpc_clnt_new (rpc-clnt.c:1159)
==49943==    by 0x40FE46: glusterfs_mgmt_init (glusterfsd-mgmt.c:2157)
==49943==    by 0x40A412: glusterfs_volumes_init (glusterfsd.c:2365)
==49943==    by 0x40A892: main (glusterfsd.c:2488)
==49943== 
==49943== 82 bytes in 1 blocks are definitely lost in loss record 201 of 718
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x129B752F: gf_strdup (mem-pool.h:187)
==49943==    by 0x129BDE68: extract_trash_directory (trash.c:82)
==49943==    by 0x129CF5F1: notify (trash.c:2215)
==49943==    by 0x4E5BEC3: xlator_notify (xlator.c:496)
==49943==    by 0x4F12AA0: default_notify (defaults.c:3114)
==49943==    by 0x1218A501: notify (posix.c:6596)
==49943==    by 0x4E5BEC3: xlator_notify (xlator.c:496)
==49943==    by 0x4F129B9: default_notify (defaults.c:3090)
==49943==    by 0x129D019E: notify (trash.c:2307)
==49943==    by 0x4E5BEC3: xlator_notify (xlator.c:496)
==49943== 
==49943== 84 bytes in 1 blocks are possibly lost in loss record 202 of 718
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x129B752F: gf_strdup (mem-pool.h:187)
==49943==    by 0x129D066C: init (trash.c:2396)
==49943==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==49943==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==49943==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==49943==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==49943==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==49943==    by 0x40ECA5: mgmt_getspec_cbk (glusterfsd-mgmt.c:1648)
==49943==    by 0x51505D2: rpc_clnt_handle_reply (rpc-clnt.c:791)
==49943==    by 0x5150B34: rpc_clnt_notify (rpc-clnt.c:971)
==49943== 
==49943== 84 bytes in 1 blocks are definitely lost in loss record 203 of 718
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x4E5499E: dict_set_lk (dict.c:378)
==49943==    by 0x4E54B82: dict_set (dict.c:424)
==49943==    by 0x4E585B1: dict_set_dynstr (dict.c:2205)
==49943==    by 0x514D164: rpc_transport_inet_options_build (rpc-transport.c:677)
==49943==    by 0x40FD9D: glusterfs_mgmt_init (glusterfsd-mgmt.c:2139)
==49943==    by 0x40A412: glusterfs_volumes_init (glusterfsd.c:2365)
==49943==    by 0x40A892: main (glusterfsd.c:2488)
==49943== 
==49943== 84 bytes in 1 blocks are definitely lost in loss record 204 of 718
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x4E5499E: dict_set_lk (dict.c:378)
==49943==    by 0x4E54B82: dict_set (dict.c:424)
==49943==    by 0x4E57BDF: dict_set_int32 (dict.c:1777)
==49943==    by 0x514D1CD: rpc_transport_inet_options_build (rpc-transport.c:684)
==49943==    by 0x40FD9D: glusterfs_mgmt_init (glusterfsd-mgmt.c:2139)
==49943==    by 0x40A412: glusterfs_volumes_init (glusterfsd.c:2365)
==49943==    by 0x40A892: main (glusterfsd.c:2488)
==49943== 
==49943== 84 bytes in 1 blocks are definitely lost in loss record 205 of 718
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x129B752F: gf_strdup (mem-pool.h:187)
==49943==    by 0x129BEEBC: trash_notify_mkdir_cbk (trash.c:430)
==49943==    by 0x1216EB15: posix_mkdir (posix.c:1693)
==49943==    by 0x129CFA85: notify (trash.c:2246)
==49943==    by 0x4E5BEC3: xlator_notify (xlator.c:496)
==49943==    by 0x4F12AA0: default_notify (defaults.c:3114)
==49943==    by 0x1218A501: notify (posix.c:6596)
==49943==    by 0x4E5BEC3: xlator_notify (xlator.c:496)
==49943==    by 0x4F129B9: default_notify (defaults.c:3090)
==49943==    by 0x129D019E: notify (trash.c:2307)
==49943== 
==49943== 85 bytes in 1 blocks are possibly lost in loss record 206 of 718
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x514E36C: gf_strdup (mem-pool.h:187)
==49943==    by 0x5150CA3: rpc_clnt_connection_init (rpc-clnt.c:1036)
==49943==    by 0x5151169: rpc_clnt_new (rpc-clnt.c:1159)
==49943==    by 0x14A014DE: quota_enforcer_init (quota-enforcer-client.c:451)
==49943==    by 0x149FF51D: init (quota.c:5127)
==49943==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==49943==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==49943==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==49943==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==49943==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==49943== 
==49943== 85 bytes in 1 blocks are possibly lost in loss record 207 of 718
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x514B4A5: gf_strdup (mem-pool.h:187)
==49943==    by 0x514BC2B: rpc_transport_load (rpc-transport.c:191)
==49943==    by 0x5150E30: rpc_clnt_connection_init (rpc-clnt.c:1067)
==49943==    by 0x5151169: rpc_clnt_new (rpc-clnt.c:1159)
==49943==    by 0x14A014DE: quota_enforcer_init (quota-enforcer-client.c:451)
==49943==    by 0x149FF51D: init (quota.c:5127)
==49943==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==49943==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==49943==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==49943==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==49943== 
==49943== 86 bytes in 1 blocks are definitely lost in loss record 208 of 718
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x4E5499E: dict_set_lk (dict.c:378)
==49943==    by 0x4E54B82: dict_set (dict.c:424)
==49943==    by 0x4E584CB: dict_set_str (dict.c:2168)
==49943==    by 0x4EA196E: gf_add_cmdline_options (graph.c:260)
==49943==    by 0x4EA2394: glusterfs_graph_prepare (graph.c:523)
==49943==    by 0x40A2F9: glusterfs_process_volfp (glusterfsd.c:2319)
==49943==    by 0x40ECA5: mgmt_getspec_cbk (glusterfsd-mgmt.c:1648)
==49943==    by 0x51505D2: rpc_clnt_handle_reply (rpc-clnt.c:791)
==49943==    by 0x5150B34: rpc_clnt_notify (rpc-clnt.c:971)
==49943==    by 0x514CD1D: rpc_transport_notify (rpc-transport.c:541)
==49943== 
==49943== 87 bytes in 1 blocks are possibly lost in loss record 209 of 718
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x4052E4: gf_strdup (mem-pool.h:187)
==49943==    by 0x40690C: gf_remember_backup_volfile_server (glusterfsd.c:688)
==49943==    by 0x4070DB: parse_opts (glusterfsd.c:836)
==49943==    by 0x67B4F7C: argp_parse (in /usr/lib64/libc-2.17.so)
==49943==    by 0x4092D4: parse_cmdline (glusterfsd.c:1866)
==49943==    by 0x40A5E5: main (glusterfsd.c:2417)
==49943== 
==49943== 87 bytes in 1 blocks are definitely lost in loss record 210 of 718
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x4E5499E: dict_set_lk (dict.c:378)
==49943==    by 0x4E54B82: dict_set (dict.c:424)
==49943==    by 0x4E584CB: dict_set_str (dict.c:2168)
==49943==    by 0x514A3AC: rpcsvc_transport_unix_options_build (rpcsvc.c:2188)
==49943==    by 0x40F909: glusterfs_listener_init (glusterfsd-mgmt.c:2022)
==49943==    by 0x40A3EC: glusterfs_volumes_init (glusterfsd.c:2359)
==49943==    by 0x40A892: main (glusterfsd.c:2488)
==49943== 
==49943== 87 bytes in 1 blocks are definitely lost in loss record 211 of 718
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x514B4A5: gf_strdup (mem-pool.h:187)
==49943==    by 0x514D136: rpc_transport_inet_options_build (rpc-transport.c:671)
==49943==    by 0x40FD9D: glusterfs_mgmt_init (glusterfsd-mgmt.c:2139)
==49943==    by 0x40A412: glusterfs_volumes_init (glusterfsd.c:2365)
==49943==    by 0x40A892: main (glusterfsd.c:2488)
==49943== 
==49943== 87 bytes in 1 blocks are definitely lost in loss record 212 of 718
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x4E5499E: dict_set_lk (dict.c:378)
==49943==    by 0x4E54B82: dict_set (dict.c:424)
==49943==    by 0x4E584CB: dict_set_str (dict.c:2168)
==49943==    by 0x514D235: rpc_transport_inet_options_build (rpc-transport.c:691)
==49943==    by 0x40FD9D: glusterfs_mgmt_init (glusterfsd-mgmt.c:2139)
==49943==    by 0x40A412: glusterfs_volumes_init (glusterfsd.c:2365)
==49943==    by 0x40A892: main (glusterfsd.c:2488)
==49943== 
==49943== 87 bytes in 1 blocks are definitely lost in loss record 213 of 718
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x4E5499E: dict_set_lk (dict.c:378)
==49943==    by 0x4E54B82: dict_set (dict.c:424)
==49943==    by 0x4E584CB: dict_set_str (dict.c:2168)
==49943==    by 0x14A0148C: quota_enforcer_init (quota-enforcer-client.c:442)
==49943==    by 0x149FF51D: init (quota.c:5127)
==49943==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==49943==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==49943==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==49943==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==49943==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==49943== 
==49943== 88 bytes in 1 blocks are possibly lost in loss record 214 of 718
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x4E649E6: gf_resolve_ip6 (common-utils.c:265)
==49943==    by 0xFEAFDCE: af_inet_client_get_remote_sockaddr (name.c:258)
==49943==    by 0xFEB0857: socket_client_get_remote_sockaddr (name.c:530)
==49943==    by 0xFEABB53: socket_connect (socket.c:2955)
==49943==    by 0x514C7A1: rpc_transport_connect (rpc-transport.c:422)
==49943==    by 0x514FA2D: rpc_clnt_reconnect (rpc-clnt.c:423)
==49943==    by 0x51512AC: rpc_clnt_start (rpc-clnt.c:1201)
==49943==    by 0x40FF84: glusterfs_mgmt_init (glusterfsd-mgmt.c:2184)
==49943==    by 0x40A412: glusterfs_volumes_init (glusterfsd.c:2365)
==49943==    by 0x40A892: main (glusterfsd.c:2488)
==49943== 
==49943== 88 bytes in 1 blocks are possibly lost in loss record 215 of 718
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x4ECB38C: event_dispatch_epoll (event-epoll.c:709)
==49943==    by 0x4E8EEB9: event_dispatch (event.c:124)
==49943==    by 0x40A8B0: main (glusterfsd.c:2492)
==49943== 
==49943== 88 bytes in 1 blocks are possibly lost in loss record 216 of 718
==49943==    at 0x4C27BE3: malloc (vg_replace_malloc.c:299)
==49943==    by 0x4E8FB45: __gf_malloc (mem-pool.c:142)
==49943==    by 0x4E64F44: gf_dnscache_init (common-utils.c:366)
==49943==    by 0x14C2835B: init (io-stats.c:3686)
==49943==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==49943==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==49943==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==49943==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==49943==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==49943==    by 0x40ECA5: mgmt_getspec_cbk (glusterfsd-mgmt.c:1648)
==49943==    by 0x51505D2: rpc_clnt_handle_reply (rpc-clnt.c:791)
==49943==    by 0x5150B34: rpc_clnt_notify (rpc-clnt.c:971)
==49943== 
==49943== 88 bytes in 1 blocks are possibly lost in loss record 217 of 718
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x1393505F: init (posix.c:3665)
==49943==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==49943==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==49943==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==49943==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==49943==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==49943==    by 0x40ECA5: mgmt_getspec_cbk (glusterfsd-mgmt.c:1648)
==49943==    by 0x51505D2: rpc_clnt_handle_reply (rpc-clnt.c:791)
==49943==    by 0x5150B34: rpc_clnt_notify (rpc-clnt.c:971)
==49943==    by 0x514CD1D: rpc_transport_notify (rpc-transport.c:541)
==49943== 
==49943== 88 bytes in 1 blocks are definitely lost in loss record 220 of 718
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x4ECB618: event_reconfigure_threads_epoll (event-epoll.c:824)
==49943==    by 0x4E8EF5B: event_reconfigure_threads (event.c:140)
==49943==    by 0x150611A3: server_check_event_threads (server.c:702)
==49943==    by 0x15061F17: init (server.c:946)
==49943==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==49943==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==49943==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==49943==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==49943==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==49943==    by 0x40ECA5: mgmt_getspec_cbk (glusterfsd-mgmt.c:1648)
==49943== 
==49943== 88 bytes in 1 blocks are definitely lost in loss record 221 of 718
==49943==    at 0x4C27BE3: malloc (vg_replace_malloc.c:299)
==49943==    by 0x130402E6: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==49943==    by 0x1301B6A9: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==49943==    by 0x13023A25: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==49943==    by 0x13023B60: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==49943==    by 0x13023BDC: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==49943==    by 0x13028E1A: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==49943==    by 0x13049880: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==49943==    by 0x13049C5E: sqlite3_overload_function (in /usr/lib64/libsqlite3.so.0.8.6)
==49943==    by 0x1309E528: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==49943==    by 0x12E01B48: gf_open_sqlite3_conn (gfdb_sqlite3.c:192)
==49943==    by 0x12E02CAF: gf_sqlite3_init (gfdb_sqlite3.c:440)
==49943== 
==49943== 89 bytes in 1 blocks are possibly lost in loss record 222 of 718
==49943==    at 0x4C27BE3: malloc (vg_replace_malloc.c:299)
==49943==    by 0x4E8FB45: __gf_malloc (mem-pool.c:142)
==49943==    by 0x4E8FDF0: gf_vasprintf (mem-pool.c:221)
==49943==    by 0x4E8FEDF: gf_asprintf (mem-pool.c:240)
==49943==    by 0x4E904D2: mem_pool_new_fn (mem-pool.c:385)
==49943==    by 0x40886F: glusterfs_ctx_defaults_init (glusterfsd.c:1514)
==49943==    by 0x40A5BC: main (glusterfsd.c:2413)
==49943== 
==49943== 89 bytes in 1 blocks are possibly lost in loss record 223 of 718
==49943==    at 0x4C27BE3: malloc (vg_replace_malloc.c:299)
==49943==    by 0x4E8FB45: __gf_malloc (mem-pool.c:142)
==49943==    by 0x4E8FDF0: gf_vasprintf (mem-pool.c:221)
==49943==    by 0x4E8FEDF: gf_asprintf (mem-pool.c:240)
==49943==    by 0x4E904D2: mem_pool_new_fn (mem-pool.c:385)
==49943==    by 0x4088D7: glusterfs_ctx_defaults_init (glusterfsd.c:1523)
==49943==    by 0x40A5BC: main (glusterfsd.c:2413)
==49943== 
==49943== 89 bytes in 1 blocks are possibly lost in loss record 224 of 718
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x1505E939: gf_strdup (mem-pool.h:187)
==49943==    by 0x1506202C: init (server.c:973)
==49943==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==49943==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==49943==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==49943==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==49943==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==49943==    by 0x40ECA5: mgmt_getspec_cbk (glusterfsd-mgmt.c:1648)
==49943==    by 0x51505D2: rpc_clnt_handle_reply (rpc-clnt.c:791)
==49943==    by 0x5150B34: rpc_clnt_notify (rpc-clnt.c:971)
==49943== 
==49943== 90 bytes in 1 blocks are possibly lost in loss record 225 of 718
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x514B4A5: gf_strdup (mem-pool.h:187)
==49943==    by 0x514BC2B: rpc_transport_load (rpc-transport.c:191)
==49943==    by 0x5149213: rpcsvc_create_listener (rpcsvc.c:1664)
==49943==    by 0x514955C: rpcsvc_create_listeners (rpcsvc.c:1757)
==49943==    by 0x40F98A: glusterfs_listener_init (glusterfsd-mgmt.c:2037)
==49943==    by 0x40A3EC: glusterfs_volumes_init (glusterfsd.c:2359)
==49943==    by 0x40A892: main (glusterfsd.c:2488)
==49943== 
==49943== 90 bytes in 1 blocks are possibly lost in loss record 226 of 718
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x514B4A5: gf_strdup (mem-pool.h:187)
==49943==    by 0x514BC2B: rpc_transport_load (rpc-transport.c:191)
==49943==    by 0x5149213: rpcsvc_create_listener (rpcsvc.c:1664)
==49943==    by 0x514955C: rpcsvc_create_listeners (rpcsvc.c:1757)
==49943==    by 0x1506250B: init (server.c:1056)
==49943==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==49943==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==49943==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==49943==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==49943==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==49943== 
==49943== 90 bytes in 1 blocks are possibly lost in loss record 227 of 718
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0xFEA28F8: gf_strdup (mem-pool.h:187)
==49943==    by 0xFEAB011: socket_server_event_handler (socket.c:2700)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943== 
==49943== 90 bytes in 1 blocks are definitely lost in loss record 228 of 718
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x4E5499E: dict_set_lk (dict.c:378)
==49943==    by 0x4E54B82: dict_set (dict.c:424)
==49943==    by 0x147D5551: index_make_xattrop_watchlist (index.c:2224)
==49943==    by 0x147D5A4E: init (index.c:2334)
==49943==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==49943==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==49943==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==49943==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==49943==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==49943==    by 0x40ECA5: mgmt_getspec_cbk (glusterfsd-mgmt.c:1648)
==49943== 
==49943== 90 bytes in 1 blocks are definitely lost in loss record 229 of 718
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x4E5499E: dict_set_lk (dict.c:378)
==49943==    by 0x4E54B82: dict_set (dict.c:424)
==49943==    by 0x4E56CD3: dict_copy_one (dict.c:1314)
==49943==    by 0x4E56B26: dict_foreach_match (dict.c:1236)
==49943==    by 0x4E56A12: dict_foreach (dict.c:1194)
==49943==    by 0x4E56F16: dict_copy_with_ref (dict.c:1364)
==49943==    by 0x147D5B09: init (index.c:2346)
==49943==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==49943==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==49943==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==49943== 
==49943== 90 bytes in 1 blocks are definitely lost in loss record 230 of 718
==49943==    at 0x4C27BE3: malloc (vg_replace_malloc.c:299)
==49943==    by 0x4E8FB45: __gf_malloc (mem-pool.c:142)
==49943==    by 0x4E8FDF0: gf_vasprintf (mem-pool.c:221)
==49943==    by 0x4E8FEDF: gf_asprintf (mem-pool.c:240)
==49943==    by 0x4E904D2: mem_pool_new_fn (mem-pool.c:385)
==49943==    by 0x129BB514: inode_table_new (inode.c:1617)
==49943==    by 0x129CF039: notify (trash.c:2172)
==49943==    by 0x4E5BEC3: xlator_notify (xlator.c:496)
==49943==    by 0x4F12AA0: default_notify (defaults.c:3114)
==49943==    by 0x1218A501: notify (posix.c:6596)
==49943==    by 0x4E5BEC3: xlator_notify (xlator.c:496)
==49943==    by 0x4F129B9: default_notify (defaults.c:3090)
==49943== 
==49943== 91 bytes in 1 blocks are possibly lost in loss record 233 of 718
==49943==    at 0x4C27BE3: malloc (vg_replace_malloc.c:299)
==49943==    by 0x4E8FB45: __gf_malloc (mem-pool.c:142)
==49943==    by 0x4E8FDF0: gf_vasprintf (mem-pool.c:221)
==49943==    by 0x4E8FEDF: gf_asprintf (mem-pool.c:240)
==49943==    by 0x129BB698: inode_table_new (inode.c:1635)
==49943==    by 0x129CF039: notify (trash.c:2172)
==49943==    by 0x4E5BEC3: xlator_notify (xlator.c:496)
==49943==    by 0x4F12AA0: default_notify (defaults.c:3114)
==49943==    by 0x1218A501: notify (posix.c:6596)
==49943==    by 0x4E5BEC3: xlator_notify (xlator.c:496)
==49943==    by 0x4F129B9: default_notify (defaults.c:3090)
==49943==    by 0x129D019E: notify (trash.c:2307)
==49943== 
==49943== 91 bytes in 1 blocks are possibly lost in loss record 234 of 718
==49943==    at 0x4C27BE3: malloc (vg_replace_malloc.c:299)
==49943==    by 0x4E8FB45: __gf_malloc (mem-pool.c:142)
==49943==    by 0x4E8FDF0: gf_vasprintf (mem-pool.c:221)
==49943==    by 0x4E8FEDF: gf_asprintf (mem-pool.c:240)
==49943==    by 0x4E904D2: mem_pool_new_fn (mem-pool.c:385)
==49943==    by 0x4E72042: inode_table_new (inode.c:1617)
==49943==    by 0x15096890: server_setvolume (server-handshake.c:740)
==49943==    by 0x514731B: rpcsvc_handle_rpc_call (rpcsvc.c:701)
==49943==    by 0x514766E: rpcsvc_notify (rpcsvc.c:795)
==49943==    by 0x514CD1D: rpc_transport_notify (rpc-transport.c:541)
==49943==    by 0xFEA9D43: socket_event_poll_in (socket.c:2267)
==49943==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==49943== 
==49943== 91 bytes in 1 blocks are definitely lost in loss record 235 of 718
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x4E5499E: dict_set_lk (dict.c:378)
==49943==    by 0x4E54B82: dict_set (dict.c:424)
==49943==    by 0x4E584CB: dict_set_str (dict.c:2168)
==49943==    by 0x5144A44: rpcsvc_auth_init_auths (rpcsvc-auth.c:148)
==49943==    by 0x5144FDA: rpcsvc_auth_init (rpcsvc-auth.c:292)
==49943==    by 0x514A796: rpcsvc_init (rpcsvc.c:2334)
==49943==    by 0x40F93C: glusterfs_listener_init (glusterfsd-mgmt.c:2027)
==49943==    by 0x40A3EC: glusterfs_volumes_init (glusterfsd.c:2359)
==49943==    by 0x40A892: main (glusterfsd.c:2488)
==49943== 
==49943== 91 bytes in 1 blocks are definitely lost in loss record 236 of 718
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x4E5499E: dict_set_lk (dict.c:378)
==49943==    by 0x4E54B82: dict_set (dict.c:424)
==49943==    by 0x4E584CB: dict_set_str (dict.c:2168)
==49943==    by 0x5144AB0: rpcsvc_auth_init_auths (rpcsvc-auth.c:155)
==49943==    by 0x5144FDA: rpcsvc_auth_init (rpcsvc-auth.c:292)
==49943==    by 0x514A796: rpcsvc_init (rpcsvc.c:2334)
==49943==    by 0x40F93C: glusterfs_listener_init (glusterfsd-mgmt.c:2027)
==49943==    by 0x40A3EC: glusterfs_volumes_init (glusterfsd.c:2359)
==49943==    by 0x40A892: main (glusterfsd.c:2488)
==49943== 
==49943== 91 bytes in 1 blocks are definitely lost in loss record 237 of 718
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x4E5499E: dict_set_lk (dict.c:378)
==49943==    by 0x4E54B82: dict_set (dict.c:424)
==49943==    by 0x4E584CB: dict_set_str (dict.c:2168)
==49943==    by 0x5144A44: rpcsvc_auth_init_auths (rpcsvc-auth.c:148)
==49943==    by 0x5144FDA: rpcsvc_auth_init (rpcsvc-auth.c:292)
==49943==    by 0x514A796: rpcsvc_init (rpcsvc.c:2334)
==49943==    by 0x150622FC: init (server.c:1019)
==49943==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==49943==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==49943==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==49943== 
==49943== 91 bytes in 1 blocks are definitely lost in loss record 238 of 718
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x4E5499E: dict_set_lk (dict.c:378)
==49943==    by 0x4E54B82: dict_set (dict.c:424)
==49943==    by 0x4E584CB: dict_set_str (dict.c:2168)
==49943==    by 0x5144AB0: rpcsvc_auth_init_auths (rpcsvc-auth.c:155)
==49943==    by 0x5144FDA: rpcsvc_auth_init (rpcsvc-auth.c:292)
==49943==    by 0x514A796: rpcsvc_init (rpcsvc.c:2334)
==49943==    by 0x150622FC: init (server.c:1019)
==49943==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==49943==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==49943==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==49943== 
==49943== 92 bytes in 1 blocks are possibly lost in loss record 239 of 718
==49943==    at 0x4C27BE3: malloc (vg_replace_malloc.c:299)
==49943==    by 0x4E8FB45: __gf_malloc (mem-pool.c:142)
==49943==    by 0x4E8FDF0: gf_vasprintf (mem-pool.c:221)
==49943==    by 0x4E8FEDF: gf_asprintf (mem-pool.c:240)
==49943==    by 0x4E904D2: mem_pool_new_fn (mem-pool.c:385)
==49943==    by 0x40890B: glusterfs_ctx_defaults_init (glusterfsd.c:1527)
==49943==    by 0x40A5BC: main (glusterfsd.c:2413)
==49943== 
==49943== 92 bytes in 1 blocks are definitely lost in loss record 240 of 718
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x4E5499E: dict_set_lk (dict.c:378)
==49943==    by 0x4E54B82: dict_set (dict.c:424)
==49943==    by 0x147D5551: index_make_xattrop_watchlist (index.c:2224)
==49943==    by 0x147D5ACA: init (index.c:2340)
==49943==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==49943==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==49943==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==49943==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==49943==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==49943==    by 0x40ECA5: mgmt_getspec_cbk (glusterfsd-mgmt.c:1648)
==49943== 
==49943== 92 bytes in 1 blocks are definitely lost in loss record 241 of 718
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x4E5499E: dict_set_lk (dict.c:378)
==49943==    by 0x4E54B82: dict_set (dict.c:424)
==49943==    by 0x4E56CD3: dict_copy_one (dict.c:1314)
==49943==    by 0x4E56B26: dict_foreach_match (dict.c:1236)
==49943==    by 0x4E56A12: dict_foreach (dict.c:1194)
==49943==    by 0x4E56F16: dict_copy_with_ref (dict.c:1364)
==49943==    by 0x147D5B45: init (index.c:2349)
==49943==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==49943==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==49943==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==49943== 
==49943== 93 bytes in 1 blocks are possibly lost in loss record 242 of 718
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x4E5D949: gf_strdup (mem-pool.h:187)
==49943==    by 0x4E5EA2C: gf_log_init (logging.c:685)
==49943==    by 0x408CCA: logging_init (glusterfsd.c:1628)
==49943==    by 0x40A65E: main (glusterfsd.c:2438)
==49943== 
==49943== 93 bytes in 1 blocks are definitely lost in loss record 243 of 718
==49943==    at 0x4C27BE3: malloc (vg_replace_malloc.c:299)
==49943==    by 0x4E8FB45: __gf_malloc (mem-pool.c:142)
==49943==    by 0x4E8FDF0: gf_vasprintf (mem-pool.c:221)
==49943==    by 0x4E8FEDF: gf_asprintf (mem-pool.c:240)
==49943==    by 0x4E904D2: mem_pool_new_fn (mem-pool.c:385)
==49943==    by 0x129BB436: inode_table_new (inode.c:1593)
==49943==    by 0x129CF039: notify (trash.c:2172)
==49943==    by 0x4E5BEC3: xlator_notify (xlator.c:496)
==49943==    by 0x4F12AA0: default_notify (defaults.c:3114)
==49943==    by 0x1218A501: notify (posix.c:6596)
==49943==    by 0x4E5BEC3: xlator_notify (xlator.c:496)
==49943==    by 0x4F129B9: default_notify (defaults.c:3090)
==49943== 
==49943== 94 bytes in 1 blocks are possibly lost in loss record 244 of 718
==49943==    at 0x4C27BE3: malloc (vg_replace_malloc.c:299)
==49943==    by 0x4E8FB45: __gf_malloc (mem-pool.c:142)
==49943==    by 0x4E8FDF0: gf_vasprintf (mem-pool.c:221)
==49943==    by 0x4E8FEDF: gf_asprintf (mem-pool.c:240)
==49943==    by 0x4E904D2: mem_pool_new_fn (mem-pool.c:385)
==49943==    by 0x4087EF: glusterfs_ctx_defaults_init (glusterfsd.c:1508)
==49943==    by 0x40A5BC: main (glusterfsd.c:2413)
==49943== 
==49943== 94 bytes in 1 blocks are possibly lost in loss record 245 of 718
==49943==    at 0x4C27BE3: malloc (vg_replace_malloc.c:299)
==49943==    by 0x4E8FB45: __gf_malloc (mem-pool.c:142)
==49943==    by 0x4E8FDF0: gf_vasprintf (mem-pool.c:221)
==49943==    by 0x4E8FEDF: gf_asprintf (mem-pool.c:240)
==49943==    by 0x4E904D2: mem_pool_new_fn (mem-pool.c:385)
==49943==    by 0x4088A3: glusterfs_ctx_defaults_init (glusterfsd.c:1518)
==49943==    by 0x40A5BC: main (glusterfsd.c:2413)
==49943== 
==49943== 94 bytes in 1 blocks are possibly lost in loss record 246 of 718
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x4052E4: gf_strdup (mem-pool.h:187)
==49943==    by 0x407942: parse_opts (glusterfsd.c:1095)
==49943==    by 0x67B5412: argp_parse (in /usr/lib64/libc-2.17.so)
==49943==    by 0x4092D4: parse_cmdline (glusterfsd.c:1866)
==49943==    by 0x40A5E5: main (glusterfsd.c:2417)
==49943== 
==49943== 94 bytes in 1 blocks are possibly lost in loss record 247 of 718
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0xFEA28F8: gf_strdup (mem-pool.h:187)
==49943==    by 0xFEAE929: socket_init (socket.c:4005)
==49943==    by 0xFEAF578: init (socket.c:4290)
==49943==    by 0x514C3DE: rpc_transport_load (rpc-transport.c:351)
==49943==    by 0x5149213: rpcsvc_create_listener (rpcsvc.c:1664)
==49943==    by 0x514955C: rpcsvc_create_listeners (rpcsvc.c:1757)
==49943==    by 0x40F98A: glusterfs_listener_init (glusterfsd-mgmt.c:2037)
==49943==    by 0x40A3EC: glusterfs_volumes_init (glusterfsd.c:2359)
==49943==    by 0x40A892: main (glusterfsd.c:2488)
==49943== 
==49943== 94 bytes in 1 blocks are possibly lost in loss record 248 of 718
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0xFEA28F8: gf_strdup (mem-pool.h:187)
==49943==    by 0xFEAE929: socket_init (socket.c:4005)
==49943==    by 0xFEAF578: init (socket.c:4290)
==49943==    by 0x514C3DE: rpc_transport_load (rpc-transport.c:351)
==49943==    by 0x5150E30: rpc_clnt_connection_init (rpc-clnt.c:1067)
==49943==    by 0x5151169: rpc_clnt_new (rpc-clnt.c:1159)
==49943==    by 0x40FE46: glusterfs_mgmt_init (glusterfsd-mgmt.c:2157)
==49943==    by 0x40A412: glusterfs_volumes_init (glusterfsd.c:2365)
==49943==    by 0x40A892: main (glusterfsd.c:2488)
==49943== 
==49943== 94 bytes in 1 blocks are possibly lost in loss record 249 of 718
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0xFEA28F8: gf_strdup (mem-pool.h:187)
==49943==    by 0xFEAE929: socket_init (socket.c:4005)
==49943==    by 0xFEAF578: init (socket.c:4290)
==49943==    by 0x514C3DE: rpc_transport_load (rpc-transport.c:351)
==49943==    by 0x5149213: rpcsvc_create_listener (rpcsvc.c:1664)
==49943==    by 0x514955C: rpcsvc_create_listeners (rpcsvc.c:1757)
==49943==    by 0x1506250B: init (server.c:1056)
==49943==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==49943==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==49943==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==49943== 
==49943== 94 bytes in 1 blocks are possibly lost in loss record 250 of 718
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0xFEA28F8: gf_strdup (mem-pool.h:187)
==49943==    by 0xFEAE929: socket_init (socket.c:4005)
==49943==    by 0xFEAF578: init (socket.c:4290)
==49943==    by 0x514C3DE: rpc_transport_load (rpc-transport.c:351)
==49943==    by 0x5150E30: rpc_clnt_connection_init (rpc-clnt.c:1067)
==49943==    by 0x5151169: rpc_clnt_new (rpc-clnt.c:1159)
==49943==    by 0x14A014DE: quota_enforcer_init (quota-enforcer-client.c:451)
==49943==    by 0x149FF51D: init (quota.c:5127)
==49943==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==49943==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==49943== 
==49943== 94 bytes in 1 blocks are possibly lost in loss record 251 of 718
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x132C5046: gf_strdup (mem-pool.h:187)
==49943==    by 0x132D6700: changelog_init_options (changelog.c:2663)
==49943==    by 0x132D706A: init (changelog.c:2823)
==49943==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==49943==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==49943==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==49943==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==49943==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==49943==    by 0x40ECA5: mgmt_getspec_cbk (glusterfsd-mgmt.c:1648)
==49943==    by 0x51505D2: rpc_clnt_handle_reply (rpc-clnt.c:791)
==49943== 
==49943== 94 bytes in 1 blocks are possibly lost in loss record 252 of 718
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x129B752F: gf_strdup (mem-pool.h:187)
==49943==    by 0x129D0A12: init (trash.c:2457)
==49943==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==49943==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==49943==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==49943==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==49943==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==49943==    by 0x40ECA5: mgmt_getspec_cbk (glusterfsd-mgmt.c:1648)
==49943==    by 0x51505D2: rpc_clnt_handle_reply (rpc-clnt.c:791)
==49943==    by 0x5150B34: rpc_clnt_notify (rpc-clnt.c:971)
==49943== 
==49943== 94 bytes in 1 blocks are possibly lost in loss record 253 of 718
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x1216314A: gf_strdup (mem-pool.h:187)
==49943==    by 0x1218BBA6: init (posix.c:7090)
==49943==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==49943==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==49943==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==49943==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==49943==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==49943==    by 0x40ECA5: mgmt_getspec_cbk (glusterfsd-mgmt.c:1648)
==49943==    by 0x51505D2: rpc_clnt_handle_reply (rpc-clnt.c:791)
==49943==    by 0x5150B34: rpc_clnt_notify (rpc-clnt.c:971)
==49943== 
==49943== 94 bytes in 1 blocks are definitely lost in loss record 254 of 718
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0xFEA28F8: gf_strdup (mem-pool.h:187)
==49943==    by 0xFEAE929: socket_init (socket.c:4005)
==49943==    by 0xFEAF578: init (socket.c:4290)
==49943==    by 0x514C3DE: rpc_transport_load (rpc-transport.c:351)
==49943==    by 0x5149213: rpcsvc_create_listener (rpcsvc.c:1664)
==49943==    by 0x514955C: rpcsvc_create_listeners (rpcsvc.c:1757)
==49943==    by 0x132DF1E6: changelog_rpc_server_init (changelog-rpc-common.c:318)
==49943==    by 0x132DDC27: changelog_init_rpc_listner (changelog-rpc.c:175)
==49943==    by 0x132D6D70: changelog_init_rpc (changelog.c:2768)
==49943==    by 0x132D71B1: init (changelog.c:2850)
==49943== 
==49943== 94 bytes in 1 blocks are definitely lost in loss record 255 of 718
==49943==    at 0x4C27BE3: malloc (vg_replace_malloc.c:299)
==49943==    by 0x4E8FB45: __gf_malloc (mem-pool.c:142)
==49943==    by 0x4E8FDF0: gf_vasprintf (mem-pool.c:221)
==49943==    by 0x4E8FEDF: gf_asprintf (mem-pool.c:240)
==49943==    by 0x4E904D2: mem_pool_new_fn (mem-pool.c:385)
==49943==    by 0x129BB46E: inode_table_new (inode.c:1598)
==49943==    by 0x129CF039: notify (trash.c:2172)
==49943==    by 0x4E5BEC3: xlator_notify (xlator.c:496)
==49943==    by 0x4F12AA0: default_notify (defaults.c:3114)
==49943==    by 0x1218A501: notify (posix.c:6596)
==49943==    by 0x4E5BEC3: xlator_notify (xlator.c:496)
==49943==    by 0x4F129B9: default_notify (defaults.c:3090)
==49943== 
==49943== 94 bytes in 1 blocks are definitely lost in loss record 256 of 718
==49943==    at 0x4C27BE3: malloc (vg_replace_malloc.c:299)
==49943==    by 0x4E8FB45: __gf_malloc (mem-pool.c:142)
==49943==    by 0x4E8FDF0: gf_vasprintf (mem-pool.c:221)
==49943==    by 0x4E8FEDF: gf_asprintf (mem-pool.c:240)
==49943==    by 0x4E904D2: mem_pool_new_fn (mem-pool.c:385)
==49943==    by 0x4E71F64: inode_table_new (inode.c:1593)
==49943==    by 0x15096890: server_setvolume (server-handshake.c:740)
==49943==    by 0x514731B: rpcsvc_handle_rpc_call (rpcsvc.c:701)
==49943==    by 0x514766E: rpcsvc_notify (rpcsvc.c:795)
==49943==    by 0x514CD1D: rpc_transport_notify (rpc-transport.c:541)
==49943==    by 0xFEA9D43: socket_event_poll_in (socket.c:2267)
==49943==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==49943== 
==49943== 95 bytes in 1 blocks are possibly lost in loss record 257 of 718
==49943==    at 0x4C27BE3: malloc (vg_replace_malloc.c:299)
==49943==    by 0x4E8FB45: __gf_malloc (mem-pool.c:142)
==49943==    by 0x4E8FDF0: gf_vasprintf (mem-pool.c:221)
==49943==    by 0x4E8FEDF: gf_asprintf (mem-pool.c:240)
==49943==    by 0x4E904D2: mem_pool_new_fn (mem-pool.c:385)
==49943==    by 0x4086EA: glusterfs_ctx_defaults_init (glusterfsd.c:1496)
==49943==    by 0x40A5BC: main (glusterfsd.c:2413)
==49943== 
==49943== 95 bytes in 1 blocks are possibly lost in loss record 258 of 718
==49943==    at 0x4C27BE3: malloc (vg_replace_malloc.c:299)
==49943==    by 0x4E8FB45: __gf_malloc (mem-pool.c:142)
==49943==    by 0x4E8FDF0: gf_vasprintf (mem-pool.c:221)
==49943==    by 0x4E8FEDF: gf_asprintf (mem-pool.c:240)
==49943==    by 0x4E904D2: mem_pool_new_fn (mem-pool.c:385)
==49943==    by 0x408772: glusterfs_ctx_defaults_init (glusterfsd.c:1502)
==49943==    by 0x40A5BC: main (glusterfsd.c:2413)
==49943== 
==49943== 95 bytes in 1 blocks are possibly lost in loss record 259 of 718
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0xFEA28F8: gf_strdup (mem-pool.h:187)
==49943==    by 0xFEAE7AD: socket_init (socket.c:3983)
==49943==    by 0xFEAF578: init (socket.c:4290)
==49943==    by 0x514C3DE: rpc_transport_load (rpc-transport.c:351)
==49943==    by 0x5149213: rpcsvc_create_listener (rpcsvc.c:1664)
==49943==    by 0x514955C: rpcsvc_create_listeners (rpcsvc.c:1757)
==49943==    by 0x40F98A: glusterfs_listener_init (glusterfsd-mgmt.c:2037)
==49943==    by 0x40A3EC: glusterfs_volumes_init (glusterfsd.c:2359)
==49943==    by 0x40A892: main (glusterfsd.c:2488)
==49943== 
==49943== 95 bytes in 1 blocks are possibly lost in loss record 260 of 718
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0xFEA28F8: gf_strdup (mem-pool.h:187)
==49943==    by 0xFEAE86B: socket_init (socket.c:3994)
==49943==    by 0xFEAF578: init (socket.c:4290)
==49943==    by 0x514C3DE: rpc_transport_load (rpc-transport.c:351)
==49943==    by 0x5149213: rpcsvc_create_listener (rpcsvc.c:1664)
==49943==    by 0x514955C: rpcsvc_create_listeners (rpcsvc.c:1757)
==49943==    by 0x40F98A: glusterfs_listener_init (glusterfsd-mgmt.c:2037)
==49943==    by 0x40A3EC: glusterfs_volumes_init (glusterfsd.c:2359)
==49943==    by 0x40A892: main (glusterfsd.c:2488)
==49943== 
==49943== 95 bytes in 1 blocks are possibly lost in loss record 261 of 718
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0xFEA28F8: gf_strdup (mem-pool.h:187)
==49943==    by 0xFEAE7AD: socket_init (socket.c:3983)
==49943==    by 0xFEAF578: init (socket.c:4290)
==49943==    by 0x514C3DE: rpc_transport_load (rpc-transport.c:351)
==49943==    by 0x5150E30: rpc_clnt_connection_init (rpc-clnt.c:1067)
==49943==    by 0x5151169: rpc_clnt_new (rpc-clnt.c:1159)
==49943==    by 0x40FE46: glusterfs_mgmt_init (glusterfsd-mgmt.c:2157)
==49943==    by 0x40A412: glusterfs_volumes_init (glusterfsd.c:2365)
==49943==    by 0x40A892: main (glusterfsd.c:2488)
==49943== 
==49943== 95 bytes in 1 blocks are possibly lost in loss record 262 of 718
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0xFEA28F8: gf_strdup (mem-pool.h:187)
==49943==    by 0xFEAE86B: socket_init (socket.c:3994)
==49943==    by 0xFEAF578: init (socket.c:4290)
==49943==    by 0x514C3DE: rpc_transport_load (rpc-transport.c:351)
==49943==    by 0x5150E30: rpc_clnt_connection_init (rpc-clnt.c:1067)
==49943==    by 0x5151169: rpc_clnt_new (rpc-clnt.c:1159)
==49943==    by 0x40FE46: glusterfs_mgmt_init (glusterfsd-mgmt.c:2157)
==49943==    by 0x40A412: glusterfs_volumes_init (glusterfsd.c:2365)
==49943==    by 0x40A892: main (glusterfsd.c:2488)
==49943== 
==49943== 95 bytes in 1 blocks are possibly lost in loss record 263 of 718
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0xFEA28F8: gf_strdup (mem-pool.h:187)
==49943==    by 0xFEAE7AD: socket_init (socket.c:3983)
==49943==    by 0xFEAF578: init (socket.c:4290)
==49943==    by 0x514C3DE: rpc_transport_load (rpc-transport.c:351)
==49943==    by 0x5149213: rpcsvc_create_listener (rpcsvc.c:1664)
==49943==    by 0x514955C: rpcsvc_create_listeners (rpcsvc.c:1757)
==49943==    by 0x1506250B: init (server.c:1056)
==49943==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==49943==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==49943==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==49943== 
==49943== 95 bytes in 1 blocks are possibly lost in loss record 264 of 718
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0xFEA28F8: gf_strdup (mem-pool.h:187)
==49943==    by 0xFEAE86B: socket_init (socket.c:3994)
==49943==    by 0xFEAF578: init (socket.c:4290)
==49943==    by 0x514C3DE: rpc_transport_load (rpc-transport.c:351)
==49943==    by 0x5149213: rpcsvc_create_listener (rpcsvc.c:1664)
==49943==    by 0x514955C: rpcsvc_create_listeners (rpcsvc.c:1757)
==49943==    by 0x1506250B: init (server.c:1056)
==49943==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==49943==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==49943==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==49943== 
==49943== 95 bytes in 1 blocks are possibly lost in loss record 265 of 718
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0xFEA28F8: gf_strdup (mem-pool.h:187)
==49943==    by 0xFEAE7AD: socket_init (socket.c:3983)
==49943==    by 0xFEAF578: init (socket.c:4290)
==49943==    by 0x514C3DE: rpc_transport_load (rpc-transport.c:351)
==49943==    by 0x5150E30: rpc_clnt_connection_init (rpc-clnt.c:1067)
==49943==    by 0x5151169: rpc_clnt_new (rpc-clnt.c:1159)
==49943==    by 0x14A014DE: quota_enforcer_init (quota-enforcer-client.c:451)
==49943==    by 0x149FF51D: init (quota.c:5127)
==49943==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==49943==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==49943== 
==49943== 95 bytes in 1 blocks are possibly lost in loss record 266 of 718
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0xFEA28F8: gf_strdup (mem-pool.h:187)
==49943==    by 0xFEAE86B: socket_init (socket.c:3994)
==49943==    by 0xFEAF578: init (socket.c:4290)
==49943==    by 0x514C3DE: rpc_transport_load (rpc-transport.c:351)
==49943==    by 0x5150E30: rpc_clnt_connection_init (rpc-clnt.c:1067)
==49943==    by 0x5151169: rpc_clnt_new (rpc-clnt.c:1159)
==49943==    by 0x14A014DE: quota_enforcer_init (quota-enforcer-client.c:451)
==49943==    by 0x149FF51D: init (quota.c:5127)
==49943==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==49943==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==49943== 
==49943== 95 bytes in 1 blocks are definitely lost in loss record 267 of 718
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0xFEA28F8: gf_strdup (mem-pool.h:187)
==49943==    by 0xFEAE7AD: socket_init (socket.c:3983)
==49943==    by 0xFEAF578: init (socket.c:4290)
==49943==    by 0x514C3DE: rpc_transport_load (rpc-transport.c:351)
==49943==    by 0x5149213: rpcsvc_create_listener (rpcsvc.c:1664)
==49943==    by 0x514955C: rpcsvc_create_listeners (rpcsvc.c:1757)
==49943==    by 0x132DF1E6: changelog_rpc_server_init (changelog-rpc-common.c:318)
==49943==    by 0x132DDC27: changelog_init_rpc_listner (changelog-rpc.c:175)
==49943==    by 0x132D6D70: changelog_init_rpc (changelog.c:2768)
==49943==    by 0x132D71B1: init (changelog.c:2850)
==49943== 
==49943== 95 bytes in 1 blocks are definitely lost in loss record 268 of 718
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0xFEA28F8: gf_strdup (mem-pool.h:187)
==49943==    by 0xFEAE86B: socket_init (socket.c:3994)
==49943==    by 0xFEAF578: init (socket.c:4290)
==49943==    by 0x514C3DE: rpc_transport_load (rpc-transport.c:351)
==49943==    by 0x5149213: rpcsvc_create_listener (rpcsvc.c:1664)
==49943==    by 0x514955C: rpcsvc_create_listeners (rpcsvc.c:1757)
==49943==    by 0x132DF1E6: changelog_rpc_server_init (changelog-rpc-common.c:318)
==49943==    by 0x132DDC27: changelog_init_rpc_listner (changelog-rpc.c:175)
==49943==    by 0x132D6D70: changelog_init_rpc (changelog.c:2768)
==49943==    by 0x132D71B1: init (changelog.c:2850)
==49943== 
==49943== 95 bytes in 1 blocks are definitely lost in loss record 269 of 718
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x129B752F: gf_strdup (mem-pool.h:187)
==49943==    by 0x129BEF4B: trash_notify_mkdir_cbk (trash.c:441)
==49943==    by 0x1216EB15: posix_mkdir (posix.c:1693)
==49943==    by 0x129CFA85: notify (trash.c:2246)
==49943==    by 0x4E5BEC3: xlator_notify (xlator.c:496)
==49943==    by 0x4F12AA0: default_notify (defaults.c:3114)
==49943==    by 0x1218A501: notify (posix.c:6596)
==49943==    by 0x4E5BEC3: xlator_notify (xlator.c:496)
==49943==    by 0x4F129B9: default_notify (defaults.c:3090)
==49943==    by 0x129D019E: notify (trash.c:2307)
==49943== 
==49943== 95 bytes in 1 blocks are definitely lost in loss record 270 of 718
==49943==    at 0x4C27BE3: malloc (vg_replace_malloc.c:299)
==49943==    by 0x4E8FB45: __gf_malloc (mem-pool.c:142)
==49943==    by 0x4E8FDF0: gf_vasprintf (mem-pool.c:221)
==49943==    by 0x4E8FEDF: gf_asprintf (mem-pool.c:240)
==49943==    by 0x4E904D2: mem_pool_new_fn (mem-pool.c:385)
==49943==    by 0x4E71F9C: inode_table_new (inode.c:1598)
==49943==    by 0x15096890: server_setvolume (server-handshake.c:740)
==49943==    by 0x514731B: rpcsvc_handle_rpc_call (rpcsvc.c:701)
==49943==    by 0x514766E: rpcsvc_notify (rpcsvc.c:795)
==49943==    by 0x514CD1D: rpc_transport_notify (rpc-transport.c:541)
==49943==    by 0xFEA9D43: socket_event_poll_in (socket.c:2267)
==49943==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==49943== 
==49943== 96 bytes in 1 blocks are possibly lost in loss record 274 of 718
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x514C293: rpc_transport_load (rpc-transport.c:324)
==49943==    by 0x5149213: rpcsvc_create_listener (rpcsvc.c:1664)
==49943==    by 0x514955C: rpcsvc_create_listeners (rpcsvc.c:1757)
==49943==    by 0x40F98A: glusterfs_listener_init (glusterfsd-mgmt.c:2037)
==49943==    by 0x40A3EC: glusterfs_volumes_init (glusterfsd.c:2359)
==49943==    by 0x40A892: main (glusterfsd.c:2488)
==49943== 
==49943== 96 bytes in 1 blocks are possibly lost in loss record 275 of 718
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x514C293: rpc_transport_load (rpc-transport.c:324)
==49943==    by 0x5150E30: rpc_clnt_connection_init (rpc-clnt.c:1067)
==49943==    by 0x5151169: rpc_clnt_new (rpc-clnt.c:1159)
==49943==    by 0x40FE46: glusterfs_mgmt_init (glusterfsd-mgmt.c:2157)
==49943==    by 0x40A412: glusterfs_volumes_init (glusterfsd.c:2365)
==49943==    by 0x40A892: main (glusterfsd.c:2488)
==49943== 
==49943== 96 bytes in 1 blocks are possibly lost in loss record 276 of 718
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x514C293: rpc_transport_load (rpc-transport.c:324)
==49943==    by 0x5149213: rpcsvc_create_listener (rpcsvc.c:1664)
==49943==    by 0x514955C: rpcsvc_create_listeners (rpcsvc.c:1757)
==49943==    by 0x1506250B: init (server.c:1056)
==49943==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==49943==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==49943==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==49943==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==49943==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==49943==    by 0x40ECA5: mgmt_getspec_cbk (glusterfsd-mgmt.c:1648)
==49943== 
==49943== 96 bytes in 1 blocks are possibly lost in loss record 277 of 718
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x514C293: rpc_transport_load (rpc-transport.c:324)
==49943==    by 0x5150E30: rpc_clnt_connection_init (rpc-clnt.c:1067)
==49943==    by 0x5151169: rpc_clnt_new (rpc-clnt.c:1159)
==49943==    by 0x14A014DE: quota_enforcer_init (quota-enforcer-client.c:451)
==49943==    by 0x149FF51D: init (quota.c:5127)
==49943==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==49943==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==49943==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==49943==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==49943==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==49943== 
==49943== 96 bytes in 1 blocks are possibly lost in loss record 278 of 718
==49943==    at 0x4C27BE3: malloc (vg_replace_malloc.c:299)
==49943==    by 0x4E8FB45: __gf_malloc (mem-pool.c:142)
==49943==    by 0x4E8FDF0: gf_vasprintf (mem-pool.c:221)
==49943==    by 0x4E8FEDF: gf_asprintf (mem-pool.c:240)
==49943==    by 0x4E904D2: mem_pool_new_fn (mem-pool.c:385)
==49943==    by 0x13935190: init (posix.c:3681)
==49943==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==49943==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==49943==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==49943==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==49943==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==49943==    by 0x40ECA5: mgmt_getspec_cbk (glusterfsd-mgmt.c:1648)
==49943== 
==49943== 96 bytes in 1 blocks are possibly lost in loss record 279 of 718
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x132DD888: changelog_init_rpc_threads (changelog-rpc.c:105)
==49943==    by 0x132DDB5E: changelog_init_rpc_listner (changelog-rpc.c:169)
==49943==    by 0x132D6D70: changelog_init_rpc (changelog.c:2768)
==49943==    by 0x132D71B1: init (changelog.c:2850)
==49943==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==49943==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==49943==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==49943==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==49943==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==49943==    by 0x40ECA5: mgmt_getspec_cbk (glusterfsd-mgmt.c:1648)
==49943== 
==49943== 96 bytes in 1 blocks are possibly lost in loss record 280 of 718
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x514C293: rpc_transport_load (rpc-transport.c:324)
==49943==    by 0x5149213: rpcsvc_create_listener (rpcsvc.c:1664)
==49943==    by 0x514955C: rpcsvc_create_listeners (rpcsvc.c:1757)
==49943==    by 0x132DF1E6: changelog_rpc_server_init (changelog-rpc-common.c:318)
==49943==    by 0x132DDC27: changelog_init_rpc_listner (changelog-rpc.c:175)
==49943==    by 0x132D6D70: changelog_init_rpc (changelog.c:2768)
==49943==    by 0x132D71B1: init (changelog.c:2850)
==49943==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==49943==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==49943==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==49943== 
==49943== 96 bytes in 1 blocks are definitely lost in loss record 288 of 718
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x4E5499E: dict_set_lk (dict.c:378)
==49943==    by 0x4E54B82: dict_set (dict.c:424)
==49943==    by 0x4E584CB: dict_set_str (dict.c:2168)
==49943==    by 0x5144D69: rpcsvc_set_allow_insecure (rpcsvc-auth.c:231)
==49943==    by 0x5144F59: rpcsvc_auth_init (rpcsvc-auth.c:283)
==49943==    by 0x514A796: rpcsvc_init (rpcsvc.c:2334)
==49943==    by 0x40F93C: glusterfs_listener_init (glusterfsd-mgmt.c:2027)
==49943==    by 0x40A3EC: glusterfs_volumes_init (glusterfsd.c:2359)
==49943==    by 0x40A892: main (glusterfsd.c:2488)
==49943== 
==49943== 96 bytes in 1 blocks are definitely lost in loss record 289 of 718
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x4E5499E: dict_set_lk (dict.c:378)
==49943==    by 0x4E54B82: dict_set (dict.c:424)
==49943==    by 0x4E584CB: dict_set_str (dict.c:2168)
==49943==    by 0x5144B1C: rpcsvc_auth_init_auths (rpcsvc-auth.c:162)
==49943==    by 0x5144FDA: rpcsvc_auth_init (rpcsvc-auth.c:292)
==49943==    by 0x514A796: rpcsvc_init (rpcsvc.c:2334)
==49943==    by 0x40F93C: glusterfs_listener_init (glusterfsd-mgmt.c:2027)
==49943==    by 0x40A3EC: glusterfs_volumes_init (glusterfsd.c:2359)
==49943==    by 0x40A892: main (glusterfsd.c:2488)
==49943== 
==49943== 96 bytes in 1 blocks are definitely lost in loss record 290 of 718
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x4E5499E: dict_set_lk (dict.c:378)
==49943==    by 0x4E54B82: dict_set (dict.c:424)
==49943==    by 0x4E584CB: dict_set_str (dict.c:2168)
==49943==    by 0x5144D69: rpcsvc_set_allow_insecure (rpcsvc-auth.c:231)
==49943==    by 0x5144F59: rpcsvc_auth_init (rpcsvc-auth.c:283)
==49943==    by 0x514A796: rpcsvc_init (rpcsvc.c:2334)
==49943==    by 0x150622FC: init (server.c:1019)
==49943==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==49943==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==49943==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==49943== 
==49943== 96 bytes in 1 blocks are definitely lost in loss record 291 of 718
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x4E5499E: dict_set_lk (dict.c:378)
==49943==    by 0x4E54B82: dict_set (dict.c:424)
==49943==    by 0x4E584CB: dict_set_str (dict.c:2168)
==49943==    by 0x5144B1C: rpcsvc_auth_init_auths (rpcsvc-auth.c:162)
==49943==    by 0x5144FDA: rpcsvc_auth_init (rpcsvc-auth.c:292)
==49943==    by 0x514A796: rpcsvc_init (rpcsvc.c:2334)
==49943==    by 0x150622FC: init (server.c:1019)
==49943==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==49943==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==49943==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==49943== 
==49943== 96 bytes in 1 blocks are definitely lost in loss record 292 of 718
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x514B4A5: gf_strdup (mem-pool.h:187)
==49943==    by 0x514BC2B: rpc_transport_load (rpc-transport.c:191)
==49943==    by 0x5149213: rpcsvc_create_listener (rpcsvc.c:1664)
==49943==    by 0x514955C: rpcsvc_create_listeners (rpcsvc.c:1757)
==49943==    by 0x132DF1E6: changelog_rpc_server_init (changelog-rpc-common.c:318)
==49943==    by 0x132DDC27: changelog_init_rpc_listner (changelog-rpc.c:175)
==49943==    by 0x132D6D70: changelog_init_rpc (changelog.c:2768)
==49943==    by 0x132D71B1: init (changelog.c:2850)
==49943==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==49943==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==49943== 
==49943== 96 bytes in 1 blocks are definitely lost in loss record 293 of 718
==49943==    at 0x4C27BE3: malloc (vg_replace_malloc.c:299)
==49943==    by 0x130402E6: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==49943==    by 0x1301B6A9: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==49943==    by 0x13023A25: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==49943==    by 0x13023B60: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==49943==    by 0x13023BDC: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==49943==    by 0x13028E1A: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==49943==    by 0x13049880: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==49943==    by 0x13049C5E: sqlite3_overload_function (in /usr/lib64/libsqlite3.so.0.8.6)
==49943==    by 0x1309E560: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==49943==    by 0x12E01B48: gf_open_sqlite3_conn (gfdb_sqlite3.c:192)
==49943==    by 0x12E02CAF: gf_sqlite3_init (gfdb_sqlite3.c:440)
==49943== 
==49943== 97 bytes in 1 blocks are possibly lost in loss record 294 of 718
==49943==    at 0x4C27BE3: malloc (vg_replace_malloc.c:299)
==49943==    by 0x4E8FB45: __gf_malloc (mem-pool.c:142)
==49943==    by 0x4E8FDF0: gf_vasprintf (mem-pool.c:221)
==49943==    by 0x4E8FEDF: gf_asprintf (mem-pool.c:240)
==49943==    by 0x4E6BA5F: gf_set_log_ident (common-utils.c:3491)
==49943==    by 0x408C34: logging_init (glusterfsd.c:1609)
==49943==    by 0x40A65E: main (glusterfsd.c:2438)
==49943== 
==49943== 97 bytes in 1 blocks are possibly lost in loss record 295 of 718
==49943==    at 0x4C27BE3: malloc (vg_replace_malloc.c:299)
==49943==    by 0x4E8FB45: __gf_malloc (mem-pool.c:142)
==49943==    by 0x4E8FDF0: gf_vasprintf (mem-pool.c:221)
==49943==    by 0x4E8FEDF: gf_asprintf (mem-pool.c:240)
==49943==    by 0x4E904D2: mem_pool_new_fn (mem-pool.c:385)
==49943==    by 0x5151087: rpc_clnt_new (rpc-clnt.c:1139)
==49943==    by 0x40FE46: glusterfs_mgmt_init (glusterfsd-mgmt.c:2157)
==49943==    by 0x40A412: glusterfs_volumes_init (glusterfsd.c:2365)
==49943==    by 0x40A892: main (glusterfsd.c:2488)
==49943== 
==49943== 97 bytes in 1 blocks are definitely lost in loss record 296 of 718
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x4E5499E: dict_set_lk (dict.c:378)
==49943==    by 0x4E54B82: dict_set (dict.c:424)
==49943==    by 0x4E584CB: dict_set_str (dict.c:2168)
==49943==    by 0x514A362: rpcsvc_transport_unix_options_build (rpcsvc.c:2180)
==49943==    by 0x40F909: glusterfs_listener_init (glusterfsd-mgmt.c:2022)
==49943==    by 0x40A3EC: glusterfs_volumes_init (glusterfsd.c:2359)
==49943==    by 0x40A892: main (glusterfsd.c:2488)
==49943== 
==49943== 97 bytes in 1 blocks are definitely lost in loss record 297 of 718
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x4E5499E: dict_set_lk (dict.c:378)
==49943==    by 0x4E54B82: dict_set (dict.c:424)
==49943==    by 0x4E584CB: dict_set_str (dict.c:2168)
==49943==    by 0x514A387: rpcsvc_transport_unix_options_build (rpcsvc.c:2184)
==49943==    by 0x40F909: glusterfs_listener_init (glusterfsd-mgmt.c:2022)
==49943==    by 0x40A3EC: glusterfs_volumes_init (glusterfsd.c:2359)
==49943==    by 0x40A892: main (glusterfsd.c:2488)
==49943== 
==49943== 97 bytes in 1 blocks are definitely lost in loss record 298 of 718
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x4E5499E: dict_set_lk (dict.c:378)
==49943==    by 0x4E54B82: dict_set (dict.c:424)
==49943==    by 0x4E584CB: dict_set_str (dict.c:2168)
==49943==    by 0x14A01464: quota_enforcer_init (quota-enforcer-client.c:438)
==49943==    by 0x149FF51D: init (quota.c:5127)
==49943==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==49943==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==49943==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==49943==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==49943==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==49943== 
==49943== 99 bytes in 1 blocks are possibly lost in loss record 299 of 718
==49943==    at 0x4C27BE3: malloc (vg_replace_malloc.c:299)
==49943==    by 0x4E8FB45: __gf_malloc (mem-pool.c:142)
==49943==    by 0x4E8FDF0: gf_vasprintf (mem-pool.c:221)
==49943==    by 0x4E8FEDF: gf_asprintf (mem-pool.c:240)
==49943==    by 0x4E904D2: mem_pool_new_fn (mem-pool.c:385)
==49943==    by 0x514A732: rpcsvc_init (rpcsvc.c:2327)
==49943==    by 0x40F93C: glusterfs_listener_init (glusterfsd-mgmt.c:2027)
==49943==    by 0x40A3EC: glusterfs_volumes_init (glusterfsd.c:2359)
==49943==    by 0x40A892: main (glusterfsd.c:2488)
==49943== 
==49943== 99 bytes in 1 blocks are possibly lost in loss record 300 of 718
==49943==    at 0x4C27BE3: malloc (vg_replace_malloc.c:299)
==49943==    by 0x4E8FB45: __gf_malloc (mem-pool.c:142)
==49943==    by 0x4E8FDF0: gf_vasprintf (mem-pool.c:221)
==49943==    by 0x4E8FEDF: gf_asprintf (mem-pool.c:240)
==49943==    by 0x4E904D2: mem_pool_new_fn (mem-pool.c:385)
==49943==    by 0x149FF481: init (quota.c:5118)
==49943==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==49943==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==49943==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==49943==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==49943==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==49943==    by 0x40ECA5: mgmt_getspec_cbk (glusterfsd-mgmt.c:1648)
==49943== 
==49943== 99 bytes in 1 blocks are possibly lost in loss record 301 of 718
==49943==    at 0x4C27BE3: malloc (vg_replace_malloc.c:299)
==49943==    by 0x4E8FB45: __gf_malloc (mem-pool.c:142)
==49943==    by 0x4E8FDF0: gf_vasprintf (mem-pool.c:221)
==49943==    by 0x4E8FEDF: gf_asprintf (mem-pool.c:240)
==49943==    by 0x4E904D2: mem_pool_new_fn (mem-pool.c:385)
==49943==    by 0x147D5BD2: init (index.c:2357)
==49943==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==49943==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==49943==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==49943==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==49943==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==49943==    by 0x40ECA5: mgmt_getspec_cbk (glusterfsd-mgmt.c:1648)
==49943== 
==49943== 99 bytes in 1 blocks are possibly lost in loss record 302 of 718
==49943==    at 0x4C27BE3: malloc (vg_replace_malloc.c:299)
==49943==    by 0x4E8FB45: __gf_malloc (mem-pool.c:142)
==49943==    by 0x4E8FDF0: gf_vasprintf (mem-pool.c:221)
==49943==    by 0x4E8FEDF: gf_asprintf (mem-pool.c:240)
==49943==    by 0x4E904D2: mem_pool_new_fn (mem-pool.c:385)
==49943==    by 0x129D0936: init (trash.c:2438)
==49943==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==49943==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==49943==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==49943==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==49943==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==49943==    by 0x40ECA5: mgmt_getspec_cbk (glusterfsd-mgmt.c:1648)
==49943== 
==49943== 100 bytes in 1 blocks are possibly lost in loss record 303 of 718
==49943==    at 0x4C27BE3: malloc (vg_replace_malloc.c:299)
==49943==    by 0x4E8FB45: __gf_malloc (mem-pool.c:142)
==49943==    by 0x4E8FDF0: gf_vasprintf (mem-pool.c:221)
==49943==    by 0x4E8FEDF: gf_asprintf (mem-pool.c:240)
==49943==    by 0x4E904D2: mem_pool_new_fn (mem-pool.c:385)
==49943==    by 0x5151087: rpc_clnt_new (rpc-clnt.c:1139)
==49943==    by 0x14A014DE: quota_enforcer_init (quota-enforcer-client.c:451)
==49943==    by 0x149FF51D: init (quota.c:5127)
==49943==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==49943==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==49943==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==49943==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==49943== 
==49943== 100 bytes in 1 blocks are possibly lost in loss record 304 of 718
==49943==    at 0x4C27BE3: malloc (vg_replace_malloc.c:299)
==49943==    by 0x4E8FB45: __gf_malloc (mem-pool.c:142)
==49943==    by 0x4E8FDF0: gf_vasprintf (mem-pool.c:221)
==49943==    by 0x4E8FEDF: gf_asprintf (mem-pool.c:240)
==49943==    by 0x4E721C6: inode_table_new (inode.c:1635)
==49943==    by 0x15096890: server_setvolume (server-handshake.c:740)
==49943==    by 0x514731B: rpcsvc_handle_rpc_call (rpcsvc.c:701)
==49943==    by 0x514766E: rpcsvc_notify (rpcsvc.c:795)
==49943==    by 0x514CD1D: rpc_transport_notify (rpc-transport.c:541)
==49943==    by 0xFEA9D43: socket_event_poll_in (socket.c:2267)
==49943==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943== 
==49943== 101 bytes in 1 blocks are possibly lost in loss record 305 of 718
==49943==    at 0x4C27BE3: malloc (vg_replace_malloc.c:299)
==49943==    by 0x4E8FB45: __gf_malloc (mem-pool.c:142)
==49943==    by 0x4E8FDF0: gf_vasprintf (mem-pool.c:221)
==49943==    by 0x4E8FEDF: gf_asprintf (mem-pool.c:240)
==49943==    by 0x4E904D2: mem_pool_new_fn (mem-pool.c:385)
==49943==    by 0x51510EE: rpc_clnt_new (rpc-clnt.c:1148)
==49943==    by 0x40FE46: glusterfs_mgmt_init (glusterfsd-mgmt.c:2157)
==49943==    by 0x40A412: glusterfs_volumes_init (glusterfsd.c:2365)
==49943==    by 0x40A892: main (glusterfsd.c:2488)
==49943== 
==49943== 101 bytes in 1 blocks are possibly lost in loss record 306 of 718
==49943==    at 0x4C27BE3: malloc (vg_replace_malloc.c:299)
==49943==    by 0x4E8FB45: __gf_malloc (mem-pool.c:142)
==49943==    by 0x4E8FDF0: gf_vasprintf (mem-pool.c:221)
==49943==    by 0x4E8FEDF: gf_asprintf (mem-pool.c:240)
==49943==    by 0x4E904D2: mem_pool_new_fn (mem-pool.c:385)
==49943==    by 0x143A9945: init (marker.c:3443)
==49943==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==49943==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==49943==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==49943==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==49943==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==49943==    by 0x40ECA5: mgmt_getspec_cbk (glusterfsd-mgmt.c:1648)
==49943== 
==49943== 101 bytes in 1 blocks are possibly lost in loss record 307 of 718
==49943==    at 0x4C27BE3: malloc (vg_replace_malloc.c:299)
==49943==    by 0x4E8FB45: __gf_malloc (mem-pool.c:142)
==49943==    by 0x4E8FDF0: gf_vasprintf (mem-pool.c:221)
==49943==    by 0x4E8FEDF: gf_asprintf (mem-pool.c:240)
==49943==    by 0x4E904D2: mem_pool_new_fn (mem-pool.c:385)
==49943==    by 0x1418A79B: init (upcall.c:1693)
==49943==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==49943==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==49943==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==49943==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==49943==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==49943==    by 0x40ECA5: mgmt_getspec_cbk (glusterfsd-mgmt.c:1648)
==49943== 
==49943== 101 bytes in 1 blocks are possibly lost in loss record 308 of 718
==49943==    at 0x4C27BE3: malloc (vg_replace_malloc.c:299)
==49943==    by 0x4E8FB45: __gf_malloc (mem-pool.c:142)
==49943==    by 0x4E8FDF0: gf_vasprintf (mem-pool.c:221)
==49943==    by 0x4E8FEDF: gf_asprintf (mem-pool.c:240)
==49943==    by 0x4E904D2: mem_pool_new_fn (mem-pool.c:385)
==49943==    by 0x13B50CF0: init (worm.c:504)
==49943==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==49943==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==49943==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==49943==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==49943==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==49943==    by 0x40ECA5: mgmt_getspec_cbk (glusterfsd-mgmt.c:1648)
==49943== 
==49943== 101 bytes in 1 blocks are definitely lost in loss record 309 of 718
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x4E5499E: dict_set_lk (dict.c:378)
==49943==    by 0x4E54B82: dict_set (dict.c:424)
==49943==    by 0x4E585B1: dict_set_dynstr (dict.c:2205)
==49943==    by 0x514A33D: rpcsvc_transport_unix_options_build (rpcsvc.c:2176)
==49943==    by 0x40F909: glusterfs_listener_init (glusterfsd-mgmt.c:2022)
==49943==    by 0x40A3EC: glusterfs_volumes_init (glusterfsd.c:2359)
==49943==    by 0x40A892: main (glusterfsd.c:2488)
==49943== 
==49943== 101 bytes in 1 blocks are definitely lost in loss record 310 of 718
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x4E5499E: dict_set_lk (dict.c:378)
==49943==    by 0x4E54B82: dict_set (dict.c:424)
==49943==    by 0x4EBDD59: xl_opt_validate (options.c:955)
==49943==    by 0x4E56B26: dict_foreach_match (dict.c:1236)
==49943==    by 0x4E56A12: dict_foreach (dict.c:1194)
==49943==    by 0x4EBDDC1: xlator_options_validate_list (options.c:977)
==49943==    by 0x514C360: rpc_transport_load (rpc-transport.c:338)
==49943==    by 0x5149213: rpcsvc_create_listener (rpcsvc.c:1664)
==49943==    by 0x514955C: rpcsvc_create_listeners (rpcsvc.c:1757)
==49943==    by 0x1506250B: init (server.c:1056)
==49943== 
==49943== 102 bytes in 1 blocks are definitely lost in loss record 311 of 718
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x4E5499E: dict_set_lk (dict.c:378)
==49943==    by 0x4E54B82: dict_set (dict.c:424)
==49943==    by 0x4E584CB: dict_set_str (dict.c:2168)
==49943==    by 0x14A014B4: quota_enforcer_init (quota-enforcer-client.c:446)
==49943==    by 0x149FF51D: init (quota.c:5127)
==49943==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==49943==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==49943==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==49943==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==49943==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==49943== 
==49943== 103 bytes in 1 blocks are possibly lost in loss record 312 of 718
==49943==    at 0x4C27BE3: malloc (vg_replace_malloc.c:299)
==49943==    by 0x4E8FB45: __gf_malloc (mem-pool.c:142)
==49943==    by 0x4E8FDF0: gf_vasprintf (mem-pool.c:221)
==49943==    by 0x4E8FEDF: gf_asprintf (mem-pool.c:240)
==49943==    by 0x4E904D2: mem_pool_new_fn (mem-pool.c:385)
==49943==    by 0x514A732: rpcsvc_init (rpcsvc.c:2327)
==49943==    by 0x150622FC: init (server.c:1019)
==49943==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==49943==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==49943==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==49943==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==49943==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==49943== 
==49943== 104 bytes in 1 blocks are possibly lost in loss record 313 of 718
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x5145E8F: rpcsvc_notify_wrapper_alloc (rpcsvc.c:66)
==49943==    by 0x51496F5: rpcsvc_register_notify (rpcsvc.c:1824)
==49943==    by 0x40F967: glusterfs_listener_init (glusterfsd-mgmt.c:2032)
==49943==    by 0x40A3EC: glusterfs_volumes_init (glusterfsd.c:2359)
==49943==    by 0x40A892: main (glusterfsd.c:2488)
==49943== 
==49943== 104 bytes in 1 blocks are possibly lost in loss record 314 of 718
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x5145E8F: rpcsvc_notify_wrapper_alloc (rpcsvc.c:66)
==49943==    by 0x51496F5: rpcsvc_register_notify (rpcsvc.c:1824)
==49943==    by 0x150625FA: init (server.c:1072)
==49943==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==49943==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==49943==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==49943==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==49943==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==49943==    by 0x40ECA5: mgmt_getspec_cbk (glusterfsd-mgmt.c:1648)
==49943==    by 0x51505D2: rpc_clnt_handle_reply (rpc-clnt.c:791)
==49943== 
==49943== 104 bytes in 1 blocks are possibly lost in loss record 315 of 718
==49943==    at 0x4C27BE3: malloc (vg_replace_malloc.c:299)
==49943==    by 0x4E8FB45: __gf_malloc (mem-pool.c:142)
==49943==    by 0x4E8FDF0: gf_vasprintf (mem-pool.c:221)
==49943==    by 0x4E8FEDF: gf_asprintf (mem-pool.c:240)
==49943==    by 0x4E904D2: mem_pool_new_fn (mem-pool.c:385)
==49943==    by 0x51510EE: rpc_clnt_new (rpc-clnt.c:1148)
==49943==    by 0x14A014DE: quota_enforcer_init (quota-enforcer-client.c:451)
==49943==    by 0x149FF51D: init (quota.c:5127)
==49943==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==49943==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==49943==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==49943==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==49943== 
==49943== 104 bytes in 1 blocks are possibly lost in loss record 316 of 718
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x13707A66: posix_acl_new (posix-acl.c:428)
==49943==    by 0x13716BE3: init (posix-acl.c:2316)
==49943==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==49943==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==49943==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==49943==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==49943==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==49943==    by 0x40ECA5: mgmt_getspec_cbk (glusterfsd-mgmt.c:1648)
==49943==    by 0x51505D2: rpc_clnt_handle_reply (rpc-clnt.c:791)
==49943==    by 0x5150B34: rpc_clnt_notify (rpc-clnt.c:971)
==49943== 
==49943== 104 bytes in 1 blocks are definitely lost in loss record 317 of 718
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x5145E8F: rpcsvc_notify_wrapper_alloc (rpcsvc.c:66)
==49943==    by 0x51496F5: rpcsvc_register_notify (rpcsvc.c:1824)
==49943==    by 0x132DF16F: changelog_rpc_server_init (changelog-rpc-common.c:310)
==49943==    by 0x132DDC27: changelog_init_rpc_listner (changelog-rpc.c:175)
==49943==    by 0x132D6D70: changelog_init_rpc (changelog.c:2768)
==49943==    by 0x132D71B1: init (changelog.c:2850)
==49943==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==49943==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==49943==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==49943==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==49943== 
==49943== 104 bytes in 1 blocks are definitely lost in loss record 318 of 718
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x1370764F: __posix_acl_ctx_get (posix-acl.c:308)
==49943==    by 0x13707725: posix_acl_ctx_new (posix-acl.c:329)
==49943==    by 0x13708968: posix_acl_lookup_cbk (posix-acl.c:870)
==49943==    by 0x134FD448: br_stub_lookup_cbk (bit-rot-stub.c:2709)
==49943==    by 0x12BDC56C: ctr_lookup_cbk (changetimerecorder.c:306)
==49943==    by 0x121659B6: posix_lookup (posix.c:270)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x12BDCD6D: ctr_lookup (changetimerecorder.c:357)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x134FDA85: br_stub_lookup (bit-rot-stub.c:2784)
==49943== 
==49943== 106 bytes in 1 blocks are possibly lost in loss record 319 of 718
==49943==    at 0x4C27BE3: malloc (vg_replace_malloc.c:299)
==49943==    by 0x4E8FB45: __gf_malloc (mem-pool.c:142)
==49943==    by 0x4E8FDF0: gf_vasprintf (mem-pool.c:221)
==49943==    by 0x4E8FEDF: gf_asprintf (mem-pool.c:240)
==49943==    by 0x4E904D2: mem_pool_new_fn (mem-pool.c:385)
==49943==    by 0x514A732: rpcsvc_init (rpcsvc.c:2327)
==49943==    by 0x132DF0F9: changelog_rpc_server_init (changelog-rpc-common.c:302)
==49943==    by 0x132DDC27: changelog_init_rpc_listner (changelog-rpc.c:175)
==49943==    by 0x132D6D70: changelog_init_rpc (changelog.c:2768)
==49943==    by 0x132D71B1: init (changelog.c:2850)
==49943==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==49943==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==49943== 
==49943== 107 bytes in 1 blocks are possibly lost in loss record 320 of 718
==49943==    at 0x4C27BE3: malloc (vg_replace_malloc.c:299)
==49943==    by 0x4E8FB45: __gf_malloc (mem-pool.c:142)
==49943==    by 0x4E8FDF0: gf_vasprintf (mem-pool.c:221)
==49943==    by 0x4E8FEDF: gf_asprintf (mem-pool.c:240)
==49943==    by 0x4E904D2: mem_pool_new_fn (mem-pool.c:385)
==49943==    by 0x134EF2D6: init (bit-rot-stub.c:135)
==49943==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==49943==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==49943==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==49943==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==49943==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==49943==    by 0x40ECA5: mgmt_getspec_cbk (glusterfsd-mgmt.c:1648)
==49943== 
==49943== 107 bytes in 1 blocks are possibly lost in loss record 321 of 718
==49943==    at 0x4C27BE3: malloc (vg_replace_malloc.c:299)
==49943==    by 0x4E8FB45: __gf_malloc (mem-pool.c:142)
==49943==    by 0x4E8FDF0: gf_vasprintf (mem-pool.c:221)
==49943==    by 0x4E8FEDF: gf_asprintf (mem-pool.c:240)
==49943==    by 0x4E904D2: mem_pool_new_fn (mem-pool.c:385)
==49943==    by 0x132D6F76: init (changelog.c:2812)
==49943==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==49943==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==49943==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==49943==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==49943==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==49943==    by 0x40ECA5: mgmt_getspec_cbk (glusterfsd-mgmt.c:1648)
==49943== 
==49943== 112 bytes in 1 blocks are possibly lost in loss record 322 of 718
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x4068D5: gf_remember_backup_volfile_server (glusterfsd.c:681)
==49943==    by 0x4070DB: parse_opts (glusterfsd.c:836)
==49943==    by 0x67B4F7C: argp_parse (in /usr/lib64/libc-2.17.so)
==49943==    by 0x4092D4: parse_cmdline (glusterfsd.c:1866)
==49943==    by 0x40A5E5: main (glusterfsd.c:2417)
==49943== 
==49943== 112 bytes in 1 blocks are possibly lost in loss record 323 of 718
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x14C0CBA1: ios_create_sample_buf (io-stats.c:480)
==49943==    by 0x14C0CCCA: ios_init_sample_buf (io-stats.c:519)
==49943==    by 0x14C282AF: init (io-stats.c:3678)
==49943==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==49943==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==49943==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==49943==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==49943==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==49943==    by 0x40ECA5: mgmt_getspec_cbk (glusterfsd-mgmt.c:1648)
==49943==    by 0x51505D2: rpc_clnt_handle_reply (rpc-clnt.c:791)
==49943== 
==49943== 112 bytes in 1 blocks are possibly lost in loss record 324 of 718
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x13D561C0: init (read-only.c:45)
==49943==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==49943==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==49943==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==49943==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==49943==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==49943==    by 0x40ECA5: mgmt_getspec_cbk (glusterfsd-mgmt.c:1648)
==49943==    by 0x51505D2: rpc_clnt_handle_reply (rpc-clnt.c:791)
==49943==    by 0x5150B34: rpc_clnt_notify (rpc-clnt.c:971)
==49943==    by 0x514CD1D: rpc_transport_notify (rpc-transport.c:541)
==49943== 
==49943== 112 bytes in 1 blocks are possibly lost in loss record 325 of 718
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x132D736A: changelog_rt_init (changelog-rt.c:23)
==49943==    by 0x132D6C28: changelog_init_options (changelog.c:2722)
==49943==    by 0x132D706A: init (changelog.c:2823)
==49943==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==49943==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==49943==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==49943==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==49943==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==49943==    by 0x40ECA5: mgmt_getspec_cbk (glusterfsd-mgmt.c:1648)
==49943==    by 0x51505D2: rpc_clnt_handle_reply (rpc-clnt.c:791)
==49943== 
==49943== 113 bytes in 1 blocks are possibly lost in loss record 326 of 718
==49943==    at 0x4C27BE3: malloc (vg_replace_malloc.c:299)
==49943==    by 0x4E8FB45: __gf_malloc (mem-pool.c:142)
==49943==    by 0x4E8FDF0: gf_vasprintf (mem-pool.c:221)
==49943==    by 0x4E8FEDF: gf_asprintf (mem-pool.c:240)
==49943==    by 0x4E904D2: mem_pool_new_fn (mem-pool.c:385)
==49943==    by 0x12BEA39B: init (changetimerecorder.c:2109)
==49943==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==49943==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==49943==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==49943==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==49943==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==49943==    by 0x40ECA5: mgmt_getspec_cbk (glusterfsd-mgmt.c:1648)
==49943== 
==49943== 114 bytes in 1 blocks are possibly lost in loss record 327 of 718
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x12195452: posix_handle_trash_init (posix-handle.c:674)
==49943==    by 0x1218C5A8: init (posix.c:7278)
==49943==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==49943==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==49943==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==49943==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==49943==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==49943==    by 0x40ECA5: mgmt_getspec_cbk (glusterfsd-mgmt.c:1648)
==49943==    by 0x51505D2: rpc_clnt_handle_reply (rpc-clnt.c:791)
==49943==    by 0x5150B34: rpc_clnt_notify (rpc-clnt.c:971)
==49943== 
==49943== 115 bytes in 1 blocks are possibly lost in loss record 328 of 718
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x4052E4: gf_strdup (mem-pool.h:187)
==49943==    by 0x4074EC: parse_opts (glusterfsd.c:966)
==49943==    by 0x67B5412: argp_parse (in /usr/lib64/libc-2.17.so)
==49943==    by 0x4092D4: parse_cmdline (glusterfsd.c:1866)
==49943==    by 0x40A5E5: main (glusterfsd.c:2417)
==49943== 
==49943== 116 bytes in 1 blocks are possibly lost in loss record 329 of 718
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x132C5046: gf_strdup (mem-pool.h:187)
==49943==    by 0x132D6780: changelog_init_options (changelog.c:2670)
==49943==    by 0x132D706A: init (changelog.c:2823)
==49943==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==49943==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==49943==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==49943==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==49943==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==49943==    by 0x40ECA5: mgmt_getspec_cbk (glusterfsd-mgmt.c:1648)
==49943==    by 0x51505D2: rpc_clnt_handle_reply (rpc-clnt.c:791)
==49943== 
==49943== 116 bytes in 1 blocks are definitely lost in loss record 330 of 718
==49943==    at 0x4C27BE3: malloc (vg_replace_malloc.c:299)
==49943==    by 0x4E8FB45: __gf_malloc (mem-pool.c:142)
==49943==    by 0x4E8FDF0: gf_vasprintf (mem-pool.c:221)
==49943==    by 0x4E8FEDF: gf_asprintf (mem-pool.c:240)
==49943==    by 0x12BEBBFE: extract_sql_params (ctr-helper.c:189)
==49943==    by 0x12BEBE3D: extract_db_params (ctr-helper.c:229)
==49943==    by 0x12BEA328: init (changetimerecorder.c:2100)
==49943==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==49943==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==49943==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==49943==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==49943==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==49943== 
==49943== 116 bytes in 1 blocks are definitely lost in loss record 331 of 718
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x4E5A1B5: gf_strdup (mem-pool.h:187)
==49943==    by 0x4E5CE3C: loc_copy (xlator.c:882)
==49943==    by 0x143AE02E: mq_synctask1 (marker-quota.c:1066)
==49943==    by 0x143AE199: mq_synctask (marker-quota.c:1097)
==49943==    by 0x143AE6F6: _mq_create_xattrs_txn (marker-quota.c:1236)
==49943==    by 0x143AE82D: mq_create_xattrs_txn (marker-quota.c:1253)
==49943==    by 0x143B0DCB: mq_inspect_directory_xattr (marker-quota.c:2027)
==49943==    by 0x143B13A8: mq_xattr_state (marker-quota.c:2117)
==49943==    by 0x143A6E80: marker_lookup_cbk (marker.c:2961)
==49943==    by 0x141811E0: up_lookup_cbk (upcall.c:753)
==49943== 
==49943== 118 bytes in 1 blocks are possibly lost in loss record 332 of 718
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x4E63EFC: gf_strdup (mem-pool.h:187)
==49943==    by 0x4E6A501: generate_glusterfs_ctx_id (common-utils.c:2941)
==49943==    by 0x408478: glusterfs_ctx_defaults_init (glusterfsd.c:1465)
==49943==    by 0x40A5BC: main (glusterfsd.c:2413)
==49943== 
==49943== 123 bytes in 1 blocks are possibly lost in loss record 334 of 718
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x4052E4: gf_strdup (mem-pool.h:187)
==49943==    by 0x407452: parse_opts (glusterfsd.c:946)
==49943==    by 0x67B4F7C: argp_parse (in /usr/lib64/libc-2.17.so)
==49943==    by 0x4092D4: parse_cmdline (glusterfsd.c:1866)
==49943==    by 0x40A5E5: main (glusterfsd.c:2417)
==49943== 
==49943== 123 bytes in 1 blocks are possibly lost in loss record 335 of 718
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x4E5D949: gf_strdup (mem-pool.h:187)
==49943==    by 0x4E5EC50: gf_log_init (logging.c:735)
==49943==    by 0x408CCA: logging_init (glusterfsd.c:1628)
==49943==    by 0x40A65E: main (glusterfsd.c:2438)
==49943== 
==49943== 128 bytes in 1 blocks are possibly lost in loss record 336 of 718
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x13716B49: init (posix-acl.c:2305)
==49943==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==49943==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==49943==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==49943==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==49943==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==49943==    by 0x40ECA5: mgmt_getspec_cbk (glusterfsd-mgmt.c:1648)
==49943==    by 0x51505D2: rpc_clnt_handle_reply (rpc-clnt.c:791)
==49943==    by 0x5150B34: rpc_clnt_notify (rpc-clnt.c:971)
==49943==    by 0x514CD1D: rpc_transport_notify (rpc-transport.c:541)
==49943== 
==49943== 128 bytes in 1 blocks are definitely lost in loss record 341 of 718
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x147CADA5: __index_inode_ctx_get (index.c:72)
==49943==    by 0x147CAE86: index_inode_ctx_get (index.c:98)
==49943==    by 0x147CAF10: index_is_subdir_of_entry_changes (index.c:115)
==49943==    by 0x147CB050: index_is_fop_on_internal_inode (index.c:149)
==49943==    by 0x147D2CDC: index_lookup (index.c:2023)
==49943==    by 0x149E3AA8: quota_lookup (quota.c:1668)
==49943==    by 0x14C1EB10: io_stats_lookup (io-stats.c:2537)
==49943==    by 0x4F106F4: default_lookup (defaults.c:2572)
==49943==    by 0x1506426F: resolve_gfid (server-resolve.c:221)
==49943==    by 0x1506484F: server_resolve_inode (server-resolve.c:421)
==49943== 
==49943== 129 bytes in 1 blocks are possibly lost in loss record 342 of 718
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x4052E4: gf_strdup (mem-pool.h:187)
==49943==    by 0x40752A: parse_opts (glusterfsd.c:974)
==49943==    by 0x67B4F7C: argp_parse (in /usr/lib64/libc-2.17.so)
==49943==    by 0x4092D4: parse_cmdline (glusterfsd.c:1866)
==49943==    by 0x40A5E5: main (glusterfsd.c:2417)
==49943== 
==49943== 129 bytes in 1 blocks are definitely lost in loss record 343 of 718
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x5145846: gf_strdup (mem-pool.h:187)
==49943==    by 0x514A30F: rpcsvc_transport_unix_options_build (rpcsvc.c:2170)
==49943==    by 0x40F909: glusterfs_listener_init (glusterfsd-mgmt.c:2022)
==49943==    by 0x40A3EC: glusterfs_volumes_init (glusterfsd.c:2359)
==49943==    by 0x40A892: main (glusterfsd.c:2488)
==49943== 
==49943== 136 bytes in 1 blocks are possibly lost in loss record 344 of 718
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x4EE1A39: rbuf_init (rot-buffs.c:190)
==49943==    by 0x132D6D33: changelog_init_rpc (changelog.c:2764)
==49943==    by 0x132D71B1: init (changelog.c:2850)
==49943==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==49943==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==49943==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==49943==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==49943==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==49943==    by 0x40ECA5: mgmt_getspec_cbk (glusterfsd-mgmt.c:1648)
==49943==    by 0x51505D2: rpc_clnt_handle_reply (rpc-clnt.c:791)
==49943== 
==49943== 136 bytes in 1 blocks are possibly lost in loss record 345 of 718
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x129D04A8: init (trash.c:2369)
==49943==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==49943==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==49943==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==49943==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==49943==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==49943==    by 0x40ECA5: mgmt_getspec_cbk (glusterfsd-mgmt.c:1648)
==49943==    by 0x51505D2: rpc_clnt_handle_reply (rpc-clnt.c:791)
==49943==    by 0x5150B34: rpc_clnt_notify (rpc-clnt.c:971)
==49943==    by 0x514CD1D: rpc_transport_notify (rpc-transport.c:541)
==49943== 
==49943== 136 bytes in 1 blocks are possibly lost in loss record 346 of 718
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x4E6DB96: gf_timer_call_after (timer.c:48)
==49943==    by 0x514FA65: rpc_clnt_reconnect (rpc-clnt.c:427)
==49943==    by 0x4E6E0EC: gf_timer_proc (timer.c:167)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943== 
==49943== 136 bytes in 1 blocks are possibly lost in loss record 347 of 718
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x4E6DB96: gf_timer_call_after (timer.c:48)
==49943==    by 0x514F2AF: __save_frame (rpc-clnt.c:241)
==49943==    by 0x515231E: rpc_clnt_submit (rpc-clnt.c:1662)
==49943==    by 0x14A005AA: quota_enforcer_submit_request (quota-enforcer-client.c:101)
==49943==    by 0x14A00FA4: _quota_enforcer_lookup (quota-enforcer-client.c:298)
==49943==    by 0x14A010EE: quota_enforcer_lookup (quota-enforcer-client.c:339)
==49943==    by 0x149E1998: quota_validate (quota.c:1002)
==49943==    by 0x149FBCD6: quota_statfs_continue (quota.c:4494)
==49943==    by 0x149FBEA3: quota_get_limit_dir (quota.c:4539)
==49943==    by 0x149FC262: quota_statfs (quota.c:4609)
==49943== 
==49943== 136 bytes in 1 blocks are possibly lost in loss record 348 of 718
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x4E6DB96: gf_timer_call_after (timer.c:48)
==49943==    by 0x514EEF0: call_bail (rpc-clnt.c:160)
==49943==    by 0x4E6E0EC: gf_timer_proc (timer.c:167)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943== 
==49943== 136 (96 direct, 40 indirect) bytes in 1 blocks are definitely lost in loss record 352 of 718
==49943==    at 0x4C27BE3: malloc (vg_replace_malloc.c:299)
==49943==    by 0x130402E6: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==49943==    by 0x1301B6A9: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==49943==    by 0x13023A25: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==49943==    by 0x13023B60: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==49943==    by 0x13023BDC: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==49943==    by 0x13028E1A: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==49943==    by 0x13049880: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==49943==    by 0x130499DF: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==49943==    by 0x13049B4C: sqlite3_create_function_v2 (in /usr/lib64/libsqlite3.so.0.8.6)
==49943==    by 0x13049B94: sqlite3_create_function (in /usr/lib64/libsqlite3.so.0.8.6)
==49943==    by 0x1309E4B6: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==49943== 
==49943== 140 bytes in 1 blocks are possibly lost in loss record 353 of 718
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x4E908B0: mem_get (mem-pool.c:513)
==49943==    by 0x4E906CE: mem_get0 (mem-pool.c:446)
==49943==    by 0x13B50D5E: init (worm.c:512)
==49943==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==49943==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==49943==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==49943==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==49943==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==49943==    by 0x40ECA5: mgmt_getspec_cbk (glusterfsd-mgmt.c:1648)
==49943==    by 0x51505D2: rpc_clnt_handle_reply (rpc-clnt.c:791)
==49943== 
==49943== 140 bytes in 1 blocks are definitely lost in loss record 354 of 718
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x4E908B0: mem_get (mem-pool.c:513)
==49943==    by 0x4E906CE: mem_get0 (mem-pool.c:446)
==49943==    by 0x4E54919: dict_set_lk (dict.c:360)
==49943==    by 0x4E54B82: dict_set (dict.c:424)
==49943==    by 0x4E584CB: dict_set_str (dict.c:2168)
==49943==    by 0x514A362: rpcsvc_transport_unix_options_build (rpcsvc.c:2180)
==49943==    by 0x40F909: glusterfs_listener_init (glusterfsd-mgmt.c:2022)
==49943==    by 0x40A3EC: glusterfs_volumes_init (glusterfsd.c:2359)
==49943==    by 0x40A892: main (glusterfsd.c:2488)
==49943== 
==49943== 140 bytes in 1 blocks are definitely lost in loss record 355 of 718
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x4E908B0: mem_get (mem-pool.c:513)
==49943==    by 0x4E906CE: mem_get0 (mem-pool.c:446)
==49943==    by 0x4E54919: dict_set_lk (dict.c:360)
==49943==    by 0x4E54B82: dict_set (dict.c:424)
==49943==    by 0x4E584CB: dict_set_str (dict.c:2168)
==49943==    by 0x514A387: rpcsvc_transport_unix_options_build (rpcsvc.c:2184)
==49943==    by 0x40F909: glusterfs_listener_init (glusterfsd-mgmt.c:2022)
==49943==    by 0x40A3EC: glusterfs_volumes_init (glusterfsd.c:2359)
==49943==    by 0x40A892: main (glusterfsd.c:2488)
==49943== 
==49943== 140 bytes in 1 blocks are definitely lost in loss record 356 of 718
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x4E908B0: mem_get (mem-pool.c:513)
==49943==    by 0x4E906CE: mem_get0 (mem-pool.c:446)
==49943==    by 0x4E54919: dict_set_lk (dict.c:360)
==49943==    by 0x4E54B82: dict_set (dict.c:424)
==49943==    by 0x4E584CB: dict_set_str (dict.c:2168)
==49943==    by 0x514A3AC: rpcsvc_transport_unix_options_build (rpcsvc.c:2188)
==49943==    by 0x40F909: glusterfs_listener_init (glusterfsd-mgmt.c:2022)
==49943==    by 0x40A3EC: glusterfs_volumes_init (glusterfsd.c:2359)
==49943==    by 0x40A892: main (glusterfsd.c:2488)
==49943== 
==49943== 140 bytes in 1 blocks are definitely lost in loss record 357 of 718
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x4E908B0: mem_get (mem-pool.c:513)
==49943==    by 0x4E906CE: mem_get0 (mem-pool.c:446)
==49943==    by 0x4E54919: dict_set_lk (dict.c:360)
==49943==    by 0x4E54B82: dict_set (dict.c:424)
==49943==    by 0x4E584CB: dict_set_str (dict.c:2168)
==49943==    by 0x5144D69: rpcsvc_set_allow_insecure (rpcsvc-auth.c:231)
==49943==    by 0x5144F59: rpcsvc_auth_init (rpcsvc-auth.c:283)
==49943==    by 0x514A796: rpcsvc_init (rpcsvc.c:2334)
==49943==    by 0x40F93C: glusterfs_listener_init (glusterfsd-mgmt.c:2027)
==49943==    by 0x40A3EC: glusterfs_volumes_init (glusterfsd.c:2359)
==49943== 
==49943== 140 bytes in 1 blocks are definitely lost in loss record 358 of 718
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x4E908B0: mem_get (mem-pool.c:513)
==49943==    by 0x4E906CE: mem_get0 (mem-pool.c:446)
==49943==    by 0x4E54919: dict_set_lk (dict.c:360)
==49943==    by 0x4E54B82: dict_set (dict.c:424)
==49943==    by 0x4E584CB: dict_set_str (dict.c:2168)
==49943==    by 0x5144A44: rpcsvc_auth_init_auths (rpcsvc-auth.c:148)
==49943==    by 0x5144FDA: rpcsvc_auth_init (rpcsvc-auth.c:292)
==49943==    by 0x514A796: rpcsvc_init (rpcsvc.c:2334)
==49943==    by 0x40F93C: glusterfs_listener_init (glusterfsd-mgmt.c:2027)
==49943==    by 0x40A3EC: glusterfs_volumes_init (glusterfsd.c:2359)
==49943== 
==49943== 140 bytes in 1 blocks are definitely lost in loss record 359 of 718
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x4E908B0: mem_get (mem-pool.c:513)
==49943==    by 0x4E906CE: mem_get0 (mem-pool.c:446)
==49943==    by 0x4E54919: dict_set_lk (dict.c:360)
==49943==    by 0x4E54B82: dict_set (dict.c:424)
==49943==    by 0x4E584CB: dict_set_str (dict.c:2168)
==49943==    by 0x5144AB0: rpcsvc_auth_init_auths (rpcsvc-auth.c:155)
==49943==    by 0x5144FDA: rpcsvc_auth_init (rpcsvc-auth.c:292)
==49943==    by 0x514A796: rpcsvc_init (rpcsvc.c:2334)
==49943==    by 0x40F93C: glusterfs_listener_init (glusterfsd-mgmt.c:2027)
==49943==    by 0x40A3EC: glusterfs_volumes_init (glusterfsd.c:2359)
==49943== 
==49943== 140 bytes in 1 blocks are definitely lost in loss record 360 of 718
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x4E908B0: mem_get (mem-pool.c:513)
==49943==    by 0x4E906CE: mem_get0 (mem-pool.c:446)
==49943==    by 0x4E54919: dict_set_lk (dict.c:360)
==49943==    by 0x4E54B82: dict_set (dict.c:424)
==49943==    by 0x4E584CB: dict_set_str (dict.c:2168)
==49943==    by 0x5144B1C: rpcsvc_auth_init_auths (rpcsvc-auth.c:162)
==49943==    by 0x5144FDA: rpcsvc_auth_init (rpcsvc-auth.c:292)
==49943==    by 0x514A796: rpcsvc_init (rpcsvc.c:2334)
==49943==    by 0x40F93C: glusterfs_listener_init (glusterfsd-mgmt.c:2027)
==49943==    by 0x40A3EC: glusterfs_volumes_init (glusterfsd.c:2359)
==49943== 
==49943== 140 bytes in 1 blocks are definitely lost in loss record 361 of 718
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x4E908B0: mem_get (mem-pool.c:513)
==49943==    by 0x4E906CE: mem_get0 (mem-pool.c:446)
==49943==    by 0x4E54919: dict_set_lk (dict.c:360)
==49943==    by 0x4E54B82: dict_set (dict.c:424)
==49943==    by 0x4E57BDF: dict_set_int32 (dict.c:1777)
==49943==    by 0x514D1CD: rpc_transport_inet_options_build (rpc-transport.c:684)
==49943==    by 0x40FD9D: glusterfs_mgmt_init (glusterfsd-mgmt.c:2139)
==49943==    by 0x40A412: glusterfs_volumes_init (glusterfsd.c:2365)
==49943==    by 0x40A892: main (glusterfsd.c:2488)
==49943== 
==49943== 140 bytes in 1 blocks are definitely lost in loss record 362 of 718
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x4E908B0: mem_get (mem-pool.c:513)
==49943==    by 0x4E906CE: mem_get0 (mem-pool.c:446)
==49943==    by 0x4E54919: dict_set_lk (dict.c:360)
==49943==    by 0x4E54B82: dict_set (dict.c:424)
==49943==    by 0x4E584CB: dict_set_str (dict.c:2168)
==49943==    by 0x514D235: rpc_transport_inet_options_build (rpc-transport.c:691)
==49943==    by 0x40FD9D: glusterfs_mgmt_init (glusterfsd-mgmt.c:2139)
==49943==    by 0x40A412: glusterfs_volumes_init (glusterfsd.c:2365)
==49943==    by 0x40A892: main (glusterfsd.c:2488)
==49943== 
==49943== 140 bytes in 1 blocks are definitely lost in loss record 363 of 718
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x4E908B0: mem_get (mem-pool.c:513)
==49943==    by 0x4E906CE: mem_get0 (mem-pool.c:446)
==49943==    by 0x4E54919: dict_set_lk (dict.c:360)
==49943==    by 0x4E54B82: dict_set (dict.c:424)
==49943==    by 0x4E584CB: dict_set_str (dict.c:2168)
==49943==    by 0x4EA196E: gf_add_cmdline_options (graph.c:260)
==49943==    by 0x4EA2394: glusterfs_graph_prepare (graph.c:523)
==49943==    by 0x40A2F9: glusterfs_process_volfp (glusterfsd.c:2319)
==49943==    by 0x40ECA5: mgmt_getspec_cbk (glusterfsd-mgmt.c:1648)
==49943==    by 0x51505D2: rpc_clnt_handle_reply (rpc-clnt.c:791)
==49943== 
==49943== 140 bytes in 1 blocks are definitely lost in loss record 364 of 718
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x4E908B0: mem_get (mem-pool.c:513)
==49943==    by 0x4E906CE: mem_get0 (mem-pool.c:446)
==49943==    by 0x4E54919: dict_set_lk (dict.c:360)
==49943==    by 0x4E54B82: dict_set (dict.c:424)
==49943==    by 0x4E58200: dict_set_dynptr (dict.c:2042)
==49943==    by 0x150603EC: get_auth_types (server.c:367)
==49943==    by 0x4E56B26: dict_foreach_match (dict.c:1236)
==49943==    by 0x4E56A12: dict_foreach (dict.c:1194)
==49943==    by 0x15062130: init (server.c:986)
==49943==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==49943== 
==49943== 140 bytes in 1 blocks are definitely lost in loss record 365 of 718
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x4E908B0: mem_get (mem-pool.c:513)
==49943==    by 0x4E906CE: mem_get0 (mem-pool.c:446)
==49943==    by 0x4E54919: dict_set_lk (dict.c:360)
==49943==    by 0x4E54B82: dict_set (dict.c:424)
==49943==    by 0x4E584CB: dict_set_str (dict.c:2168)
==49943==    by 0x5144D69: rpcsvc_set_allow_insecure (rpcsvc-auth.c:231)
==49943==    by 0x5144F59: rpcsvc_auth_init (rpcsvc-auth.c:283)
==49943==    by 0x514A796: rpcsvc_init (rpcsvc.c:2334)
==49943==    by 0x150622FC: init (server.c:1019)
==49943==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==49943== 
==49943== 140 bytes in 1 blocks are definitely lost in loss record 366 of 718
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x4E908B0: mem_get (mem-pool.c:513)
==49943==    by 0x4E906CE: mem_get0 (mem-pool.c:446)
==49943==    by 0x4E54919: dict_set_lk (dict.c:360)
==49943==    by 0x4E54B82: dict_set (dict.c:424)
==49943==    by 0x4E584CB: dict_set_str (dict.c:2168)
==49943==    by 0x5144A44: rpcsvc_auth_init_auths (rpcsvc-auth.c:148)
==49943==    by 0x5144FDA: rpcsvc_auth_init (rpcsvc-auth.c:292)
==49943==    by 0x514A796: rpcsvc_init (rpcsvc.c:2334)
==49943==    by 0x150622FC: init (server.c:1019)
==49943==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==49943== 
==49943== 140 bytes in 1 blocks are definitely lost in loss record 367 of 718
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x4E908B0: mem_get (mem-pool.c:513)
==49943==    by 0x4E906CE: mem_get0 (mem-pool.c:446)
==49943==    by 0x4E54919: dict_set_lk (dict.c:360)
==49943==    by 0x4E54B82: dict_set (dict.c:424)
==49943==    by 0x4E584CB: dict_set_str (dict.c:2168)
==49943==    by 0x5144AB0: rpcsvc_auth_init_auths (rpcsvc-auth.c:155)
==49943==    by 0x5144FDA: rpcsvc_auth_init (rpcsvc-auth.c:292)
==49943==    by 0x514A796: rpcsvc_init (rpcsvc.c:2334)
==49943==    by 0x150622FC: init (server.c:1019)
==49943==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==49943== 
==49943== 140 bytes in 1 blocks are definitely lost in loss record 368 of 718
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x4E908B0: mem_get (mem-pool.c:513)
==49943==    by 0x4E906CE: mem_get0 (mem-pool.c:446)
==49943==    by 0x4E54919: dict_set_lk (dict.c:360)
==49943==    by 0x4E54B82: dict_set (dict.c:424)
==49943==    by 0x4E584CB: dict_set_str (dict.c:2168)
==49943==    by 0x5144B1C: rpcsvc_auth_init_auths (rpcsvc-auth.c:162)
==49943==    by 0x5144FDA: rpcsvc_auth_init (rpcsvc-auth.c:292)
==49943==    by 0x514A796: rpcsvc_init (rpcsvc.c:2334)
==49943==    by 0x150622FC: init (server.c:1019)
==49943==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==49943== 
==49943== 140 bytes in 1 blocks are definitely lost in loss record 369 of 718
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x4E908B0: mem_get (mem-pool.c:513)
==49943==    by 0x4E906CE: mem_get0 (mem-pool.c:446)
==49943==    by 0x4E54919: dict_set_lk (dict.c:360)
==49943==    by 0x4E54B82: dict_set (dict.c:424)
==49943==    by 0x4EBDD59: xl_opt_validate (options.c:955)
==49943==    by 0x4E56B26: dict_foreach_match (dict.c:1236)
==49943==    by 0x4E56A12: dict_foreach (dict.c:1194)
==49943==    by 0x4EBDDC1: xlator_options_validate_list (options.c:977)
==49943==    by 0x514C360: rpc_transport_load (rpc-transport.c:338)
==49943==    by 0x5149213: rpcsvc_create_listener (rpcsvc.c:1664)
==49943== 
==49943== 140 bytes in 1 blocks are definitely lost in loss record 370 of 718
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x4E908B0: mem_get (mem-pool.c:513)
==49943==    by 0x4E906CE: mem_get0 (mem-pool.c:446)
==49943==    by 0x4E54919: dict_set_lk (dict.c:360)
==49943==    by 0x4E54B82: dict_set (dict.c:424)
==49943==    by 0x4E584CB: dict_set_str (dict.c:2168)
==49943==    by 0x14A01464: quota_enforcer_init (quota-enforcer-client.c:438)
==49943==    by 0x149FF51D: init (quota.c:5127)
==49943==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==49943==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==49943==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==49943== 
==49943== 140 bytes in 1 blocks are definitely lost in loss record 371 of 718
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x4E908B0: mem_get (mem-pool.c:513)
==49943==    by 0x4E906CE: mem_get0 (mem-pool.c:446)
==49943==    by 0x4E54919: dict_set_lk (dict.c:360)
==49943==    by 0x4E54B82: dict_set (dict.c:424)
==49943==    by 0x4E584CB: dict_set_str (dict.c:2168)
==49943==    by 0x14A0148C: quota_enforcer_init (quota-enforcer-client.c:442)
==49943==    by 0x149FF51D: init (quota.c:5127)
==49943==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==49943==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==49943==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==49943== 
==49943== 140 bytes in 1 blocks are definitely lost in loss record 372 of 718
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x4E908B0: mem_get (mem-pool.c:513)
==49943==    by 0x4E906CE: mem_get0 (mem-pool.c:446)
==49943==    by 0x4E54919: dict_set_lk (dict.c:360)
==49943==    by 0x4E54B82: dict_set (dict.c:424)
==49943==    by 0x4E584CB: dict_set_str (dict.c:2168)
==49943==    by 0x14A014B4: quota_enforcer_init (quota-enforcer-client.c:446)
==49943==    by 0x149FF51D: init (quota.c:5127)
==49943==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==49943==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==49943==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==49943== 
==49943== 140 bytes in 1 blocks are definitely lost in loss record 373 of 718
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x4E908B0: mem_get (mem-pool.c:513)
==49943==    by 0x4E906CE: mem_get0 (mem-pool.c:446)
==49943==    by 0x4E54919: dict_set_lk (dict.c:360)
==49943==    by 0x4E54B82: dict_set (dict.c:424)
==49943==    by 0x4E56CD3: dict_copy_one (dict.c:1314)
==49943==    by 0x4E56B26: dict_foreach_match (dict.c:1236)
==49943==    by 0x4E56A12: dict_foreach (dict.c:1194)
==49943==    by 0x4E56F16: dict_copy_with_ref (dict.c:1364)
==49943==    by 0x147D5B45: init (index.c:2349)
==49943==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==49943== 
==49943== 140 bytes in 1 blocks are definitely lost in loss record 374 of 718
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x4E908B0: mem_get (mem-pool.c:513)
==49943==    by 0x4E906CE: mem_get0 (mem-pool.c:446)
==49943==    by 0x13B50DB5: init (worm.c:518)
==49943==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==49943==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==49943==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==49943==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==49943==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==49943==    by 0x40ECA5: mgmt_getspec_cbk (glusterfsd-mgmt.c:1648)
==49943==    by 0x51505D2: rpc_clnt_handle_reply (rpc-clnt.c:791)
==49943== 
==49943== 144 bytes in 1 blocks are possibly lost in loss record 376 of 718
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x4EC661A: gf_clienttable_alloc (client_t.c:97)
==49943==    by 0x408998: glusterfs_ctx_defaults_init (glusterfsd.c:1536)
==49943==    by 0x40A5BC: main (glusterfsd.c:2413)
==49943== 
==49943== 144 bytes in 1 blocks are possibly lost in loss record 377 of 718
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x5144636: rpcsvc_auth_add_initer (rpcsvc-auth.c:35)
==49943==    by 0x51446D9: rpcsvc_auth_add_initers (rpcsvc-auth.c:54)
==49943==    by 0x5144F8B: rpcsvc_auth_init (rpcsvc-auth.c:286)
==49943==    by 0x514A796: rpcsvc_init (rpcsvc.c:2334)
==49943==    by 0x40F93C: glusterfs_listener_init (glusterfsd-mgmt.c:2027)
==49943==    by 0x40A3EC: glusterfs_volumes_init (glusterfsd.c:2359)
==49943==    by 0x40A892: main (glusterfsd.c:2488)
==49943== 
==49943== 144 bytes in 1 blocks are possibly lost in loss record 378 of 718
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x5144636: rpcsvc_auth_add_initer (rpcsvc-auth.c:35)
==49943==    by 0x5144739: rpcsvc_auth_add_initers (rpcsvc-auth.c:63)
==49943==    by 0x5144F8B: rpcsvc_auth_init (rpcsvc-auth.c:286)
==49943==    by 0x514A796: rpcsvc_init (rpcsvc.c:2334)
==49943==    by 0x40F93C: glusterfs_listener_init (glusterfsd-mgmt.c:2027)
==49943==    by 0x40A3EC: glusterfs_volumes_init (glusterfsd.c:2359)
==49943==    by 0x40A892: main (glusterfsd.c:2488)
==49943== 
==49943== 144 bytes in 1 blocks are possibly lost in loss record 379 of 718
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x5144636: rpcsvc_auth_add_initer (rpcsvc-auth.c:35)
==49943==    by 0x5144799: rpcsvc_auth_add_initers (rpcsvc-auth.c:72)
==49943==    by 0x5144F8B: rpcsvc_auth_init (rpcsvc-auth.c:286)
==49943==    by 0x514A796: rpcsvc_init (rpcsvc.c:2334)
==49943==    by 0x40F93C: glusterfs_listener_init (glusterfsd-mgmt.c:2027)
==49943==    by 0x40A3EC: glusterfs_volumes_init (glusterfsd.c:2359)
==49943==    by 0x40A892: main (glusterfsd.c:2488)
==49943== 
==49943== 144 bytes in 1 blocks are possibly lost in loss record 380 of 718
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x5144636: rpcsvc_auth_add_initer (rpcsvc-auth.c:35)
==49943==    by 0x51447F6: rpcsvc_auth_add_initers (rpcsvc-auth.c:80)
==49943==    by 0x5144F8B: rpcsvc_auth_init (rpcsvc-auth.c:286)
==49943==    by 0x514A796: rpcsvc_init (rpcsvc.c:2334)
==49943==    by 0x40F93C: glusterfs_listener_init (glusterfsd-mgmt.c:2027)
==49943==    by 0x40A3EC: glusterfs_volumes_init (glusterfsd.c:2359)
==49943==    by 0x40A892: main (glusterfsd.c:2488)
==49943== 
==49943== 144 bytes in 1 blocks are possibly lost in loss record 381 of 718
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x5144636: rpcsvc_auth_add_initer (rpcsvc-auth.c:35)
==49943==    by 0x51446D9: rpcsvc_auth_add_initers (rpcsvc-auth.c:54)
==49943==    by 0x5144F8B: rpcsvc_auth_init (rpcsvc-auth.c:286)
==49943==    by 0x514A796: rpcsvc_init (rpcsvc.c:2334)
==49943==    by 0x150622FC: init (server.c:1019)
==49943==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==49943==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==49943==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==49943==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==49943==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==49943== 
==49943== 144 bytes in 1 blocks are possibly lost in loss record 382 of 718
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x5144636: rpcsvc_auth_add_initer (rpcsvc-auth.c:35)
==49943==    by 0x5144739: rpcsvc_auth_add_initers (rpcsvc-auth.c:63)
==49943==    by 0x5144F8B: rpcsvc_auth_init (rpcsvc-auth.c:286)
==49943==    by 0x514A796: rpcsvc_init (rpcsvc.c:2334)
==49943==    by 0x150622FC: init (server.c:1019)
==49943==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==49943==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==49943==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==49943==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==49943==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==49943== 
==49943== 144 bytes in 1 blocks are possibly lost in loss record 383 of 718
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x5144636: rpcsvc_auth_add_initer (rpcsvc-auth.c:35)
==49943==    by 0x5144799: rpcsvc_auth_add_initers (rpcsvc-auth.c:72)
==49943==    by 0x5144F8B: rpcsvc_auth_init (rpcsvc-auth.c:286)
==49943==    by 0x514A796: rpcsvc_init (rpcsvc.c:2334)
==49943==    by 0x150622FC: init (server.c:1019)
==49943==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==49943==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==49943==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==49943==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==49943==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==49943== 
==49943== 144 bytes in 1 blocks are possibly lost in loss record 384 of 718
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x5144636: rpcsvc_auth_add_initer (rpcsvc-auth.c:35)
==49943==    by 0x51447F6: rpcsvc_auth_add_initers (rpcsvc-auth.c:80)
==49943==    by 0x5144F8B: rpcsvc_auth_init (rpcsvc-auth.c:286)
==49943==    by 0x514A796: rpcsvc_init (rpcsvc.c:2334)
==49943==    by 0x150622FC: init (server.c:1019)
==49943==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==49943==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==49943==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==49943==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==49943==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==49943== 
==49943== 144 bytes in 1 blocks are possibly lost in loss record 385 of 718
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x12BEA176: init (changetimerecorder.c:2061)
==49943==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==49943==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==49943==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==49943==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==49943==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==49943==    by 0x40ECA5: mgmt_getspec_cbk (glusterfsd-mgmt.c:1648)
==49943==    by 0x51505D2: rpc_clnt_handle_reply (rpc-clnt.c:791)
==49943==    by 0x5150B34: rpc_clnt_notify (rpc-clnt.c:971)
==49943==    by 0x514CD1D: rpc_transport_notify (rpc-transport.c:541)
==49943== 
==49943== 144 bytes in 1 blocks are definitely lost in loss record 389 of 718
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x5144636: rpcsvc_auth_add_initer (rpcsvc-auth.c:35)
==49943==    by 0x51447F6: rpcsvc_auth_add_initers (rpcsvc-auth.c:80)
==49943==    by 0x5144F8B: rpcsvc_auth_init (rpcsvc-auth.c:286)
==49943==    by 0x514A796: rpcsvc_init (rpcsvc.c:2334)
==49943==    by 0x132DF0F9: changelog_rpc_server_init (changelog-rpc-common.c:302)
==49943==    by 0x132DDC27: changelog_init_rpc_listner (changelog-rpc.c:175)
==49943==    by 0x132D6D70: changelog_init_rpc (changelog.c:2768)
==49943==    by 0x132D71B1: init (changelog.c:2850)
==49943==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==49943==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==49943== 
==49943== 144 (48 direct, 96 indirect) bytes in 1 blocks are definitely lost in loss record 390 of 718
==49943==    at 0x4C27BE3: malloc (vg_replace_malloc.c:299)
==49943==    by 0x130402E6: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==49943==    by 0x1301B6A9: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==49943==    by 0x13023A25: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==49943==    by 0x13025BCA: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==49943==    by 0x13049711: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==49943==    by 0x1309E3AC: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==49943==    by 0x12E01B48: gf_open_sqlite3_conn (gfdb_sqlite3.c:192)
==49943==    by 0x12E02CAF: gf_sqlite3_init (gfdb_sqlite3.c:440)
==49943==    by 0x12DF97B5: init_db (gfdb_data_store.c:270)
==49943==    by 0x12BEA41F: init (changetimerecorder.c:2118)
==49943==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==49943== 
==49943== 146 bytes in 1 blocks are definitely lost in loss record 391 of 718
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x4052E4: gf_strdup (mem-pool.h:187)
==49943==    by 0x40750B: parse_opts (glusterfsd.c:970)
==49943==    by 0x67B4F7C: argp_parse (in /usr/lib64/libc-2.17.so)
==49943==    by 0x4092D4: parse_cmdline (glusterfsd.c:1866)
==49943==    by 0x40A5E5: main (glusterfsd.c:2417)
==49943== 
==49943== 152 bytes in 1 blocks are possibly lost in loss record 392 of 718
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x4085EF: glusterfs_ctx_defaults_init (glusterfsd.c:1486)
==49943==    by 0x40A5BC: main (glusterfsd.c:2413)
==49943== 
==49943== 154 bytes in 2 blocks are definitely lost in loss record 393 of 718
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x4E6E844: gf_strdup (mem-pool.h:187)
==49943==    by 0x4E6FD0A: __dentry_create (inode.c:570)
==49943==    by 0x4E70B3B: __inode_link (inode.c:1016)
==49943==    by 0x4E70D02: inode_link (inode.c:1060)
==49943==    by 0x149E0E73: quota_build_ancestry_cbk (quota.c:778)
==49943==    by 0x143A79A9: marker_build_ancestry_cbk (marker.c:3055)
==49943==    by 0x14186A63: up_readdir_cbk (upcall.c:1264)
==49943==    by 0x13931DF5: pl_readdirp_cbk (posix.c:2700)
==49943==    by 0x137121B8: posix_acl_readdirp_cbk (posix-acl.c:1714)
==49943==    by 0x134FC918: br_stub_readdirp_cbk (bit-rot-stub.c:2543)
==49943== 
==49943== 154 bytes in 2 blocks are definitely lost in loss record 394 of 718
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x4E6E844: gf_strdup (mem-pool.h:187)
==49943==    by 0x4E6FD0A: __dentry_create (inode.c:570)
==49943==    by 0x4E70B3B: __inode_link (inode.c:1016)
==49943==    by 0x4E70D02: inode_link (inode.c:1060)
==49943==    by 0x15098AD5: server_post_lookup (server-common.c:462)
==49943==    by 0x15077078: server_lookup_cbk (server-rpc-fops.c:141)
==49943==    by 0x14C16C3F: io_stats_lookup_cbk (io-stats.c:2115)
==49943==    by 0x149E3453: quota_lookup_cbk (quota.c:1612)
==49943==    by 0x4F00CDF: default_lookup_cbk (defaults.c:1265)
==49943==    by 0x143A6D7B: marker_lookup_cbk (marker.c:2945)
==49943== 
==49943== 155 bytes in 2 blocks are definitely lost in loss record 395 of 718
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x4E5499E: dict_set_lk (dict.c:378)
==49943==    by 0x4E54B82: dict_set (dict.c:424)
==49943==    by 0x4E58200: dict_set_dynptr (dict.c:2042)
==49943==    by 0x150603EC: get_auth_types (server.c:367)
==49943==    by 0x4E56B26: dict_foreach_match (dict.c:1236)
==49943==    by 0x4E56A12: dict_foreach (dict.c:1194)
==49943==    by 0x15062130: init (server.c:986)
==49943==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==49943==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==49943==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==49943== 
==49943== 160 bytes in 1 blocks are possibly lost in loss record 396 of 718
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x5151DF3: rpcclnt_cbk_program_register (rpc-clnt.c:1524)
==49943==    by 0x40FF17: glusterfs_mgmt_init (glusterfsd-mgmt.c:2171)
==49943==    by 0x40A412: glusterfs_volumes_init (glusterfsd.c:2365)
==49943==    by 0x40A892: main (glusterfsd.c:2488)
==49943== 
==49943== 160 bytes in 1 blocks are possibly lost in loss record 397 of 718
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x1418A60F: init (upcall.c:1672)
==49943==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==49943==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==49943==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==49943==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==49943==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==49943==    by 0x40ECA5: mgmt_getspec_cbk (glusterfsd-mgmt.c:1648)
==49943==    by 0x51505D2: rpc_clnt_handle_reply (rpc-clnt.c:791)
==49943==    by 0x5150B34: rpc_clnt_notify (rpc-clnt.c:971)
==49943==    by 0x514CD1D: rpc_transport_notify (rpc-transport.c:541)
==49943== 
==49943== 164 bytes in 1 blocks are definitely lost in loss record 398 of 718
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x4E908B0: mem_get (mem-pool.c:513)
==49943==    by 0x4E906CE: mem_get0 (mem-pool.c:446)
==49943==    by 0x4E53E07: get_new_data (dict.c:40)
==49943==    by 0x4E55D8E: data_from_dynstr (dict.c:882)
==49943==    by 0x4E58586: dict_set_dynstr (dict.c:2199)
==49943==    by 0x514A33D: rpcsvc_transport_unix_options_build (rpcsvc.c:2176)
==49943==    by 0x40F909: glusterfs_listener_init (glusterfsd-mgmt.c:2022)
==49943==    by 0x40A3EC: glusterfs_volumes_init (glusterfsd.c:2359)
==49943==    by 0x40A892: main (glusterfsd.c:2488)
==49943== 
==49943== 164 bytes in 1 blocks are definitely lost in loss record 399 of 718
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x4E908B0: mem_get (mem-pool.c:513)
==49943==    by 0x4E906CE: mem_get0 (mem-pool.c:446)
==49943==    by 0x4E53E07: get_new_data (dict.c:40)
==49943==    by 0x4E55CD6: str_to_data (dict.c:860)
==49943==    by 0x4E584A0: dict_set_str (dict.c:2162)
==49943==    by 0x514A362: rpcsvc_transport_unix_options_build (rpcsvc.c:2180)
==49943==    by 0x40F909: glusterfs_listener_init (glusterfsd-mgmt.c:2022)
==49943==    by 0x40A3EC: glusterfs_volumes_init (glusterfsd.c:2359)
==49943==    by 0x40A892: main (glusterfsd.c:2488)
==49943== 
==49943== 164 bytes in 1 blocks are definitely lost in loss record 400 of 718
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x4E908B0: mem_get (mem-pool.c:513)
==49943==    by 0x4E906CE: mem_get0 (mem-pool.c:446)
==49943==    by 0x4E53E07: get_new_data (dict.c:40)
==49943==    by 0x4E55CD6: str_to_data (dict.c:860)
==49943==    by 0x4E584A0: dict_set_str (dict.c:2162)
==49943==    by 0x514A387: rpcsvc_transport_unix_options_build (rpcsvc.c:2184)
==49943==    by 0x40F909: glusterfs_listener_init (glusterfsd-mgmt.c:2022)
==49943==    by 0x40A3EC: glusterfs_volumes_init (glusterfsd.c:2359)
==49943==    by 0x40A892: main (glusterfsd.c:2488)
==49943== 
==49943== 164 bytes in 1 blocks are definitely lost in loss record 401 of 718
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x4E908B0: mem_get (mem-pool.c:513)
==49943==    by 0x4E906CE: mem_get0 (mem-pool.c:446)
==49943==    by 0x4E53E07: get_new_data (dict.c:40)
==49943==    by 0x4E55CD6: str_to_data (dict.c:860)
==49943==    by 0x4E584A0: dict_set_str (dict.c:2162)
==49943==    by 0x5144D69: rpcsvc_set_allow_insecure (rpcsvc-auth.c:231)
==49943==    by 0x5144F59: rpcsvc_auth_init (rpcsvc-auth.c:283)
==49943==    by 0x514A796: rpcsvc_init (rpcsvc.c:2334)
==49943==    by 0x40F93C: glusterfs_listener_init (glusterfsd-mgmt.c:2027)
==49943==    by 0x40A3EC: glusterfs_volumes_init (glusterfsd.c:2359)
==49943== 
==49943== 164 bytes in 1 blocks are definitely lost in loss record 402 of 718
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x4E908B0: mem_get (mem-pool.c:513)
==49943==    by 0x4E906CE: mem_get0 (mem-pool.c:446)
==49943==    by 0x4E53E07: get_new_data (dict.c:40)
==49943==    by 0x4E55CD6: str_to_data (dict.c:860)
==49943==    by 0x4E584A0: dict_set_str (dict.c:2162)
==49943==    by 0x5144A44: rpcsvc_auth_init_auths (rpcsvc-auth.c:148)
==49943==    by 0x5144FDA: rpcsvc_auth_init (rpcsvc-auth.c:292)
==49943==    by 0x514A796: rpcsvc_init (rpcsvc.c:2334)
==49943==    by 0x40F93C: glusterfs_listener_init (glusterfsd-mgmt.c:2027)
==49943==    by 0x40A3EC: glusterfs_volumes_init (glusterfsd.c:2359)
==49943== 
==49943== 164 bytes in 1 blocks are definitely lost in loss record 403 of 718
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x4E908B0: mem_get (mem-pool.c:513)
==49943==    by 0x4E906CE: mem_get0 (mem-pool.c:446)
==49943==    by 0x4E53E07: get_new_data (dict.c:40)
==49943==    by 0x4E55CD6: str_to_data (dict.c:860)
==49943==    by 0x4E584A0: dict_set_str (dict.c:2162)
==49943==    by 0x5144AB0: rpcsvc_auth_init_auths (rpcsvc-auth.c:155)
==49943==    by 0x5144FDA: rpcsvc_auth_init (rpcsvc-auth.c:292)
==49943==    by 0x514A796: rpcsvc_init (rpcsvc.c:2334)
==49943==    by 0x40F93C: glusterfs_listener_init (glusterfsd-mgmt.c:2027)
==49943==    by 0x40A3EC: glusterfs_volumes_init (glusterfsd.c:2359)
==49943== 
==49943== 164 bytes in 1 blocks are definitely lost in loss record 404 of 718
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x4E908B0: mem_get (mem-pool.c:513)
==49943==    by 0x4E906CE: mem_get0 (mem-pool.c:446)
==49943==    by 0x4E53E07: get_new_data (dict.c:40)
==49943==    by 0x4E55CD6: str_to_data (dict.c:860)
==49943==    by 0x4E584A0: dict_set_str (dict.c:2162)
==49943==    by 0x5144B1C: rpcsvc_auth_init_auths (rpcsvc-auth.c:162)
==49943==    by 0x5144FDA: rpcsvc_auth_init (rpcsvc-auth.c:292)
==49943==    by 0x514A796: rpcsvc_init (rpcsvc.c:2334)
==49943==    by 0x40F93C: glusterfs_listener_init (glusterfsd-mgmt.c:2027)
==49943==    by 0x40A3EC: glusterfs_volumes_init (glusterfsd.c:2359)
==49943== 
==49943== 164 bytes in 1 blocks are definitely lost in loss record 405 of 718
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x4E908B0: mem_get (mem-pool.c:513)
==49943==    by 0x4E906CE: mem_get0 (mem-pool.c:446)
==49943==    by 0x4E53E07: get_new_data (dict.c:40)
==49943==    by 0x4E55D8E: data_from_dynstr (dict.c:882)
==49943==    by 0x4E58586: dict_set_dynstr (dict.c:2199)
==49943==    by 0x51495A1: rpcsvc_create_listeners (rpcsvc.c:1767)
==49943==    by 0x40F98A: glusterfs_listener_init (glusterfsd-mgmt.c:2037)
==49943==    by 0x40A3EC: glusterfs_volumes_init (glusterfsd.c:2359)
==49943==    by 0x40A892: main (glusterfsd.c:2488)
==49943== 
==49943== 164 bytes in 1 blocks are definitely lost in loss record 406 of 718
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x4E908B0: mem_get (mem-pool.c:513)
==49943==    by 0x4E906CE: mem_get0 (mem-pool.c:446)
==49943==    by 0x4E53E07: get_new_data (dict.c:40)
==49943==    by 0x4E55D8E: data_from_dynstr (dict.c:882)
==49943==    by 0x4E58586: dict_set_dynstr (dict.c:2199)
==49943==    by 0x514D164: rpc_transport_inet_options_build (rpc-transport.c:677)
==49943==    by 0x40FD9D: glusterfs_mgmt_init (glusterfsd-mgmt.c:2139)
==49943==    by 0x40A412: glusterfs_volumes_init (glusterfsd.c:2365)
==49943==    by 0x40A892: main (glusterfsd.c:2488)
==49943== 
==49943== 164 bytes in 1 blocks are definitely lost in loss record 407 of 718
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x4E908B0: mem_get (mem-pool.c:513)
==49943==    by 0x4E906CE: mem_get0 (mem-pool.c:446)
==49943==    by 0x4E53E07: get_new_data (dict.c:40)
==49943==    by 0x4E556F8: data_from_int32 (dict.c:698)
==49943==    by 0x4E57BB4: dict_set_int32 (dict.c:1771)
==49943==    by 0x514D1CD: rpc_transport_inet_options_build (rpc-transport.c:684)
==49943==    by 0x40FD9D: glusterfs_mgmt_init (glusterfsd-mgmt.c:2139)
==49943==    by 0x40A412: glusterfs_volumes_init (glusterfsd.c:2365)
==49943==    by 0x40A892: main (glusterfsd.c:2488)
==49943== 
==49943== 164 bytes in 1 blocks are definitely lost in loss record 408 of 718
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x4E908B0: mem_get (mem-pool.c:513)
==49943==    by 0x4E906CE: mem_get0 (mem-pool.c:446)
==49943==    by 0x4E53E07: get_new_data (dict.c:40)
==49943==    by 0x4E55CD6: str_to_data (dict.c:860)
==49943==    by 0x4E584A0: dict_set_str (dict.c:2162)
==49943==    by 0x514D235: rpc_transport_inet_options_build (rpc-transport.c:691)
==49943==    by 0x40FD9D: glusterfs_mgmt_init (glusterfsd-mgmt.c:2139)
==49943==    by 0x40A412: glusterfs_volumes_init (glusterfsd.c:2365)
==49943==    by 0x40A892: main (glusterfsd.c:2488)
==49943== 
==49943== 164 bytes in 1 blocks are definitely lost in loss record 409 of 718
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x4E908B0: mem_get (mem-pool.c:513)
==49943==    by 0x4E906CE: mem_get0 (mem-pool.c:446)
==49943==    by 0x4E53E07: get_new_data (dict.c:40)
==49943==    by 0x4E55CD6: str_to_data (dict.c:860)
==49943==    by 0x4E584A0: dict_set_str (dict.c:2162)
==49943==    by 0x5144D69: rpcsvc_set_allow_insecure (rpcsvc-auth.c:231)
==49943==    by 0x5144F59: rpcsvc_auth_init (rpcsvc-auth.c:283)
==49943==    by 0x514A796: rpcsvc_init (rpcsvc.c:2334)
==49943==    by 0x150622FC: init (server.c:1019)
==49943==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==49943== 
==49943== 164 bytes in 1 blocks are definitely lost in loss record 410 of 718
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x4E908B0: mem_get (mem-pool.c:513)
==49943==    by 0x4E906CE: mem_get0 (mem-pool.c:446)
==49943==    by 0x4E53E07: get_new_data (dict.c:40)
==49943==    by 0x4E55CD6: str_to_data (dict.c:860)
==49943==    by 0x4E584A0: dict_set_str (dict.c:2162)
==49943==    by 0x5144A44: rpcsvc_auth_init_auths (rpcsvc-auth.c:148)
==49943==    by 0x5144FDA: rpcsvc_auth_init (rpcsvc-auth.c:292)
==49943==    by 0x514A796: rpcsvc_init (rpcsvc.c:2334)
==49943==    by 0x150622FC: init (server.c:1019)
==49943==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==49943== 
==49943== 164 bytes in 1 blocks are definitely lost in loss record 411 of 718
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x4E908B0: mem_get (mem-pool.c:513)
==49943==    by 0x4E906CE: mem_get0 (mem-pool.c:446)
==49943==    by 0x4E53E07: get_new_data (dict.c:40)
==49943==    by 0x4E55CD6: str_to_data (dict.c:860)
==49943==    by 0x4E584A0: dict_set_str (dict.c:2162)
==49943==    by 0x5144AB0: rpcsvc_auth_init_auths (rpcsvc-auth.c:155)
==49943==    by 0x5144FDA: rpcsvc_auth_init (rpcsvc-auth.c:292)
==49943==    by 0x514A796: rpcsvc_init (rpcsvc.c:2334)
==49943==    by 0x150622FC: init (server.c:1019)
==49943==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==49943== 
==49943== 164 bytes in 1 blocks are definitely lost in loss record 412 of 718
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x4E908B0: mem_get (mem-pool.c:513)
==49943==    by 0x4E906CE: mem_get0 (mem-pool.c:446)
==49943==    by 0x4E53E07: get_new_data (dict.c:40)
==49943==    by 0x4E55CD6: str_to_data (dict.c:860)
==49943==    by 0x4E584A0: dict_set_str (dict.c:2162)
==49943==    by 0x5144B1C: rpcsvc_auth_init_auths (rpcsvc-auth.c:162)
==49943==    by 0x5144FDA: rpcsvc_auth_init (rpcsvc-auth.c:292)
==49943==    by 0x514A796: rpcsvc_init (rpcsvc.c:2334)
==49943==    by 0x150622FC: init (server.c:1019)
==49943==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==49943== 
==49943== 164 bytes in 1 blocks are definitely lost in loss record 413 of 718
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x4E908B0: mem_get (mem-pool.c:513)
==49943==    by 0x4E906CE: mem_get0 (mem-pool.c:446)
==49943==    by 0x4E53E07: get_new_data (dict.c:40)
==49943==    by 0x4E55D8E: data_from_dynstr (dict.c:882)
==49943==    by 0x4E58586: dict_set_dynstr (dict.c:2199)
==49943==    by 0x51495A1: rpcsvc_create_listeners (rpcsvc.c:1767)
==49943==    by 0x1506250B: init (server.c:1056)
==49943==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==49943==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==49943==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==49943== 
==49943== 164 bytes in 1 blocks are definitely lost in loss record 414 of 718
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x4E908B0: mem_get (mem-pool.c:513)
==49943==    by 0x4E906CE: mem_get0 (mem-pool.c:446)
==49943==    by 0x4E53E07: get_new_data (dict.c:40)
==49943==    by 0x4E55CD6: str_to_data (dict.c:860)
==49943==    by 0x4E584A0: dict_set_str (dict.c:2162)
==49943==    by 0x14A01464: quota_enforcer_init (quota-enforcer-client.c:438)
==49943==    by 0x149FF51D: init (quota.c:5127)
==49943==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==49943==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==49943==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==49943== 
==49943== 164 bytes in 1 blocks are definitely lost in loss record 415 of 718
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x4E908B0: mem_get (mem-pool.c:513)
==49943==    by 0x4E906CE: mem_get0 (mem-pool.c:446)
==49943==    by 0x4E53E07: get_new_data (dict.c:40)
==49943==    by 0x4E55CD6: str_to_data (dict.c:860)
==49943==    by 0x4E584A0: dict_set_str (dict.c:2162)
==49943==    by 0x14A0148C: quota_enforcer_init (quota-enforcer-client.c:442)
==49943==    by 0x149FF51D: init (quota.c:5127)
==49943==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==49943==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==49943==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==49943== 
==49943== 164 bytes in 1 blocks are definitely lost in loss record 416 of 718
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x4E908B0: mem_get (mem-pool.c:513)
==49943==    by 0x4E906CE: mem_get0 (mem-pool.c:446)
==49943==    by 0x4E53E07: get_new_data (dict.c:40)
==49943==    by 0x4E55CD6: str_to_data (dict.c:860)
==49943==    by 0x4E584A0: dict_set_str (dict.c:2162)
==49943==    by 0x14A014B4: quota_enforcer_init (quota-enforcer-client.c:446)
==49943==    by 0x149FF51D: init (quota.c:5127)
==49943==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==49943==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==49943==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==49943== 
==49943== 164 bytes in 1 blocks are definitely lost in loss record 417 of 718
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x4E908B0: mem_get (mem-pool.c:513)
==49943==    by 0x4E906CE: mem_get0 (mem-pool.c:446)
==49943==    by 0x4E53E07: get_new_data (dict.c:40)
==49943==    by 0x4E55553: int_to_data (dict.c:659)
==49943==    by 0x147D54D8: index_make_xattrop_watchlist (index.c:2208)
==49943==    by 0x147D5A4E: init (index.c:2334)
==49943==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==49943==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==49943==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==49943==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==49943== 
==49943== 164 bytes in 1 blocks are definitely lost in loss record 418 of 718
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x4E908B0: mem_get (mem-pool.c:513)
==49943==    by 0x4E906CE: mem_get0 (mem-pool.c:446)
==49943==    by 0x4E53E07: get_new_data (dict.c:40)
==49943==    by 0x4E55553: int_to_data (dict.c:659)
==49943==    by 0x147D54D8: index_make_xattrop_watchlist (index.c:2208)
==49943==    by 0x147D5ACA: init (index.c:2340)
==49943==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==49943==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==49943==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==49943==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==49943== 
==49943== 166 bytes in 2 blocks are possibly lost in loss record 419 of 718
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x406B0A: gf_remember_xlator_option (glusterfsd.c:742)
==49943==    by 0x40789D: parse_opts (glusterfsd.c:1075)
==49943==    by 0x67B5412: argp_parse (in /usr/lib64/libc-2.17.so)
==49943==    by 0x4092D4: parse_cmdline (glusterfsd.c:1866)
==49943==    by 0x40A5E5: main (glusterfsd.c:2417)
==49943== 
==49943== 168 bytes in 1 blocks are possibly lost in loss record 422 of 718
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x145C3789: init (barrier.c:625)
==49943==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==49943==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==49943==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==49943==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==49943==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==49943==    by 0x40ECA5: mgmt_getspec_cbk (glusterfsd-mgmt.c:1648)
==49943==    by 0x51505D2: rpc_clnt_handle_reply (rpc-clnt.c:791)
==49943==    by 0x5150B34: rpc_clnt_notify (rpc-clnt.c:971)
==49943==    by 0x514CD1D: rpc_transport_notify (rpc-transport.c:541)
==49943== 
==49943== 168 bytes in 1 blocks are possibly lost in loss record 423 of 718
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x143B1FD6: mq_alloc_inode_ctx (marker-quota-helper.c:136)
==49943==    by 0x143B2D5D: __mq_inode_ctx_new (marker-quota-helper.c:363)
==49943==    by 0x143B2DE8: mq_inode_ctx_new (marker-quota-helper.c:385)
==49943==    by 0x143A6A6C: marker_lookup_cbk (marker.c:2935)
==49943==    by 0x141811E0: up_lookup_cbk (upcall.c:753)
==49943==    by 0x13930D5A: pl_lookup_cbk (posix.c:2648)
==49943==    by 0x13708E35: posix_acl_lookup_cbk (posix-acl.c:919)
==49943==    by 0x134FD448: br_stub_lookup_cbk (bit-rot-stub.c:2709)
==49943==    by 0x12BDC56C: ctr_lookup_cbk (changetimerecorder.c:306)
==49943==    by 0x121659B6: posix_lookup (posix.c:270)
==49943== 
==49943== 172 bytes in 2 blocks are possibly lost in loss record 424 of 718
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x406BE2: gf_remember_xlator_option (glusterfsd.c:755)
==49943==    by 0x40789D: parse_opts (glusterfsd.c:1075)
==49943==    by 0x67B5412: argp_parse (in /usr/lib64/libc-2.17.so)
==49943==    by 0x4092D4: parse_cmdline (glusterfsd.c:1866)
==49943==    by 0x40A5E5: main (glusterfsd.c:2417)
==49943== 
==49943== 184 (136 direct, 48 indirect) bytes in 1 blocks are definitely lost in loss record 427 of 718
==49943==    at 0x4C27BE3: malloc (vg_replace_malloc.c:299)
==49943==    by 0x130402E6: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==49943==    by 0x1301B6A9: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==49943==    by 0x13023A25: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==49943==    by 0x1303409C: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==49943==    by 0x130340DD: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==49943==    by 0x13034382: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==49943==    by 0x1309E40A: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==49943==    by 0x12E01B48: gf_open_sqlite3_conn (gfdb_sqlite3.c:192)
==49943==    by 0x12E02CAF: gf_sqlite3_init (gfdb_sqlite3.c:440)
==49943==    by 0x12DF97B5: init_db (gfdb_data_store.c:270)
==49943==    by 0x12BEA41F: init (changetimerecorder.c:2118)
==49943== 
==49943== 187 bytes in 2 blocks are possibly lost in loss record 428 of 718
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x4052E4: gf_strdup (mem-pool.h:187)
==49943==    by 0x406C99: gf_remember_xlator_option (glusterfsd.c:767)
==49943==    by 0x40789D: parse_opts (glusterfsd.c:1075)
==49943==    by 0x67B5412: argp_parse (in /usr/lib64/libc-2.17.so)
==49943==    by 0x4092D4: parse_cmdline (glusterfsd.c:1866)
==49943==    by 0x40A5E5: main (glusterfsd.c:2417)
==49943== 
==49943== 192 bytes in 1 blocks are possibly lost in loss record 431 of 718
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x4E6E372: gf_timer_registry_init (timer.c:222)
==49943==    by 0x4E6DB1A: gf_timer_call_after (timer.c:40)
==49943==    by 0x4E61A3D: __gf_log_inject_timer_event (logging.c:1792)
==49943==    by 0x4E61AA5: gf_log_inject_timer_event (logging.c:1814)
==49943==    by 0x40A0DA: daemonize (glusterfsd.c:2247)
==49943==    by 0x40A7C5: main (glusterfsd.c:2465)
==49943== 
==49943== 192 bytes in 1 blocks are possibly lost in loss record 432 of 718
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x5149865: rpcsvc_program_register (rpcsvc.c:1877)
==49943==    by 0x514A859: rpcsvc_init (rpcsvc.c:2349)
==49943==    by 0x40F93C: glusterfs_listener_init (glusterfsd-mgmt.c:2027)
==49943==    by 0x40A3EC: glusterfs_volumes_init (glusterfsd.c:2359)
==49943==    by 0x40A892: main (glusterfsd.c:2488)
==49943== 
==49943== 192 bytes in 1 blocks are possibly lost in loss record 433 of 718
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x5149865: rpcsvc_program_register (rpcsvc.c:1877)
==49943==    by 0x40F9AD: glusterfs_listener_init (glusterfsd-mgmt.c:2043)
==49943==    by 0x40A3EC: glusterfs_volumes_init (glusterfsd.c:2359)
==49943==    by 0x40A892: main (glusterfsd.c:2488)
==49943== 
==49943== 192 bytes in 1 blocks are possibly lost in loss record 434 of 718
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x5149865: rpcsvc_program_register (rpcsvc.c:1877)
==49943==    by 0x514A859: rpcsvc_init (rpcsvc.c:2349)
==49943==    by 0x150622FC: init (server.c:1019)
==49943==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==49943==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==49943==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==49943==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==49943==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==49943==    by 0x40ECA5: mgmt_getspec_cbk (glusterfsd-mgmt.c:1648)
==49943==    by 0x51505D2: rpc_clnt_handle_reply (rpc-clnt.c:791)
==49943== 
==49943== 192 bytes in 1 blocks are possibly lost in loss record 435 of 718
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x5149865: rpcsvc_program_register (rpcsvc.c:1877)
==49943==    by 0x15062683: init (server.c:1080)
==49943==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==49943==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==49943==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==49943==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==49943==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==49943==    by 0x40ECA5: mgmt_getspec_cbk (glusterfsd-mgmt.c:1648)
==49943==    by 0x51505D2: rpc_clnt_handle_reply (rpc-clnt.c:791)
==49943==    by 0x5150B34: rpc_clnt_notify (rpc-clnt.c:971)
==49943== 
==49943== 192 bytes in 1 blocks are possibly lost in loss record 436 of 718
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x5149865: rpcsvc_program_register (rpcsvc.c:1877)
==49943==    by 0x15062734: init (server.c:1091)
==49943==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==49943==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==49943==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==49943==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==49943==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==49943==    by 0x40ECA5: mgmt_getspec_cbk (glusterfsd-mgmt.c:1648)
==49943==    by 0x51505D2: rpc_clnt_handle_reply (rpc-clnt.c:791)
==49943==    by 0x5150B34: rpc_clnt_notify (rpc-clnt.c:971)
==49943== 
==49943== 192 bytes in 1 blocks are possibly lost in loss record 437 of 718
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x143A965E: init (marker.c:3391)
==49943==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==49943==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==49943==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==49943==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==49943==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==49943==    by 0x40ECA5: mgmt_getspec_cbk (glusterfsd-mgmt.c:1648)
==49943==    by 0x51505D2: rpc_clnt_handle_reply (rpc-clnt.c:791)
==49943==    by 0x5150B34: rpc_clnt_notify (rpc-clnt.c:971)
==49943==    by 0x514CD1D: rpc_transport_notify (rpc-transport.c:541)
==49943== 
==49943== 192 bytes in 2 blocks are possibly lost in loss record 438 of 718
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x4EE857A: gf_strdup (mem-pool.h:187)
==49943==    by 0x4EE94F3: volume_option (graph.y:240)
==49943==    by 0x4EE8A28: graphyyparse (graph.y:69)
==49943==    by 0x4EEA42D: glusterfs_graph_construct (graph.y:590)
==49943==    by 0x40A211: glusterfs_process_volfp (glusterfsd.c:2305)
==49943==    by 0x40ECA5: mgmt_getspec_cbk (glusterfsd-mgmt.c:1648)
==49943==    by 0x51505D2: rpc_clnt_handle_reply (rpc-clnt.c:791)
==49943==    by 0x5150B34: rpc_clnt_notify (rpc-clnt.c:971)
==49943==    by 0x514CD1D: rpc_transport_notify (rpc-transport.c:541)
==49943==    by 0xFEA9D43: socket_event_poll_in (socket.c:2267)
==49943== 
==49943== 192 bytes in 2 blocks are possibly lost in loss record 439 of 718
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x15097220: init (authenticate.c:85)
==49943==    by 0x4E56B26: dict_foreach_match (dict.c:1236)
==49943==    by 0x4E56A12: dict_foreach (dict.c:1194)
==49943==    by 0x150974B9: gf_auth_init (authenticate.c:149)
==49943==    by 0x1506216C: init (server.c:993)
==49943==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==49943==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==49943==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==49943==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==49943==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==49943== 
==49943== 192 (96 direct, 96 indirect) bytes in 1 blocks are definitely lost in loss record 441 of 718
==49943==    at 0x4C27BE3: malloc (vg_replace_malloc.c:299)
==49943==    by 0x130402E6: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==49943==    by 0x1301B6A9: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==49943==    by 0x13023A25: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==49943==    by 0x13023B60: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==49943==    by 0x13023BDC: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==49943==    by 0x13028E1A: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==49943==    by 0x13049880: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==49943==    by 0x1304999B: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==49943==    by 0x13049B4C: sqlite3_create_function_v2 (in /usr/lib64/libsqlite3.so.0.8.6)
==49943==    by 0x13049B94: sqlite3_create_function (in /usr/lib64/libsqlite3.so.0.8.6)
==49943==    by 0x1309E4F2: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==49943== 
==49943== 192 (96 direct, 96 indirect) bytes in 1 blocks are definitely lost in loss record 442 of 718
==49943==    at 0x4C27BE3: malloc (vg_replace_malloc.c:299)
==49943==    by 0x130402E6: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==49943==    by 0x1301B6A9: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==49943==    by 0x13023A25: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==49943==    by 0x13023B60: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==49943==    by 0x13023BDC: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==49943==    by 0x13028E1A: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==49943==    by 0x13049880: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==49943==    by 0x13049B4C: sqlite3_create_function_v2 (in /usr/lib64/libsqlite3.so.0.8.6)
==49943==    by 0x13049B94: sqlite3_create_function (in /usr/lib64/libsqlite3.so.0.8.6)
==49943==    by 0x1309E4F2: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==49943==    by 0x12E01B48: gf_open_sqlite3_conn (gfdb_sqlite3.c:192)
==49943== 
==49943== 192 bytes in 1 blocks are definitely lost in loss record 443 of 718
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x143B20FB: mq_contri_init (marker-quota-helper.c:164)
==49943==    by 0x143B2402: __mq_add_new_contribution_node (marker-quota-helper.c:238)
==49943==    by 0x143B24F6: mq_add_new_contribution_node (marker-quota-helper.c:264)
==49943==    by 0x143B1293: mq_xattr_state (marker-quota.c:2105)
==49943==    by 0x143A6E80: marker_lookup_cbk (marker.c:2961)
==49943==    by 0x141811E0: up_lookup_cbk (upcall.c:753)
==49943==    by 0x13930D5A: pl_lookup_cbk (posix.c:2648)
==49943==    by 0x13708E35: posix_acl_lookup_cbk (posix-acl.c:919)
==49943==    by 0x134FD448: br_stub_lookup_cbk (bit-rot-stub.c:2709)
==49943==    by 0x12BDC56C: ctr_lookup_cbk (changetimerecorder.c:306)
==49943== 
==49943== 192 bytes in 2 blocks are definitely lost in loss record 444 of 718
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x150971B5: init (authenticate.c:77)
==49943==    by 0x4E56B26: dict_foreach_match (dict.c:1236)
==49943==    by 0x4E56A12: dict_foreach (dict.c:1194)
==49943==    by 0x150974B9: gf_auth_init (authenticate.c:149)
==49943==    by 0x1506216C: init (server.c:993)
==49943==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==49943==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==49943==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==49943==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==49943==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==49943== 
==49943== 208 bytes in 1 blocks are possibly lost in loss record 445 of 718
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x149FF194: init (quota.c:5103)
==49943==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==49943==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==49943==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==49943==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==49943==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==49943==    by 0x40ECA5: mgmt_getspec_cbk (glusterfsd-mgmt.c:1648)
==49943==    by 0x51505D2: rpc_clnt_handle_reply (rpc-clnt.c:791)
==49943==    by 0x5150B34: rpc_clnt_notify (rpc-clnt.c:971)
==49943==    by 0x514CD1D: rpc_transport_notify (rpc-transport.c:541)
==49943== 
==49943== 208 bytes in 1 blocks are possibly lost in loss record 446 of 718
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x12DF9600: init_db (gfdb_data_store.c:234)
==49943==    by 0x12BEA41F: init (changetimerecorder.c:2118)
==49943==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==49943==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==49943==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==49943==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==49943==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==49943==    by 0x40ECA5: mgmt_getspec_cbk (glusterfsd-mgmt.c:1648)
==49943==    by 0x51505D2: rpc_clnt_handle_reply (rpc-clnt.c:791)
==49943==    by 0x5150B34: rpc_clnt_notify (rpc-clnt.c:971)
==49943== 
==49943== 208 bytes in 2 blocks are possibly lost in loss record 447 of 718
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x14C2707D: ios_init_top_stats (io-stats.c:3343)
==49943==    by 0x14C280A3: init (io-stats.c:3658)
==49943==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==49943==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==49943==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==49943==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==49943==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==49943==    by 0x40ECA5: mgmt_getspec_cbk (glusterfsd-mgmt.c:1648)
==49943==    by 0x51505D2: rpc_clnt_handle_reply (rpc-clnt.c:791)
==49943==    by 0x5150B34: rpc_clnt_notify (rpc-clnt.c:971)
==49943== 
==49943== 224 bytes in 1 blocks are possibly lost in loss record 448 of 718
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x4E90487: mem_pool_new_fn (mem-pool.c:381)
==49943==    by 0x4086EA: glusterfs_ctx_defaults_init (glusterfsd.c:1496)
==49943==    by 0x40A5BC: main (glusterfsd.c:2413)
==49943== 
==49943== 224 bytes in 1 blocks are possibly lost in loss record 449 of 718
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x4E90487: mem_pool_new_fn (mem-pool.c:381)
==49943==    by 0x408772: glusterfs_ctx_defaults_init (glusterfsd.c:1502)
==49943==    by 0x40A5BC: main (glusterfsd.c:2413)
==49943== 
==49943== 224 bytes in 1 blocks are possibly lost in loss record 450 of 718
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x4E90487: mem_pool_new_fn (mem-pool.c:381)
==49943==    by 0x4087EF: glusterfs_ctx_defaults_init (glusterfsd.c:1508)
==49943==    by 0x40A5BC: main (glusterfsd.c:2413)
==49943== 
==49943== 224 bytes in 1 blocks are possibly lost in loss record 451 of 718
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x4E90487: mem_pool_new_fn (mem-pool.c:381)
==49943==    by 0x40886F: glusterfs_ctx_defaults_init (glusterfsd.c:1514)
==49943==    by 0x40A5BC: main (glusterfsd.c:2413)
==49943== 
==49943== 224 bytes in 1 blocks are possibly lost in loss record 452 of 718
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x4E90487: mem_pool_new_fn (mem-pool.c:381)
==49943==    by 0x4088A3: glusterfs_ctx_defaults_init (glusterfsd.c:1518)
==49943==    by 0x40A5BC: main (glusterfsd.c:2413)
==49943== 
==49943== 224 bytes in 1 blocks are possibly lost in loss record 453 of 718
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x4E90487: mem_pool_new_fn (mem-pool.c:381)
==49943==    by 0x4088D7: glusterfs_ctx_defaults_init (glusterfsd.c:1523)
==49943==    by 0x40A5BC: main (glusterfsd.c:2413)
==49943== 
==49943== 224 bytes in 1 blocks are possibly lost in loss record 454 of 718
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x4E90487: mem_pool_new_fn (mem-pool.c:381)
==49943==    by 0x40890B: glusterfs_ctx_defaults_init (glusterfsd.c:1527)
==49943==    by 0x40A5BC: main (glusterfsd.c:2413)
==49943== 
==49943== 224 bytes in 1 blocks are possibly lost in loss record 455 of 718
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x4E90487: mem_pool_new_fn (mem-pool.c:381)
==49943==    by 0x514A732: rpcsvc_init (rpcsvc.c:2327)
==49943==    by 0x40F93C: glusterfs_listener_init (glusterfsd-mgmt.c:2027)
==49943==    by 0x40A3EC: glusterfs_volumes_init (glusterfsd.c:2359)
==49943==    by 0x40A892: main (glusterfsd.c:2488)
==49943== 
==49943== 224 bytes in 1 blocks are possibly lost in loss record 456 of 718
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x4E90487: mem_pool_new_fn (mem-pool.c:381)
==49943==    by 0x5151087: rpc_clnt_new (rpc-clnt.c:1139)
==49943==    by 0x40FE46: glusterfs_mgmt_init (glusterfsd-mgmt.c:2157)
==49943==    by 0x40A412: glusterfs_volumes_init (glusterfsd.c:2365)
==49943==    by 0x40A892: main (glusterfsd.c:2488)
==49943== 
==49943== 224 bytes in 1 blocks are possibly lost in loss record 457 of 718
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x4E90487: mem_pool_new_fn (mem-pool.c:381)
==49943==    by 0x51510EE: rpc_clnt_new (rpc-clnt.c:1148)
==49943==    by 0x40FE46: glusterfs_mgmt_init (glusterfsd-mgmt.c:2157)
==49943==    by 0x40A412: glusterfs_volumes_init (glusterfsd.c:2365)
==49943==    by 0x40A892: main (glusterfsd.c:2488)
==49943== 
==49943== 224 bytes in 1 blocks are possibly lost in loss record 458 of 718
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x4E90487: mem_pool_new_fn (mem-pool.c:381)
==49943==    by 0x514A732: rpcsvc_init (rpcsvc.c:2327)
==49943==    by 0x150622FC: init (server.c:1019)
==49943==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==49943==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==49943==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==49943==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==49943==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==49943==    by 0x40ECA5: mgmt_getspec_cbk (glusterfsd-mgmt.c:1648)
==49943==    by 0x51505D2: rpc_clnt_handle_reply (rpc-clnt.c:791)
==49943== 
==49943== 224 bytes in 1 blocks are possibly lost in loss record 459 of 718
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x4E90487: mem_pool_new_fn (mem-pool.c:381)
==49943==    by 0x149FF481: init (quota.c:5118)
==49943==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==49943==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==49943==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==49943==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==49943==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==49943==    by 0x40ECA5: mgmt_getspec_cbk (glusterfsd-mgmt.c:1648)
==49943==    by 0x51505D2: rpc_clnt_handle_reply (rpc-clnt.c:791)
==49943==    by 0x5150B34: rpc_clnt_notify (rpc-clnt.c:971)
==49943== 
==49943== 224 bytes in 1 blocks are possibly lost in loss record 460 of 718
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x4E90487: mem_pool_new_fn (mem-pool.c:381)
==49943==    by 0x5151087: rpc_clnt_new (rpc-clnt.c:1139)
==49943==    by 0x14A014DE: quota_enforcer_init (quota-enforcer-client.c:451)
==49943==    by 0x149FF51D: init (quota.c:5127)
==49943==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==49943==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==49943==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==49943==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==49943==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==49943==    by 0x40ECA5: mgmt_getspec_cbk (glusterfsd-mgmt.c:1648)
==49943== 
==49943== 224 bytes in 1 blocks are possibly lost in loss record 461 of 718
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x4E90487: mem_pool_new_fn (mem-pool.c:381)
==49943==    by 0x51510EE: rpc_clnt_new (rpc-clnt.c:1148)
==49943==    by 0x14A014DE: quota_enforcer_init (quota-enforcer-client.c:451)
==49943==    by 0x149FF51D: init (quota.c:5127)
==49943==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==49943==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==49943==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==49943==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==49943==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==49943==    by 0x40ECA5: mgmt_getspec_cbk (glusterfsd-mgmt.c:1648)
==49943== 
==49943== 224 bytes in 1 blocks are possibly lost in loss record 462 of 718
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x4E90487: mem_pool_new_fn (mem-pool.c:381)
==49943==    by 0x147D5BD2: init (index.c:2357)
==49943==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==49943==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==49943==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==49943==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==49943==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==49943==    by 0x40ECA5: mgmt_getspec_cbk (glusterfsd-mgmt.c:1648)
==49943==    by 0x51505D2: rpc_clnt_handle_reply (rpc-clnt.c:791)
==49943==    by 0x5150B34: rpc_clnt_notify (rpc-clnt.c:971)
==49943== 
==49943== 224 bytes in 1 blocks are possibly lost in loss record 463 of 718
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x4E90487: mem_pool_new_fn (mem-pool.c:381)
==49943==    by 0x143A9945: init (marker.c:3443)
==49943==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==49943==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==49943==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==49943==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==49943==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==49943==    by 0x40ECA5: mgmt_getspec_cbk (glusterfsd-mgmt.c:1648)
==49943==    by 0x51505D2: rpc_clnt_handle_reply (rpc-clnt.c:791)
==49943==    by 0x5150B34: rpc_clnt_notify (rpc-clnt.c:971)
==49943== 
==49943== 224 bytes in 1 blocks are possibly lost in loss record 464 of 718
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x4E90487: mem_pool_new_fn (mem-pool.c:381)
==49943==    by 0x1418A79B: init (upcall.c:1693)
==49943==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==49943==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==49943==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==49943==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==49943==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==49943==    by 0x40ECA5: mgmt_getspec_cbk (glusterfsd-mgmt.c:1648)
==49943==    by 0x51505D2: rpc_clnt_handle_reply (rpc-clnt.c:791)
==49943==    by 0x5150B34: rpc_clnt_notify (rpc-clnt.c:971)
==49943== 
==49943== 224 bytes in 1 blocks are possibly lost in loss record 465 of 718
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x4E90487: mem_pool_new_fn (mem-pool.c:381)
==49943==    by 0x13B50CF0: init (worm.c:504)
==49943==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==49943==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==49943==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==49943==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==49943==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==49943==    by 0x40ECA5: mgmt_getspec_cbk (glusterfsd-mgmt.c:1648)
==49943==    by 0x51505D2: rpc_clnt_handle_reply (rpc-clnt.c:791)
==49943==    by 0x5150B34: rpc_clnt_notify (rpc-clnt.c:971)
==49943== 
==49943== 224 bytes in 1 blocks are possibly lost in loss record 466 of 718
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x4E90487: mem_pool_new_fn (mem-pool.c:381)
==49943==    by 0x13935190: init (posix.c:3681)
==49943==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==49943==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==49943==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==49943==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==49943==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==49943==    by 0x40ECA5: mgmt_getspec_cbk (glusterfsd-mgmt.c:1648)
==49943==    by 0x51505D2: rpc_clnt_handle_reply (rpc-clnt.c:791)
==49943==    by 0x5150B34: rpc_clnt_notify (rpc-clnt.c:971)
==49943== 
==49943== 224 bytes in 1 blocks are possibly lost in loss record 467 of 718
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x4E90487: mem_pool_new_fn (mem-pool.c:381)
==49943==    by 0x134EF2D6: init (bit-rot-stub.c:135)
==49943==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==49943==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==49943==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==49943==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==49943==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==49943==    by 0x40ECA5: mgmt_getspec_cbk (glusterfsd-mgmt.c:1648)
==49943==    by 0x51505D2: rpc_clnt_handle_reply (rpc-clnt.c:791)
==49943==    by 0x5150B34: rpc_clnt_notify (rpc-clnt.c:971)
==49943== 
==49943== 224 bytes in 1 blocks are possibly lost in loss record 468 of 718
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x4E90487: mem_pool_new_fn (mem-pool.c:381)
==49943==    by 0x132D6F76: init (changelog.c:2812)
==49943==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==49943==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==49943==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==49943==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==49943==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==49943==    by 0x40ECA5: mgmt_getspec_cbk (glusterfsd-mgmt.c:1648)
==49943==    by 0x51505D2: rpc_clnt_handle_reply (rpc-clnt.c:791)
==49943==    by 0x5150B34: rpc_clnt_notify (rpc-clnt.c:971)
==49943== 
==49943== 224 bytes in 1 blocks are possibly lost in loss record 469 of 718
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x4E90487: mem_pool_new_fn (mem-pool.c:381)
==49943==    by 0x514A732: rpcsvc_init (rpcsvc.c:2327)
==49943==    by 0x132DF0F9: changelog_rpc_server_init (changelog-rpc-common.c:302)
==49943==    by 0x132DDC27: changelog_init_rpc_listner (changelog-rpc.c:175)
==49943==    by 0x132D6D70: changelog_init_rpc (changelog.c:2768)
==49943==    by 0x132D71B1: init (changelog.c:2850)
==49943==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==49943==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==49943==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==49943==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==49943== 
==49943== 224 bytes in 1 blocks are possibly lost in loss record 470 of 718
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x4E90487: mem_pool_new_fn (mem-pool.c:381)
==49943==    by 0x12BEA39B: init (changetimerecorder.c:2109)
==49943==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==49943==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==49943==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==49943==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==49943==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==49943==    by 0x40ECA5: mgmt_getspec_cbk (glusterfsd-mgmt.c:1648)
==49943==    by 0x51505D2: rpc_clnt_handle_reply (rpc-clnt.c:791)
==49943==    by 0x5150B34: rpc_clnt_notify (rpc-clnt.c:971)
==49943== 
==49943== 224 bytes in 1 blocks are possibly lost in loss record 471 of 718
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x4E90487: mem_pool_new_fn (mem-pool.c:381)
==49943==    by 0x129D0936: init (trash.c:2438)
==49943==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==49943==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==49943==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==49943==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==49943==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==49943==    by 0x40ECA5: mgmt_getspec_cbk (glusterfsd-mgmt.c:1648)
==49943==    by 0x51505D2: rpc_clnt_handle_reply (rpc-clnt.c:791)
==49943==    by 0x5150B34: rpc_clnt_notify (rpc-clnt.c:971)
==49943== 
==49943== 224 bytes in 1 blocks are possibly lost in loss record 472 of 718
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x4E90487: mem_pool_new_fn (mem-pool.c:381)
==49943==    by 0x129BB436: inode_table_new (inode.c:1593)
==49943==    by 0x129CF039: notify (trash.c:2172)
==49943==    by 0x4E5BEC3: xlator_notify (xlator.c:496)
==49943==    by 0x4F12AA0: default_notify (defaults.c:3114)
==49943==    by 0x1218A501: notify (posix.c:6596)
==49943==    by 0x4E5BEC3: xlator_notify (xlator.c:496)
==49943==    by 0x4F129B9: default_notify (defaults.c:3090)
==49943==    by 0x129D019E: notify (trash.c:2307)
==49943==    by 0x4E5BEC3: xlator_notify (xlator.c:496)
==49943== 
==49943== 224 bytes in 1 blocks are possibly lost in loss record 473 of 718
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x4E90487: mem_pool_new_fn (mem-pool.c:381)
==49943==    by 0x129BB46E: inode_table_new (inode.c:1598)
==49943==    by 0x129CF039: notify (trash.c:2172)
==49943==    by 0x4E5BEC3: xlator_notify (xlator.c:496)
==49943==    by 0x4F12AA0: default_notify (defaults.c:3114)
==49943==    by 0x1218A501: notify (posix.c:6596)
==49943==    by 0x4E5BEC3: xlator_notify (xlator.c:496)
==49943==    by 0x4F129B9: default_notify (defaults.c:3090)
==49943==    by 0x129D019E: notify (trash.c:2307)
==49943==    by 0x4E5BEC3: xlator_notify (xlator.c:496)
==49943== 
==49943== 224 bytes in 1 blocks are possibly lost in loss record 474 of 718
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x4E90487: mem_pool_new_fn (mem-pool.c:381)
==49943==    by 0x129BB514: inode_table_new (inode.c:1617)
==49943==    by 0x129CF039: notify (trash.c:2172)
==49943==    by 0x4E5BEC3: xlator_notify (xlator.c:496)
==49943==    by 0x4F12AA0: default_notify (defaults.c:3114)
==49943==    by 0x1218A501: notify (posix.c:6596)
==49943==    by 0x4E5BEC3: xlator_notify (xlator.c:496)
==49943==    by 0x4F129B9: default_notify (defaults.c:3090)
==49943==    by 0x129D019E: notify (trash.c:2307)
==49943==    by 0x4E5BEC3: xlator_notify (xlator.c:496)
==49943== 
==49943== 224 bytes in 1 blocks are possibly lost in loss record 475 of 718
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x4E90487: mem_pool_new_fn (mem-pool.c:381)
==49943==    by 0x4E71F64: inode_table_new (inode.c:1593)
==49943==    by 0x15096890: server_setvolume (server-handshake.c:740)
==49943==    by 0x514731B: rpcsvc_handle_rpc_call (rpcsvc.c:701)
==49943==    by 0x514766E: rpcsvc_notify (rpcsvc.c:795)
==49943==    by 0x514CD1D: rpc_transport_notify (rpc-transport.c:541)
==49943==    by 0xFEA9D43: socket_event_poll_in (socket.c:2267)
==49943==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943== 
==49943== 224 bytes in 1 blocks are possibly lost in loss record 476 of 718
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x4E90487: mem_pool_new_fn (mem-pool.c:381)
==49943==    by 0x4E71F9C: inode_table_new (inode.c:1598)
==49943==    by 0x15096890: server_setvolume (server-handshake.c:740)
==49943==    by 0x514731B: rpcsvc_handle_rpc_call (rpcsvc.c:701)
==49943==    by 0x514766E: rpcsvc_notify (rpcsvc.c:795)
==49943==    by 0x514CD1D: rpc_transport_notify (rpc-transport.c:541)
==49943==    by 0xFEA9D43: socket_event_poll_in (socket.c:2267)
==49943==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943== 
==49943== 224 bytes in 1 blocks are possibly lost in loss record 477 of 718
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x4E90487: mem_pool_new_fn (mem-pool.c:381)
==49943==    by 0x4E72042: inode_table_new (inode.c:1617)
==49943==    by 0x15096890: server_setvolume (server-handshake.c:740)
==49943==    by 0x514731B: rpcsvc_handle_rpc_call (rpcsvc.c:701)
==49943==    by 0x514766E: rpcsvc_notify (rpcsvc.c:795)
==49943==    by 0x514CD1D: rpc_transport_notify (rpc-transport.c:541)
==49943==    by 0xFEA9D43: socket_event_poll_in (socket.c:2267)
==49943==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943== 
==49943== 224 bytes in 2 blocks are possibly lost in loss record 478 of 718
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x406A49: gf_remember_xlator_option (glusterfsd.c:729)
==49943==    by 0x40789D: parse_opts (glusterfsd.c:1075)
==49943==    by 0x67B5412: argp_parse (in /usr/lib64/libc-2.17.so)
==49943==    by 0x4092D4: parse_cmdline (glusterfsd.c:1866)
==49943==    by 0x40A5E5: main (glusterfsd.c:2417)
==49943== 
==49943== 232 bytes in 1 blocks are possibly lost in loss record 479 of 718
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x514912C: rpcsvc_listener_alloc (rpcsvc.c:1632)
==49943==    by 0x514930B: rpcsvc_create_listener (rpcsvc.c:1684)
==49943==    by 0x514955C: rpcsvc_create_listeners (rpcsvc.c:1757)
==49943==    by 0x40F98A: glusterfs_listener_init (glusterfsd-mgmt.c:2037)
==49943==    by 0x40A3EC: glusterfs_volumes_init (glusterfsd.c:2359)
==49943==    by 0x40A892: main (glusterfsd.c:2488)
==49943== 
==49943== 232 bytes in 1 blocks are possibly lost in loss record 480 of 718
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x514912C: rpcsvc_listener_alloc (rpcsvc.c:1632)
==49943==    by 0x514930B: rpcsvc_create_listener (rpcsvc.c:1684)
==49943==    by 0x514955C: rpcsvc_create_listeners (rpcsvc.c:1757)
==49943==    by 0x1506250B: init (server.c:1056)
==49943==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==49943==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==49943==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==49943==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==49943==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==49943==    by 0x40ECA5: mgmt_getspec_cbk (glusterfsd-mgmt.c:1648)
==49943== 
==49943== 232 bytes in 1 blocks are possibly lost in loss record 481 of 718
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x13F6F721: init (leases.c:1025)
==49943==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==49943==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==49943==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==49943==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==49943==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==49943==    by 0x40ECA5: mgmt_getspec_cbk (glusterfsd-mgmt.c:1648)
==49943==    by 0x51505D2: rpc_clnt_handle_reply (rpc-clnt.c:791)
==49943==    by 0x5150B34: rpc_clnt_notify (rpc-clnt.c:971)
==49943==    by 0x514CD1D: rpc_transport_notify (rpc-transport.c:541)
==49943== 
==49943== 232 bytes in 1 blocks are definitely lost in loss record 482 of 718
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x514912C: rpcsvc_listener_alloc (rpcsvc.c:1632)
==49943==    by 0x514930B: rpcsvc_create_listener (rpcsvc.c:1684)
==49943==    by 0x514955C: rpcsvc_create_listeners (rpcsvc.c:1757)
==49943==    by 0x132DF1E6: changelog_rpc_server_init (changelog-rpc-common.c:318)
==49943==    by 0x132DDC27: changelog_init_rpc_listner (changelog-rpc.c:175)
==49943==    by 0x132D6D70: changelog_init_rpc (changelog.c:2768)
==49943==    by 0x132D71B1: init (changelog.c:2850)
==49943==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==49943==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==49943==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==49943== 
==49943== 244 bytes in 1 blocks are possibly lost in loss record 485 of 718
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x4E908B0: mem_get (mem-pool.c:513)
==49943==    by 0x4E906CE: mem_get0 (mem-pool.c:446)
==49943==    by 0x4E53E86: get_new_dict_full (dict.c:52)
==49943==    by 0x4E53F98: dict_new (dict.c:103)
==49943==    by 0x514A2F3: rpcsvc_transport_unix_options_build (rpcsvc.c:2166)
==49943==    by 0x40F909: glusterfs_listener_init (glusterfsd-mgmt.c:2022)
==49943==    by 0x40A3EC: glusterfs_volumes_init (glusterfsd.c:2359)
==49943==    by 0x40A892: main (glusterfsd.c:2488)
==49943== 
==49943== 244 bytes in 1 blocks are possibly lost in loss record 486 of 718
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x4E908B0: mem_get (mem-pool.c:513)
==49943==    by 0x4E906CE: mem_get0 (mem-pool.c:446)
==49943==    by 0x4E53E86: get_new_dict_full (dict.c:52)
==49943==    by 0x4E53F98: dict_new (dict.c:103)
==49943==    by 0x514D11A: rpc_transport_inet_options_build (rpc-transport.c:667)
==49943==    by 0x40FD9D: glusterfs_mgmt_init (glusterfsd-mgmt.c:2139)
==49943==    by 0x40A412: glusterfs_volumes_init (glusterfsd.c:2365)
==49943==    by 0x40A892: main (glusterfsd.c:2488)
==49943== 
==49943== 244 bytes in 1 blocks are possibly lost in loss record 487 of 718
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x4E908B0: mem_get (mem-pool.c:513)
==49943==    by 0x4E906CE: mem_get0 (mem-pool.c:446)
==49943==    by 0x4E53E86: get_new_dict_full (dict.c:52)
==49943==    by 0x4E53F98: dict_new (dict.c:103)
==49943==    by 0x15062038: init (server.c:983)
==49943==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==49943==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==49943==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==49943==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==49943==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==49943== 
==49943== 244 bytes in 1 blocks are possibly lost in loss record 488 of 718
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x4E908B0: mem_get (mem-pool.c:513)
==49943==    by 0x4E906CE: mem_get0 (mem-pool.c:446)
==49943==    by 0x4E53E86: get_new_dict_full (dict.c:52)
==49943==    by 0x4E53F98: dict_new (dict.c:103)
==49943==    by 0x147D54B7: index_make_xattrop_watchlist (index.c:2202)
==49943==    by 0x147D5A4E: init (index.c:2334)
==49943==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==49943==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==49943==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==49943==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==49943== 
==49943== 244 bytes in 1 blocks are possibly lost in loss record 489 of 718
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x4E908B0: mem_get (mem-pool.c:513)
==49943==    by 0x4E906CE: mem_get0 (mem-pool.c:446)
==49943==    by 0x4E53E86: get_new_dict_full (dict.c:52)
==49943==    by 0x4E53F98: dict_new (dict.c:103)
==49943==    by 0x147D54B7: index_make_xattrop_watchlist (index.c:2202)
==49943==    by 0x147D5ACA: init (index.c:2340)
==49943==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==49943==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==49943==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==49943==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==49943== 
==49943== 244 bytes in 1 blocks are possibly lost in loss record 490 of 718
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x4E908B0: mem_get (mem-pool.c:513)
==49943==    by 0x4E906CE: mem_get0 (mem-pool.c:446)
==49943==    by 0x4E53E86: get_new_dict_full (dict.c:52)
==49943==    by 0x4E53F98: dict_new (dict.c:103)
==49943==    by 0x4E56E8F: dict_copy_with_ref (dict.c:1359)
==49943==    by 0x147D5B09: init (index.c:2346)
==49943==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==49943==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==49943==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==49943==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==49943== 
==49943== 244 bytes in 1 blocks are definitely lost in loss record 491 of 718
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x4E908B0: mem_get (mem-pool.c:513)
==49943==    by 0x4E906CE: mem_get0 (mem-pool.c:446)
==49943==    by 0x4E53E86: get_new_dict_full (dict.c:52)
==49943==    by 0x4E53F98: dict_new (dict.c:103)
==49943==    by 0x132DF0A6: changelog_rpc_server_init (changelog-rpc-common.c:294)
==49943==    by 0x132DDC27: changelog_init_rpc_listner (changelog-rpc.c:175)
==49943==    by 0x132D6D70: changelog_init_rpc (changelog.c:2768)
==49943==    by 0x132D71B1: init (changelog.c:2850)
==49943==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==49943==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==49943== 
==49943== 260 bytes in 1 blocks are possibly lost in loss record 493 of 718
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x4E908B0: mem_get (mem-pool.c:513)
==49943==    by 0x4E906CE: mem_get0 (mem-pool.c:446)
==49943==    by 0x129B92DB: __inode_create (inode.c:600)
==49943==    by 0x129BB331: __inode_table_init_root (inode.c:1560)
==49943==    by 0x129BB6A7: inode_table_new (inode.c:1641)
==49943==    by 0x129CF039: notify (trash.c:2172)
==49943==    by 0x4E5BEC3: xlator_notify (xlator.c:496)
==49943==    by 0x4F12AA0: default_notify (defaults.c:3114)
==49943==    by 0x1218A501: notify (posix.c:6596)
==49943==    by 0x4E5BEC3: xlator_notify (xlator.c:496)
==49943== 
==49943== 260 bytes in 1 blocks are possibly lost in loss record 494 of 718
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x4E908B0: mem_get (mem-pool.c:513)
==49943==    by 0x4E906CE: mem_get0 (mem-pool.c:446)
==49943==    by 0x129B92DB: __inode_create (inode.c:600)
==49943==    by 0x129B9520: inode_new (inode.c:647)
==49943==    by 0x129CF06A: notify (trash.c:2182)
==49943==    by 0x4E5BEC3: xlator_notify (xlator.c:496)
==49943==    by 0x4F12AA0: default_notify (defaults.c:3114)
==49943==    by 0x1218A501: notify (posix.c:6596)
==49943==    by 0x4E5BEC3: xlator_notify (xlator.c:496)
==49943==    by 0x4F129B9: default_notify (defaults.c:3090)
==49943== 
==49943== 260 bytes in 1 blocks are possibly lost in loss record 495 of 718
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x4E908B0: mem_get (mem-pool.c:513)
==49943==    by 0x4E906CE: mem_get0 (mem-pool.c:446)
==49943==    by 0x129B92DB: __inode_create (inode.c:600)
==49943==    by 0x129B9520: inode_new (inode.c:647)
==49943==    by 0x129CF6BB: notify (trash.c:2230)
==49943==    by 0x4E5BEC3: xlator_notify (xlator.c:496)
==49943==    by 0x4F12AA0: default_notify (defaults.c:3114)
==49943==    by 0x1218A501: notify (posix.c:6596)
==49943==    by 0x4E5BEC3: xlator_notify (xlator.c:496)
==49943==    by 0x4F129B9: default_notify (defaults.c:3090)
==49943== 
==49943== 260 bytes in 1 blocks are possibly lost in loss record 496 of 718
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x4E908B0: mem_get (mem-pool.c:513)
==49943==    by 0x4E906CE: mem_get0 (mem-pool.c:446)
==49943==    by 0x129B92DB: __inode_create (inode.c:600)
==49943==    by 0x129B9520: inode_new (inode.c:647)
==49943==    by 0x129BEFB1: trash_notify_mkdir_cbk (trash.c:450)
==49943==    by 0x1216EB15: posix_mkdir (posix.c:1693)
==49943==    by 0x129CFA85: notify (trash.c:2246)
==49943==    by 0x4E5BEC3: xlator_notify (xlator.c:496)
==49943==    by 0x4F12AA0: default_notify (defaults.c:3114)
==49943==    by 0x1218A501: notify (posix.c:6596)
==49943== 
==49943== 260 bytes in 1 blocks are possibly lost in loss record 497 of 718
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x4E908B0: mem_get (mem-pool.c:513)
==49943==    by 0x4E906CE: mem_get0 (mem-pool.c:446)
==49943==    by 0x4E6FE09: __inode_create (inode.c:600)
==49943==    by 0x4E71E5F: __inode_table_init_root (inode.c:1560)
==49943==    by 0x4E721D5: inode_table_new (inode.c:1641)
==49943==    by 0x15096890: server_setvolume (server-handshake.c:740)
==49943==    by 0x514731B: rpcsvc_handle_rpc_call (rpcsvc.c:701)
==49943==    by 0x514766E: rpcsvc_notify (rpcsvc.c:795)
==49943==    by 0x514CD1D: rpc_transport_notify (rpc-transport.c:541)
==49943==    by 0xFEA9D43: socket_event_poll_in (socket.c:2267)
==49943== 
==49943== 260 bytes in 1 blocks are possibly lost in loss record 498 of 718
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x4E908B0: mem_get (mem-pool.c:513)
==49943==    by 0x4E906CE: mem_get0 (mem-pool.c:446)
==49943==    by 0x4E6FE09: __inode_create (inode.c:600)
==49943==    by 0x4E7004E: inode_new (inode.c:647)
==49943==    by 0x1506A05F: server_inode_new (server-helpers.c:1314)
==49943==    by 0x15063F03: resolve_gfid (server-resolve.c:208)
==49943==    by 0x1506484F: server_resolve_inode (server-resolve.c:421)
==49943==    by 0x15064CD4: server_resolve (server-resolve.c:562)
==49943==    by 0x15064E6B: server_resolve_all (server-resolve.c:614)
==49943==    by 0x15064F80: resolve_and_resume (server-resolve.c:645)
==49943== 
==49943== 272 bytes in 1 blocks are possibly lost in loss record 500 of 718
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x514F2E8: saved_frames_new (rpc-clnt.c:257)
==49943==    by 0x5150F0F: rpc_clnt_connection_init (rpc-clnt.c:1090)
==49943==    by 0x5151169: rpc_clnt_new (rpc-clnt.c:1159)
==49943==    by 0x40FE46: glusterfs_mgmt_init (glusterfsd-mgmt.c:2157)
==49943==    by 0x40A412: glusterfs_volumes_init (glusterfsd.c:2365)
==49943==    by 0x40A892: main (glusterfsd.c:2488)
==49943== 
==49943== 272 bytes in 1 blocks are possibly lost in loss record 501 of 718
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x4EEA211: glusterfs_graph_new (graph.y:537)
==49943==    by 0x4EEA2B0: glusterfs_graph_construct (graph.y:560)
==49943==    by 0x40A211: glusterfs_process_volfp (glusterfsd.c:2305)
==49943==    by 0x40ECA5: mgmt_getspec_cbk (glusterfsd-mgmt.c:1648)
==49943==    by 0x51505D2: rpc_clnt_handle_reply (rpc-clnt.c:791)
==49943==    by 0x5150B34: rpc_clnt_notify (rpc-clnt.c:971)
==49943==    by 0x514CD1D: rpc_transport_notify (rpc-transport.c:541)
==49943==    by 0xFEA9D43: socket_event_poll_in (socket.c:2267)
==49943==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943== 
==49943== 272 bytes in 1 blocks are possibly lost in loss record 502 of 718
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x514F2E8: saved_frames_new (rpc-clnt.c:257)
==49943==    by 0x514FD5E: rpc_clnt_connection_cleanup (rpc-clnt.c:537)
==49943==    by 0x5150722: rpc_clnt_handle_disconnect (rpc-clnt.c:881)
==49943==    by 0x51509F9: rpc_clnt_notify (rpc-clnt.c:937)
==49943==    by 0x514CD1D: rpc_transport_notify (rpc-transport.c:541)
==49943==    by 0xFEA5910: socket_event_poll_err (socket.c:1179)
==49943==    by 0xFEAA301: socket_event_handler (socket.c:2404)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943== 
==49943== 272 bytes in 1 blocks are possibly lost in loss record 503 of 718
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x129BB3B7: inode_table_new (inode.c:1578)
==49943==    by 0x129CF039: notify (trash.c:2172)
==49943==    by 0x4E5BEC3: xlator_notify (xlator.c:496)
==49943==    by 0x4F12AA0: default_notify (defaults.c:3114)
==49943==    by 0x1218A501: notify (posix.c:6596)
==49943==    by 0x4E5BEC3: xlator_notify (xlator.c:496)
==49943==    by 0x4F129B9: default_notify (defaults.c:3090)
==49943==    by 0x129D019E: notify (trash.c:2307)
==49943==    by 0x4E5BEC3: xlator_notify (xlator.c:496)
==49943==    by 0x4F129B9: default_notify (defaults.c:3090)
==49943== 
==49943== 272 bytes in 1 blocks are possibly lost in loss record 504 of 718
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x4E71EE5: inode_table_new (inode.c:1578)
==49943==    by 0x15096890: server_setvolume (server-handshake.c:740)
==49943==    by 0x514731B: rpcsvc_handle_rpc_call (rpcsvc.c:701)
==49943==    by 0x514766E: rpcsvc_notify (rpcsvc.c:795)
==49943==    by 0x514CD1D: rpc_transport_notify (rpc-transport.c:541)
==49943==    by 0xFEA9D43: socket_event_poll_in (socket.c:2267)
==49943==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943== 
==49943== 272 bytes in 3 blocks are possibly lost in loss record 505 of 718
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x4E5A1B5: gf_strdup (mem-pool.h:187)
==49943==    by 0x4E5CE3C: loc_copy (xlator.c:882)
==49943==    by 0x143AE02E: mq_synctask1 (marker-quota.c:1066)
==49943==    by 0x143AE199: mq_synctask (marker-quota.c:1097)
==49943==    by 0x143AE6F6: _mq_create_xattrs_txn (marker-quota.c:1236)
==49943==    by 0x143AE82D: mq_create_xattrs_txn (marker-quota.c:1253)
==49943==    by 0x143B0DCB: mq_inspect_directory_xattr (marker-quota.c:2027)
==49943==    by 0x143B13A8: mq_xattr_state (marker-quota.c:2117)
==49943==    by 0x143A6E80: marker_lookup_cbk (marker.c:2961)
==49943==    by 0x141811E0: up_lookup_cbk (upcall.c:753)
==49943== 
==49943== 284 bytes in 1 blocks are definitely lost in loss record 506 of 718
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x4E908B0: mem_get (mem-pool.c:513)
==49943==    by 0x4E906CE: mem_get0 (mem-pool.c:446)
==49943==    by 0x4E9926E: create_frame (stack.c:31)
==49943==    by 0x41068B: glusterfs_mgmt_pmap_signout (glusterfsd-mgmt.c:2380)
==49943==    by 0x4080C9: cleanup_and_exit (glusterfsd.c:1333)
==49943==    by 0x409C1A: glusterfs_sigwaiter (glusterfsd.c:2102)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943== 
==49943== 288 bytes in 1 blocks are possibly lost in loss record 509 of 718
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x514A5C7: rpcsvc_init (rpcsvc.c:2307)
==49943==    by 0x40F93C: glusterfs_listener_init (glusterfsd-mgmt.c:2027)
==49943==    by 0x40A3EC: glusterfs_volumes_init (glusterfsd.c:2359)
==49943==    by 0x40A892: main (glusterfsd.c:2488)
==49943== 
==49943== 288 bytes in 1 blocks are possibly lost in loss record 510 of 718
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x514A5C7: rpcsvc_init (rpcsvc.c:2307)
==49943==    by 0x150622FC: init (server.c:1019)
==49943==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==49943==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==49943==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==49943==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==49943==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==49943==    by 0x40ECA5: mgmt_getspec_cbk (glusterfsd-mgmt.c:1648)
==49943==    by 0x51505D2: rpc_clnt_handle_reply (rpc-clnt.c:791)
==49943==    by 0x5150B34: rpc_clnt_notify (rpc-clnt.c:971)
==49943== 
==49943== 288 bytes in 1 blocks are possibly lost in loss record 511 of 718
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x514A5C7: rpcsvc_init (rpcsvc.c:2307)
==49943==    by 0x132DF0F9: changelog_rpc_server_init (changelog-rpc-common.c:302)
==49943==    by 0x132DDC27: changelog_init_rpc_listner (changelog-rpc.c:175)
==49943==    by 0x132D6D70: changelog_init_rpc (changelog.c:2768)
==49943==    by 0x132D71B1: init (changelog.c:2850)
==49943==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==49943==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==49943==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==49943==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==49943==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==49943== 
==49943== 312 bytes in 2 blocks are possibly lost in loss record 513 of 718
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x4E908B0: mem_get (mem-pool.c:513)
==49943==    by 0x4E906CE: mem_get0 (mem-pool.c:446)
==49943==    by 0x4E6FCB3: __dentry_create (inode.c:562)
==49943==    by 0x4E70B3B: __inode_link (inode.c:1016)
==49943==    by 0x4E70D02: inode_link (inode.c:1060)
==49943==    by 0x149E0E73: quota_build_ancestry_cbk (quota.c:778)
==49943==    by 0x143A79A9: marker_build_ancestry_cbk (marker.c:3055)
==49943==    by 0x14186A63: up_readdir_cbk (upcall.c:1264)
==49943==    by 0x13931DF5: pl_readdirp_cbk (posix.c:2700)
==49943==    by 0x137121B8: posix_acl_readdirp_cbk (posix-acl.c:1714)
==49943== 
==49943== 312 bytes in 2 blocks are possibly lost in loss record 514 of 718
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x4E908B0: mem_get (mem-pool.c:513)
==49943==    by 0x4E906CE: mem_get0 (mem-pool.c:446)
==49943==    by 0x4E6FCB3: __dentry_create (inode.c:562)
==49943==    by 0x4E70B3B: __inode_link (inode.c:1016)
==49943==    by 0x4E70D02: inode_link (inode.c:1060)
==49943==    by 0x15098AD5: server_post_lookup (server-common.c:462)
==49943==    by 0x15077078: server_lookup_cbk (server-rpc-fops.c:141)
==49943==    by 0x14C16C3F: io_stats_lookup_cbk (io-stats.c:2115)
==49943==    by 0x149E3453: quota_lookup_cbk (quota.c:1612)
==49943==    by 0x4F00CDF: default_lookup_cbk (defaults.c:1265)
==49943== 
==49943== 328 bytes in 1 blocks are possibly lost in loss record 516 of 718
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x147D5748: init (index.c:2293)
==49943==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==49943==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==49943==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==49943==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==49943==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==49943==    by 0x40ECA5: mgmt_getspec_cbk (glusterfsd-mgmt.c:1648)
==49943==    by 0x51505D2: rpc_clnt_handle_reply (rpc-clnt.c:791)
==49943==    by 0x5150B34: rpc_clnt_notify (rpc-clnt.c:971)
==49943==    by 0x514CD1D: rpc_transport_notify (rpc-transport.c:541)
==49943== 
==49943== 328 bytes in 1 blocks are possibly lost in loss record 517 of 718
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x1218BD08: init (posix.c:7132)
==49943==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==49943==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==49943==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==49943==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==49943==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==49943==    by 0x40ECA5: mgmt_getspec_cbk (glusterfsd-mgmt.c:1648)
==49943==    by 0x51505D2: rpc_clnt_handle_reply (rpc-clnt.c:791)
==49943==    by 0x5150B34: rpc_clnt_notify (rpc-clnt.c:971)
==49943==    by 0x514CD1D: rpc_transport_notify (rpc-transport.c:541)
==49943== 
==49943== 328 bytes in 2 blocks are definitely lost in loss record 518 of 718
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x4E908B0: mem_get (mem-pool.c:513)
==49943==    by 0x4E906CE: mem_get0 (mem-pool.c:446)
==49943==    by 0x4E53E07: get_new_data (dict.c:40)
==49943==    by 0x4E55CD6: str_to_data (dict.c:860)
==49943==    by 0x4E584A0: dict_set_str (dict.c:2162)
==49943==    by 0x4EA196E: gf_add_cmdline_options (graph.c:260)
==49943==    by 0x4EA2394: glusterfs_graph_prepare (graph.c:523)
==49943==    by 0x40A2F9: glusterfs_process_volfp (glusterfsd.c:2319)
==49943==    by 0x40ECA5: mgmt_getspec_cbk (glusterfsd-mgmt.c:1648)
==49943==    by 0x51505D2: rpc_clnt_handle_reply (rpc-clnt.c:791)
==49943== 
==49943== 328 bytes in 2 blocks are definitely lost in loss record 519 of 718
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x4E908B0: mem_get (mem-pool.c:513)
==49943==    by 0x4E906CE: mem_get0 (mem-pool.c:446)
==49943==    by 0x4E53E07: get_new_data (dict.c:40)
==49943==    by 0x4E55DE3: data_from_dynptr (dict.c:895)
==49943==    by 0x1509732A: init (authenticate.c:103)
==49943==    by 0x4E56B26: dict_foreach_match (dict.c:1236)
==49943==    by 0x4E56A12: dict_foreach (dict.c:1194)
==49943==    by 0x150974B9: gf_auth_init (authenticate.c:149)
==49943==    by 0x1506216C: init (server.c:993)
==49943==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==49943== 
==49943== 328 bytes in 4 blocks are definitely lost in loss record 520 of 718
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x4E5499E: dict_set_lk (dict.c:378)
==49943==    by 0x4E54B82: dict_set (dict.c:424)
==49943==    by 0x4E58180: dict_set_static_ptr (dict.c:2022)
==49943==    by 0x1509639B: server_setvolume (server-handshake.c:666)
==49943==    by 0x514731B: rpcsvc_handle_rpc_call (rpcsvc.c:701)
==49943==    by 0x514766E: rpcsvc_notify (rpcsvc.c:795)
==49943==    by 0x514CD1D: rpc_transport_notify (rpc-transport.c:541)
==49943==    by 0xFEA9D43: socket_event_poll_in (socket.c:2267)
==49943==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943== 
==49943== 336 bytes in 1 blocks are definitely lost in loss record 522 of 718
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x149DF2C0: __quota_init_inode_ctx (quota.c:32)
==49943==    by 0x149DF4C7: quota_inode_ctx_get (quota.c:67)
==49943==    by 0x149E2E0F: quota_fill_inodectx (quota.c:1529)
==49943==    by 0x149E3157: quota_lookup_cbk (quota.c:1606)
==49943==    by 0x4F00CDF: default_lookup_cbk (defaults.c:1265)
==49943==    by 0x143A6D7B: marker_lookup_cbk (marker.c:2945)
==49943==    by 0x141811E0: up_lookup_cbk (upcall.c:753)
==49943==    by 0x13930D5A: pl_lookup_cbk (posix.c:2648)
==49943==    by 0x13708E35: posix_acl_lookup_cbk (posix-acl.c:919)
==49943==    by 0x134FD448: br_stub_lookup_cbk (bit-rot-stub.c:2709)
==49943== 
==49943== 360 bytes in 1 blocks are possibly lost in loss record 524 of 718
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x4E93243: iobuf_create_stdalloc_arena (iobuf.c:367)
==49943==    by 0x4E935BB: iobuf_pool_new (iobuf.c:431)
==49943==    by 0x4084EF: glusterfs_ctx_defaults_init (glusterfsd.c:1473)
==49943==    by 0x40A5BC: main (glusterfsd.c:2413)
==49943== 
==49943== 360 (168 direct, 192 indirect) bytes in 1 blocks are definitely lost in loss record 525 of 718
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x143B1FD6: mq_alloc_inode_ctx (marker-quota-helper.c:136)
==49943==    by 0x143B2D5D: __mq_inode_ctx_new (marker-quota-helper.c:363)
==49943==    by 0x143B2DE8: mq_inode_ctx_new (marker-quota-helper.c:385)
==49943==    by 0x143A6A6C: marker_lookup_cbk (marker.c:2935)
==49943==    by 0x141811E0: up_lookup_cbk (upcall.c:753)
==49943==    by 0x13930D5A: pl_lookup_cbk (posix.c:2648)
==49943==    by 0x13708E35: posix_acl_lookup_cbk (posix-acl.c:919)
==49943==    by 0x134FD448: br_stub_lookup_cbk (bit-rot-stub.c:2709)
==49943==    by 0x12BDC56C: ctr_lookup_cbk (changetimerecorder.c:306)
==49943==    by 0x121659B6: posix_lookup (posix.c:270)
==49943== 
==49943== 360 bytes in 4 blocks are definitely lost in loss record 526 of 718
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0xFEA28F8: gf_strdup (mem-pool.h:187)
==49943==    by 0xFEAB011: socket_server_event_handler (socket.c:2700)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943== 
==49943== 384 (192 direct, 192 indirect) bytes in 1 blocks are definitely lost in loss record 528 of 718
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x5149865: rpcsvc_program_register (rpcsvc.c:1877)
==49943==    by 0x514A859: rpcsvc_init (rpcsvc.c:2349)
==49943==    by 0x132DF0F9: changelog_rpc_server_init (changelog-rpc-common.c:302)
==49943==    by 0x132DDC27: changelog_init_rpc_listner (changelog-rpc.c:175)
==49943==    by 0x132D6D70: changelog_init_rpc (changelog.c:2768)
==49943==    by 0x132D71B1: init (changelog.c:2850)
==49943==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==49943==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==49943==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==49943==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==49943== 
==49943== 384 bytes in 4 blocks are definitely lost in loss record 529 of 718
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x4EC6BFE: gf_client_get (client_t.c:238)
==49943==    by 0x15095B91: server_setvolume (server-handshake.c:524)
==49943==    by 0x514731B: rpcsvc_handle_rpc_call (rpcsvc.c:701)
==49943==    by 0x514766E: rpcsvc_notify (rpcsvc.c:795)
==49943==    by 0x514CD1D: rpc_transport_notify (rpc-transport.c:541)
==49943==    by 0xFEA9D43: socket_event_poll_in (socket.c:2267)
==49943==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943== 
==49943== 432 (144 direct, 288 indirect) bytes in 1 blocks are definitely lost in loss record 534 of 718
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x5144636: rpcsvc_auth_add_initer (rpcsvc-auth.c:35)
==49943==    by 0x5144739: rpcsvc_auth_add_initers (rpcsvc-auth.c:63)
==49943==    by 0x5144F8B: rpcsvc_auth_init (rpcsvc-auth.c:286)
==49943==    by 0x514A796: rpcsvc_init (rpcsvc.c:2334)
==49943==    by 0x132DF0F9: changelog_rpc_server_init (changelog-rpc-common.c:302)
==49943==    by 0x132DDC27: changelog_init_rpc_listner (changelog-rpc.c:175)
==49943==    by 0x132D6D70: changelog_init_rpc (changelog.c:2768)
==49943==    by 0x132D71B1: init (changelog.c:2850)
==49943==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==49943==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==49943== 
==49943== 436 bytes in 4 blocks are definitely lost in loss record 535 of 718
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x150650A7: gf_strdup (mem-pool.h:187)
==49943==    by 0x15069F68: auth_set_username_passwd (server-helpers.c:1288)
==49943==    by 0x15095D25: server_setvolume (server-handshake.c:553)
==49943==    by 0x514731B: rpcsvc_handle_rpc_call (rpcsvc.c:701)
==49943==    by 0x514766E: rpcsvc_notify (rpcsvc.c:795)
==49943==    by 0x514CD1D: rpc_transport_notify (rpc-transport.c:541)
==49943==    by 0xFEA9D43: socket_event_poll_in (socket.c:2267)
==49943==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943== 
==49943== 436 bytes in 4 blocks are definitely lost in loss record 536 of 718
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x150650A7: gf_strdup (mem-pool.h:187)
==49943==    by 0x15069F7F: auth_set_username_passwd (server-helpers.c:1290)
==49943==    by 0x15095D25: server_setvolume (server-handshake.c:553)
==49943==    by 0x514731B: rpcsvc_handle_rpc_call (rpcsvc.c:701)
==49943==    by 0x514766E: rpcsvc_notify (rpcsvc.c:795)
==49943==    by 0x514CD1D: rpc_transport_notify (rpc-transport.c:541)
==49943==    by 0xFEA9D43: socket_event_poll_in (socket.c:2267)
==49943==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943== 
==49943== 440 bytes in 1 blocks are possibly lost in loss record 537 of 718
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x515100F: rpc_clnt_new (rpc-clnt.c:1126)
==49943==    by 0x40FE46: glusterfs_mgmt_init (glusterfsd-mgmt.c:2157)
==49943==    by 0x40A412: glusterfs_volumes_init (glusterfsd.c:2365)
==49943==    by 0x40A892: main (glusterfsd.c:2488)
==49943== 
==49943== 440 bytes in 1 blocks are possibly lost in loss record 538 of 718
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x515100F: rpc_clnt_new (rpc-clnt.c:1126)
==49943==    by 0x14A014DE: quota_enforcer_init (quota-enforcer-client.c:451)
==49943==    by 0x149FF51D: init (quota.c:5127)
==49943==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==49943==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==49943==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==49943==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==49943==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==49943==    by 0x40ECA5: mgmt_getspec_cbk (glusterfsd-mgmt.c:1648)
==49943==    by 0x51505D2: rpc_clnt_handle_reply (rpc-clnt.c:791)
==49943== 
==49943== 520 bytes in 2 blocks are possibly lost in loss record 542 of 718
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x4E908B0: mem_get (mem-pool.c:513)
==49943==    by 0x4E906CE: mem_get0 (mem-pool.c:446)
==49943==    by 0x4E6FE09: __inode_create (inode.c:600)
==49943==    by 0x4E7004E: inode_new (inode.c:647)
==49943==    by 0x1506A05F: server_inode_new (server-helpers.c:1314)
==49943==    by 0x150877CF: server_lookup_resume (server-rpc-fops.c:3108)
==49943==    by 0x15064DE8: server_resolve_done (server-resolve.c:590)
==49943==    by 0x15064EE9: server_resolve_all (server-resolve.c:625)
==49943==    by 0x15064D8F: server_resolve (server-resolve.c:574)
==49943==    by 0x15064EC0: server_resolve_all (server-resolve.c:621)
==49943== 
==49943== 528 bytes in 1 blocks are possibly lost in loss record 545 of 718
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0xFEAE076: socket_init (socket.c:3833)
==49943==    by 0xFEAF578: init (socket.c:4290)
==49943==    by 0x514C3DE: rpc_transport_load (rpc-transport.c:351)
==49943==    by 0x5149213: rpcsvc_create_listener (rpcsvc.c:1664)
==49943==    by 0x514955C: rpcsvc_create_listeners (rpcsvc.c:1757)
==49943==    by 0x40F98A: glusterfs_listener_init (glusterfsd-mgmt.c:2037)
==49943==    by 0x40A3EC: glusterfs_volumes_init (glusterfsd.c:2359)
==49943==    by 0x40A892: main (glusterfsd.c:2488)
==49943== 
==49943== 528 bytes in 1 blocks are possibly lost in loss record 546 of 718
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0xFEAE076: socket_init (socket.c:3833)
==49943==    by 0xFEAF578: init (socket.c:4290)
==49943==    by 0x514C3DE: rpc_transport_load (rpc-transport.c:351)
==49943==    by 0x5150E30: rpc_clnt_connection_init (rpc-clnt.c:1067)
==49943==    by 0x5151169: rpc_clnt_new (rpc-clnt.c:1159)
==49943==    by 0x40FE46: glusterfs_mgmt_init (glusterfsd-mgmt.c:2157)
==49943==    by 0x40A412: glusterfs_volumes_init (glusterfsd.c:2365)
==49943==    by 0x40A892: main (glusterfsd.c:2488)
==49943== 
==49943== 528 bytes in 1 blocks are possibly lost in loss record 547 of 718
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0xFEAE076: socket_init (socket.c:3833)
==49943==    by 0xFEAF578: init (socket.c:4290)
==49943==    by 0x514C3DE: rpc_transport_load (rpc-transport.c:351)
==49943==    by 0x5149213: rpcsvc_create_listener (rpcsvc.c:1664)
==49943==    by 0x514955C: rpcsvc_create_listeners (rpcsvc.c:1757)
==49943==    by 0x1506250B: init (server.c:1056)
==49943==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==49943==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==49943==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==49943==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==49943== 
==49943== 528 bytes in 1 blocks are possibly lost in loss record 548 of 718
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0xFEAE076: socket_init (socket.c:3833)
==49943==    by 0xFEAF578: init (socket.c:4290)
==49943==    by 0x514C3DE: rpc_transport_load (rpc-transport.c:351)
==49943==    by 0x5150E30: rpc_clnt_connection_init (rpc-clnt.c:1067)
==49943==    by 0x5151169: rpc_clnt_new (rpc-clnt.c:1159)
==49943==    by 0x14A014DE: quota_enforcer_init (quota-enforcer-client.c:451)
==49943==    by 0x149FF51D: init (quota.c:5127)
==49943==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==49943==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==49943==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==49943== 
==49943== 528 bytes in 1 blocks are possibly lost in loss record 549 of 718
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0xFEAE076: socket_init (socket.c:3833)
==49943==    by 0xFEAB118: socket_server_event_handler (socket.c:2723)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943== 
==49943== 528 bytes in 1 blocks are definitely lost in loss record 550 of 718
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0xFEAE076: socket_init (socket.c:3833)
==49943==    by 0xFEAF578: init (socket.c:4290)
==49943==    by 0x514C3DE: rpc_transport_load (rpc-transport.c:351)
==49943==    by 0x5149213: rpcsvc_create_listener (rpcsvc.c:1664)
==49943==    by 0x514955C: rpcsvc_create_listeners (rpcsvc.c:1757)
==49943==    by 0x132DF1E6: changelog_rpc_server_init (changelog-rpc-common.c:318)
==49943==    by 0x132DDC27: changelog_init_rpc_listner (changelog-rpc.c:175)
==49943==    by 0x132D6D70: changelog_init_rpc (changelog.c:2768)
==49943==    by 0x132D71B1: init (changelog.c:2850)
==49943==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==49943== 
==49943== 528 bytes in 1 blocks are definitely lost in loss record 551 of 718
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x129B93F4: __inode_create (inode.c:614)
==49943==    by 0x129BB331: __inode_table_init_root (inode.c:1560)
==49943==    by 0x129BB6A7: inode_table_new (inode.c:1641)
==49943==    by 0x129CF039: notify (trash.c:2172)
==49943==    by 0x4E5BEC3: xlator_notify (xlator.c:496)
==49943==    by 0x4F12AA0: default_notify (defaults.c:3114)
==49943==    by 0x1218A501: notify (posix.c:6596)
==49943==    by 0x4E5BEC3: xlator_notify (xlator.c:496)
==49943==    by 0x4F129B9: default_notify (defaults.c:3090)
==49943==    by 0x129D019E: notify (trash.c:2307)
==49943== 
==49943== 528 bytes in 1 blocks are definitely lost in loss record 552 of 718
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x129B93F4: __inode_create (inode.c:614)
==49943==    by 0x129B9520: inode_new (inode.c:647)
==49943==    by 0x129CF06A: notify (trash.c:2182)
==49943==    by 0x4E5BEC3: xlator_notify (xlator.c:496)
==49943==    by 0x4F12AA0: default_notify (defaults.c:3114)
==49943==    by 0x1218A501: notify (posix.c:6596)
==49943==    by 0x4E5BEC3: xlator_notify (xlator.c:496)
==49943==    by 0x4F129B9: default_notify (defaults.c:3090)
==49943==    by 0x129D019E: notify (trash.c:2307)
==49943==    by 0x4E5BEC3: xlator_notify (xlator.c:496)
==49943== 
==49943== 528 bytes in 1 blocks are definitely lost in loss record 553 of 718
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x129B93F4: __inode_create (inode.c:614)
==49943==    by 0x129B9520: inode_new (inode.c:647)
==49943==    by 0x129CF6BB: notify (trash.c:2230)
==49943==    by 0x4E5BEC3: xlator_notify (xlator.c:496)
==49943==    by 0x4F12AA0: default_notify (defaults.c:3114)
==49943==    by 0x1218A501: notify (posix.c:6596)
==49943==    by 0x4E5BEC3: xlator_notify (xlator.c:496)
==49943==    by 0x4F129B9: default_notify (defaults.c:3090)
==49943==    by 0x129D019E: notify (trash.c:2307)
==49943==    by 0x4E5BEC3: xlator_notify (xlator.c:496)
==49943== 
==49943== 528 bytes in 1 blocks are definitely lost in loss record 554 of 718
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x129B93F4: __inode_create (inode.c:614)
==49943==    by 0x129B9520: inode_new (inode.c:647)
==49943==    by 0x129BEFB1: trash_notify_mkdir_cbk (trash.c:450)
==49943==    by 0x1216EB15: posix_mkdir (posix.c:1693)
==49943==    by 0x129CFA85: notify (trash.c:2246)
==49943==    by 0x4E5BEC3: xlator_notify (xlator.c:496)
==49943==    by 0x4F12AA0: default_notify (defaults.c:3114)
==49943==    by 0x1218A501: notify (posix.c:6596)
==49943==    by 0x4E5BEC3: xlator_notify (xlator.c:496)
==49943==    by 0x4F129B9: default_notify (defaults.c:3090)
==49943== 
==49943== 541 bytes in 1 blocks are possibly lost in loss record 555 of 718
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x4052E4: gf_strdup (mem-pool.h:187)
==49943==    by 0x40A78A: main (glusterfsd.c:2456)
==49943== 
==49943== 544 bytes in 4 blocks are definitely lost in loss record 556 of 718
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x15069B1D: server_ctx_get (server-helpers.c:1178)
==49943==    by 0x15069969: server_cancel_grace_timer (server-helpers.c:1136)
==49943==    by 0x15095C21: server_setvolume (server-handshake.c:532)
==49943==    by 0x514731B: rpcsvc_handle_rpc_call (rpcsvc.c:701)
==49943==    by 0x514766E: rpcsvc_notify (rpcsvc.c:795)
==49943==    by 0x514CD1D: rpc_transport_notify (rpc-transport.c:541)
==49943==    by 0xFEA9D43: socket_event_poll_in (socket.c:2267)
==49943==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943== 
==49943== 552 bytes in 4 blocks are definitely lost in loss record 557 of 718
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x4EC62A5: gf_strdup (mem-pool.h:187)
==49943==    by 0x4EC6AFB: gf_client_get (client_t.c:212)
==49943==    by 0x15095B91: server_setvolume (server-handshake.c:524)
==49943==    by 0x514731B: rpcsvc_handle_rpc_call (rpcsvc.c:701)
==49943==    by 0x514766E: rpcsvc_notify (rpcsvc.c:795)
==49943==    by 0x514CD1D: rpc_transport_notify (rpc-transport.c:541)
==49943==    by 0xFEA9D43: socket_event_poll_in (socket.c:2267)
==49943==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943== 
==49943== 560 bytes in 4 blocks are definitely lost in loss record 559 of 718
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x4E908B0: mem_get (mem-pool.c:513)
==49943==    by 0x4E906CE: mem_get0 (mem-pool.c:446)
==49943==    by 0x4E54919: dict_set_lk (dict.c:360)
==49943==    by 0x4E54B82: dict_set (dict.c:424)
==49943==    by 0x4E58180: dict_set_static_ptr (dict.c:2022)
==49943==    by 0x1509639B: server_setvolume (server-handshake.c:666)
==49943==    by 0x514731B: rpcsvc_handle_rpc_call (rpcsvc.c:701)
==49943==    by 0x514766E: rpcsvc_notify (rpcsvc.c:795)
==49943==    by 0x514CD1D: rpc_transport_notify (rpc-transport.c:541)
==49943==    by 0xFEA9D43: socket_event_poll_in (socket.c:2267)
==49943== 
==49943== 576 bytes in 1 blocks are possibly lost in loss record 561 of 718
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4011C24: _dl_allocate_tls (in /usr/lib64/ld-2.17.so)
==49943==    by 0x60B3960: pthread_create@@GLIBC_2.2.5 (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x4E6BC49: gf_thread_create (common-utils.c:3554)
==49943==    by 0x4E6E474: gf_timer_registry_init (timer.c:236)
==49943==    by 0x4E6DB1A: gf_timer_call_after (timer.c:40)
==49943==    by 0x4E61A3D: __gf_log_inject_timer_event (logging.c:1792)
==49943==    by 0x4E61AA5: gf_log_inject_timer_event (logging.c:1814)
==49943==    by 0x40A0DA: daemonize (glusterfsd.c:2247)
==49943==    by 0x40A7C5: main (glusterfsd.c:2465)
==49943== 
==49943== 576 bytes in 1 blocks are possibly lost in loss record 562 of 718
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4011C24: _dl_allocate_tls (in /usr/lib64/ld-2.17.so)
==49943==    by 0x60B3960: pthread_create@@GLIBC_2.2.5 (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x409E09: glusterfs_signals_setup (glusterfsd.c:2160)
==49943==    by 0x40A0E9: daemonize (glusterfsd.c:2249)
==49943==    by 0x40A7C5: main (glusterfsd.c:2465)
==49943== 
==49943== 608 bytes in 1 blocks are definitely lost in loss record 565 of 718
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4011C24: _dl_allocate_tls (in /usr/lib64/ld-2.17.so)
==49943==    by 0x60B3960: pthread_create@@GLIBC_2.2.5 (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x4ECB3DE: event_dispatch_epoll (event-epoll.c:726)
==49943==    by 0x4E8EEB9: event_dispatch (event.c:124)
==49943==    by 0x40A8B0: main (glusterfsd.c:2492)
==49943== 
==49943== 608 bytes in 1 blocks are definitely lost in loss record 566 of 718
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4011C24: _dl_allocate_tls (in /usr/lib64/ld-2.17.so)
==49943==    by 0x60B3960: pthread_create@@GLIBC_2.2.5 (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x4ECB65F: event_reconfigure_threads_epoll (event-epoll.c:834)
==49943==    by 0x4E8EF5B: event_reconfigure_threads (event.c:140)
==49943==    by 0x150611A3: server_check_event_threads (server.c:702)
==49943==    by 0x15061F17: init (server.c:946)
==49943==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==49943==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==49943==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==49943==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==49943==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==49943== 
==49943== 608 bytes in 1 blocks are definitely lost in loss record 567 of 718
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4011C24: _dl_allocate_tls (in /usr/lib64/ld-2.17.so)
==49943==    by 0x60B3960: pthread_create@@GLIBC_2.2.5 (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x4E6BC49: gf_thread_create (common-utils.c:3554)
==49943==    by 0x147D5CE1: init (index.c:2383)
==49943==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==49943==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==49943==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==49943==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==49943==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==49943==    by 0x40ECA5: mgmt_getspec_cbk (glusterfsd-mgmt.c:1648)
==49943==    by 0x51505D2: rpc_clnt_handle_reply (rpc-clnt.c:791)
==49943== 
==49943== 608 bytes in 1 blocks are definitely lost in loss record 568 of 718
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4011C24: _dl_allocate_tls (in /usr/lib64/ld-2.17.so)
==49943==    by 0x60B3960: pthread_create@@GLIBC_2.2.5 (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x4E6BC49: gf_thread_create (common-utils.c:3554)
==49943==    by 0x134EF4AE: init (bit-rot-stub.c:162)
==49943==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==49943==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==49943==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==49943==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==49943==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==49943==    by 0x40ECA5: mgmt_getspec_cbk (glusterfsd-mgmt.c:1648)
==49943==    by 0x51505D2: rpc_clnt_handle_reply (rpc-clnt.c:791)
==49943== 
==49943== 608 bytes in 1 blocks are definitely lost in loss record 569 of 718
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4011C24: _dl_allocate_tls (in /usr/lib64/ld-2.17.so)
==49943==    by 0x60B3960: pthread_create@@GLIBC_2.2.5 (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x4E6BC49: gf_thread_create (common-utils.c:3554)
==49943==    by 0x134EF1B4: br_stub_bad_object_container_init (bit-rot-stub.c:99)
==49943==    by 0x134EF4CF: init (bit-rot-stub.c:166)
==49943==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==49943==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==49943==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==49943==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==49943==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==49943==    by 0x40ECA5: mgmt_getspec_cbk (glusterfsd-mgmt.c:1648)
==49943== 
==49943== 608 bytes in 1 blocks are definitely lost in loss record 570 of 718
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4011C24: _dl_allocate_tls (in /usr/lib64/ld-2.17.so)
==49943==    by 0x60B3960: pthread_create@@GLIBC_2.2.5 (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x132DD85C: changelog_init_rpc_threads (changelog-rpc.c:99)
==49943==    by 0x132DDB5E: changelog_init_rpc_listner (changelog-rpc.c:169)
==49943==    by 0x132D6D70: changelog_init_rpc (changelog.c:2768)
==49943==    by 0x132D71B1: init (changelog.c:2850)
==49943==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==49943==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==49943==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==49943==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==49943==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==49943== 
==49943== 608 bytes in 1 blocks are definitely lost in loss record 571 of 718
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4011C24: _dl_allocate_tls (in /usr/lib64/ld-2.17.so)
==49943==    by 0x60B3960: pthread_create@@GLIBC_2.2.5 (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x4E6BC49: gf_thread_create (common-utils.c:3554)
==49943==    by 0x1219283B: posix_spawn_health_check_thread (posix-helpers.c:1927)
==49943==    by 0x1218C994: init (posix.c:7329)
==49943==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==49943==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==49943==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==49943==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==49943==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==49943==    by 0x40ECA5: mgmt_getspec_cbk (glusterfsd-mgmt.c:1648)
==49943== 
==49943== 608 bytes in 1 blocks are definitely lost in loss record 572 of 718
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4011C24: _dl_allocate_tls (in /usr/lib64/ld-2.17.so)
==49943==    by 0x60B3960: pthread_create@@GLIBC_2.2.5 (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x4E6BC49: gf_thread_create (common-utils.c:3554)
==49943==    by 0x121914C9: posix_spawn_janitor_thread (posix-helpers.c:1469)
==49943==    by 0x1218C9EF: init (posix.c:7335)
==49943==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==49943==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==49943==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==49943==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==49943==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==49943==    by 0x40ECA5: mgmt_getspec_cbk (glusterfsd-mgmt.c:1648)
==49943== 
==49943== 608 bytes in 1 blocks are definitely lost in loss record 573 of 718
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4011C24: _dl_allocate_tls (in /usr/lib64/ld-2.17.so)
==49943==    by 0x60B3960: pthread_create@@GLIBC_2.2.5 (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x4E6BC49: gf_thread_create (common-utils.c:3554)
==49943==    by 0x1218CA72: init (posix.c:7341)
==49943==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==49943==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==49943==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==49943==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==49943==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==49943==    by 0x40ECA5: mgmt_getspec_cbk (glusterfsd-mgmt.c:1648)
==49943==    by 0x51505D2: rpc_clnt_handle_reply (rpc-clnt.c:791)
==49943== 
==49943== 656 bytes in 4 blocks are definitely lost in loss record 576 of 718
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x4E908B0: mem_get (mem-pool.c:513)
==49943==    by 0x4E906CE: mem_get0 (mem-pool.c:446)
==49943==    by 0x4E53E07: get_new_data (dict.c:40)
==49943==    by 0x4E55C27: data_from_ptr_common (dict.c:841)
==49943==    by 0x4E58155: dict_set_static_ptr (dict.c:2016)
==49943==    by 0x1509639B: server_setvolume (server-handshake.c:666)
==49943==    by 0x514731B: rpcsvc_handle_rpc_call (rpcsvc.c:701)
==49943==    by 0x514766E: rpcsvc_notify (rpcsvc.c:795)
==49943==    by 0x514CD1D: rpc_transport_notify (rpc-transport.c:541)
==49943==    by 0xFEA9D43: socket_event_poll_in (socket.c:2267)
==49943== 
==49943== 712 bytes in 1 blocks are possibly lost in loss record 581 of 718
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x1218BB7F: init (posix.c:7083)
==49943==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==49943==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==49943==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==49943==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==49943==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==49943==    by 0x40ECA5: mgmt_getspec_cbk (glusterfsd-mgmt.c:1648)
==49943==    by 0x51505D2: rpc_clnt_handle_reply (rpc-clnt.c:791)
==49943==    by 0x5150B34: rpc_clnt_notify (rpc-clnt.c:971)
==49943==    by 0x514CD1D: rpc_transport_notify (rpc-transport.c:541)
==49943== 
==49943== 736 bytes in 4 blocks are possibly lost in loss record 583 of 718
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x143ADF8B: mq_synctask1 (marker-quota.c:1057)
==49943==    by 0x143AE199: mq_synctask (marker-quota.c:1097)
==49943==    by 0x143AE6F6: _mq_create_xattrs_txn (marker-quota.c:1236)
==49943==    by 0x143AE82D: mq_create_xattrs_txn (marker-quota.c:1253)
==49943==    by 0x143B0DCB: mq_inspect_directory_xattr (marker-quota.c:2027)
==49943==    by 0x143B13A8: mq_xattr_state (marker-quota.c:2117)
==49943==    by 0x143A6E80: marker_lookup_cbk (marker.c:2961)
==49943==    by 0x141811E0: up_lookup_cbk (upcall.c:753)
==49943==    by 0x13930D5A: pl_lookup_cbk (posix.c:2648)
==49943==    by 0x13708E35: posix_acl_lookup_cbk (posix-acl.c:919)
==49943== 
==49943== 800 bytes in 4 blocks are definitely lost in loss record 585 of 718
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x4EC6B5F: gf_client_get (client_t.c:221)
==49943==    by 0x15095B91: server_setvolume (server-handshake.c:524)
==49943==    by 0x514731B: rpcsvc_handle_rpc_call (rpcsvc.c:701)
==49943==    by 0x514766E: rpcsvc_notify (rpcsvc.c:795)
==49943==    by 0x514CD1D: rpc_transport_notify (rpc-transport.c:541)
==49943==    by 0xFEA9D43: socket_event_poll_in (socket.c:2267)
==49943==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943== 
==49943== 832 bytes in 8 blocks are possibly lost in loss record 586 of 718
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x14C26F53: ios_init_top_stats (io-stats.c:3331)
==49943==    by 0x14C280A3: init (io-stats.c:3658)
==49943==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==49943==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==49943==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==49943==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==49943==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==49943==    by 0x40ECA5: mgmt_getspec_cbk (glusterfsd-mgmt.c:1648)
==49943==    by 0x51505D2: rpc_clnt_handle_reply (rpc-clnt.c:791)
==49943==    by 0x5150B34: rpc_clnt_notify (rpc-clnt.c:971)
==49943== 
==49943== 872 bytes in 1 blocks are definitely lost in loss record 589 of 718
==49943==    at 0x4C27BE3: malloc (vg_replace_malloc.c:299)
==49943==    by 0x130402E6: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==49943==    by 0x1301B6A9: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==49943==    by 0x13023A25: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==49943==    by 0x13023A4C: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==49943==    by 0x13059775: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==49943==    by 0x1309E1B6: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==49943==    by 0x12E01B48: gf_open_sqlite3_conn (gfdb_sqlite3.c:192)
==49943==    by 0x12E02CAF: gf_sqlite3_init (gfdb_sqlite3.c:440)
==49943==    by 0x12DF97B5: init_db (gfdb_data_store.c:270)
==49943==    by 0x12BEA41F: init (changetimerecorder.c:2118)
==49943==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==49943== 
==49943== 976 bytes in 4 blocks are definitely lost in loss record 594 of 718
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x4E908B0: mem_get (mem-pool.c:513)
==49943==    by 0x4E906CE: mem_get0 (mem-pool.c:446)
==49943==    by 0x4E53E86: get_new_dict_full (dict.c:52)
==49943==    by 0x4E53F98: dict_new (dict.c:103)
==49943==    by 0x15095763: server_setvolume (server-handshake.c:434)
==49943==    by 0x514731B: rpcsvc_handle_rpc_call (rpcsvc.c:701)
==49943==    by 0x514766E: rpcsvc_notify (rpcsvc.c:795)
==49943==    by 0x514CD1D: rpc_transport_notify (rpc-transport.c:541)
==49943==    by 0xFEA9D43: socket_event_poll_in (socket.c:2267)
==49943==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==49943== 
==49943== 992 bytes in 4 blocks are possibly lost in loss record 596 of 718
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x4EC6A5E: gf_client_get (client_t.c:201)
==49943==    by 0x15095B91: server_setvolume (server-handshake.c:524)
==49943==    by 0x514731B: rpcsvc_handle_rpc_call (rpcsvc.c:701)
==49943==    by 0x514766E: rpcsvc_notify (rpcsvc.c:795)
==49943==    by 0x514CD1D: rpc_transport_notify (rpc-transport.c:541)
==49943==    by 0xFEA9D43: socket_event_poll_in (socket.c:2267)
==49943==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943== 
==49943== 1,136 bytes in 4 blocks are possibly lost in loss record 601 of 718
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x4E908B0: mem_get (mem-pool.c:513)
==49943==    by 0x4E906CE: mem_get0 (mem-pool.c:446)
==49943==    by 0x4E9926E: create_frame (stack.c:31)
==49943==    by 0x4EA4EAD: synctask_create (syncop.c:469)
==49943==    by 0x4EA527F: synctask_new1 (syncop.c:571)
==49943==    by 0x143AE0D7: mq_synctask1 (marker-quota.c:1078)
==49943==    by 0x143AE199: mq_synctask (marker-quota.c:1097)
==49943==    by 0x143AE6F6: _mq_create_xattrs_txn (marker-quota.c:1236)
==49943==    by 0x143AE82D: mq_create_xattrs_txn (marker-quota.c:1253)
==49943==    by 0x143B0DCB: mq_inspect_directory_xattr (marker-quota.c:2027)
==49943== 
==49943== 1,152 bytes in 2 blocks are definitely lost in loss record 602 of 718
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4011C24: _dl_allocate_tls (in /usr/lib64/ld-2.17.so)
==49943==    by 0x60B3960: pthread_create@@GLIBC_2.2.5 (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x4E6BC49: gf_thread_create (common-utils.c:3554)
==49943==    by 0x4EA5A86: syncenv_new (syncop.c:827)
==49943==    by 0x40A801: main (glusterfsd.c:2475)
==49943== 
==49943== 1,184 bytes in 4 blocks are possibly lost in loss record 604 of 718
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x4EE1AC1: rbuf_init (rot-buffs.c:199)
==49943==    by 0x132D6D33: changelog_init_rpc (changelog.c:2764)
==49943==    by 0x132D71B1: init (changelog.c:2850)
==49943==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==49943==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==49943==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==49943==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==49943==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==49943==    by 0x40ECA5: mgmt_getspec_cbk (glusterfsd-mgmt.c:1648)
==49943==    by 0x51505D2: rpc_clnt_handle_reply (rpc-clnt.c:791)
==49943== 
==49943== 1,224 bytes in 1 blocks are possibly lost in loss record 607 of 718
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x132D6F50: init (changelog.c:2808)
==49943==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==49943==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==49943==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==49943==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==49943==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==49943==    by 0x40ECA5: mgmt_getspec_cbk (glusterfsd-mgmt.c:1648)
==49943==    by 0x51505D2: rpc_clnt_handle_reply (rpc-clnt.c:791)
==49943==    by 0x5150B34: rpc_clnt_notify (rpc-clnt.c:971)
==49943==    by 0x514CD1D: rpc_transport_notify (rpc-transport.c:541)
==49943== 
==49943== 1,344 (528 direct, 816 indirect) bytes in 1 blocks are definitely lost in loss record 611 of 718
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x4E6FF22: __inode_create (inode.c:614)
==49943==    by 0x4E71E5F: __inode_table_init_root (inode.c:1560)
==49943==    by 0x4E721D5: inode_table_new (inode.c:1641)
==49943==    by 0x15096890: server_setvolume (server-handshake.c:740)
==49943==    by 0x514731B: rpcsvc_handle_rpc_call (rpcsvc.c:701)
==49943==    by 0x514766E: rpcsvc_notify (rpcsvc.c:795)
==49943==    by 0x514CD1D: rpc_transport_notify (rpc-transport.c:541)
==49943==    by 0xFEA9D43: socket_event_poll_in (socket.c:2267)
==49943==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943== 
==49943== 1,496 bytes in 17 blocks are possibly lost in loss record 614 of 718
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x4EA138B: glusterfs_xlator_link (graph.c:80)
==49943==    by 0x4EE9825: volume_sub (graph.y:300)
==49943==    by 0x4EE8A57: graphyyparse (graph.y:73)
==49943==    by 0x4EEA42D: glusterfs_graph_construct (graph.y:590)
==49943==    by 0x40A211: glusterfs_process_volfp (glusterfsd.c:2305)
==49943==    by 0x40ECA5: mgmt_getspec_cbk (glusterfsd-mgmt.c:1648)
==49943==    by 0x51505D2: rpc_clnt_handle_reply (rpc-clnt.c:791)
==49943==    by 0x5150B34: rpc_clnt_notify (rpc-clnt.c:971)
==49943==    by 0x514CD1D: rpc_transport_notify (rpc-transport.c:541)
==49943==    by 0xFEA9D43: socket_event_poll_in (socket.c:2267)
==49943== 
==49943== 1,496 bytes in 17 blocks are possibly lost in loss record 615 of 718
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x4EA13BB: glusterfs_xlator_link (graph.c:85)
==49943==    by 0x4EE9825: volume_sub (graph.y:300)
==49943==    by 0x4EE8A57: graphyyparse (graph.y:73)
==49943==    by 0x4EEA42D: glusterfs_graph_construct (graph.y:590)
==49943==    by 0x40A211: glusterfs_process_volfp (glusterfsd.c:2305)
==49943==    by 0x40ECA5: mgmt_getspec_cbk (glusterfsd-mgmt.c:1648)
==49943==    by 0x51505D2: rpc_clnt_handle_reply (rpc-clnt.c:791)
==49943==    by 0x5150B34: rpc_clnt_notify (rpc-clnt.c:971)
==49943==    by 0x514CD1D: rpc_transport_notify (rpc-transport.c:541)
==49943==    by 0xFEA9D43: socket_event_poll_in (socket.c:2267)
==49943== 
==49943== 1,583 bytes in 18 blocks are possibly lost in loss record 618 of 718
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x4EE857A: gf_strdup (mem-pool.h:187)
==49943==    by 0x4EE913E: new_volume (graph.y:160)
==49943==    by 0x4EE89B6: graphyyparse (graph.y:52)
==49943==    by 0x4EEA42D: glusterfs_graph_construct (graph.y:590)
==49943==    by 0x40A211: glusterfs_process_volfp (glusterfsd.c:2305)
==49943==    by 0x40ECA5: mgmt_getspec_cbk (glusterfsd-mgmt.c:1648)
==49943==    by 0x51505D2: rpc_clnt_handle_reply (rpc-clnt.c:791)
==49943==    by 0x5150B34: rpc_clnt_notify (rpc-clnt.c:971)
==49943==    by 0x514CD1D: rpc_transport_notify (rpc-transport.c:541)
==49943==    by 0xFEA9D43: socket_event_poll_in (socket.c:2267)
==49943== 
==49943== 1,616 bytes in 18 blocks are possibly lost in loss record 619 of 718
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x4E5A1B5: gf_strdup (mem-pool.h:187)
==49943==    by 0x4E5ABB2: xlator_set_type_virtual (xlator.c:110)
==49943==    by 0x4E5B626: xlator_set_type (xlator.c:293)
==49943==    by 0x4EE9362: volume_type (graph.y:207)
==49943==    by 0x4EE89E8: graphyyparse (graph.y:63)
==49943==    by 0x4EEA42D: glusterfs_graph_construct (graph.y:590)
==49943==    by 0x40A211: glusterfs_process_volfp (glusterfsd.c:2305)
==49943==    by 0x40ECA5: mgmt_getspec_cbk (glusterfsd-mgmt.c:1648)
==49943==    by 0x51505D2: rpc_clnt_handle_reply (rpc-clnt.c:791)
==49943==    by 0x5150B34: rpc_clnt_notify (rpc-clnt.c:971)
==49943== 
==49943== 1,712 bytes in 1 blocks are definitely lost in loss record 623 of 718
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0xFEADF05: init_openssl_mt (socket.c:3791)
==49943==    by 0x400F1E2: _dl_init (in /usr/lib64/ld-2.17.so)
==49943==    by 0x40138F5: dl_open_worker (in /usr/lib64/ld-2.17.so)
==49943==    by 0x400EFF3: _dl_catch_error (in /usr/lib64/ld-2.17.so)
==49943==    by 0x4012FEA: _dl_open (in /usr/lib64/ld-2.17.so)
==49943==    by 0x5EA7FBA: dlopen_doit (in /usr/lib64/libdl-2.17.so)
==49943==    by 0x400EFF3: _dl_catch_error (in /usr/lib64/ld-2.17.so)
==49943==    by 0x5EA85BC: _dlerror_run (in /usr/lib64/libdl-2.17.so)
==49943==    by 0x5EA8050: dlopen@@GLIBC_2.2.5 (in /usr/lib64/libdl-2.17.so)
==49943==    by 0x514C026: rpc_transport_load (rpc-transport.c:285)
==49943== 
==49943== 1,728 bytes in 18 blocks are possibly lost in loss record 624 of 718
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x4E5B515: xlator_dynload (xlator.c:263)
==49943==    by 0x4E5B63B: xlator_set_type (xlator.c:295)
==49943==    by 0x4EE9362: volume_type (graph.y:207)
==49943==    by 0x4EE89E8: graphyyparse (graph.y:63)
==49943==    by 0x4EEA42D: glusterfs_graph_construct (graph.y:590)
==49943==    by 0x40A211: glusterfs_process_volfp (glusterfsd.c:2305)
==49943==    by 0x40ECA5: mgmt_getspec_cbk (glusterfsd-mgmt.c:1648)
==49943==    by 0x51505D2: rpc_clnt_handle_reply (rpc-clnt.c:791)
==49943==    by 0x5150B34: rpc_clnt_notify (rpc-clnt.c:971)
==49943==    by 0x514CD1D: rpc_transport_notify (rpc-transport.c:541)
==49943== 
==49943== 1,824 bytes in 3 blocks are definitely lost in loss record 625 of 718
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4011C24: _dl_allocate_tls (in /usr/lib64/ld-2.17.so)
==49943==    by 0x60B3960: pthread_create@@GLIBC_2.2.5 (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x132DD8DE: changelog_init_rpc_threads (changelog-rpc.c:112)
==49943==    by 0x132DDB5E: changelog_init_rpc_listner (changelog-rpc.c:169)
==49943==    by 0x132D6D70: changelog_init_rpc (changelog.c:2768)
==49943==    by 0x132D71B1: init (changelog.c:2850)
==49943==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==49943==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==49943==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==49943==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==49943==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==49943== 
==49943== 1,848 bytes in 1 blocks are possibly lost in loss record 627 of 718
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x4E93338: iobuf_pool_new (iobuf.c:396)
==49943==    by 0x4084EF: glusterfs_ctx_defaults_init (glusterfsd.c:1473)
==49943==    by 0x40A5BC: main (glusterfsd.c:2413)
==49943== 
==49943== 1,924 bytes in 1 blocks are possibly lost in loss record 628 of 718
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x4E908B0: mem_get (mem-pool.c:513)
==49943==    by 0x4E906CE: mem_get0 (mem-pool.c:446)
==49943==    by 0x4E9921D: create_frame (stack.c:25)
==49943==    by 0x41068B: glusterfs_mgmt_pmap_signout (glusterfsd-mgmt.c:2380)
==49943==    by 0x4080C9: cleanup_and_exit (glusterfsd.c:1333)
==49943==    by 0x409C1A: glusterfs_sigwaiter (glusterfsd.c:2102)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943== 
==49943== 2,112 bytes in 4 blocks are definitely lost in loss record 630 of 718
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0xFEAE076: socket_init (socket.c:3833)
==49943==    by 0xFEAB118: socket_server_event_handler (socket.c:2723)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943== 
==49943== 2,120 bytes in 1 blocks are possibly lost in loss record 631 of 718
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x4EC654E: gf_client_clienttable_expand (client_t.c:61)
==49943==    by 0x4EC6679: gf_clienttable_alloc (client_t.c:104)
==49943==    by 0x408998: glusterfs_ctx_defaults_init (glusterfsd.c:1536)
==49943==    by 0x40A5BC: main (glusterfsd.c:2413)
==49943== 
==49943== 2,152 (1,056 direct, 1,096 indirect) bytes in 2 blocks are definitely lost in loss record 633 of 718
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x4E6FF22: __inode_create (inode.c:614)
==49943==    by 0x4E7004E: inode_new (inode.c:647)
==49943==    by 0x1506A05F: server_inode_new (server-helpers.c:1314)
==49943==    by 0x15063F03: resolve_gfid (server-resolve.c:208)
==49943==    by 0x1506484F: server_resolve_inode (server-resolve.c:421)
==49943==    by 0x15064CD4: server_resolve (server-resolve.c:562)
==49943==    by 0x15064E6B: server_resolve_all (server-resolve.c:614)
==49943==    by 0x15064F80: resolve_and_resume (server-resolve.c:645)
==49943==    by 0x15093491: server3_3_lookup (server-rpc-fops.c:6513)
==49943==    by 0x514731B: rpcsvc_handle_rpc_call (rpcsvc.c:701)
==49943== 
==49943== 2,176 bytes in 1 blocks are definitely lost in loss record 636 of 718
==49943==    at 0x4C27BE3: malloc (vg_replace_malloc.c:299)
==49943==    by 0x4E95CFE: __gf_default_malloc (mem-pool.h:108)
==49943==    by 0x4E96273: glusterfs_lkowner_buf_get (globals.c:335)
==49943==    by 0x4E69951: lkowner_utoa (common-utils.c:2540)
==49943==    by 0x5151BFD: rpc_clnt_record (rpc-clnt.c:1472)
==49943==    by 0x515212B: rpc_clnt_submit (rpc-clnt.c:1617)
==49943==    by 0x40E934: mgmt_submit_request (glusterfsd-mgmt.c:1541)
==49943==    by 0x40F0A0: glusterfs_volfile_fetch (glusterfsd-mgmt.c:1758)
==49943==    by 0x40F7AB: mgmt_rpc_notify (glusterfsd-mgmt.c:1951)
==49943==    by 0x5150C05: rpc_clnt_notify (rpc-clnt.c:1005)
==49943==    by 0x514CD1D: rpc_transport_notify (rpc-transport.c:541)
==49943==    by 0xFEAA05A: socket_connect_finish (socket.c:2343)
==49943== 
==49943== 2,176 bytes in 1 blocks are definitely lost in loss record 637 of 718
==49943==    at 0x4C27BE3: malloc (vg_replace_malloc.c:299)
==49943==    by 0x4E95CFE: __gf_default_malloc (mem-pool.h:108)
==49943==    by 0x4E96273: glusterfs_lkowner_buf_get (globals.c:335)
==49943==    by 0x4E69951: lkowner_utoa (common-utils.c:2540)
==49943==    by 0x51533E4: auth_glusterfs_v2_authenticate (auth-glusterfs.c:235)
==49943==    by 0x51454C6: rpcsvc_authenticate (rpcsvc-auth.c:443)
==49943==    by 0x5146BF5: rpcsvc_request_create (rpcsvc.c:513)
==49943==    by 0x5146F2F: rpcsvc_handle_rpc_call (rpcsvc.c:618)
==49943==    by 0x514766E: rpcsvc_notify (rpcsvc.c:795)
==49943==    by 0x514CD1D: rpc_transport_notify (rpc-transport.c:541)
==49943==    by 0xFEA9D43: socket_event_poll_in (socket.c:2267)
==49943==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==49943== 
==49943== 2,398 bytes in 4 blocks are definitely lost in loss record 638 of 718
==49943==    at 0x4C27BE3: malloc (vg_replace_malloc.c:299)
==49943==    by 0x4E8FB45: __gf_malloc (mem-pool.c:142)
==49943==    by 0x150942FC: memdup (common-utils.h:614)
==49943==    by 0x15095922: server_setvolume (server-handshake.c:472)
==49943==    by 0x514731B: rpcsvc_handle_rpc_call (rpcsvc.c:701)
==49943==    by 0x514766E: rpcsvc_notify (rpcsvc.c:795)
==49943==    by 0x514CD1D: rpc_transport_notify (rpc-transport.c:541)
==49943==    by 0xFEA9D43: socket_event_poll_in (socket.c:2267)
==49943==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943== 
==49943== 2,664 (544 direct, 2,120 indirect) bytes in 4 blocks are definitely lost in loss record 640 of 718
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x4E8BE73: gf_fd_fdtable_alloc (fd.c:105)
==49943==    by 0x15069B32: server_ctx_get (server-helpers.c:1184)
==49943==    by 0x15069969: server_cancel_grace_timer (server-helpers.c:1136)
==49943==    by 0x15095C21: server_setvolume (server-handshake.c:532)
==49943==    by 0x514731B: rpcsvc_handle_rpc_call (rpcsvc.c:701)
==49943==    by 0x514766E: rpcsvc_notify (rpcsvc.c:795)
==49943==    by 0x514CD1D: rpc_transport_notify (rpc-transport.c:541)
==49943==    by 0xFEA9D43: socket_event_poll_in (socket.c:2267)
==49943==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943== 
==49943== 2,872 bytes in 1 blocks are possibly lost in loss record 642 of 718
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x514BC0C: rpc_transport_load (rpc-transport.c:187)
==49943==    by 0x5149213: rpcsvc_create_listener (rpcsvc.c:1664)
==49943==    by 0x514955C: rpcsvc_create_listeners (rpcsvc.c:1757)
==49943==    by 0x40F98A: glusterfs_listener_init (glusterfsd-mgmt.c:2037)
==49943==    by 0x40A3EC: glusterfs_volumes_init (glusterfsd.c:2359)
==49943==    by 0x40A892: main (glusterfsd.c:2488)
==49943== 
==49943== 2,872 bytes in 1 blocks are possibly lost in loss record 643 of 718
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x514BC0C: rpc_transport_load (rpc-transport.c:187)
==49943==    by 0x5150E30: rpc_clnt_connection_init (rpc-clnt.c:1067)
==49943==    by 0x5151169: rpc_clnt_new (rpc-clnt.c:1159)
==49943==    by 0x40FE46: glusterfs_mgmt_init (glusterfsd-mgmt.c:2157)
==49943==    by 0x40A412: glusterfs_volumes_init (glusterfsd.c:2365)
==49943==    by 0x40A892: main (glusterfsd.c:2488)
==49943== 
==49943== 2,872 bytes in 1 blocks are possibly lost in loss record 644 of 718
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x514BC0C: rpc_transport_load (rpc-transport.c:187)
==49943==    by 0x5149213: rpcsvc_create_listener (rpcsvc.c:1664)
==49943==    by 0x514955C: rpcsvc_create_listeners (rpcsvc.c:1757)
==49943==    by 0x1506250B: init (server.c:1056)
==49943==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==49943==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==49943==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==49943==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==49943==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==49943==    by 0x40ECA5: mgmt_getspec_cbk (glusterfsd-mgmt.c:1648)
==49943== 
==49943== 2,872 bytes in 1 blocks are possibly lost in loss record 645 of 718
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x514BC0C: rpc_transport_load (rpc-transport.c:187)
==49943==    by 0x5150E30: rpc_clnt_connection_init (rpc-clnt.c:1067)
==49943==    by 0x5151169: rpc_clnt_new (rpc-clnt.c:1159)
==49943==    by 0x14A014DE: quota_enforcer_init (quota-enforcer-client.c:451)
==49943==    by 0x149FF51D: init (quota.c:5127)
==49943==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==49943==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==49943==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==49943==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==49943==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==49943== 
==49943== 2,872 bytes in 1 blocks are possibly lost in loss record 646 of 718
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x514BC0C: rpc_transport_load (rpc-transport.c:187)
==49943==    by 0x5149213: rpcsvc_create_listener (rpcsvc.c:1664)
==49943==    by 0x514955C: rpcsvc_create_listeners (rpcsvc.c:1757)
==49943==    by 0x132DF1E6: changelog_rpc_server_init (changelog-rpc-common.c:318)
==49943==    by 0x132DDC27: changelog_init_rpc_listner (changelog-rpc.c:175)
==49943==    by 0x132D6D70: changelog_init_rpc (changelog.c:2768)
==49943==    by 0x132D71B1: init (changelog.c:2850)
==49943==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==49943==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==49943==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==49943== 
==49943== 2,880 bytes in 8 blocks are possibly lost in loss record 647 of 718
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x4E929B4: __iobuf_arena_alloc (iobuf.c:174)
==49943==    by 0x4E92E47: __iobuf_pool_add_arena (iobuf.c:272)
==49943==    by 0x4E92F7E: iobuf_pool_add_arena (iobuf.c:297)
==49943==    by 0x4E93595: iobuf_pool_new (iobuf.c:425)
==49943==    by 0x4084EF: glusterfs_ctx_defaults_init (glusterfsd.c:1473)
==49943==    by 0x40A5BC: main (glusterfsd.c:2413)
==49943== 
==49943== 3,072 (1,056 direct, 2,016 indirect) bytes in 2 blocks are definitely lost in loss record 651 of 718
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x4E6FF22: __inode_create (inode.c:614)
==49943==    by 0x4E7004E: inode_new (inode.c:647)
==49943==    by 0x1506A05F: server_inode_new (server-helpers.c:1314)
==49943==    by 0x150877CF: server_lookup_resume (server-rpc-fops.c:3108)
==49943==    by 0x15064DE8: server_resolve_done (server-resolve.c:590)
==49943==    by 0x15064EE9: server_resolve_all (server-resolve.c:625)
==49943==    by 0x15064D8F: server_resolve (server-resolve.c:574)
==49943==    by 0x15064EC0: server_resolve_all (server-resolve.c:621)
==49943==    by 0x150646EA: server_resolve_entry (server-resolve.c:368)
==49943==    by 0x15064CAF: server_resolve (server-resolve.c:558)
==49943== 
==49943== 3,848 bytes in 2 blocks are possibly lost in loss record 654 of 718
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x4E908B0: mem_get (mem-pool.c:513)
==49943==    by 0x4E906CE: mem_get0 (mem-pool.c:446)
==49943==    by 0x4E9921D: create_frame (stack.c:25)
==49943==    by 0x4EA4EAD: synctask_create (syncop.c:469)
==49943==    by 0x4EA527F: synctask_new1 (syncop.c:571)
==49943==    by 0x143AE0D7: mq_synctask1 (marker-quota.c:1078)
==49943==    by 0x143AE199: mq_synctask (marker-quota.c:1097)
==49943==    by 0x143AE6F6: _mq_create_xattrs_txn (marker-quota.c:1236)
==49943==    by 0x143AE82D: mq_create_xattrs_txn (marker-quota.c:1253)
==49943==    by 0x143B0DCB: mq_inspect_directory_xattr (marker-quota.c:2027)
==49943== 
==49943== 3,848 bytes in 2 blocks are definitely lost in loss record 655 of 718
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x4E908B0: mem_get (mem-pool.c:513)
==49943==    by 0x4E906CE: mem_get0 (mem-pool.c:446)
==49943==    by 0x4E9921D: create_frame (stack.c:25)
==49943==    by 0x4EA4EAD: synctask_create (syncop.c:469)
==49943==    by 0x4EA527F: synctask_new1 (syncop.c:571)
==49943==    by 0x143AE0D7: mq_synctask1 (marker-quota.c:1078)
==49943==    by 0x143AE199: mq_synctask (marker-quota.c:1097)
==49943==    by 0x143AE6F6: _mq_create_xattrs_txn (marker-quota.c:1236)
==49943==    by 0x143AE82D: mq_create_xattrs_txn (marker-quota.c:1253)
==49943==    by 0x143B0DCB: mq_inspect_directory_xattr (marker-quota.c:2027)
==49943== 
==49943== 3,859 bytes in 1 blocks are possibly lost in loss record 656 of 718
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x40ECFE: mgmt_getspec_cbk (glusterfsd-mgmt.c:1657)
==49943==    by 0x51505D2: rpc_clnt_handle_reply (rpc-clnt.c:791)
==49943==    by 0x5150B34: rpc_clnt_notify (rpc-clnt.c:971)
==49943==    by 0x514CD1D: rpc_transport_notify (rpc-transport.c:541)
==49943==    by 0xFEA9D43: socket_event_poll_in (socket.c:2267)
==49943==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943== 
==49943== 4,104 bytes in 1 blocks are definitely lost in loss record 657 of 718
==49943==    at 0x4C27BE3: malloc (vg_replace_malloc.c:299)
==49943==    by 0x130402E6: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==49943==    by 0x1301B6A9: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==49943==    by 0x13023A25: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==49943==    by 0x130264EA: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==49943==    by 0x13026A77: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==49943==    by 0x13059BEA: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==49943==    by 0x1309E1B6: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==49943==    by 0x12E01B48: gf_open_sqlite3_conn (gfdb_sqlite3.c:192)
==49943==    by 0x12E02CAF: gf_sqlite3_init (gfdb_sqlite3.c:440)
==49943==    by 0x12DF97B5: init_db (gfdb_data_store.c:270)
==49943==    by 0x12BEA41F: init (changetimerecorder.c:2118)
==49943== 
==49943== 4,168 bytes in 1 blocks are possibly lost in loss record 658 of 718
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x129BE672: trash_notify_getxattr_cbk (trash.c:309)
==49943==    by 0x12181475: posix_getxattr (posix.c:4768)
==49943==    by 0x129BEBCE: trash_notify_lookup_cbk (trash.c:359)
==49943==    by 0x121659B6: posix_lookup (posix.c:270)
==49943==    by 0x129CF3F7: notify (trash.c:2187)
==49943==    by 0x4E5BEC3: xlator_notify (xlator.c:496)
==49943==    by 0x4F12AA0: default_notify (defaults.c:3114)
==49943==    by 0x1218A501: notify (posix.c:6596)
==49943==    by 0x4E5BEC3: xlator_notify (xlator.c:496)
==49943==    by 0x4F129B9: default_notify (defaults.c:3090)
==49943== 
==49943== 4,216 bytes in 1 blocks are possibly lost in loss record 659 of 718
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x12E016FA: gf_sql_connection_init (gfdb_sqlite3.c:26)
==49943==    by 0x12E02BAA: gf_sqlite3_init (gfdb_sqlite3.c:424)
==49943==    by 0x12DF97B5: init_db (gfdb_data_store.c:270)
==49943==    by 0x12BEA41F: init (changetimerecorder.c:2118)
==49943==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==49943==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==49943==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==49943==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==49943==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==49943==    by 0x40ECA5: mgmt_getspec_cbk (glusterfsd-mgmt.c:1648)
==49943== 
==49943== 4,347 bytes in 52 blocks are definitely lost in loss record 660 of 718
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x4EE857A: gf_strdup (mem-pool.h:187)
==49943==    by 0x4EE94F3: volume_option (graph.y:240)
==49943==    by 0x4EE8A28: graphyyparse (graph.y:69)
==49943==    by 0x4EEA42D: glusterfs_graph_construct (graph.y:590)
==49943==    by 0x40A211: glusterfs_process_volfp (glusterfsd.c:2305)
==49943==    by 0x40ECA5: mgmt_getspec_cbk (glusterfsd-mgmt.c:1648)
==49943==    by 0x51505D2: rpc_clnt_handle_reply (rpc-clnt.c:791)
==49943==    by 0x5150B34: rpc_clnt_notify (rpc-clnt.c:971)
==49943==    by 0x514CD1D: rpc_transport_notify (rpc-transport.c:541)
==49943==    by 0xFEA9D43: socket_event_poll_in (socket.c:2267)
==49943== 
==49943== 4,384 bytes in 16 blocks are possibly lost in loss record 661 of 718
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943== 
==49943== 4,392 bytes in 18 blocks are possibly lost in loss record 662 of 718
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x4E908B0: mem_get (mem-pool.c:513)
==49943==    by 0x4E906CE: mem_get0 (mem-pool.c:446)
==49943==    by 0x4E53E86: get_new_dict_full (dict.c:52)
==49943==    by 0x4E53F7C: get_new_dict (dict.c:95)
==49943==    by 0x4EE9185: new_volume (graph.y:167)
==49943==    by 0x4EE89B6: graphyyparse (graph.y:52)
==49943==    by 0x4EEA42D: glusterfs_graph_construct (graph.y:590)
==49943==    by 0x40A211: glusterfs_process_volfp (glusterfsd.c:2305)
==49943==    by 0x40ECA5: mgmt_getspec_cbk (glusterfsd-mgmt.c:1648)
==49943==    by 0x51505D2: rpc_clnt_handle_reply (rpc-clnt.c:791)
==49943== 
==49943== 4,652 bytes in 54 blocks are definitely lost in loss record 663 of 718
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x4E5499E: dict_set_lk (dict.c:378)
==49943==    by 0x4E54C7F: dict_add (dict.c:446)
==49943==    by 0x4E5967D: dict_unserialize (dict.c:2740)
==49943==    by 0x1509595A: server_setvolume (server-handshake.c:479)
==49943==    by 0x514731B: rpcsvc_handle_rpc_call (rpcsvc.c:701)
==49943==    by 0x514766E: rpcsvc_notify (rpcsvc.c:795)
==49943==    by 0x514CD1D: rpc_transport_notify (rpc-transport.c:541)
==49943==    by 0xFEA9D43: socket_event_poll_in (socket.c:2267)
==49943==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943== 
==49943== 4,786 bytes in 54 blocks are definitely lost in loss record 664 of 718
==49943==    at 0x4C27BE3: malloc (vg_replace_malloc.c:299)
==49943==    by 0x4E8FB45: __gf_malloc (mem-pool.c:142)
==49943==    by 0x4E5370F: memdup (common-utils.h:614)
==49943==    by 0x4E59646: dict_unserialize (dict.c:2736)
==49943==    by 0x1509595A: server_setvolume (server-handshake.c:479)
==49943==    by 0x514731B: rpcsvc_handle_rpc_call (rpcsvc.c:701)
==49943==    by 0x514766E: rpcsvc_notify (rpcsvc.c:795)
==49943==    by 0x514CD1D: rpc_transport_notify (rpc-transport.c:541)
==49943==    by 0xFEA9D43: socket_event_poll_in (socket.c:2267)
==49943==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943== 
==49943== 4,849 bytes in 55 blocks are definitely lost in loss record 665 of 718
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x4E5499E: dict_set_lk (dict.c:378)
==49943==    by 0x4E54B82: dict_set (dict.c:424)
==49943==    by 0x4E585B1: dict_set_dynstr (dict.c:2205)
==49943==    by 0x4EE9518: volume_option (graph.y:241)
==49943==    by 0x4EE8A28: graphyyparse (graph.y:69)
==49943==    by 0x4EEA42D: glusterfs_graph_construct (graph.y:590)
==49943==    by 0x40A211: glusterfs_process_volfp (glusterfsd.c:2305)
==49943==    by 0x40ECA5: mgmt_getspec_cbk (glusterfsd-mgmt.c:1648)
==49943==    by 0x51505D2: rpc_clnt_handle_reply (rpc-clnt.c:791)
==49943==    by 0x5150B34: rpc_clnt_notify (rpc-clnt.c:971)
==49943== 
==49943== 5,600 bytes in 40 blocks are definitely lost in loss record 668 of 718
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x4E908B0: mem_get (mem-pool.c:513)
==49943==    by 0x4E906CE: mem_get0 (mem-pool.c:446)
==49943==    by 0x4E54919: dict_set_lk (dict.c:360)
==49943==    by 0x4E54B82: dict_set (dict.c:424)
==49943==    by 0x4E585B1: dict_set_dynstr (dict.c:2205)
==49943==    by 0x4EE9518: volume_option (graph.y:241)
==49943==    by 0x4EE8A28: graphyyparse (graph.y:69)
==49943==    by 0x4EEA42D: glusterfs_graph_construct (graph.y:590)
==49943==    by 0x40A211: glusterfs_process_volfp (glusterfsd.c:2305)
==49943==    by 0x40ECA5: mgmt_getspec_cbk (glusterfsd-mgmt.c:1648)
==49943== 
==49943== 5,636 bytes in 20 blocks are definitely lost in loss record 669 of 718
==49943==    at 0x4C27BE3: malloc (vg_replace_malloc.c:299)
==49943== 
==49943== 6,360 bytes in 3 blocks are definitely lost in loss record 670 of 718
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x4E8BDB8: gf_fd_fdtable_expand (fd.c:72)
==49943==    by 0x4E8BEBB: gf_fd_fdtable_alloc (fd.c:113)
==49943==    by 0x15069B32: server_ctx_get (server-helpers.c:1184)
==49943==    by 0x15069969: server_cancel_grace_timer (server-helpers.c:1136)
==49943==    by 0x15095C21: server_setvolume (server-handshake.c:532)
==49943==    by 0x514731B: rpcsvc_handle_rpc_call (rpcsvc.c:701)
==49943==    by 0x514766E: rpcsvc_notify (rpcsvc.c:795)
==49943==    by 0x514CD1D: rpc_transport_notify (rpc-transport.c:541)
==49943==    by 0xFEA9D43: socket_event_poll_in (socket.c:2267)
==49943==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==49943== 
==49943== 6,424 bytes in 1 blocks are possibly lost in loss record 671 of 718
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x14C27FEB: init (io-stats.c:3643)
==49943==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==49943==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==49943==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==49943==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==49943==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==49943==    by 0x40ECA5: mgmt_getspec_cbk (glusterfsd-mgmt.c:1648)
==49943==    by 0x51505D2: rpc_clnt_handle_reply (rpc-clnt.c:791)
==49943==    by 0x5150B34: rpc_clnt_notify (rpc-clnt.c:971)
==49943==    by 0x514CD1D: rpc_transport_notify (rpc-transport.c:541)
==49943== 
==49943== 7,000 bytes in 50 blocks are definitely lost in loss record 672 of 718
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x4E908B0: mem_get (mem-pool.c:513)
==49943==    by 0x4E906CE: mem_get0 (mem-pool.c:446)
==49943==    by 0x4E54919: dict_set_lk (dict.c:360)
==49943==    by 0x4E54C7F: dict_add (dict.c:446)
==49943==    by 0x4E5967D: dict_unserialize (dict.c:2740)
==49943==    by 0x1509595A: server_setvolume (server-handshake.c:479)
==49943==    by 0x514731B: rpcsvc_handle_rpc_call (rpcsvc.c:701)
==49943==    by 0x514766E: rpcsvc_notify (rpcsvc.c:795)
==49943==    by 0x514CD1D: rpc_transport_notify (rpc-transport.c:541)
==49943==    by 0xFEA9D43: socket_event_poll_in (socket.c:2267)
==49943== 
==49943== 8,528 bytes in 1 blocks are possibly lost in loss record 674 of 718
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x134EF2B0: init (bit-rot-stub.c:131)
==49943==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==49943==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==49943==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==49943==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==49943==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==49943==    by 0x40ECA5: mgmt_getspec_cbk (glusterfsd-mgmt.c:1648)
==49943==    by 0x51505D2: rpc_clnt_handle_reply (rpc-clnt.c:791)
==49943==    by 0x5150B34: rpc_clnt_notify (rpc-clnt.c:971)
==49943==    by 0x514CD1D: rpc_transport_notify (rpc-transport.c:541)
==49943== 
==49943== 8,856 bytes in 54 blocks are definitely lost in loss record 675 of 718
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x4E908B0: mem_get (mem-pool.c:513)
==49943==    by 0x4E906CE: mem_get0 (mem-pool.c:446)
==49943==    by 0x4E53E07: get_new_data (dict.c:40)
==49943==    by 0x4E55D8E: data_from_dynstr (dict.c:882)
==49943==    by 0x4E58586: dict_set_dynstr (dict.c:2199)
==49943==    by 0x4EE9518: volume_option (graph.y:241)
==49943==    by 0x4EE8A28: graphyyparse (graph.y:69)
==49943==    by 0x4EEA42D: glusterfs_graph_construct (graph.y:590)
==49943==    by 0x40A211: glusterfs_process_volfp (glusterfsd.c:2305)
==49943==    by 0x40ECA5: mgmt_getspec_cbk (glusterfsd-mgmt.c:1648)
==49943== 
==49943== 8,856 bytes in 54 blocks are definitely lost in loss record 676 of 718
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x4E908B0: mem_get (mem-pool.c:513)
==49943==    by 0x4E906CE: mem_get0 (mem-pool.c:446)
==49943==    by 0x4E53E07: get_new_data (dict.c:40)
==49943==    by 0x4E59613: dict_unserialize (dict.c:2729)
==49943==    by 0x1509595A: server_setvolume (server-handshake.c:479)
==49943==    by 0x514731B: rpcsvc_handle_rpc_call (rpcsvc.c:701)
==49943==    by 0x514766E: rpcsvc_notify (rpcsvc.c:795)
==49943==    by 0x514CD1D: rpc_transport_notify (rpc-transport.c:541)
==49943==    by 0xFEA9D43: socket_event_poll_in (socket.c:2267)
==49943==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==49943== 
==49943== 12,296 bytes in 1 blocks are possibly lost in loss record 677 of 718
==49943==    at 0x4C27BE3: malloc (vg_replace_malloc.c:299)
==49943==    by 0x4E5A12B: __gf_default_malloc (mem-pool.h:108)
==49943==    by 0x4E5BF6C: xlator_mem_acct_init (xlator.c:520)
==49943==    by 0x14E5365F: mem_acct_init (decompounder.c:920)
==49943==    by 0x4E5BB06: xlator_init (xlator.c:419)
==49943==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==49943==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==49943==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==49943==    by 0x40ECA5: mgmt_getspec_cbk (glusterfsd-mgmt.c:1648)
==49943==    by 0x51505D2: rpc_clnt_handle_reply (rpc-clnt.c:791)
==49943==    by 0x5150B34: rpc_clnt_notify (rpc-clnt.c:971)
==49943==    by 0x514CD1D: rpc_transport_notify (rpc-transport.c:541)
==49943== 
==49943== 12,296 bytes in 1 blocks are possibly lost in loss record 678 of 718
==49943==    at 0x4C27BE3: malloc (vg_replace_malloc.c:299)
==49943==    by 0x4E5A12B: __gf_default_malloc (mem-pool.h:108)
==49943==    by 0x4E5BF6C: xlator_mem_acct_init (xlator.c:520)
==49943==    by 0x145C366F: mem_acct_init (barrier.c:600)
==49943==    by 0x4E5BB06: xlator_init (xlator.c:419)
==49943==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==49943==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==49943==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==49943==    by 0x40ECA5: mgmt_getspec_cbk (glusterfsd-mgmt.c:1648)
==49943==    by 0x51505D2: rpc_clnt_handle_reply (rpc-clnt.c:791)
==49943==    by 0x5150B34: rpc_clnt_notify (rpc-clnt.c:971)
==49943==    by 0x514CD1D: rpc_transport_notify (rpc-transport.c:541)
==49943== 
==49943== 12,296 bytes in 1 blocks are possibly lost in loss record 679 of 718
==49943==    at 0x4C27BE3: malloc (vg_replace_malloc.c:299)
==49943==    by 0x4E5A12B: __gf_default_malloc (mem-pool.h:108)
==49943==    by 0x4E5BF6C: xlator_mem_acct_init (xlator.c:520)
==49943==    by 0x13D560A8: mem_acct_init (read-only.c:20)
==49943==    by 0x4E5BB06: xlator_init (xlator.c:419)
==49943==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==49943==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==49943==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==49943==    by 0x40ECA5: mgmt_getspec_cbk (glusterfsd-mgmt.c:1648)
==49943==    by 0x51505D2: rpc_clnt_handle_reply (rpc-clnt.c:791)
==49943==    by 0x5150B34: rpc_clnt_notify (rpc-clnt.c:971)
==49943==    by 0x514CD1D: rpc_transport_notify (rpc-transport.c:541)
==49943== 
==49943== 12,296 bytes in 1 blocks are possibly lost in loss record 680 of 718
==49943==    at 0x4C27BE3: malloc (vg_replace_malloc.c:299)
==49943==    by 0x4E5A12B: __gf_default_malloc (mem-pool.h:108)
==49943==    by 0x4E5BF6C: xlator_mem_acct_init (xlator.c:520)
==49943==    by 0x13B4D8D0: mem_acct_init (worm.c:24)
==49943==    by 0x4E5BB06: xlator_init (xlator.c:419)
==49943==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==49943==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==49943==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==49943==    by 0x40ECA5: mgmt_getspec_cbk (glusterfsd-mgmt.c:1648)
==49943==    by 0x51505D2: rpc_clnt_handle_reply (rpc-clnt.c:791)
==49943==    by 0x5150B34: rpc_clnt_notify (rpc-clnt.c:971)
==49943==    by 0x514CD1D: rpc_transport_notify (rpc-transport.c:541)
==49943== 
==49943== 12,536 bytes in 1 blocks are possibly lost in loss record 681 of 718
==49943==    at 0x4C27BE3: malloc (vg_replace_malloc.c:299)
==49943==    by 0x4E5A12B: __gf_default_malloc (mem-pool.h:108)
==49943==    by 0x4E5BF6C: xlator_mem_acct_init (xlator.c:520)
==49943==    by 0x147D5615: mem_acct_init (index.c:2261)
==49943==    by 0x4E5BB06: xlator_init (xlator.c:419)
==49943==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==49943==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==49943==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==49943==    by 0x40ECA5: mgmt_getspec_cbk (glusterfsd-mgmt.c:1648)
==49943==    by 0x51505D2: rpc_clnt_handle_reply (rpc-clnt.c:791)
==49943==    by 0x5150B34: rpc_clnt_notify (rpc-clnt.c:971)
==49943==    by 0x514CD1D: rpc_transport_notify (rpc-transport.c:541)
==49943== 
==49943== 12,536 bytes in 1 blocks are possibly lost in loss record 682 of 718
==49943==    at 0x4C27BE3: malloc (vg_replace_malloc.c:299)
==49943==    by 0x4E5A12B: __gf_default_malloc (mem-pool.h:108)
==49943==    by 0x4E5BF6C: xlator_mem_acct_init (xlator.c:520)
==49943==    by 0x1418A333: mem_acct_init (upcall.c:1589)
==49943==    by 0x4E5BB06: xlator_init (xlator.c:419)
==49943==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==49943==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==49943==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==49943==    by 0x40ECA5: mgmt_getspec_cbk (glusterfsd-mgmt.c:1648)
==49943==    by 0x51505D2: rpc_clnt_handle_reply (rpc-clnt.c:791)
==49943==    by 0x5150B34: rpc_clnt_notify (rpc-clnt.c:971)
==49943==    by 0x514CD1D: rpc_transport_notify (rpc-transport.c:541)
==49943== 
==49943== 12,536 bytes in 1 blocks are possibly lost in loss record 683 of 718
==49943==    at 0x4C27BE3: malloc (vg_replace_malloc.c:299)
==49943==    by 0x4E5A12B: __gf_default_malloc (mem-pool.h:108)
==49943==    by 0x4E5BF6C: xlator_mem_acct_init (xlator.c:520)
==49943==    by 0x13706EC1: mem_acct_init (posix-acl.c:33)
==49943==    by 0x4E5BB06: xlator_init (xlator.c:419)
==49943==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==49943==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==49943==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==49943==    by 0x40ECA5: mgmt_getspec_cbk (glusterfsd-mgmt.c:1648)
==49943==    by 0x51505D2: rpc_clnt_handle_reply (rpc-clnt.c:791)
==49943==    by 0x5150B34: rpc_clnt_notify (rpc-clnt.c:971)
==49943==    by 0x514CD1D: rpc_transport_notify (rpc-transport.c:541)
==49943== 
==49943== 12,536 bytes in 1 blocks are possibly lost in loss record 684 of 718
==49943==    at 0x4C27BE3: malloc (vg_replace_malloc.c:299)
==49943==    by 0x4E5A12B: __gf_default_malloc (mem-pool.h:108)
==49943==    by 0x4E5BF6C: xlator_mem_acct_init (xlator.c:520)
==49943==    by 0x129D02CD: mem_acct_init (trash.c:2331)
==49943==    by 0x4E5BB06: xlator_init (xlator.c:419)
==49943==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==49943==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==49943==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==49943==    by 0x40ECA5: mgmt_getspec_cbk (glusterfsd-mgmt.c:1648)
==49943==    by 0x51505D2: rpc_clnt_handle_reply (rpc-clnt.c:791)
==49943==    by 0x5150B34: rpc_clnt_notify (rpc-clnt.c:971)
==49943==    by 0x514CD1D: rpc_transport_notify (rpc-transport.c:541)
==49943== 
==49943== 12,616 bytes in 1 blocks are possibly lost in loss record 686 of 718
==49943==    at 0x4C27BE3: malloc (vg_replace_malloc.c:299)
==49943==    by 0x4E5A12B: __gf_default_malloc (mem-pool.h:108)
==49943==    by 0x4E5BF6C: xlator_mem_acct_init (xlator.c:520)
==49943==    by 0x12BEA597: mem_acct_init (changetimerecorder.c:2161)
==49943==    by 0x4E5BB06: xlator_init (xlator.c:419)
==49943==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==49943==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==49943==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==49943==    by 0x40ECA5: mgmt_getspec_cbk (glusterfsd-mgmt.c:1648)
==49943==    by 0x51505D2: rpc_clnt_handle_reply (rpc-clnt.c:791)
==49943==    by 0x5150B34: rpc_clnt_notify (rpc-clnt.c:971)
==49943==    by 0x514CD1D: rpc_transport_notify (rpc-transport.c:541)
==49943== 
==49943== 12,696 bytes in 1 blocks are possibly lost in loss record 687 of 718
==49943==    at 0x4C27BE3: malloc (vg_replace_malloc.c:299)
==49943==    by 0x4E5A12B: __gf_default_malloc (mem-pool.h:108)
==49943==    by 0x4E5BF6C: xlator_mem_acct_init (xlator.c:520)
==49943==    by 0x14C27E04: mem_acct_init (io-stats.c:3587)
==49943==    by 0x4E5BB06: xlator_init (xlator.c:419)
==49943==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==49943==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==49943==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==49943==    by 0x40ECA5: mgmt_getspec_cbk (glusterfsd-mgmt.c:1648)
==49943==    by 0x51505D2: rpc_clnt_handle_reply (rpc-clnt.c:791)
==49943==    by 0x5150B34: rpc_clnt_notify (rpc-clnt.c:971)
==49943==    by 0x514CD1D: rpc_transport_notify (rpc-transport.c:541)
==49943== 
==49943== 12,768 bytes in 1 blocks are possibly lost in loss record 688 of 718
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x4ECA27C: event_pool_new_epoll (event-epoll.c:243)
==49943==    by 0x4E8EAED: event_pool_new (event.c:37)
==49943==    by 0x40856A: glusterfs_ctx_defaults_init (glusterfsd.c:1479)
==49943==    by 0x40A5BC: main (glusterfsd.c:2413)
==49943== 
==49943== 12,936 bytes in 1 blocks are possibly lost in loss record 689 of 718
==49943==    at 0x4C27BE3: malloc (vg_replace_malloc.c:299)
==49943==    by 0x4E5A12B: __gf_default_malloc (mem-pool.h:108)
==49943==    by 0x4E5BF6C: xlator_mem_acct_init (xlator.c:520)
==49943==    by 0x143A8BAD: mem_acct_init (marker.c:3179)
==49943==    by 0x4E5BB06: xlator_init (xlator.c:419)
==49943==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==49943==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==49943==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==49943==    by 0x40ECA5: mgmt_getspec_cbk (glusterfsd-mgmt.c:1648)
==49943==    by 0x51505D2: rpc_clnt_handle_reply (rpc-clnt.c:791)
==49943==    by 0x5150B34: rpc_clnt_notify (rpc-clnt.c:971)
==49943==    by 0x514CD1D: rpc_transport_notify (rpc-transport.c:541)
==49943== 
==49943== 12,936 bytes in 1 blocks are possibly lost in loss record 690 of 718
==49943==    at 0x4C27BE3: malloc (vg_replace_malloc.c:299)
==49943==    by 0x4E5A12B: __gf_default_malloc (mem-pool.h:108)
==49943==    by 0x4E5BF6C: xlator_mem_acct_init (xlator.c:520)
==49943==    by 0x13F6F45F: mem_acct_init (leases.c:939)
==49943==    by 0x4E5BB06: xlator_init (xlator.c:419)
==49943==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==49943==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==49943==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==49943==    by 0x40ECA5: mgmt_getspec_cbk (glusterfsd-mgmt.c:1648)
==49943==    by 0x51505D2: rpc_clnt_handle_reply (rpc-clnt.c:791)
==49943==    by 0x5150B34: rpc_clnt_notify (rpc-clnt.c:971)
==49943==    by 0x514CD1D: rpc_transport_notify (rpc-transport.c:541)
==49943== 
==49943== 12,936 bytes in 1 blocks are possibly lost in loss record 691 of 718
==49943==    at 0x4C27BE3: malloc (vg_replace_malloc.c:299)
==49943==    by 0x4E5A12B: __gf_default_malloc (mem-pool.h:108)
==49943==    by 0x4E5BF6C: xlator_mem_acct_init (xlator.c:520)
==49943==    by 0x1218A539: mem_acct_init (posix.c:6614)
==49943==    by 0x4E5BB06: xlator_init (xlator.c:419)
==49943==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==49943==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==49943==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==49943==    by 0x40ECA5: mgmt_getspec_cbk (glusterfsd-mgmt.c:1648)
==49943==    by 0x51505D2: rpc_clnt_handle_reply (rpc-clnt.c:791)
==49943==    by 0x5150B34: rpc_clnt_notify (rpc-clnt.c:971)
==49943==    by 0x514CD1D: rpc_transport_notify (rpc-transport.c:541)
==49943== 
==49943== 13,016 bytes in 1 blocks are possibly lost in loss record 692 of 718
==49943==    at 0x4C27BE3: malloc (vg_replace_malloc.c:299)
==49943==    by 0x4E5A12B: __gf_default_malloc (mem-pool.h:108)
==49943==    by 0x4E5BF6C: xlator_mem_acct_init (xlator.c:520)
==49943==    by 0x13934750: mem_acct_init (posix.c:3466)
==49943==    by 0x4E5BB06: xlator_init (xlator.c:419)
==49943==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==49943==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==49943==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==49943==    by 0x40ECA5: mgmt_getspec_cbk (glusterfsd-mgmt.c:1648)
==49943==    by 0x51505D2: rpc_clnt_handle_reply (rpc-clnt.c:791)
==49943==    by 0x5150B34: rpc_clnt_notify (rpc-clnt.c:971)
==49943==    by 0x514CD1D: rpc_transport_notify (rpc-transport.c:541)
==49943== 
==49943== 13,096 bytes in 1 blocks are possibly lost in loss record 693 of 718
==49943==    at 0x4C27BE3: malloc (vg_replace_malloc.c:299)
==49943==    by 0x4E5A12B: __gf_default_malloc (mem-pool.h:108)
==49943==    by 0x4E5BF6C: xlator_mem_acct_init (xlator.c:520)
==49943==    by 0x149FEEA3: mem_acct_init (quota.c:5038)
==49943==    by 0x4E5BB06: xlator_init (xlator.c:419)
==49943==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==49943==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==49943==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==49943==    by 0x40ECA5: mgmt_getspec_cbk (glusterfsd-mgmt.c:1648)
==49943==    by 0x51505D2: rpc_clnt_handle_reply (rpc-clnt.c:791)
==49943==    by 0x5150B34: rpc_clnt_notify (rpc-clnt.c:971)
==49943==    by 0x514CD1D: rpc_transport_notify (rpc-transport.c:541)
==49943== 
==49943== 13,256 bytes in 1 blocks are possibly lost in loss record 694 of 718
==49943==    at 0x4C27BE3: malloc (vg_replace_malloc.c:299)
==49943==    by 0x4E5A12B: __gf_default_malloc (mem-pool.h:108)
==49943==    by 0x4E5BF6C: xlator_mem_acct_init (xlator.c:520)
==49943==    by 0x15060CF6: mem_acct_init (server.c:616)
==49943==    by 0x4E5BB06: xlator_init (xlator.c:419)
==49943==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==49943==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==49943==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==49943==    by 0x40ECA5: mgmt_getspec_cbk (glusterfsd-mgmt.c:1648)
==49943==    by 0x51505D2: rpc_clnt_handle_reply (rpc-clnt.c:791)
==49943==    by 0x5150B34: rpc_clnt_notify (rpc-clnt.c:971)
==49943==    by 0x514CD1D: rpc_transport_notify (rpc-transport.c:541)
==49943== 
==49943== 13,416 bytes in 1 blocks are possibly lost in loss record 695 of 718
==49943==    at 0x4C27BE3: malloc (vg_replace_malloc.c:299)
==49943==    by 0x4E5A12B: __gf_default_malloc (mem-pool.h:108)
==49943==    by 0x4E5BF6C: xlator_mem_acct_init (xlator.c:520)
==49943==    by 0x132D54FB: mem_acct_init (changelog.c:2313)
==49943==    by 0x4E5BB06: xlator_init (xlator.c:419)
==49943==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==49943==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==49943==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==49943==    by 0x40ECA5: mgmt_getspec_cbk (glusterfsd-mgmt.c:1648)
==49943==    by 0x51505D2: rpc_clnt_handle_reply (rpc-clnt.c:791)
==49943==    by 0x5150B34: rpc_clnt_notify (rpc-clnt.c:971)
==49943==    by 0x514CD1D: rpc_transport_notify (rpc-transport.c:541)
==49943== 
==49943== 13,656 bytes in 1 blocks are possibly lost in loss record 696 of 718
==49943==    at 0x4C27BE3: malloc (vg_replace_malloc.c:299)
==49943==    by 0x4E5A12B: __gf_default_malloc (mem-pool.h:108)
==49943==    by 0x4E5BF6C: xlator_mem_acct_init (xlator.c:520)
==49943==    by 0x134EEEFD: mem_acct_init (bit-rot-stub.c:46)
==49943==    by 0x4E5BB06: xlator_init (xlator.c:419)
==49943==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==49943==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==49943==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==49943==    by 0x40ECA5: mgmt_getspec_cbk (glusterfsd-mgmt.c:1648)
==49943==    by 0x51505D2: rpc_clnt_handle_reply (rpc-clnt.c:791)
==49943==    by 0x5150B34: rpc_clnt_notify (rpc-clnt.c:971)
==49943==    by 0x514CD1D: rpc_transport_notify (rpc-transport.c:541)
==49943== 
==49943== 14,053 (13,633 direct, 420 indirect) bytes in 69 blocks are definitely lost in loss record 697 of 718
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943== 
==49943== 14,360 bytes in 5 blocks are possibly lost in loss record 698 of 718
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0xFEAAF3E: socket_server_event_handler (socket.c:2682)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==49943== 
==49943== 15,600 bytes in 1 blocks are possibly lost in loss record 699 of 718
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x4EA592D: syncenv_new (syncop.c:808)
==49943==    by 0x40A801: main (glusterfsd.c:2475)
==49943== 
==49943== 21,344 bytes in 4 blocks are possibly lost in loss record 703 of 718
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x4EA4E64: synctask_create (syncop.c:463)
==49943==    by 0x4EA527F: synctask_new1 (syncop.c:571)
==49943==    by 0x143AE0D7: mq_synctask1 (marker-quota.c:1078)
==49943==    by 0x143AE199: mq_synctask (marker-quota.c:1097)
==49943==    by 0x143AE6F6: _mq_create_xattrs_txn (marker-quota.c:1236)
==49943==    by 0x143AE82D: mq_create_xattrs_txn (marker-quota.c:1253)
==49943==    by 0x143B0DCB: mq_inspect_directory_xattr (marker-quota.c:2027)
==49943==    by 0x143B13A8: mq_xattr_state (marker-quota.c:2117)
==49943==    by 0x143A6E80: marker_lookup_cbk (marker.c:2961)
==49943==    by 0x141811E0: up_lookup_cbk (upcall.c:753)
==49943== 
==49943== 32,816 bytes in 1 blocks are possibly lost in loss record 705 of 718
==49943==    at 0x4C27BE3: malloc (vg_replace_malloc.c:299)
==49943==    by 0x676B5C0: __alloc_dir (in /usr/lib64/libc-2.17.so)
==49943==    by 0x4E9193D: sys_opendir (syscall.c:101)
==49943==    by 0x1218C336: init (posix.c:7233)
==49943==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==49943==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==49943==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==49943==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==49943==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==49943==    by 0x40ECA5: mgmt_getspec_cbk (glusterfsd-mgmt.c:1648)
==49943==    by 0x51505D2: rpc_clnt_handle_reply (rpc-clnt.c:791)
==49943==    by 0x5150B34: rpc_clnt_notify (rpc-clnt.c:971)
==49943== 
==49943== 49,472 bytes in 1 blocks are possibly lost in loss record 706 of 718
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x15061DC3: init (server.c:934)
==49943==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==49943==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==49943==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==49943==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==49943==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==49943==    by 0x40ECA5: mgmt_getspec_cbk (glusterfsd-mgmt.c:1648)
==49943==    by 0x51505D2: rpc_clnt_handle_reply (rpc-clnt.c:791)
==49943==    by 0x5150B34: rpc_clnt_notify (rpc-clnt.c:971)
==49943==    by 0x514CD1D: rpc_transport_notify (rpc-transport.c:541)
==49943== 
==49943== 53,280 bytes in 18 blocks are possibly lost in loss record 707 of 718
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x4EE904A: new_volume (graph.y:139)
==49943==    by 0x4EE89B6: graphyyparse (graph.y:52)
==49943==    by 0x4EEA42D: glusterfs_graph_construct (graph.y:590)
==49943==    by 0x40A211: glusterfs_process_volfp (glusterfsd.c:2305)
==49943==    by 0x40ECA5: mgmt_getspec_cbk (glusterfsd-mgmt.c:1648)
==49943==    by 0x51505D2: rpc_clnt_handle_reply (rpc-clnt.c:791)
==49943==    by 0x5150B34: rpc_clnt_notify (rpc-clnt.c:971)
==49943==    by 0x514CD1D: rpc_transport_notify (rpc-transport.c:541)
==49943==    by 0xFEA9D43: socket_event_poll_in (socket.c:2267)
==49943==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==49943== 
==49943== 65,824 bytes in 4 blocks are possibly lost in loss record 709 of 718
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x4EA5083: synctask_create (syncop.c:501)
==49943==    by 0x4EA527F: synctask_new1 (syncop.c:571)
==49943==    by 0x143AE0D7: mq_synctask1 (marker-quota.c:1078)
==49943==    by 0x143AE199: mq_synctask (marker-quota.c:1097)
==49943==    by 0x143AE6F6: _mq_create_xattrs_txn (marker-quota.c:1236)
==49943==    by 0x143AE82D: mq_create_xattrs_txn (marker-quota.c:1253)
==49943==    by 0x143B0DCB: mq_inspect_directory_xattr (marker-quota.c:2027)
==49943==    by 0x143B13A8: mq_xattr_state (marker-quota.c:2117)
==49943==    by 0x143A6E80: marker_lookup_cbk (marker.c:2961)
==49943==    by 0x141811E0: up_lookup_cbk (upcall.c:753)
==49943== 
==49943== 66,712 (856 direct, 65,856 indirect) bytes in 1 blocks are definitely lost in loss record 710 of 718
==49943==    at 0x4C27BE3: malloc (vg_replace_malloc.c:299)
==49943==    by 0x130402E6: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==49943==    by 0x1301B6A9: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==49943==    by 0x13023A25: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==49943==    by 0x13023A4C: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==49943==    by 0x1309DE50: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==49943==    by 0x12E01B48: gf_open_sqlite3_conn (gfdb_sqlite3.c:192)
==49943==    by 0x12E02CAF: gf_sqlite3_init (gfdb_sqlite3.c:440)
==49943==    by 0x12DF97B5: init_db (gfdb_data_store.c:270)
==49943==    by 0x12BEA41F: init (changetimerecorder.c:2118)
==49943==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==49943==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==49943== 
==49943== 81,992 bytes in 1 blocks are possibly lost in loss record 711 of 718
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x4EC9B61: __event_newtable (event-epoll.c:54)
==49943==    by 0x4EC9CD9: __event_slot_alloc (event-epoll.c:85)
==49943==    by 0x4EC9F17: event_slot_alloc (event-epoll.c:134)
==49943==    by 0x4ECA5A5: event_register_epoll (event-epoll.c:344)
==49943==    by 0x4E8EC3E: event_register (event.c:67)
==49943==    by 0xFEACC9C: socket_listen (socket.c:3356)
==49943==    by 0x514C834: rpc_transport_listen (rpc-transport.c:435)
==49943==    by 0x5149260: rpcsvc_create_listener (rpcsvc.c:1671)
==49943==    by 0x514955C: rpcsvc_create_listeners (rpcsvc.c:1757)
==49943==    by 0x40F98A: glusterfs_listener_init (glusterfsd-mgmt.c:2037)
==49943== 
==49943== 201,392 bytes in 8 blocks are possibly lost in loss record 712 of 718
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x4E92574: __iobuf_arena_init_iobufs (iobuf.c:84)
==49943==    by 0x4E92B8D: __iobuf_arena_alloc (iobuf.c:208)
==49943==    by 0x4E92E47: __iobuf_pool_add_arena (iobuf.c:272)
==49943==    by 0x4E92F7E: iobuf_pool_add_arena (iobuf.c:297)
==49943==    by 0x4E93595: iobuf_pool_new (iobuf.c:425)
==49943==    by 0x4084EF: glusterfs_ctx_defaults_init (glusterfsd.c:1473)
==49943==    by 0x40A5BC: main (glusterfsd.c:2413)
==49943== 
==49943== 224,984 bytes in 1 blocks are possibly lost in loss record 713 of 718
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x129BB4E4: inode_table_new (inode.c:1609)
==49943==    by 0x129CF039: notify (trash.c:2172)
==49943==    by 0x4E5BEC3: xlator_notify (xlator.c:496)
==49943==    by 0x4F12AA0: default_notify (defaults.c:3114)
==49943==    by 0x1218A501: notify (posix.c:6596)
==49943==    by 0x4E5BEC3: xlator_notify (xlator.c:496)
==49943==    by 0x4F129B9: default_notify (defaults.c:3090)
==49943==    by 0x129D019E: notify (trash.c:2307)
==49943==    by 0x4E5BEC3: xlator_notify (xlator.c:496)
==49943==    by 0x4F129B9: default_notify (defaults.c:3090)
==49943== 
==49943== 224,984 bytes in 1 blocks are possibly lost in loss record 714 of 718
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x4E72012: inode_table_new (inode.c:1609)
==49943==    by 0x15096890: server_setvolume (server-handshake.c:740)
==49943==    by 0x514731B: rpcsvc_handle_rpc_call (rpcsvc.c:701)
==49943==    by 0x514766E: rpcsvc_notify (rpcsvc.c:795)
==49943==    by 0x514CD1D: rpc_transport_notify (rpc-transport.c:541)
==49943==    by 0xFEA9D43: socket_event_poll_in (socket.c:2267)
==49943==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943== 
==49943== 1,048,648 bytes in 1 blocks are possibly lost in loss record 715 of 718
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x129BB4A9: inode_table_new (inode.c:1603)
==49943==    by 0x129CF039: notify (trash.c:2172)
==49943==    by 0x4E5BEC3: xlator_notify (xlator.c:496)
==49943==    by 0x4F12AA0: default_notify (defaults.c:3114)
==49943==    by 0x1218A501: notify (posix.c:6596)
==49943==    by 0x4E5BEC3: xlator_notify (xlator.c:496)
==49943==    by 0x4F129B9: default_notify (defaults.c:3090)
==49943==    by 0x129D019E: notify (trash.c:2307)
==49943==    by 0x4E5BEC3: xlator_notify (xlator.c:496)
==49943==    by 0x4F129B9: default_notify (defaults.c:3090)
==49943== 
==49943== 1,048,648 bytes in 1 blocks are possibly lost in loss record 716 of 718
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x4E71FD7: inode_table_new (inode.c:1603)
==49943==    by 0x15096890: server_setvolume (server-handshake.c:740)
==49943==    by 0x514731B: rpcsvc_handle_rpc_call (rpcsvc.c:701)
==49943==    by 0x514766E: rpcsvc_notify (rpcsvc.c:795)
==49943==    by 0x514CD1D: rpc_transport_notify (rpc-transport.c:541)
==49943==    by 0xFEA9D43: socket_event_poll_in (socket.c:2267)
==49943==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==49943==    by 0x4ECAEA8: event_dispatch_epoll_handler (event-epoll.c:571)
==49943==    by 0x4ECB2C5: event_dispatch_epoll_worker (event-epoll.c:674)
==49943==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==49943== 
==49943== 4,194,720 bytes in 4 blocks are possibly lost in loss record 717 of 718
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x4EE16DD: rbuf_alloc_rvec (rot-buffs.c:68)
==49943==    by 0x4EE17AB: rlist_add_new_vec (rot-buffs.c:109)
==49943==    by 0x4EE1B61: rbuf_init (rot-buffs.c:211)
==49943==    by 0x132D6D33: changelog_init_rpc (changelog.c:2764)
==49943==    by 0x132D71B1: init (changelog.c:2850)
==49943==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==49943==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==49943==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==49943==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==49943==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==49943== 
==49943== 9,437,112 bytes in 1 blocks are possibly lost in loss record 718 of 718
==49943==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==49943==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==49943==    by 0x14C0CBCB: ios_create_sample_buf (io-stats.c:486)
==49943==    by 0x14C0CCCA: ios_init_sample_buf (io-stats.c:519)
==49943==    by 0x14C282AF: init (io-stats.c:3678)
==49943==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==49943==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==49943==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==49943==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==49943==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==49943==    by 0x40ECA5: mgmt_getspec_cbk (glusterfsd-mgmt.c:1648)
==49943==    by 0x51505D2: rpc_clnt_handle_reply (rpc-clnt.c:791)
==49943== 
==49943== LEAK SUMMARY:
==49943==    definitely lost: 131,048 bytes in 740 blocks
==49943==    indirectly lost: 73,404 bytes in 58 blocks
==49943==      possibly lost: 17,069,943 bytes in 442 blocks
==49943==    still reachable: 177,959 bytes in 2,990 blocks
==49943==         suppressed: 0 bytes in 0 blocks
==49943== Reachable blocks (those to which a pointer was found) are not shown.
==49943== To see them, rerun with: --leak-check=full --show-leak-kinds=all
==49943== 
==49943== For counts of detected and suppressed errors, rerun with: -v
==49943== ERROR SUMMARY: 7644 errors from 1441 contexts (suppressed: 0 from 0)


More information about the Gluster-devel mailing list