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

Kinglong Mee kinglongmee at gmail.com
Fri Jun 9 09:20:03 UTC 2017


Hi Sanoj,

On 6/9/2017 15:48, Sanoj Unnikrishnan wrote:
> I have not used valgrind before, so I may be wrong here.
> 
> I think the valgrind_stack_deregister should have been after GF_FREE_STACK.
> That may explain the instance of invalid_write during stack_destroy calls in after.log.

No. I move it, but the instance of invalid_write also exist.

> 
> There seems to be numerous issues reported in before.log (I am assuming, you did not have the valgrind_stack_register call in it), 

Yes, the before.log is test without any code change(but without io-threads).

> From http://valgrind.org/docs/manual/manual-core.html <http://valgrind.org/docs/manual/manual-core.html>, looks like valgrind detects client switching stack only If a memory of > 2MB change in Stack pointer register. 

I test with a larger max-stackframe as, 
valgrind  --leak-check=full --max-stackframe=242293216 

> Is it possible that since marker is only using 16k, the stack pointer could have been in less than 2MB offset from current Stack Pointer?

Maybe.
But with io-threads (with adding valgrind_stack_deregister), the valgrind only show some
"Invalid read/write" about __gf_mem_invalidate.
The only reason here I think is the stack size (16K) of marker using.

I have not used makecontext/swapcontext before, am i right?
1. without swapconext, the stack maybe (just an example)
   --> io_stats-> quota-> marker-> io-threads ->.....

2. with swapcontext, 
   --> io_stats-> quota-> marker
               swithto new stack -> io-threads

After switchto new stack, the new stack size is 16K,
Does it enough without io-threads?

I don't know what's the behave of io-threads, does it call all sub-xlator using the 16K ? or others?

> It seems unlikely to me since we are allocating the stack from heap.
> 
> Did you try a run with the valgrind instrumentation, without changing stack size ?

OK.
The following valgrind-without-stack-change.log is test with adding valgrind_stack_deregister
(and without io-threads).

thanks,
Kinglong Mee

> None of this explains the crash though.. We had seen a memory overrun crash in same code path on netbsd earlier but did not follow up then.
> Will look further into it.
> 
> 
> 
> On Thu, Jun 8, 2017 at 4:51 PM, Kinglong Mee <kinglongmee at gmail.com <mailto:kinglongmee at gmail.com>> wrote:
> 
>     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 <http://libpthread-2.17.so>)
>     ==35656==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so <http://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> <mailto: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> <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> <mailto: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> <http://lists.gluster.org/mailman/listinfo/gluster-devel <http://lists.gluster.org/mailman/listinfo/gluster-devel>>
>     >
>     >
> 
> 

-------------- next part --------------
==43197== Memcheck, a memory error detector
==43197== Copyright (C) 2002-2015, and GNU GPL'd, by Julian Seward et al.
==43197== Using Valgrind-3.11.0 and LibVEX; rerun with -h for copyright info
==43197== 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 49169 --xlator-option gvtest-server.listen-port=49169
==43197== Parent PID: 43100
==43197== 
==43197== 
==43197== HEAP SUMMARY:
==43197==     in use at exit: 246,367 bytes in 66 blocks
==43197==   total heap usage: 111 allocs, 45 frees, 258,312 bytes allocated
==43197== 
==43197== 77 bytes in 1 blocks are definitely lost in loss record 2 of 48
==43197==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43197==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43197==    by 0x4E5D949: gf_strdup (mem-pool.h:187)
==43197==    by 0x4E5DF57: log_buf_init (logging.c:317)
==43197==    by 0x4E61F6B: _gf_msg_internal (logging.c:1966)
==43197==    by 0x4E624BB: _gf_msg (logging.c:2081)
==43197==    by 0x40A77B: main (glusterfsd.c:2453)
==43197== 
==43197== 85 bytes in 1 blocks are definitely lost in loss record 3 of 48
==43197==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43197==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43197==    by 0x4E5D949: gf_strdup (mem-pool.h:187)
==43197==    by 0x4E5DF34: log_buf_init (logging.c:313)
==43197==    by 0x4E61F6B: _gf_msg_internal (logging.c:1966)
==43197==    by 0x4E624BB: _gf_msg (logging.c:2081)
==43197==    by 0x40A77B: main (glusterfsd.c:2453)
==43197== 
==43197== 87 bytes in 1 blocks are possibly lost in loss record 4 of 48
==43197==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43197==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43197==    by 0x4052E4: gf_strdup (mem-pool.h:187)
==43197==    by 0x40690C: gf_remember_backup_volfile_server (glusterfsd.c:688)
==43197==    by 0x4070DB: parse_opts (glusterfsd.c:836)
==43197==    by 0x67B4F7C: argp_parse (in /usr/lib64/libc-2.17.so)
==43197==    by 0x4092D4: parse_cmdline (glusterfsd.c:1866)
==43197==    by 0x40A5E5: main (glusterfsd.c:2417)
==43197== 
==43197== 89 bytes in 1 blocks are possibly lost in loss record 5 of 48
==43197==    at 0x4C27BE3: malloc (vg_replace_malloc.c:299)
==43197==    by 0x4E8FB45: __gf_malloc (mem-pool.c:142)
==43197==    by 0x4E8FDF0: gf_vasprintf (mem-pool.c:221)
==43197==    by 0x4E8FEDF: gf_asprintf (mem-pool.c:240)
==43197==    by 0x4E904D2: mem_pool_new_fn (mem-pool.c:385)
==43197==    by 0x40886F: glusterfs_ctx_defaults_init (glusterfsd.c:1514)
==43197==    by 0x40A5BC: main (glusterfsd.c:2413)
==43197== 
==43197== 89 bytes in 1 blocks are possibly lost in loss record 6 of 48
==43197==    at 0x4C27BE3: malloc (vg_replace_malloc.c:299)
==43197==    by 0x4E8FB45: __gf_malloc (mem-pool.c:142)
==43197==    by 0x4E8FDF0: gf_vasprintf (mem-pool.c:221)
==43197==    by 0x4E8FEDF: gf_asprintf (mem-pool.c:240)
==43197==    by 0x4E904D2: mem_pool_new_fn (mem-pool.c:385)
==43197==    by 0x4088D7: glusterfs_ctx_defaults_init (glusterfsd.c:1523)
==43197==    by 0x40A5BC: main (glusterfsd.c:2413)
==43197== 
==43197== 92 bytes in 1 blocks are possibly lost in loss record 7 of 48
==43197==    at 0x4C27BE3: malloc (vg_replace_malloc.c:299)
==43197==    by 0x4E8FB45: __gf_malloc (mem-pool.c:142)
==43197==    by 0x4E8FDF0: gf_vasprintf (mem-pool.c:221)
==43197==    by 0x4E8FEDF: gf_asprintf (mem-pool.c:240)
==43197==    by 0x4E904D2: mem_pool_new_fn (mem-pool.c:385)
==43197==    by 0x40890B: glusterfs_ctx_defaults_init (glusterfsd.c:1527)
==43197==    by 0x40A5BC: main (glusterfsd.c:2413)
==43197== 
==43197== 93 bytes in 1 blocks are possibly lost in loss record 8 of 48
==43197==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43197==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43197==    by 0x4E5D949: gf_strdup (mem-pool.h:187)
==43197==    by 0x4E5EA2C: gf_log_init (logging.c:685)
==43197==    by 0x408CCA: logging_init (glusterfsd.c:1628)
==43197==    by 0x40A65E: main (glusterfsd.c:2438)
==43197== 
==43197== 94 bytes in 1 blocks are possibly lost in loss record 9 of 48
==43197==    at 0x4C27BE3: malloc (vg_replace_malloc.c:299)
==43197==    by 0x4E8FB45: __gf_malloc (mem-pool.c:142)
==43197==    by 0x4E8FDF0: gf_vasprintf (mem-pool.c:221)
==43197==    by 0x4E8FEDF: gf_asprintf (mem-pool.c:240)
==43197==    by 0x4E904D2: mem_pool_new_fn (mem-pool.c:385)
==43197==    by 0x4087EF: glusterfs_ctx_defaults_init (glusterfsd.c:1508)
==43197==    by 0x40A5BC: main (glusterfsd.c:2413)
==43197== 
==43197== 94 bytes in 1 blocks are possibly lost in loss record 10 of 48
==43197==    at 0x4C27BE3: malloc (vg_replace_malloc.c:299)
==43197==    by 0x4E8FB45: __gf_malloc (mem-pool.c:142)
==43197==    by 0x4E8FDF0: gf_vasprintf (mem-pool.c:221)
==43197==    by 0x4E8FEDF: gf_asprintf (mem-pool.c:240)
==43197==    by 0x4E904D2: mem_pool_new_fn (mem-pool.c:385)
==43197==    by 0x4088A3: glusterfs_ctx_defaults_init (glusterfsd.c:1518)
==43197==    by 0x40A5BC: main (glusterfsd.c:2413)
==43197== 
==43197== 94 bytes in 1 blocks are possibly lost in loss record 11 of 48
==43197==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43197==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43197==    by 0x4052E4: gf_strdup (mem-pool.h:187)
==43197==    by 0x407942: parse_opts (glusterfsd.c:1095)
==43197==    by 0x67B5412: argp_parse (in /usr/lib64/libc-2.17.so)
==43197==    by 0x4092D4: parse_cmdline (glusterfsd.c:1866)
==43197==    by 0x40A5E5: main (glusterfsd.c:2417)
==43197== 
==43197== 95 bytes in 1 blocks are possibly lost in loss record 12 of 48
==43197==    at 0x4C27BE3: malloc (vg_replace_malloc.c:299)
==43197==    by 0x4E8FB45: __gf_malloc (mem-pool.c:142)
==43197==    by 0x4E8FDF0: gf_vasprintf (mem-pool.c:221)
==43197==    by 0x4E8FEDF: gf_asprintf (mem-pool.c:240)
==43197==    by 0x4E904D2: mem_pool_new_fn (mem-pool.c:385)
==43197==    by 0x4086EA: glusterfs_ctx_defaults_init (glusterfsd.c:1496)
==43197==    by 0x40A5BC: main (glusterfsd.c:2413)
==43197== 
==43197== 95 bytes in 1 blocks are possibly lost in loss record 13 of 48
==43197==    at 0x4C27BE3: malloc (vg_replace_malloc.c:299)
==43197==    by 0x4E8FB45: __gf_malloc (mem-pool.c:142)
==43197==    by 0x4E8FDF0: gf_vasprintf (mem-pool.c:221)
==43197==    by 0x4E8FEDF: gf_asprintf (mem-pool.c:240)
==43197==    by 0x4E904D2: mem_pool_new_fn (mem-pool.c:385)
==43197==    by 0x408772: glusterfs_ctx_defaults_init (glusterfsd.c:1502)
==43197==    by 0x40A5BC: main (glusterfsd.c:2413)
==43197== 
==43197== 97 bytes in 1 blocks are possibly lost in loss record 14 of 48
==43197==    at 0x4C27BE3: malloc (vg_replace_malloc.c:299)
==43197==    by 0x4E8FB45: __gf_malloc (mem-pool.c:142)
==43197==    by 0x4E8FDF0: gf_vasprintf (mem-pool.c:221)
==43197==    by 0x4E8FEDF: gf_asprintf (mem-pool.c:240)
==43197==    by 0x4E6BA5F: gf_set_log_ident (common-utils.c:3491)
==43197==    by 0x408C34: logging_init (glusterfsd.c:1609)
==43197==    by 0x40A65E: main (glusterfsd.c:2438)
==43197== 
==43197== 99 bytes in 1 blocks are definitely lost in loss record 15 of 48
==43197==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43197==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43197==    by 0x4E5D949: gf_strdup (mem-pool.h:187)
==43197==    by 0x4E5DF0E: log_buf_init (logging.c:309)
==43197==    by 0x4E61F6B: _gf_msg_internal (logging.c:1966)
==43197==    by 0x4E624BB: _gf_msg (logging.c:2081)
==43197==    by 0x40A77B: main (glusterfsd.c:2453)
==43197== 
==43197== 112 bytes in 1 blocks are possibly lost in loss record 16 of 48
==43197==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43197==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43197==    by 0x4068D5: gf_remember_backup_volfile_server (glusterfsd.c:681)
==43197==    by 0x4070DB: parse_opts (glusterfsd.c:836)
==43197==    by 0x67B4F7C: argp_parse (in /usr/lib64/libc-2.17.so)
==43197==    by 0x4092D4: parse_cmdline (glusterfsd.c:1866)
==43197==    by 0x40A5E5: main (glusterfsd.c:2417)
==43197== 
==43197== 115 bytes in 1 blocks are possibly lost in loss record 17 of 48
==43197==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43197==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43197==    by 0x4052E4: gf_strdup (mem-pool.h:187)
==43197==    by 0x4074EC: parse_opts (glusterfsd.c:966)
==43197==    by 0x67B5412: argp_parse (in /usr/lib64/libc-2.17.so)
==43197==    by 0x4092D4: parse_cmdline (glusterfsd.c:1866)
==43197==    by 0x40A5E5: main (glusterfsd.c:2417)
==43197== 
==43197== 118 bytes in 1 blocks are possibly lost in loss record 18 of 48
==43197==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43197==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43197==    by 0x4E63EFC: gf_strdup (mem-pool.h:187)
==43197==    by 0x4E6A501: generate_glusterfs_ctx_id (common-utils.c:2941)
==43197==    by 0x408478: glusterfs_ctx_defaults_init (glusterfsd.c:1465)
==43197==    by 0x40A5BC: main (glusterfsd.c:2413)
==43197== 
==43197== 123 bytes in 1 blocks are possibly lost in loss record 19 of 48
==43197==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43197==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43197==    by 0x4052E4: gf_strdup (mem-pool.h:187)
==43197==    by 0x407452: parse_opts (glusterfsd.c:946)
==43197==    by 0x67B4F7C: argp_parse (in /usr/lib64/libc-2.17.so)
==43197==    by 0x4092D4: parse_cmdline (glusterfsd.c:1866)
==43197==    by 0x40A5E5: main (glusterfsd.c:2417)
==43197== 
==43197== 123 bytes in 1 blocks are possibly lost in loss record 20 of 48
==43197==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43197==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43197==    by 0x4E5D949: gf_strdup (mem-pool.h:187)
==43197==    by 0x4E5EC50: gf_log_init (logging.c:735)
==43197==    by 0x408CCA: logging_init (glusterfsd.c:1628)
==43197==    by 0x40A65E: main (glusterfsd.c:2438)
==43197== 
==43197== 129 bytes in 1 blocks are possibly lost in loss record 21 of 48
==43197==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43197==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43197==    by 0x4052E4: gf_strdup (mem-pool.h:187)
==43197==    by 0x40752A: parse_opts (glusterfsd.c:974)
==43197==    by 0x67B4F7C: argp_parse (in /usr/lib64/libc-2.17.so)
==43197==    by 0x4092D4: parse_cmdline (glusterfsd.c:1866)
==43197==    by 0x40A5E5: main (glusterfsd.c:2417)
==43197== 
==43197== 144 bytes in 1 blocks are possibly lost in loss record 22 of 48
==43197==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43197==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43197==    by 0x4EC6949: gf_clienttable_alloc (client_t.c:97)
==43197==    by 0x408998: glusterfs_ctx_defaults_init (glusterfsd.c:1536)
==43197==    by 0x40A5BC: main (glusterfsd.c:2413)
==43197== 
==43197== 146 bytes in 1 blocks are possibly lost in loss record 23 of 48
==43197==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43197==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43197==    by 0x4052E4: gf_strdup (mem-pool.h:187)
==43197==    by 0x40750B: parse_opts (glusterfsd.c:970)
==43197==    by 0x67B4F7C: argp_parse (in /usr/lib64/libc-2.17.so)
==43197==    by 0x4092D4: parse_cmdline (glusterfsd.c:1866)
==43197==    by 0x40A5E5: main (glusterfsd.c:2417)
==43197== 
==43197== 152 bytes in 1 blocks are possibly lost in loss record 24 of 48
==43197==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43197==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43197==    by 0x4085EF: glusterfs_ctx_defaults_init (glusterfsd.c:1486)
==43197==    by 0x40A5BC: main (glusterfsd.c:2413)
==43197== 
==43197== 166 bytes in 2 blocks are possibly lost in loss record 25 of 48
==43197==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43197==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43197==    by 0x406B0A: gf_remember_xlator_option (glusterfsd.c:742)
==43197==    by 0x40789D: parse_opts (glusterfsd.c:1075)
==43197==    by 0x67B5412: argp_parse (in /usr/lib64/libc-2.17.so)
==43197==    by 0x4092D4: parse_cmdline (glusterfsd.c:1866)
==43197==    by 0x40A5E5: main (glusterfsd.c:2417)
==43197== 
==43197== 172 bytes in 2 blocks are possibly lost in loss record 26 of 48
==43197==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43197==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43197==    by 0x406BE2: gf_remember_xlator_option (glusterfsd.c:755)
==43197==    by 0x40789D: parse_opts (glusterfsd.c:1075)
==43197==    by 0x67B5412: argp_parse (in /usr/lib64/libc-2.17.so)
==43197==    by 0x4092D4: parse_cmdline (glusterfsd.c:1866)
==43197==    by 0x40A5E5: main (glusterfsd.c:2417)
==43197== 
==43197== 187 bytes in 2 blocks are possibly lost in loss record 27 of 48
==43197==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43197==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43197==    by 0x4052E4: gf_strdup (mem-pool.h:187)
==43197==    by 0x406C99: gf_remember_xlator_option (glusterfsd.c:767)
==43197==    by 0x40789D: parse_opts (glusterfsd.c:1075)
==43197==    by 0x67B5412: argp_parse (in /usr/lib64/libc-2.17.so)
==43197==    by 0x4092D4: parse_cmdline (glusterfsd.c:1866)
==43197==    by 0x40A5E5: main (glusterfsd.c:2417)
==43197== 
==43197== 212 bytes in 1 blocks are possibly lost in loss record 28 of 48
==43197==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43197==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43197==    by 0x4E908B0: mem_get (mem-pool.c:513)
==43197==    by 0x4E906CE: mem_get0 (mem-pool.c:446)
==43197==    by 0x4E5DE4D: log_buf_new (logging.c:284)
==43197==    by 0x4E61F12: _gf_msg_internal (logging.c:1961)
==43197==    by 0x4E624BB: _gf_msg (logging.c:2081)
==43197==    by 0x40A77B: main (glusterfsd.c:2453)
==43197== 
==43197== 224 bytes in 1 blocks are possibly lost in loss record 29 of 48
==43197==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43197==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43197==    by 0x4E90487: mem_pool_new_fn (mem-pool.c:381)
==43197==    by 0x4086EA: glusterfs_ctx_defaults_init (glusterfsd.c:1496)
==43197==    by 0x40A5BC: main (glusterfsd.c:2413)
==43197== 
==43197== 224 bytes in 1 blocks are possibly lost in loss record 30 of 48
==43197==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43197==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43197==    by 0x4E90487: mem_pool_new_fn (mem-pool.c:381)
==43197==    by 0x408772: glusterfs_ctx_defaults_init (glusterfsd.c:1502)
==43197==    by 0x40A5BC: main (glusterfsd.c:2413)
==43197== 
==43197== 224 bytes in 1 blocks are possibly lost in loss record 31 of 48
==43197==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43197==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43197==    by 0x4E90487: mem_pool_new_fn (mem-pool.c:381)
==43197==    by 0x4087EF: glusterfs_ctx_defaults_init (glusterfsd.c:1508)
==43197==    by 0x40A5BC: main (glusterfsd.c:2413)
==43197== 
==43197== 224 bytes in 1 blocks are possibly lost in loss record 32 of 48
==43197==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43197==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43197==    by 0x4E90487: mem_pool_new_fn (mem-pool.c:381)
==43197==    by 0x40886F: glusterfs_ctx_defaults_init (glusterfsd.c:1514)
==43197==    by 0x40A5BC: main (glusterfsd.c:2413)
==43197== 
==43197== 224 bytes in 1 blocks are possibly lost in loss record 33 of 48
==43197==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43197==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43197==    by 0x4E90487: mem_pool_new_fn (mem-pool.c:381)
==43197==    by 0x4088A3: glusterfs_ctx_defaults_init (glusterfsd.c:1518)
==43197==    by 0x40A5BC: main (glusterfsd.c:2413)
==43197== 
==43197== 224 bytes in 1 blocks are possibly lost in loss record 34 of 48
==43197==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43197==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43197==    by 0x4E90487: mem_pool_new_fn (mem-pool.c:381)
==43197==    by 0x4088D7: glusterfs_ctx_defaults_init (glusterfsd.c:1523)
==43197==    by 0x40A5BC: main (glusterfsd.c:2413)
==43197== 
==43197== 224 bytes in 1 blocks are possibly lost in loss record 35 of 48
==43197==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43197==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43197==    by 0x4E90487: mem_pool_new_fn (mem-pool.c:381)
==43197==    by 0x40890B: glusterfs_ctx_defaults_init (glusterfsd.c:1527)
==43197==    by 0x40A5BC: main (glusterfsd.c:2413)
==43197== 
==43197== 224 bytes in 2 blocks are possibly lost in loss record 36 of 48
==43197==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43197==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43197==    by 0x406A49: gf_remember_xlator_option (glusterfsd.c:729)
==43197==    by 0x40789D: parse_opts (glusterfsd.c:1075)
==43197==    by 0x67B5412: argp_parse (in /usr/lib64/libc-2.17.so)
==43197==    by 0x4092D4: parse_cmdline (glusterfsd.c:1866)
==43197==    by 0x40A5E5: main (glusterfsd.c:2417)
==43197== 
==43197== 360 bytes in 1 blocks are possibly lost in loss record 37 of 48
==43197==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43197==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43197==    by 0x4E93243: iobuf_create_stdalloc_arena (iobuf.c:367)
==43197==    by 0x4E935BB: iobuf_pool_new (iobuf.c:431)
==43197==    by 0x4084EF: glusterfs_ctx_defaults_init (glusterfsd.c:1473)
==43197==    by 0x40A5BC: main (glusterfsd.c:2413)
==43197== 
==43197== 541 bytes in 1 blocks are possibly lost in loss record 38 of 48
==43197==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43197==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43197==    by 0x4052E4: gf_strdup (mem-pool.h:187)
==43197==    by 0x40A78A: main (glusterfsd.c:2456)
==43197== 
==43197== 607 bytes in 1 blocks are definitely lost in loss record 41 of 48
==43197==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43197==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43197==    by 0x4E5D949: gf_strdup (mem-pool.h:187)
==43197==    by 0x4E5DED4: log_buf_init (logging.c:303)
==43197==    by 0x4E61F6B: _gf_msg_internal (logging.c:1966)
==43197==    by 0x4E624BB: _gf_msg (logging.c:2081)
==43197==    by 0x40A77B: main (glusterfsd.c:2453)
==43197== 
==43197== 1,848 bytes in 1 blocks are possibly lost in loss record 42 of 48
==43197==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43197==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43197==    by 0x4E93338: iobuf_pool_new (iobuf.c:396)
==43197==    by 0x4084EF: glusterfs_ctx_defaults_init (glusterfsd.c:1473)
==43197==    by 0x40A5BC: main (glusterfsd.c:2413)
==43197== 
==43197== 2,120 bytes in 1 blocks are possibly lost in loss record 43 of 48
==43197==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43197==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43197==    by 0x4EC687D: gf_client_clienttable_expand (client_t.c:61)
==43197==    by 0x4EC69A8: gf_clienttable_alloc (client_t.c:104)
==43197==    by 0x408998: glusterfs_ctx_defaults_init (glusterfsd.c:1536)
==43197==    by 0x40A5BC: main (glusterfsd.c:2413)
==43197== 
==43197== 2,880 bytes in 8 blocks are possibly lost in loss record 44 of 48
==43197==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43197==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43197==    by 0x4E929B4: __iobuf_arena_alloc (iobuf.c:174)
==43197==    by 0x4E92E47: __iobuf_pool_add_arena (iobuf.c:272)
==43197==    by 0x4E92F7E: iobuf_pool_add_arena (iobuf.c:297)
==43197==    by 0x4E93595: iobuf_pool_new (iobuf.c:425)
==43197==    by 0x4084EF: glusterfs_ctx_defaults_init (glusterfsd.c:1473)
==43197==    by 0x40A5BC: main (glusterfsd.c:2413)
==43197== 
==43197== 12,768 bytes in 1 blocks are possibly lost in loss record 47 of 48
==43197==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43197==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43197==    by 0x4ECA5AB: event_pool_new_epoll (event-epoll.c:243)
==43197==    by 0x4E8EAED: event_pool_new (event.c:37)
==43197==    by 0x40856A: glusterfs_ctx_defaults_init (glusterfsd.c:1479)
==43197==    by 0x40A5BC: main (glusterfsd.c:2413)
==43197== 
==43197== 201,392 bytes in 8 blocks are possibly lost in loss record 48 of 48
==43197==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43197==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43197==    by 0x4E92574: __iobuf_arena_init_iobufs (iobuf.c:84)
==43197==    by 0x4E92B8D: __iobuf_arena_alloc (iobuf.c:208)
==43197==    by 0x4E92E47: __iobuf_pool_add_arena (iobuf.c:272)
==43197==    by 0x4E92F7E: iobuf_pool_add_arena (iobuf.c:297)
==43197==    by 0x4E93595: iobuf_pool_new (iobuf.c:425)
==43197==    by 0x4084EF: glusterfs_ctx_defaults_init (glusterfsd.c:1473)
==43197==    by 0x40A5BC: main (glusterfsd.c:2413)
==43197== 
==43197== LEAK SUMMARY:
==43197==    definitely lost: 868 bytes in 4 blocks
==43197==    indirectly lost: 0 bytes in 0 blocks
==43197==      possibly lost: 226,619 bytes in 57 blocks
==43197==    still reachable: 18,880 bytes in 5 blocks
==43197==         suppressed: 0 bytes in 0 blocks
==43197== Reachable blocks (those to which a pointer was found) are not shown.
==43197== To see them, rerun with: --leak-check=full --show-leak-kinds=all
==43197== 
==43197== For counts of detected and suppressed errors, rerun with: -v
==43197== ERROR SUMMARY: 43 errors from 43 contexts (suppressed: 0 from 0)
==43216== Thread 5:
==43216== Invalid read of size 4
==43216==    at 0x60B7210: pthread_spin_lock (in /usr/lib64/libpthread-2.17.so)
==43216==    by 0x4F10A23: default_lookup (defaults.c:2572)
==43216==    by 0x12BDCD6D: ctr_lookup (changetimerecorder.c:357)
==43216==    by 0x4F10A23: default_lookup (defaults.c:2572)
==43216==    by 0x134FDA85: br_stub_lookup (bit-rot-stub.c:2784)
==43216==    by 0x137092ED: posix_acl_lookup (posix-acl.c:971)
==43216==    by 0x13931121: pl_lookup (posix.c:2657)
==43216==    by 0x4F10A23: default_lookup (defaults.c:2572)
==43216==    by 0x4F10A23: default_lookup (defaults.c:2572)
==43216==    by 0x4F10A23: default_lookup (defaults.c:2572)
==43216==    by 0x14181538: up_lookup (upcall.c:775)
==43216==    by 0x4EA6E19: syncop_lookup (syncop.c:1228)
==43216==  Address 0x1753a904 is 116 bytes inside a block of size 1,924 alloc'd
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0x4E908B0: mem_get (mem-pool.c:513)
==43216==    by 0x4E906CE: mem_get0 (mem-pool.c:446)
==43216==    by 0x4E9921D: create_frame (stack.c:25)
==43216==    by 0x4EA5156: synctask_create (syncop.c:472)
==43216==    by 0x4EA55AE: synctask_new1 (syncop.c:576)
==43216==    by 0x143AE0D7: mq_synctask1 (marker-quota.c:1078)
==43216==    by 0x143AE199: mq_synctask (marker-quota.c:1097)
==43216==    by 0x143AE6F6: _mq_create_xattrs_txn (marker-quota.c:1236)
==43216==    by 0x143AE82D: mq_create_xattrs_txn (marker-quota.c:1253)
==43216==    by 0x143B0DCB: mq_inspect_directory_xattr (marker-quota.c:2027)
==43216== 
==43216== Invalid read of size 4
==43216==    at 0x60B7222: pthread_spin_lock (in /usr/lib64/libpthread-2.17.so)
==43216==    by 0x4F10A23: default_lookup (defaults.c:2572)
==43216==    by 0x12BDCD6D: ctr_lookup (changetimerecorder.c:357)
==43216==    by 0x4F10A23: default_lookup (defaults.c:2572)
==43216==    by 0x134FDA85: br_stub_lookup (bit-rot-stub.c:2784)
==43216==    by 0x137092ED: posix_acl_lookup (posix-acl.c:971)
==43216==    by 0x13931121: pl_lookup (posix.c:2657)
==43216==    by 0x4F10A23: default_lookup (defaults.c:2572)
==43216==    by 0x4F10A23: default_lookup (defaults.c:2572)
==43216==    by 0x4F10A23: default_lookup (defaults.c:2572)
==43216==    by 0x14181538: up_lookup (upcall.c:775)
==43216==    by 0x4EA6E19: syncop_lookup (syncop.c:1228)
==43216==  Address 0x1753a904 is 116 bytes inside a block of size 1,924 alloc'd
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0x4E908B0: mem_get (mem-pool.c:513)
==43216==    by 0x4E906CE: mem_get0 (mem-pool.c:446)
==43216==    by 0x4E9921D: create_frame (stack.c:25)
==43216==    by 0x4EA5156: synctask_create (syncop.c:472)
==43216==    by 0x4EA55AE: synctask_new1 (syncop.c:576)
==43216==    by 0x143AE0D7: mq_synctask1 (marker-quota.c:1078)
==43216==    by 0x143AE199: mq_synctask (marker-quota.c:1097)
==43216==    by 0x143AE6F6: _mq_create_xattrs_txn (marker-quota.c:1236)
==43216==    by 0x143AE82D: mq_create_xattrs_txn (marker-quota.c:1253)
==43216==    by 0x143B0DCB: mq_inspect_directory_xattr (marker-quota.c:2027)
==43216== 
==43216== Thread 6:
==43216== Invalid write of size 8
==43216==    at 0x1505E8B5: list_del_init (list.h:88)
==43216==    by 0x1505EBC4: STACK_DESTROY (stack.h:163)
==43216==    by 0x1505FB69: server_submit_reply (server.c:223)
==43216==    by 0x1507727C: server_lookup_cbk (server-rpc-fops.c:169)
==43216==    by 0x14C16C3F: io_stats_lookup_cbk (io-stats.c:2115)
==43216==    by 0x149E3453: quota_lookup_cbk (quota.c:1612)
==43216==    by 0x4F0100E: default_lookup_cbk (defaults.c:1265)
==43216==    by 0x143A6D7B: marker_lookup_cbk (marker.c:2945)
==43216==    by 0x141811E0: up_lookup_cbk (upcall.c:753)
==43216==    by 0x13930D5A: pl_lookup_cbk (posix.c:2648)
==43216==    by 0x13708E35: posix_acl_lookup_cbk (posix-acl.c:919)
==43216==    by 0x134FD448: br_stub_lookup_cbk (bit-rot-stub.c:2709)
==43216==  Address 0x1af1e524 is 100 bytes inside a block of size 1,924 alloc'd
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0x4E908B0: mem_get (mem-pool.c:513)
==43216==    by 0x4E906CE: mem_get0 (mem-pool.c:446)
==43216==    by 0x4E9921D: create_frame (stack.c:25)
==43216==    by 0x4EA5156: synctask_create (syncop.c:472)
==43216==    by 0x4EA55AE: synctask_new1 (syncop.c:576)
==43216==    by 0x143AE0D7: mq_synctask1 (marker-quota.c:1078)
==43216==    by 0x143AE199: mq_synctask (marker-quota.c:1097)
==43216==    by 0x143AE6F6: _mq_create_xattrs_txn (marker-quota.c:1236)
==43216==    by 0x143AE82D: mq_create_xattrs_txn (marker-quota.c:1253)
==43216==    by 0x143B0DCB: mq_inspect_directory_xattr (marker-quota.c:2027)
==43216== 
==43216== Invalid write of size 8
==43216==    at 0x4E9903E: list_add (list.h:33)
==43216==    by 0x4E9942A: create_frame (stack.c:57)
==43216==    by 0x150672FE: server_alloc_frame (server-helpers.c:394)
==43216==    by 0x150674A1: get_frame_from_request (server-helpers.c:435)
==43216==    by 0x1508D5E1: server3_3_setxattr (server-rpc-fops.c:4694)
==43216==    by 0x514731B: rpcsvc_handle_rpc_call (rpcsvc.c:701)
==43216==    by 0x514766E: rpcsvc_notify (rpcsvc.c:795)
==43216==    by 0x514CD1D: rpc_transport_notify (rpc-transport.c:541)
==43216==    by 0xFEA9D43: socket_event_poll_in (socket.c:2267)
==43216==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==43216==    by 0x4ECB1D7: event_dispatch_epoll_handler (event-epoll.c:571)
==43216==    by 0x4ECB5F4: event_dispatch_epoll_worker (event-epoll.c:674)
==43216==  Address 0x1af1e524 is 100 bytes inside a block of size 1,924 alloc'd
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0x4E908B0: mem_get (mem-pool.c:513)
==43216==    by 0x4E906CE: mem_get0 (mem-pool.c:446)
==43216==    by 0x4E9921D: create_frame (stack.c:25)
==43216==    by 0x4EA5156: synctask_create (syncop.c:472)
==43216==    by 0x4EA55AE: synctask_new1 (syncop.c:576)
==43216==    by 0x143AE0D7: mq_synctask1 (marker-quota.c:1078)
==43216==    by 0x143AE199: mq_synctask (marker-quota.c:1097)
==43216==    by 0x143AE6F6: _mq_create_xattrs_txn (marker-quota.c:1236)
==43216==    by 0x143AE82D: mq_create_xattrs_txn (marker-quota.c:1253)
==43216==    by 0x143B0DCB: mq_inspect_directory_xattr (marker-quota.c:2027)
==43216== 
==43216== Invalid write of size 8
==43216==    at 0x1505E8B5: list_del_init (list.h:88)
==43216==    by 0x1505EBC4: STACK_DESTROY (stack.h:163)
==43216==    by 0x1505FB69: server_submit_reply (server.c:223)
==43216==    by 0x15079FD7: server_setxattr_cbk (server-rpc-fops.c:901)
==43216==    by 0x14C1941C: io_stats_setxattr_cbk (io-stats.c:2269)
==43216==    by 0x149F7166: quota_setxattr_cbk (quota.c:4012)
==43216==    by 0x143A2B5E: marker_setxattr_cbk (marker.c:2403)
==43216==    by 0x137142BD: posix_acl_setxattr_cbk (posix-acl.c:2077)
==43216==    by 0x132CF81A: changelog_setxattr_cbk (changelog.c:1417)
==43216==    by 0x12BE445D: ctr_setxattr_cbk (changetimerecorder.c:1236)
==43216==    by 0x1217DBAA: posix_setxattr (posix.c:3943)
==43216==    by 0x4F0F4DC: default_setxattr (defaults.c:2295)
==43216==  Address 0x1af1e524 is 100 bytes inside a block of size 1,924 alloc'd
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0x4E908B0: mem_get (mem-pool.c:513)
==43216==    by 0x4E906CE: mem_get0 (mem-pool.c:446)
==43216==    by 0x4E9921D: create_frame (stack.c:25)
==43216==    by 0x4EA5156: synctask_create (syncop.c:472)
==43216==    by 0x4EA55AE: synctask_new1 (syncop.c:576)
==43216==    by 0x143AE0D7: mq_synctask1 (marker-quota.c:1078)
==43216==    by 0x143AE199: mq_synctask (marker-quota.c:1097)
==43216==    by 0x143AE6F6: _mq_create_xattrs_txn (marker-quota.c:1236)
==43216==    by 0x143AE82D: mq_create_xattrs_txn (marker-quota.c:1253)
==43216==    by 0x143B0DCB: mq_inspect_directory_xattr (marker-quota.c:2027)
==43216== 
==43216== Invalid read of size 8
==43216==    at 0x4E70270: __dentry_grep (inode.c:735)
==43216==    by 0x4E70391: inode_grep (inode.c:760)
==43216==    by 0x1506450B: resolve_entry_simple (server-resolve.c:302)
==43216==    by 0x150646A4: server_resolve_entry (server-resolve.c:357)
==43216==    by 0x15064CAF: server_resolve (server-resolve.c:558)
==43216==    by 0x15064E6B: server_resolve_all (server-resolve.c:614)
==43216==    by 0x15064F80: resolve_and_resume (server-resolve.c:645)
==43216==    by 0x15093491: server3_3_lookup (server-rpc-fops.c:6513)
==43216==    by 0x514731B: rpcsvc_handle_rpc_call (rpcsvc.c:701)
==43216==    by 0x514766E: rpcsvc_notify (rpcsvc.c:795)
==43216==    by 0x514CD1D: rpc_transport_notify (rpc-transport.c:541)
==43216==    by 0xFEA9D43: socket_event_poll_in (socket.c:2267)
==43216==  Address 0x1753a54c is 140 bytes inside a block of size 156 alloc'd
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0x4E908B0: mem_get (mem-pool.c:513)
==43216==    by 0x4E906CE: mem_get0 (mem-pool.c:446)
==43216==    by 0x4E6FCB3: __dentry_create (inode.c:562)
==43216==    by 0x4E70B3B: __inode_link (inode.c:1016)
==43216==    by 0x4E70D02: inode_link (inode.c:1060)
==43216==    by 0x149E0E73: quota_build_ancestry_cbk (quota.c:778)
==43216==    by 0x143A79A9: marker_build_ancestry_cbk (marker.c:3055)
==43216==    by 0x14186A63: up_readdir_cbk (upcall.c:1264)
==43216==    by 0x13931DF5: pl_readdirp_cbk (posix.c:2700)
==43216==    by 0x137121B8: posix_acl_readdirp_cbk (posix-acl.c:1714)
==43216== 
==43216== Invalid read of size 8
==43216==    at 0x4E7027E: __dentry_grep (inode.c:735)
==43216==    by 0x4E70391: inode_grep (inode.c:760)
==43216==    by 0x1506450B: resolve_entry_simple (server-resolve.c:302)
==43216==    by 0x150646A4: server_resolve_entry (server-resolve.c:357)
==43216==    by 0x15064CAF: server_resolve (server-resolve.c:558)
==43216==    by 0x15064E6B: server_resolve_all (server-resolve.c:614)
==43216==    by 0x15064F80: resolve_and_resume (server-resolve.c:645)
==43216==    by 0x15093491: server3_3_lookup (server-rpc-fops.c:6513)
==43216==    by 0x514731B: rpcsvc_handle_rpc_call (rpcsvc.c:701)
==43216==    by 0x514766E: rpcsvc_notify (rpcsvc.c:795)
==43216==    by 0x514CD1D: rpc_transport_notify (rpc-transport.c:541)
==43216==    by 0xFEA9D43: socket_event_poll_in (socket.c:2267)
==43216==  Address 0x1753a544 is 132 bytes inside a block of size 156 alloc'd
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0x4E908B0: mem_get (mem-pool.c:513)
==43216==    by 0x4E906CE: mem_get0 (mem-pool.c:446)
==43216==    by 0x4E6FCB3: __dentry_create (inode.c:562)
==43216==    by 0x4E70B3B: __inode_link (inode.c:1016)
==43216==    by 0x4E70D02: inode_link (inode.c:1060)
==43216==    by 0x149E0E73: quota_build_ancestry_cbk (quota.c:778)
==43216==    by 0x143A79A9: marker_build_ancestry_cbk (marker.c:3055)
==43216==    by 0x14186A63: up_readdir_cbk (upcall.c:1264)
==43216==    by 0x13931DF5: pl_readdirp_cbk (posix.c:2700)
==43216==    by 0x137121B8: posix_acl_readdirp_cbk (posix-acl.c:1714)
==43216== 
==43216== Invalid read of size 8
==43216==    at 0x4E703A1: inode_grep (inode.c:763)
==43216==    by 0x1506450B: resolve_entry_simple (server-resolve.c:302)
==43216==    by 0x150646A4: server_resolve_entry (server-resolve.c:357)
==43216==    by 0x15064CAF: server_resolve (server-resolve.c:558)
==43216==    by 0x15064E6B: server_resolve_all (server-resolve.c:614)
==43216==    by 0x15064F80: resolve_and_resume (server-resolve.c:645)
==43216==    by 0x15093491: server3_3_lookup (server-rpc-fops.c:6513)
==43216==    by 0x514731B: rpcsvc_handle_rpc_call (rpcsvc.c:701)
==43216==    by 0x514766E: rpcsvc_notify (rpcsvc.c:795)
==43216==    by 0x514CD1D: rpc_transport_notify (rpc-transport.c:541)
==43216==    by 0xFEA9D43: socket_event_poll_in (socket.c:2267)
==43216==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==43216==  Address 0x1753a53c is 124 bytes inside a block of size 156 alloc'd
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0x4E908B0: mem_get (mem-pool.c:513)
==43216==    by 0x4E906CE: mem_get0 (mem-pool.c:446)
==43216==    by 0x4E6FCB3: __dentry_create (inode.c:562)
==43216==    by 0x4E70B3B: __inode_link (inode.c:1016)
==43216==    by 0x4E70D02: inode_link (inode.c:1060)
==43216==    by 0x149E0E73: quota_build_ancestry_cbk (quota.c:778)
==43216==    by 0x143A79A9: marker_build_ancestry_cbk (marker.c:3055)
==43216==    by 0x14186A63: up_readdir_cbk (upcall.c:1264)
==43216==    by 0x13931DF5: pl_readdirp_cbk (posix.c:2700)
==43216==    by 0x137121B8: posix_acl_readdirp_cbk (posix-acl.c:1714)
==43216== 
==43216== Invalid read of size 8
==43216==    at 0x4E70270: __dentry_grep (inode.c:735)
==43216==    by 0x4E70B07: __inode_link (inode.c:1013)
==43216==    by 0x4E70D02: inode_link (inode.c:1060)
==43216==    by 0x15098AD5: server_post_lookup (server-common.c:462)
==43216==    by 0x15077078: server_lookup_cbk (server-rpc-fops.c:141)
==43216==    by 0x14C16C3F: io_stats_lookup_cbk (io-stats.c:2115)
==43216==    by 0x149E3453: quota_lookup_cbk (quota.c:1612)
==43216==    by 0x4F0100E: default_lookup_cbk (defaults.c:1265)
==43216==    by 0x143A6D7B: marker_lookup_cbk (marker.c:2945)
==43216==    by 0x141811E0: up_lookup_cbk (upcall.c:753)
==43216==    by 0x13930D5A: pl_lookup_cbk (posix.c:2648)
==43216==    by 0x13708E35: posix_acl_lookup_cbk (posix-acl.c:919)
==43216==  Address 0x1753a54c is 140 bytes inside a block of size 156 alloc'd
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0x4E908B0: mem_get (mem-pool.c:513)
==43216==    by 0x4E906CE: mem_get0 (mem-pool.c:446)
==43216==    by 0x4E6FCB3: __dentry_create (inode.c:562)
==43216==    by 0x4E70B3B: __inode_link (inode.c:1016)
==43216==    by 0x4E70D02: inode_link (inode.c:1060)
==43216==    by 0x149E0E73: quota_build_ancestry_cbk (quota.c:778)
==43216==    by 0x143A79A9: marker_build_ancestry_cbk (marker.c:3055)
==43216==    by 0x14186A63: up_readdir_cbk (upcall.c:1264)
==43216==    by 0x13931DF5: pl_readdirp_cbk (posix.c:2700)
==43216==    by 0x137121B8: posix_acl_readdirp_cbk (posix-acl.c:1714)
==43216== 
==43216== Invalid read of size 8
==43216==    at 0x4E7027E: __dentry_grep (inode.c:735)
==43216==    by 0x4E70B07: __inode_link (inode.c:1013)
==43216==    by 0x4E70D02: inode_link (inode.c:1060)
==43216==    by 0x15098AD5: server_post_lookup (server-common.c:462)
==43216==    by 0x15077078: server_lookup_cbk (server-rpc-fops.c:141)
==43216==    by 0x14C16C3F: io_stats_lookup_cbk (io-stats.c:2115)
==43216==    by 0x149E3453: quota_lookup_cbk (quota.c:1612)
==43216==    by 0x4F0100E: default_lookup_cbk (defaults.c:1265)
==43216==    by 0x143A6D7B: marker_lookup_cbk (marker.c:2945)
==43216==    by 0x141811E0: up_lookup_cbk (upcall.c:753)
==43216==    by 0x13930D5A: pl_lookup_cbk (posix.c:2648)
==43216==    by 0x13708E35: posix_acl_lookup_cbk (posix-acl.c:919)
==43216==  Address 0x1753a544 is 132 bytes inside a block of size 156 alloc'd
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0x4E908B0: mem_get (mem-pool.c:513)
==43216==    by 0x4E906CE: mem_get0 (mem-pool.c:446)
==43216==    by 0x4E6FCB3: __dentry_create (inode.c:562)
==43216==    by 0x4E70B3B: __inode_link (inode.c:1016)
==43216==    by 0x4E70D02: inode_link (inode.c:1060)
==43216==    by 0x149E0E73: quota_build_ancestry_cbk (quota.c:778)
==43216==    by 0x143A79A9: marker_build_ancestry_cbk (marker.c:3055)
==43216==    by 0x14186A63: up_readdir_cbk (upcall.c:1264)
==43216==    by 0x13931DF5: pl_readdirp_cbk (posix.c:2700)
==43216==    by 0x137121B8: posix_acl_readdirp_cbk (posix-acl.c:1714)
==43216== 
==43216== Invalid read of size 8
==43216==    at 0x4E70B17: __inode_link (inode.c:1015)
==43216==    by 0x4E70D02: inode_link (inode.c:1060)
==43216==    by 0x15098AD5: server_post_lookup (server-common.c:462)
==43216==    by 0x15077078: server_lookup_cbk (server-rpc-fops.c:141)
==43216==    by 0x14C16C3F: io_stats_lookup_cbk (io-stats.c:2115)
==43216==    by 0x149E3453: quota_lookup_cbk (quota.c:1612)
==43216==    by 0x4F0100E: default_lookup_cbk (defaults.c:1265)
==43216==    by 0x143A6D7B: marker_lookup_cbk (marker.c:2945)
==43216==    by 0x141811E0: up_lookup_cbk (upcall.c:753)
==43216==    by 0x13930D5A: pl_lookup_cbk (posix.c:2648)
==43216==    by 0x13708E35: posix_acl_lookup_cbk (posix-acl.c:919)
==43216==    by 0x134FD448: br_stub_lookup_cbk (bit-rot-stub.c:2709)
==43216==  Address 0x1753a53c is 124 bytes inside a block of size 156 alloc'd
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0x4E908B0: mem_get (mem-pool.c:513)
==43216==    by 0x4E906CE: mem_get0 (mem-pool.c:446)
==43216==    by 0x4E6FCB3: __dentry_create (inode.c:562)
==43216==    by 0x4E70B3B: __inode_link (inode.c:1016)
==43216==    by 0x4E70D02: inode_link (inode.c:1060)
==43216==    by 0x149E0E73: quota_build_ancestry_cbk (quota.c:778)
==43216==    by 0x143A79A9: marker_build_ancestry_cbk (marker.c:3055)
==43216==    by 0x14186A63: up_readdir_cbk (upcall.c:1264)
==43216==    by 0x13931DF5: pl_readdirp_cbk (posix.c:2700)
==43216==    by 0x137121B8: posix_acl_readdirp_cbk (posix-acl.c:1714)
==43216== 
==43216== Invalid read of size 8
==43216==    at 0x4E6E6E3: list_empty (list.h:114)
==43216==    by 0x4E6EB9B: __is_dentry_hashed (inode.c:107)
==43216==    by 0x4E71496: __dentry_search_arbit (inode.c:1279)
==43216==    by 0x4E717E0: __inode_path (inode.c:1378)
==43216==    by 0x4E71B98: inode_path (inode.c:1470)
==43216==    by 0x4E5C9DA: loc_touchup (xlator.c:807)
==43216==    by 0x15063606: resolve_loc_touchup (server-resolve.c:41)
==43216==    by 0x15064868: server_resolve_inode (server-resolve.c:426)
==43216==    by 0x15064CD4: server_resolve (server-resolve.c:562)
==43216==    by 0x15064E6B: server_resolve_all (server-resolve.c:614)
==43216==    by 0x15064F80: resolve_and_resume (server-resolve.c:645)
==43216==    by 0x1508D918: server3_3_setxattr (server-rpc-fops.c:4731)
==43216==  Address 0x1753a52c is 108 bytes inside a block of size 156 alloc'd
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0x4E908B0: mem_get (mem-pool.c:513)
==43216==    by 0x4E906CE: mem_get0 (mem-pool.c:446)
==43216==    by 0x4E6FCB3: __dentry_create (inode.c:562)
==43216==    by 0x4E70B3B: __inode_link (inode.c:1016)
==43216==    by 0x4E70D02: inode_link (inode.c:1060)
==43216==    by 0x149E0E73: quota_build_ancestry_cbk (quota.c:778)
==43216==    by 0x143A79A9: marker_build_ancestry_cbk (marker.c:3055)
==43216==    by 0x14186A63: up_readdir_cbk (upcall.c:1264)
==43216==    by 0x13931DF5: pl_readdirp_cbk (posix.c:2700)
==43216==    by 0x137121B8: posix_acl_readdirp_cbk (posix-acl.c:1714)
==43216== 
==43216== Invalid read of size 8
==43216==    at 0x4E717EE: __inode_path (inode.c:1380)
==43216==    by 0x4E71B98: inode_path (inode.c:1470)
==43216==    by 0x4E5C9DA: loc_touchup (xlator.c:807)
==43216==    by 0x15063606: resolve_loc_touchup (server-resolve.c:41)
==43216==    by 0x15064868: server_resolve_inode (server-resolve.c:426)
==43216==    by 0x15064CD4: server_resolve (server-resolve.c:562)
==43216==    by 0x15064E6B: server_resolve_all (server-resolve.c:614)
==43216==    by 0x15064F80: resolve_and_resume (server-resolve.c:645)
==43216==    by 0x1508D918: server3_3_setxattr (server-rpc-fops.c:4731)
==43216==    by 0x514731B: rpcsvc_handle_rpc_call (rpcsvc.c:701)
==43216==    by 0x514766E: rpcsvc_notify (rpcsvc.c:795)
==43216==    by 0x514CD1D: rpc_transport_notify (rpc-transport.c:541)
==43216==  Address 0x1753a54c is 140 bytes inside a block of size 156 alloc'd
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0x4E908B0: mem_get (mem-pool.c:513)
==43216==    by 0x4E906CE: mem_get0 (mem-pool.c:446)
==43216==    by 0x4E6FCB3: __dentry_create (inode.c:562)
==43216==    by 0x4E70B3B: __inode_link (inode.c:1016)
==43216==    by 0x4E70D02: inode_link (inode.c:1060)
==43216==    by 0x149E0E73: quota_build_ancestry_cbk (quota.c:778)
==43216==    by 0x143A79A9: marker_build_ancestry_cbk (marker.c:3055)
==43216==    by 0x14186A63: up_readdir_cbk (upcall.c:1264)
==43216==    by 0x13931DF5: pl_readdirp_cbk (posix.c:2700)
==43216==    by 0x137121B8: posix_acl_readdirp_cbk (posix-acl.c:1714)
==43216== 
==43216== Invalid read of size 8
==43216==    at 0x4E717FF: __inode_path (inode.c:1382)
==43216==    by 0x4E71B98: inode_path (inode.c:1470)
==43216==    by 0x4E5C9DA: loc_touchup (xlator.c:807)
==43216==    by 0x15063606: resolve_loc_touchup (server-resolve.c:41)
==43216==    by 0x15064868: server_resolve_inode (server-resolve.c:426)
==43216==    by 0x15064CD4: server_resolve (server-resolve.c:562)
==43216==    by 0x15064E6B: server_resolve_all (server-resolve.c:614)
==43216==    by 0x15064F80: resolve_and_resume (server-resolve.c:645)
==43216==    by 0x1508D918: server3_3_setxattr (server-rpc-fops.c:4731)
==43216==    by 0x514731B: rpcsvc_handle_rpc_call (rpcsvc.c:701)
==43216==    by 0x514766E: rpcsvc_notify (rpcsvc.c:795)
==43216==    by 0x514CD1D: rpc_transport_notify (rpc-transport.c:541)
==43216==  Address 0x1753a544 is 132 bytes inside a block of size 156 alloc'd
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0x4E908B0: mem_get (mem-pool.c:513)
==43216==    by 0x4E906CE: mem_get0 (mem-pool.c:446)
==43216==    by 0x4E6FCB3: __dentry_create (inode.c:562)
==43216==    by 0x4E70B3B: __inode_link (inode.c:1016)
==43216==    by 0x4E70D02: inode_link (inode.c:1060)
==43216==    by 0x149E0E73: quota_build_ancestry_cbk (quota.c:778)
==43216==    by 0x143A79A9: marker_build_ancestry_cbk (marker.c:3055)
==43216==    by 0x14186A63: up_readdir_cbk (upcall.c:1264)
==43216==    by 0x13931DF5: pl_readdirp_cbk (posix.c:2700)
==43216==    by 0x137121B8: posix_acl_readdirp_cbk (posix-acl.c:1714)
==43216== 
==43216== Invalid read of size 8
==43216==    at 0x4E6E6E3: list_empty (list.h:114)
==43216==    by 0x4E6EB9B: __is_dentry_hashed (inode.c:107)
==43216==    by 0x4E71496: __dentry_search_arbit (inode.c:1279)
==43216==    by 0x4E7199B: __inode_path (inode.c:1418)
==43216==    by 0x4E71B98: inode_path (inode.c:1470)
==43216==    by 0x4E5C9DA: loc_touchup (xlator.c:807)
==43216==    by 0x15063606: resolve_loc_touchup (server-resolve.c:41)
==43216==    by 0x15064868: server_resolve_inode (server-resolve.c:426)
==43216==    by 0x15064CD4: server_resolve (server-resolve.c:562)
==43216==    by 0x15064E6B: server_resolve_all (server-resolve.c:614)
==43216==    by 0x15064F80: resolve_and_resume (server-resolve.c:645)
==43216==    by 0x1508D918: server3_3_setxattr (server-rpc-fops.c:4731)
==43216==  Address 0x1753a52c is 108 bytes inside a block of size 156 alloc'd
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0x4E908B0: mem_get (mem-pool.c:513)
==43216==    by 0x4E906CE: mem_get0 (mem-pool.c:446)
==43216==    by 0x4E6FCB3: __dentry_create (inode.c:562)
==43216==    by 0x4E70B3B: __inode_link (inode.c:1016)
==43216==    by 0x4E70D02: inode_link (inode.c:1060)
==43216==    by 0x149E0E73: quota_build_ancestry_cbk (quota.c:778)
==43216==    by 0x143A79A9: marker_build_ancestry_cbk (marker.c:3055)
==43216==    by 0x14186A63: up_readdir_cbk (upcall.c:1264)
==43216==    by 0x13931DF5: pl_readdirp_cbk (posix.c:2700)
==43216==    by 0x137121B8: posix_acl_readdirp_cbk (posix-acl.c:1714)
==43216== 
==43216== Invalid read of size 8
==43216==    at 0x4E719A9: __inode_path (inode.c:1420)
==43216==    by 0x4E71B98: inode_path (inode.c:1470)
==43216==    by 0x4E5C9DA: loc_touchup (xlator.c:807)
==43216==    by 0x15063606: resolve_loc_touchup (server-resolve.c:41)
==43216==    by 0x15064868: server_resolve_inode (server-resolve.c:426)
==43216==    by 0x15064CD4: server_resolve (server-resolve.c:562)
==43216==    by 0x15064E6B: server_resolve_all (server-resolve.c:614)
==43216==    by 0x15064F80: resolve_and_resume (server-resolve.c:645)
==43216==    by 0x1508D918: server3_3_setxattr (server-rpc-fops.c:4731)
==43216==    by 0x514731B: rpcsvc_handle_rpc_call (rpcsvc.c:701)
==43216==    by 0x514766E: rpcsvc_notify (rpcsvc.c:795)
==43216==    by 0x514CD1D: rpc_transport_notify (rpc-transport.c:541)
==43216==  Address 0x1753a54c is 140 bytes inside a block of size 156 alloc'd
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0x4E908B0: mem_get (mem-pool.c:513)
==43216==    by 0x4E906CE: mem_get0 (mem-pool.c:446)
==43216==    by 0x4E6FCB3: __dentry_create (inode.c:562)
==43216==    by 0x4E70B3B: __inode_link (inode.c:1016)
==43216==    by 0x4E70D02: inode_link (inode.c:1060)
==43216==    by 0x149E0E73: quota_build_ancestry_cbk (quota.c:778)
==43216==    by 0x143A79A9: marker_build_ancestry_cbk (marker.c:3055)
==43216==    by 0x14186A63: up_readdir_cbk (upcall.c:1264)
==43216==    by 0x13931DF5: pl_readdirp_cbk (posix.c:2700)
==43216==    by 0x137121B8: posix_acl_readdirp_cbk (posix-acl.c:1714)
==43216== 
==43216== Invalid read of size 8
==43216==    at 0x4E719B5: __inode_path (inode.c:1421)
==43216==    by 0x4E71B98: inode_path (inode.c:1470)
==43216==    by 0x4E5C9DA: loc_touchup (xlator.c:807)
==43216==    by 0x15063606: resolve_loc_touchup (server-resolve.c:41)
==43216==    by 0x15064868: server_resolve_inode (server-resolve.c:426)
==43216==    by 0x15064CD4: server_resolve (server-resolve.c:562)
==43216==    by 0x15064E6B: server_resolve_all (server-resolve.c:614)
==43216==    by 0x15064F80: resolve_and_resume (server-resolve.c:645)
==43216==    by 0x1508D918: server3_3_setxattr (server-rpc-fops.c:4731)
==43216==    by 0x514731B: rpcsvc_handle_rpc_call (rpcsvc.c:701)
==43216==    by 0x514766E: rpcsvc_notify (rpcsvc.c:795)
==43216==    by 0x514CD1D: rpc_transport_notify (rpc-transport.c:541)
==43216==  Address 0x1753a544 is 132 bytes inside a block of size 156 alloc'd
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0x4E908B0: mem_get (mem-pool.c:513)
==43216==    by 0x4E906CE: mem_get0 (mem-pool.c:446)
==43216==    by 0x4E6FCB3: __dentry_create (inode.c:562)
==43216==    by 0x4E70B3B: __inode_link (inode.c:1016)
==43216==    by 0x4E70D02: inode_link (inode.c:1060)
==43216==    by 0x149E0E73: quota_build_ancestry_cbk (quota.c:778)
==43216==    by 0x143A79A9: marker_build_ancestry_cbk (marker.c:3055)
==43216==    by 0x14186A63: up_readdir_cbk (upcall.c:1264)
==43216==    by 0x13931DF5: pl_readdirp_cbk (posix.c:2700)
==43216==    by 0x137121B8: posix_acl_readdirp_cbk (posix-acl.c:1714)
==43216== 
==43216== Invalid read of size 8
==43216==    at 0x4E719CE: __inode_path (inode.c:1422)
==43216==    by 0x4E71B98: inode_path (inode.c:1470)
==43216==    by 0x4E5C9DA: loc_touchup (xlator.c:807)
==43216==    by 0x15063606: resolve_loc_touchup (server-resolve.c:41)
==43216==    by 0x15064868: server_resolve_inode (server-resolve.c:426)
==43216==    by 0x15064CD4: server_resolve (server-resolve.c:562)
==43216==    by 0x15064E6B: server_resolve_all (server-resolve.c:614)
==43216==    by 0x15064F80: resolve_and_resume (server-resolve.c:645)
==43216==    by 0x1508D918: server3_3_setxattr (server-rpc-fops.c:4731)
==43216==    by 0x514731B: rpcsvc_handle_rpc_call (rpcsvc.c:701)
==43216==    by 0x514766E: rpcsvc_notify (rpcsvc.c:795)
==43216==    by 0x514CD1D: rpc_transport_notify (rpc-transport.c:541)
==43216==  Address 0x1753a544 is 132 bytes inside a block of size 156 alloc'd
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0x4E908B0: mem_get (mem-pool.c:513)
==43216==    by 0x4E906CE: mem_get0 (mem-pool.c:446)
==43216==    by 0x4E6FCB3: __dentry_create (inode.c:562)
==43216==    by 0x4E70B3B: __inode_link (inode.c:1016)
==43216==    by 0x4E70D02: inode_link (inode.c:1060)
==43216==    by 0x149E0E73: quota_build_ancestry_cbk (quota.c:778)
==43216==    by 0x143A79A9: marker_build_ancestry_cbk (marker.c:3055)
==43216==    by 0x14186A63: up_readdir_cbk (upcall.c:1264)
==43216==    by 0x13931DF5: pl_readdirp_cbk (posix.c:2700)
==43216==    by 0x137121B8: posix_acl_readdirp_cbk (posix-acl.c:1714)
==43216== 
==43216== Thread 7:
==43216== Invalid read of size 8
==43216==    at 0x4E6E6E3: list_empty (list.h:114)
==43216==    by 0x4E6EB9B: __is_dentry_hashed (inode.c:107)
==43216==    by 0x4E71496: __dentry_search_arbit (inode.c:1279)
==43216==    by 0x4E715E7: inode_parent (inode.c:1316)
==43216==    by 0x143AE2DD: mq_prevalidate_txn (marker-quota.c:1126)
==43216==    by 0x143B124E: mq_xattr_state (marker-quota.c:2100)
==43216==    by 0x143A6E80: marker_lookup_cbk (marker.c:2961)
==43216==    by 0x141811E0: up_lookup_cbk (upcall.c:753)
==43216==    by 0x13930D5A: pl_lookup_cbk (posix.c:2648)
==43216==    by 0x13708E35: posix_acl_lookup_cbk (posix-acl.c:919)
==43216==    by 0x134FD448: br_stub_lookup_cbk (bit-rot-stub.c:2709)
==43216==    by 0x12BDC56C: ctr_lookup_cbk (changetimerecorder.c:306)
==43216==  Address 0x1753a52c is 108 bytes inside a block of size 156 alloc'd
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0x4E908B0: mem_get (mem-pool.c:513)
==43216==    by 0x4E906CE: mem_get0 (mem-pool.c:446)
==43216==    by 0x4E6FCB3: __dentry_create (inode.c:562)
==43216==    by 0x4E70B3B: __inode_link (inode.c:1016)
==43216==    by 0x4E70D02: inode_link (inode.c:1060)
==43216==    by 0x149E0E73: quota_build_ancestry_cbk (quota.c:778)
==43216==    by 0x143A79A9: marker_build_ancestry_cbk (marker.c:3055)
==43216==    by 0x14186A63: up_readdir_cbk (upcall.c:1264)
==43216==    by 0x13931DF5: pl_readdirp_cbk (posix.c:2700)
==43216==    by 0x137121B8: posix_acl_readdirp_cbk (posix-acl.c:1714)
==43216== 
==43216== Invalid read of size 8
==43216==    at 0x4E715F7: inode_parent (inode.c:1320)
==43216==    by 0x143AE2DD: mq_prevalidate_txn (marker-quota.c:1126)
==43216==    by 0x143B124E: mq_xattr_state (marker-quota.c:2100)
==43216==    by 0x143A6E80: marker_lookup_cbk (marker.c:2961)
==43216==    by 0x141811E0: up_lookup_cbk (upcall.c:753)
==43216==    by 0x13930D5A: pl_lookup_cbk (posix.c:2648)
==43216==    by 0x13708E35: posix_acl_lookup_cbk (posix-acl.c:919)
==43216==    by 0x134FD448: br_stub_lookup_cbk (bit-rot-stub.c:2709)
==43216==    by 0x12BDC56C: ctr_lookup_cbk (changetimerecorder.c:306)
==43216==    by 0x121659B6: posix_lookup (posix.c:270)
==43216==    by 0x4F10A23: default_lookup (defaults.c:2572)
==43216==    by 0x12BDCD6D: ctr_lookup (changetimerecorder.c:357)
==43216==  Address 0x1753a54c is 140 bytes inside a block of size 156 alloc'd
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0x4E908B0: mem_get (mem-pool.c:513)
==43216==    by 0x4E906CE: mem_get0 (mem-pool.c:446)
==43216==    by 0x4E6FCB3: __dentry_create (inode.c:562)
==43216==    by 0x4E70B3B: __inode_link (inode.c:1016)
==43216==    by 0x4E70D02: inode_link (inode.c:1060)
==43216==    by 0x149E0E73: quota_build_ancestry_cbk (quota.c:778)
==43216==    by 0x143A79A9: marker_build_ancestry_cbk (marker.c:3055)
==43216==    by 0x14186A63: up_readdir_cbk (upcall.c:1264)
==43216==    by 0x13931DF5: pl_readdirp_cbk (posix.c:2700)
==43216==    by 0x137121B8: posix_acl_readdirp_cbk (posix-acl.c:1714)
==43216== 
==43216== Thread 6:
==43216== Invalid read of size 8
==43216==    at 0x4E6E6E3: list_empty (list.h:114)
==43216==    by 0x4E6EB9B: __is_dentry_hashed (inode.c:107)
==43216==    by 0x4E71496: __dentry_search_arbit (inode.c:1279)
==43216==    by 0x4E7188A: __inode_path (inode.c:1379)
==43216==    by 0x4E71B98: inode_path (inode.c:1470)
==43216==    by 0x4E5C9DA: loc_touchup (xlator.c:807)
==43216==    by 0x15063606: resolve_loc_touchup (server-resolve.c:41)
==43216==    by 0x15064868: server_resolve_inode (server-resolve.c:426)
==43216==    by 0x15064CD4: server_resolve (server-resolve.c:562)
==43216==    by 0x15064E6B: server_resolve_all (server-resolve.c:614)
==43216==    by 0x15064F80: resolve_and_resume (server-resolve.c:645)
==43216==    by 0x15093491: server3_3_lookup (server-rpc-fops.c:6513)
==43216==  Address 0x1753a52c is 108 bytes inside a block of size 156 alloc'd
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0x4E908B0: mem_get (mem-pool.c:513)
==43216==    by 0x4E906CE: mem_get0 (mem-pool.c:446)
==43216==    by 0x4E6FCB3: __dentry_create (inode.c:562)
==43216==    by 0x4E70B3B: __inode_link (inode.c:1016)
==43216==    by 0x4E70D02: inode_link (inode.c:1060)
==43216==    by 0x149E0E73: quota_build_ancestry_cbk (quota.c:778)
==43216==    by 0x143A79A9: marker_build_ancestry_cbk (marker.c:3055)
==43216==    by 0x14186A63: up_readdir_cbk (upcall.c:1264)
==43216==    by 0x13931DF5: pl_readdirp_cbk (posix.c:2700)
==43216==    by 0x137121B8: posix_acl_readdirp_cbk (posix-acl.c:1714)
==43216== 
==43216== Invalid read of size 8
==43216==    at 0x4E6E6E3: list_empty (list.h:114)
==43216==    by 0x4E6EB9B: __is_dentry_hashed (inode.c:107)
==43216==    by 0x4E71496: __dentry_search_arbit (inode.c:1279)
==43216==    by 0x4E71A25: __inode_path (inode.c:1419)
==43216==    by 0x4E71B98: inode_path (inode.c:1470)
==43216==    by 0x4E5C9DA: loc_touchup (xlator.c:807)
==43216==    by 0x15063606: resolve_loc_touchup (server-resolve.c:41)
==43216==    by 0x15064868: server_resolve_inode (server-resolve.c:426)
==43216==    by 0x15064CD4: server_resolve (server-resolve.c:562)
==43216==    by 0x15064E6B: server_resolve_all (server-resolve.c:614)
==43216==    by 0x15064F80: resolve_and_resume (server-resolve.c:645)
==43216==    by 0x15093491: server3_3_lookup (server-rpc-fops.c:6513)
==43216==  Address 0x1753a52c is 108 bytes inside a block of size 156 alloc'd
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0x4E908B0: mem_get (mem-pool.c:513)
==43216==    by 0x4E906CE: mem_get0 (mem-pool.c:446)
==43216==    by 0x4E6FCB3: __dentry_create (inode.c:562)
==43216==    by 0x4E70B3B: __inode_link (inode.c:1016)
==43216==    by 0x4E70D02: inode_link (inode.c:1060)
==43216==    by 0x149E0E73: quota_build_ancestry_cbk (quota.c:778)
==43216==    by 0x143A79A9: marker_build_ancestry_cbk (marker.c:3055)
==43216==    by 0x14186A63: up_readdir_cbk (upcall.c:1264)
==43216==    by 0x13931DF5: pl_readdirp_cbk (posix.c:2700)
==43216==    by 0x137121B8: posix_acl_readdirp_cbk (posix-acl.c:1714)
==43216== 
==43216== Invalid write of size 8
==43216==    at 0x4E9903E: list_add (list.h:33)
==43216==    by 0x4E9942A: create_frame (stack.c:57)
==43216==    by 0x4EA5156: synctask_create (syncop.c:472)
==43216==    by 0x4EA55AE: synctask_new1 (syncop.c:576)
==43216==    by 0x143AE0D7: mq_synctask1 (marker-quota.c:1078)
==43216==    by 0x143AE199: mq_synctask (marker-quota.c:1097)
==43216==    by 0x143AE6F6: _mq_create_xattrs_txn (marker-quota.c:1236)
==43216==    by 0x143AE82D: mq_create_xattrs_txn (marker-quota.c:1253)
==43216==    by 0x143B0DCB: mq_inspect_directory_xattr (marker-quota.c:2027)
==43216==    by 0x143B13A8: mq_xattr_state (marker-quota.c:2117)
==43216==    by 0x143A6E80: marker_lookup_cbk (marker.c:2961)
==43216==    by 0x141811E0: up_lookup_cbk (upcall.c:753)
==43216==  Address 0x1af1e524 is 100 bytes inside a block of size 1,924 alloc'd
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0x4E908B0: mem_get (mem-pool.c:513)
==43216==    by 0x4E906CE: mem_get0 (mem-pool.c:446)
==43216==    by 0x4E9921D: create_frame (stack.c:25)
==43216==    by 0x4EA5156: synctask_create (syncop.c:472)
==43216==    by 0x4EA55AE: synctask_new1 (syncop.c:576)
==43216==    by 0x143AE0D7: mq_synctask1 (marker-quota.c:1078)
==43216==    by 0x143AE199: mq_synctask (marker-quota.c:1097)
==43216==    by 0x143AE6F6: _mq_create_xattrs_txn (marker-quota.c:1236)
==43216==    by 0x143AE82D: mq_create_xattrs_txn (marker-quota.c:1253)
==43216==    by 0x143B0DCB: mq_inspect_directory_xattr (marker-quota.c:2027)
==43216== 
==43216== Invalid write of size 8
==43216==    at 0x1505E8A3: list_del_init (list.h:87)
==43216==    by 0x1505EBC4: STACK_DESTROY (stack.h:163)
==43216==    by 0x1505FB69: server_submit_reply (server.c:223)
==43216==    by 0x15076AC2: server_statfs_cbk (server-rpc-fops.c:69)
==43216==    by 0x14C19064: io_stats_statfs_cbk (io-stats.c:2259)
==43216==    by 0x149FB10F: quota_statfs_cbk (quota.c:4349)
==43216==    by 0x141860DD: up_statfs_cbk (upcall.c:1209)
==43216==    by 0x1217B969: posix_statfs (posix.c:3558)
==43216==    by 0x4F12504: default_statfs (defaults.c:2909)
==43216==    by 0x4F12504: default_statfs (defaults.c:2909)
==43216==    by 0x4F12504: default_statfs (defaults.c:2909)
==43216==    by 0x4F12504: default_statfs (defaults.c:2909)
==43216==  Address 0x1753a8ec is 92 bytes inside a block of size 1,924 alloc'd
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0x4E908B0: mem_get (mem-pool.c:513)
==43216==    by 0x4E906CE: mem_get0 (mem-pool.c:446)
==43216==    by 0x4E9921D: create_frame (stack.c:25)
==43216==    by 0x4EA5156: synctask_create (syncop.c:472)
==43216==    by 0x4EA55AE: synctask_new1 (syncop.c:576)
==43216==    by 0x143AE0D7: mq_synctask1 (marker-quota.c:1078)
==43216==    by 0x143AE199: mq_synctask (marker-quota.c:1097)
==43216==    by 0x143AE6F6: _mq_create_xattrs_txn (marker-quota.c:1236)
==43216==    by 0x143AE82D: mq_create_xattrs_txn (marker-quota.c:1253)
==43216==    by 0x143B0DCB: mq_inspect_directory_xattr (marker-quota.c:2027)
==43216== 
==43216== 
==43216== More than 10000000 total errors detected.  I'm not reporting any more.
==43216== Final error counts will be inaccurate.  Go fix your program!
==43216== Rerun with --error-limit=no to disable this cutoff.  Note
==43216== that errors may occur in your program without prior warning from
==43216== Valgrind, because errors are no longer being displayed.
==43216== 
==43216== 
==43216== HEAP SUMMARY:
==43216==     in use at exit: 17,462,366 bytes in 4,292 blocks
==43216==   total heap usage: 12,819 allocs, 8,527 frees, 19,260,797 bytes allocated
==43216== 
==43216== Thread 1:
==43216== 16 bytes in 1 blocks are possibly lost in loss record 11 of 755
==43216==    at 0x4C27BE3: malloc (vg_replace_malloc.c:299)
==43216==    by 0x130402E6: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==43216==    by 0x1301B6A9: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==43216==    by 0x13023A25: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==43216==    by 0x1303409C: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==43216==    by 0x1303424B: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==43216==    by 0x1309E40A: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==43216==    by 0x12E01B48: gf_open_sqlite3_conn (gfdb_sqlite3.c:192)
==43216==    by 0x12E02CAF: gf_sqlite3_init (gfdb_sqlite3.c:440)
==43216==    by 0x12DF97B5: init_db (gfdb_data_store.c:270)
==43216==    by 0x12BEA41F: init (changetimerecorder.c:2118)
==43216==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==43216== 
==43216== 16 bytes in 1 blocks are possibly lost in loss record 12 of 755
==43216==    at 0x4C27BE3: malloc (vg_replace_malloc.c:299)
==43216==    by 0x130402E6: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==43216==    by 0x1301B6A9: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==43216==    by 0x13023A25: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==43216==    by 0x1303409C: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==43216==    by 0x1303424B: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==43216==    by 0x1309E47D: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==43216==    by 0x12E01B48: gf_open_sqlite3_conn (gfdb_sqlite3.c:192)
==43216==    by 0x12E02CAF: gf_sqlite3_init (gfdb_sqlite3.c:440)
==43216==    by 0x12DF97B5: init_db (gfdb_data_store.c:270)
==43216==    by 0x12BEA41F: init (changetimerecorder.c:2118)
==43216==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==43216== 
==43216== 24 bytes in 1 blocks are possibly lost in loss record 154 of 755
==43216==    at 0x4C27BE3: malloc (vg_replace_malloc.c:299)
==43216==    by 0x130402E6: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==43216==    by 0x1301B6A9: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==43216==    by 0x13023A25: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==43216==    by 0x1303F007: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==43216==    by 0x1305A2B1: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==43216==    by 0x1309E1B6: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==43216==    by 0x12E01B48: gf_open_sqlite3_conn (gfdb_sqlite3.c:192)
==43216==    by 0x12E02CAF: gf_sqlite3_init (gfdb_sqlite3.c:440)
==43216==    by 0x12DF97B5: init_db (gfdb_data_store.c:270)
==43216==    by 0x12BEA41F: init (changetimerecorder.c:2118)
==43216==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==43216== 
==43216== 40 bytes in 1 blocks are possibly lost in loss record 160 of 755
==43216==    at 0x4C27BE3: malloc (vg_replace_malloc.c:299)
==43216==    by 0x130402E6: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==43216==    by 0x1301B6A9: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==43216==    by 0x13023A25: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==43216==    by 0x1309E3BE: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==43216==    by 0x12E01B48: gf_open_sqlite3_conn (gfdb_sqlite3.c:192)
==43216==    by 0x12E02CAF: gf_sqlite3_init (gfdb_sqlite3.c:440)
==43216==    by 0x12DF97B5: init_db (gfdb_data_store.c:270)
==43216==    by 0x12BEA41F: init (changetimerecorder.c:2118)
==43216==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==43216==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==43216==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==43216== 
==43216== 48 bytes in 1 blocks are possibly lost in loss record 164 of 755
==43216==    at 0x4C27BE3: malloc (vg_replace_malloc.c:299)
==43216==    by 0x130402E6: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==43216==    by 0x1301B6A9: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==43216==    by 0x13023A25: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==43216==    by 0x13023A4C: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==43216==    by 0x1302BFE7: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==43216==    by 0x1309E162: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==43216==    by 0x12E01B48: gf_open_sqlite3_conn (gfdb_sqlite3.c:192)
==43216==    by 0x12E02CAF: gf_sqlite3_init (gfdb_sqlite3.c:440)
==43216==    by 0x12DF97B5: init_db (gfdb_data_store.c:270)
==43216==    by 0x12BEA41F: init (changetimerecorder.c:2118)
==43216==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==43216== 
==43216== 48 bytes in 1 blocks are possibly lost in loss record 165 of 755
==43216==    at 0x4C27BE3: malloc (vg_replace_malloc.c:299)
==43216==    by 0x130402E6: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==43216==    by 0x1301B6A9: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==43216==    by 0x13023A25: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==43216==    by 0x13025BCA: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==43216==    by 0x1302D752: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==43216==    by 0x1304A432: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==43216==    by 0x1309E02E: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==43216==    by 0x12E01B48: gf_open_sqlite3_conn (gfdb_sqlite3.c:192)
==43216==    by 0x12E02CAF: gf_sqlite3_init (gfdb_sqlite3.c:440)
==43216==    by 0x12DF97B5: init_db (gfdb_data_store.c:270)
==43216==    by 0x12BEA41F: init (changetimerecorder.c:2118)
==43216== 
==43216== 48 bytes in 1 blocks are possibly lost in loss record 166 of 755
==43216==    at 0x4C27BE3: malloc (vg_replace_malloc.c:299)
==43216==    by 0x130402E6: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==43216==    by 0x1301B6A9: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==43216==    by 0x13023A25: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==43216==    by 0x13025BCA: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==43216==    by 0x1302D752: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==43216==    by 0x1304A432: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==43216==    by 0x1309E091: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==43216==    by 0x12E01B48: gf_open_sqlite3_conn (gfdb_sqlite3.c:192)
==43216==    by 0x12E02CAF: gf_sqlite3_init (gfdb_sqlite3.c:440)
==43216==    by 0x12DF97B5: init_db (gfdb_data_store.c:270)
==43216==    by 0x12BEA41F: init (changetimerecorder.c:2118)
==43216== 
==43216== 48 bytes in 1 blocks are possibly lost in loss record 167 of 755
==43216==    at 0x4C27BE3: malloc (vg_replace_malloc.c:299)
==43216==    by 0x130402E6: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==43216==    by 0x1301B6A9: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==43216==    by 0x13023A25: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==43216==    by 0x13025BCA: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==43216==    by 0x1302D752: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==43216==    by 0x1304A432: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==43216==    by 0x1309E0F1: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==43216==    by 0x12E01B48: gf_open_sqlite3_conn (gfdb_sqlite3.c:192)
==43216==    by 0x12E02CAF: gf_sqlite3_init (gfdb_sqlite3.c:440)
==43216==    by 0x12DF97B5: init_db (gfdb_data_store.c:270)
==43216==    by 0x12BEA41F: init (changetimerecorder.c:2118)
==43216== 
==43216== 48 bytes in 1 blocks are possibly lost in loss record 168 of 755
==43216==    at 0x4C27BE3: malloc (vg_replace_malloc.c:299)
==43216==    by 0x130402E6: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==43216==    by 0x1301B6A9: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==43216==    by 0x13023A25: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==43216==    by 0x13023B60: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==43216==    by 0x130496CA: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==43216==    by 0x1309E3AC: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==43216==    by 0x12E01B48: gf_open_sqlite3_conn (gfdb_sqlite3.c:192)
==43216==    by 0x12E02CAF: gf_sqlite3_init (gfdb_sqlite3.c:440)
==43216==    by 0x12DF97B5: init_db (gfdb_data_store.c:270)
==43216==    by 0x12BEA41F: init (changetimerecorder.c:2118)
==43216==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==43216== 
==43216== 48 bytes in 1 blocks are possibly lost in loss record 169 of 755
==43216==    at 0x4C27BE3: malloc (vg_replace_malloc.c:299)
==43216==    by 0x130402E6: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==43216==    by 0x1301B6A9: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==43216==    by 0x13023A25: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==43216==    by 0x13025BCA: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==43216==    by 0x13049711: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==43216==    by 0x1309E3AC: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==43216==    by 0x12E01B48: gf_open_sqlite3_conn (gfdb_sqlite3.c:192)
==43216==    by 0x12E02CAF: gf_sqlite3_init (gfdb_sqlite3.c:440)
==43216==    by 0x12DF97B5: init_db (gfdb_data_store.c:270)
==43216==    by 0x12BEA41F: init (changetimerecorder.c:2118)
==43216==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==43216== 
==43216== 48 bytes in 1 blocks are possibly lost in loss record 170 of 755
==43216==    at 0x4C27BE3: malloc (vg_replace_malloc.c:299)
==43216==    by 0x130402E6: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==43216==    by 0x1301B6A9: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==43216==    by 0x13023A25: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==43216==    by 0x1303409C: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==43216==    by 0x13034224: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==43216==    by 0x1309E40A: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==43216==    by 0x12E01B48: gf_open_sqlite3_conn (gfdb_sqlite3.c:192)
==43216==    by 0x12E02CAF: gf_sqlite3_init (gfdb_sqlite3.c:440)
==43216==    by 0x12DF97B5: init_db (gfdb_data_store.c:270)
==43216==    by 0x12BEA41F: init (changetimerecorder.c:2118)
==43216==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==43216== 
==43216== 48 bytes in 1 blocks are possibly lost in loss record 171 of 755
==43216==    at 0x4C27BE3: malloc (vg_replace_malloc.c:299)
==43216==    by 0x130402E6: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==43216==    by 0x1301B6A9: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==43216==    by 0x13023A25: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==43216==    by 0x1303409C: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==43216==    by 0x13034224: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==43216==    by 0x1309E47D: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==43216==    by 0x12E01B48: gf_open_sqlite3_conn (gfdb_sqlite3.c:192)
==43216==    by 0x12E02CAF: gf_sqlite3_init (gfdb_sqlite3.c:440)
==43216==    by 0x12DF97B5: init_db (gfdb_data_store.c:270)
==43216==    by 0x12BEA41F: init (changetimerecorder.c:2118)
==43216==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==43216== 
==43216== 48 bytes in 1 blocks are possibly lost in loss record 172 of 755
==43216==    at 0x4C27BE3: malloc (vg_replace_malloc.c:299)
==43216==    by 0x130402E6: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==43216==    by 0x1301B6A9: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==43216==    by 0x13023A25: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==43216==    by 0x13023B60: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==43216==    by 0x130496CA: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==43216==    by 0x1309E5A4: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==43216==    by 0x12E01B48: gf_open_sqlite3_conn (gfdb_sqlite3.c:192)
==43216==    by 0x12E02CAF: gf_sqlite3_init (gfdb_sqlite3.c:440)
==43216==    by 0x12DF97B5: init_db (gfdb_data_store.c:270)
==43216==    by 0x12BEA41F: init (changetimerecorder.c:2118)
==43216==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==43216== 
==43216== 48 bytes in 1 blocks are possibly lost in loss record 173 of 755
==43216==    at 0x4C27BE3: malloc (vg_replace_malloc.c:299)
==43216==    by 0x130402E6: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==43216==    by 0x1301B6A9: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==43216==    by 0x13023A25: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==43216==    by 0x13025BCA: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==43216==    by 0x13049711: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==43216==    by 0x1309E5A4: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==43216==    by 0x12E01B48: gf_open_sqlite3_conn (gfdb_sqlite3.c:192)
==43216==    by 0x12E02CAF: gf_sqlite3_init (gfdb_sqlite3.c:440)
==43216==    by 0x12DF97B5: init_db (gfdb_data_store.c:270)
==43216==    by 0x12BEA41F: init (changetimerecorder.c:2118)
==43216==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==43216== 
==43216== 48 bytes in 1 blocks are possibly lost in loss record 174 of 755
==43216==    at 0x4C27BE3: malloc (vg_replace_malloc.c:299)
==43216==    by 0x130402E6: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==43216==    by 0x1301B6A9: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==43216==    by 0x13023A25: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==43216==    by 0x13023B60: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==43216==    by 0x130496CA: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==43216==    by 0x1309E5C8: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==43216==    by 0x12E01B48: gf_open_sqlite3_conn (gfdb_sqlite3.c:192)
==43216==    by 0x12E02CAF: gf_sqlite3_init (gfdb_sqlite3.c:440)
==43216==    by 0x12DF97B5: init_db (gfdb_data_store.c:270)
==43216==    by 0x12BEA41F: init (changetimerecorder.c:2118)
==43216==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==43216== 
==43216== 48 bytes in 1 blocks are possibly lost in loss record 175 of 755
==43216==    at 0x4C27BE3: malloc (vg_replace_malloc.c:299)
==43216==    by 0x130402E6: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==43216==    by 0x1301B6A9: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==43216==    by 0x13023A25: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==43216==    by 0x13025BCA: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==43216==    by 0x13049711: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==43216==    by 0x1309E5C8: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==43216==    by 0x12E01B48: gf_open_sqlite3_conn (gfdb_sqlite3.c:192)
==43216==    by 0x12E02CAF: gf_sqlite3_init (gfdb_sqlite3.c:440)
==43216==    by 0x12DF97B5: init_db (gfdb_data_store.c:270)
==43216==    by 0x12BEA41F: init (changetimerecorder.c:2118)
==43216==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==43216== 
==43216== 48 bytes in 1 blocks are possibly lost in loss record 176 of 755
==43216==    at 0x4C27BE3: malloc (vg_replace_malloc.c:299)
==43216==    by 0x130402E6: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==43216==    by 0x1301B6A9: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==43216==    by 0x13023A25: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==43216==    by 0x13025BCA: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==43216==    by 0x13049711: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==43216==    by 0x1309E5E9: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==43216==    by 0x12E01B48: gf_open_sqlite3_conn (gfdb_sqlite3.c:192)
==43216==    by 0x12E02CAF: gf_sqlite3_init (gfdb_sqlite3.c:440)
==43216==    by 0x12DF97B5: init_db (gfdb_data_store.c:270)
==43216==    by 0x12BEA41F: init (changetimerecorder.c:2118)
==43216==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==43216== 
==43216== 48 bytes in 1 blocks are possibly lost in loss record 177 of 755
==43216==    at 0x4C27BE3: malloc (vg_replace_malloc.c:299)
==43216==    by 0x130402E6: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==43216==    by 0x1301B6A9: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==43216==    by 0x13023A25: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==43216==    by 0x13023B60: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==43216==    by 0x130496CA: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==43216==    by 0x1309E68E: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==43216==    by 0x12E01B48: gf_open_sqlite3_conn (gfdb_sqlite3.c:192)
==43216==    by 0x12E02CAF: gf_sqlite3_init (gfdb_sqlite3.c:440)
==43216==    by 0x12DF97B5: init_db (gfdb_data_store.c:270)
==43216==    by 0x12BEA41F: init (changetimerecorder.c:2118)
==43216==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==43216== 
==43216== 48 bytes in 1 blocks are possibly lost in loss record 178 of 755
==43216==    at 0x4C27BE3: malloc (vg_replace_malloc.c:299)
==43216==    by 0x130402E6: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==43216==    by 0x1301B6A9: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==43216==    by 0x13023A25: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==43216==    by 0x13025BCA: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==43216==    by 0x13049711: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==43216==    by 0x1309E68E: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==43216==    by 0x12E01B48: gf_open_sqlite3_conn (gfdb_sqlite3.c:192)
==43216==    by 0x12E02CAF: gf_sqlite3_init (gfdb_sqlite3.c:440)
==43216==    by 0x12DF97B5: init_db (gfdb_data_store.c:270)
==43216==    by 0x12BEA41F: init (changetimerecorder.c:2118)
==43216==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==43216== 
==43216== 48 bytes in 1 blocks are possibly lost in loss record 179 of 755
==43216==    at 0x4C27BE3: malloc (vg_replace_malloc.c:299)
==43216==    by 0x130402E6: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==43216==    by 0x1301B6A9: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==43216==    by 0x13023A25: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==43216==    by 0x13025BCA: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==43216==    by 0x13049711: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==43216==    by 0x1309E6B4: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==43216==    by 0x12E01B48: gf_open_sqlite3_conn (gfdb_sqlite3.c:192)
==43216==    by 0x12E02CAF: gf_sqlite3_init (gfdb_sqlite3.c:440)
==43216==    by 0x12DF97B5: init_db (gfdb_data_store.c:270)
==43216==    by 0x12BEA41F: init (changetimerecorder.c:2118)
==43216==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==43216== 
==43216== 56 bytes in 1 blocks are possibly lost in loss record 184 of 755
==43216==    at 0x4C27BE3: malloc (vg_replace_malloc.c:299)
==43216==    by 0x130402E6: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==43216==    by 0x1301B6A9: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==43216==    by 0x13023A25: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==43216==    by 0x13023B60: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==43216==    by 0x130496CA: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==43216==    by 0x1309E5E9: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==43216==    by 0x12E01B48: gf_open_sqlite3_conn (gfdb_sqlite3.c:192)
==43216==    by 0x12E02CAF: gf_sqlite3_init (gfdb_sqlite3.c:440)
==43216==    by 0x12DF97B5: init_db (gfdb_data_store.c:270)
==43216==    by 0x12BEA41F: init (changetimerecorder.c:2118)
==43216==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==43216== 
==43216== 56 bytes in 1 blocks are possibly lost in loss record 185 of 755
==43216==    at 0x4C27BE3: malloc (vg_replace_malloc.c:299)
==43216==    by 0x130402E6: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==43216==    by 0x1301B6A9: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==43216==    by 0x13023A25: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==43216==    by 0x13023B60: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==43216==    by 0x130496CA: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==43216==    by 0x1309E6B4: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==43216==    by 0x12E01B48: gf_open_sqlite3_conn (gfdb_sqlite3.c:192)
==43216==    by 0x12E02CAF: gf_sqlite3_init (gfdb_sqlite3.c:440)
==43216==    by 0x12DF97B5: init_db (gfdb_data_store.c:270)
==43216==    by 0x12BEA41F: init (changetimerecorder.c:2118)
==43216==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==43216== 
==43216== 64 bytes in 1 blocks are possibly lost in loss record 186 of 755
==43216==    at 0x4C27BE3: malloc (vg_replace_malloc.c:299)
==43216==    by 0x678DF3C: gaih_inet (in /usr/lib64/libc-2.17.so)
==43216==    by 0x6791A3C: getaddrinfo (in /usr/lib64/libc-2.17.so)
==43216==    by 0x4E64B96: gf_resolve_ip6 (common-utils.c:291)
==43216==    by 0xFEAFDCE: af_inet_client_get_remote_sockaddr (name.c:258)
==43216==    by 0xFEB0857: socket_client_get_remote_sockaddr (name.c:530)
==43216==    by 0xFEABB53: socket_connect (socket.c:2955)
==43216==    by 0x514C7A1: rpc_transport_connect (rpc-transport.c:422)
==43216==    by 0x514FA2D: rpc_clnt_reconnect (rpc-clnt.c:423)
==43216==    by 0x51512AC: rpc_clnt_start (rpc-clnt.c:1201)
==43216==    by 0x40FF84: glusterfs_mgmt_init (glusterfsd-mgmt.c:2184)
==43216==    by 0x40A412: glusterfs_volumes_init (glusterfsd.c:2365)
==43216== 
==43216== 64 bytes in 1 blocks are possibly lost in loss record 187 of 755
==43216==    at 0x4C27BE3: malloc (vg_replace_malloc.c:299)
==43216==    by 0x130402E6: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==43216==    by 0x1301B6A9: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==43216==    by 0x13023A25: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==43216==    by 0x13023B60: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==43216==    by 0x13023BDC: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==43216==    by 0x13023C0D: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==43216==    by 0x13049553: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==43216==    by 0x1304A467: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==43216==    by 0x1309E02E: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==43216==    by 0x12E01B48: gf_open_sqlite3_conn (gfdb_sqlite3.c:192)
==43216==    by 0x12E02CAF: gf_sqlite3_init (gfdb_sqlite3.c:440)
==43216== 
==43216== 74 bytes in 1 blocks are definitely lost in loss record 192 of 755
==43216==    at 0x4C27BE3: malloc (vg_replace_malloc.c:299)
==43216==    by 0x4E8FB45: __gf_malloc (mem-pool.c:142)
==43216==    by 0x4E8FDF0: gf_vasprintf (mem-pool.c:221)
==43216==    by 0x4E8FEDF: gf_asprintf (mem-pool.c:240)
==43216==    by 0x4E5558B: int_to_data (dict.c:665)
==43216==    by 0x147D54D8: index_make_xattrop_watchlist (index.c:2208)
==43216==    by 0x147D5A4E: init (index.c:2334)
==43216==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==43216==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==43216==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==43216==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==43216==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==43216== 
==43216== 74 bytes in 1 blocks are definitely lost in loss record 193 of 755
==43216==    at 0x4C27BE3: malloc (vg_replace_malloc.c:299)
==43216==    by 0x4E8FB45: __gf_malloc (mem-pool.c:142)
==43216==    by 0x4E8FDF0: gf_vasprintf (mem-pool.c:221)
==43216==    by 0x4E8FEDF: gf_asprintf (mem-pool.c:240)
==43216==    by 0x4E5558B: int_to_data (dict.c:665)
==43216==    by 0x147D54D8: index_make_xattrop_watchlist (index.c:2208)
==43216==    by 0x147D5ACA: init (index.c:2340)
==43216==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==43216==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==43216==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==43216==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==43216==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==43216== 
==43216== 76 bytes in 1 blocks are definitely lost in loss record 194 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0x5145846: gf_strdup (mem-pool.h:187)
==43216==    by 0x5149466: rpcsvc_create_listeners (rpcsvc.c:1726)
==43216==    by 0x1506250B: init (server.c:1056)
==43216==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==43216==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==43216==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==43216==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==43216==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==43216==    by 0x40ECA5: mgmt_getspec_cbk (glusterfsd-mgmt.c:1648)
==43216==    by 0x51505D2: rpc_clnt_handle_reply (rpc-clnt.c:791)
==43216== 
==43216== 78 bytes in 1 blocks are definitely lost in loss record 195 of 755
==43216==    at 0x4C27BE3: malloc (vg_replace_malloc.c:299)
==43216==    by 0x4E8FB45: __gf_malloc (mem-pool.c:142)
==43216==    by 0x4E8FDF0: gf_vasprintf (mem-pool.c:221)
==43216==    by 0x4E8FEDF: gf_asprintf (mem-pool.c:240)
==43216==    by 0x4E5572E: data_from_int32 (dict.c:703)
==43216==    by 0x4E57BB4: dict_set_int32 (dict.c:1771)
==43216==    by 0x514D1CD: rpc_transport_inet_options_build (rpc-transport.c:684)
==43216==    by 0x40FD9D: glusterfs_mgmt_init (glusterfsd-mgmt.c:2139)
==43216==    by 0x40A412: glusterfs_volumes_init (glusterfsd.c:2365)
==43216==    by 0x40A892: main (glusterfsd.c:2488)
==43216== 
==43216== 78 bytes in 1 blocks are definitely lost in loss record 196 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0x4E6E844: gf_strdup (mem-pool.h:187)
==43216==    by 0x4E6FD0A: __dentry_create (inode.c:570)
==43216==    by 0x4E70B3B: __inode_link (inode.c:1016)
==43216==    by 0x4E70D02: inode_link (inode.c:1060)
==43216==    by 0x15098AD5: server_post_lookup (server-common.c:462)
==43216==    by 0x15077078: server_lookup_cbk (server-rpc-fops.c:141)
==43216==    by 0x14C16C3F: io_stats_lookup_cbk (io-stats.c:2115)
==43216==    by 0x149E3453: quota_lookup_cbk (quota.c:1612)
==43216==    by 0x4F0100E: default_lookup_cbk (defaults.c:1265)
==43216==    by 0x143A6D7B: marker_lookup_cbk (marker.c:2945)
==43216== 
==43216== 79 bytes in 1 blocks are definitely lost in loss record 197 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0x5145846: gf_strdup (mem-pool.h:187)
==43216==    by 0x5149466: rpcsvc_create_listeners (rpcsvc.c:1726)
==43216==    by 0x40F98A: glusterfs_listener_init (glusterfsd-mgmt.c:2037)
==43216==    by 0x40A3EC: glusterfs_volumes_init (glusterfsd.c:2359)
==43216==    by 0x40A892: main (glusterfsd.c:2488)
==43216== 
==43216== 80 bytes in 1 blocks are possibly lost in loss record 199 of 755
==43216==    at 0x4C27BE3: malloc (vg_replace_malloc.c:299)
==43216==    by 0x130402E6: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==43216==    by 0x1301B6A9: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==43216==    by 0x13023A25: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==43216==    by 0x13023A4C: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==43216==    by 0x13059689: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==43216==    by 0x1309E1B6: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==43216==    by 0x12E01B48: gf_open_sqlite3_conn (gfdb_sqlite3.c:192)
==43216==    by 0x12E02CAF: gf_sqlite3_init (gfdb_sqlite3.c:440)
==43216==    by 0x12DF97B5: init_db (gfdb_data_store.c:270)
==43216==    by 0x12BEA41F: init (changetimerecorder.c:2118)
==43216==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==43216== 
==43216== 82 bytes in 1 blocks are possibly lost in loss record 200 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0x514E36C: gf_strdup (mem-pool.h:187)
==43216==    by 0x5150CA3: rpc_clnt_connection_init (rpc-clnt.c:1036)
==43216==    by 0x5151169: rpc_clnt_new (rpc-clnt.c:1159)
==43216==    by 0x40FE46: glusterfs_mgmt_init (glusterfsd-mgmt.c:2157)
==43216==    by 0x40A412: glusterfs_volumes_init (glusterfsd.c:2365)
==43216==    by 0x40A892: main (glusterfsd.c:2488)
==43216== 
==43216== 82 bytes in 1 blocks are possibly lost in loss record 201 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0x514B4A5: gf_strdup (mem-pool.h:187)
==43216==    by 0x514BC2B: rpc_transport_load (rpc-transport.c:191)
==43216==    by 0x5150E30: rpc_clnt_connection_init (rpc-clnt.c:1067)
==43216==    by 0x5151169: rpc_clnt_new (rpc-clnt.c:1159)
==43216==    by 0x40FE46: glusterfs_mgmt_init (glusterfsd-mgmt.c:2157)
==43216==    by 0x40A412: glusterfs_volumes_init (glusterfsd.c:2365)
==43216==    by 0x40A892: main (glusterfsd.c:2488)
==43216== 
==43216== 82 bytes in 1 blocks are definitely lost in loss record 202 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0x129B752F: gf_strdup (mem-pool.h:187)
==43216==    by 0x129BDE68: extract_trash_directory (trash.c:82)
==43216==    by 0x129CF5F1: notify (trash.c:2215)
==43216==    by 0x4E5BEC3: xlator_notify (xlator.c:496)
==43216==    by 0x4F12DCF: default_notify (defaults.c:3114)
==43216==    by 0x1218A501: notify (posix.c:6596)
==43216==    by 0x4E5BEC3: xlator_notify (xlator.c:496)
==43216==    by 0x4F12CE8: default_notify (defaults.c:3090)
==43216==    by 0x129D019E: notify (trash.c:2307)
==43216==    by 0x4E5BEC3: xlator_notify (xlator.c:496)
==43216== 
==43216== 84 bytes in 1 blocks are possibly lost in loss record 203 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0x129B752F: gf_strdup (mem-pool.h:187)
==43216==    by 0x129D066C: init (trash.c:2396)
==43216==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==43216==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==43216==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==43216==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==43216==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==43216==    by 0x40ECA5: mgmt_getspec_cbk (glusterfsd-mgmt.c:1648)
==43216==    by 0x51505D2: rpc_clnt_handle_reply (rpc-clnt.c:791)
==43216==    by 0x5150B34: rpc_clnt_notify (rpc-clnt.c:971)
==43216== 
==43216== 84 bytes in 1 blocks are definitely lost in loss record 204 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0x4E5499E: dict_set_lk (dict.c:378)
==43216==    by 0x4E54B82: dict_set (dict.c:424)
==43216==    by 0x4E585B1: dict_set_dynstr (dict.c:2205)
==43216==    by 0x514D164: rpc_transport_inet_options_build (rpc-transport.c:677)
==43216==    by 0x40FD9D: glusterfs_mgmt_init (glusterfsd-mgmt.c:2139)
==43216==    by 0x40A412: glusterfs_volumes_init (glusterfsd.c:2365)
==43216==    by 0x40A892: main (glusterfsd.c:2488)
==43216== 
==43216== 84 bytes in 1 blocks are definitely lost in loss record 205 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0x4E5499E: dict_set_lk (dict.c:378)
==43216==    by 0x4E54B82: dict_set (dict.c:424)
==43216==    by 0x4E57BDF: dict_set_int32 (dict.c:1777)
==43216==    by 0x514D1CD: rpc_transport_inet_options_build (rpc-transport.c:684)
==43216==    by 0x40FD9D: glusterfs_mgmt_init (glusterfsd-mgmt.c:2139)
==43216==    by 0x40A412: glusterfs_volumes_init (glusterfsd.c:2365)
==43216==    by 0x40A892: main (glusterfsd.c:2488)
==43216== 
==43216== 84 bytes in 1 blocks are definitely lost in loss record 206 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0x129B752F: gf_strdup (mem-pool.h:187)
==43216==    by 0x129BEEBC: trash_notify_mkdir_cbk (trash.c:430)
==43216==    by 0x1216EB15: posix_mkdir (posix.c:1693)
==43216==    by 0x129CFA85: notify (trash.c:2246)
==43216==    by 0x4E5BEC3: xlator_notify (xlator.c:496)
==43216==    by 0x4F12DCF: default_notify (defaults.c:3114)
==43216==    by 0x1218A501: notify (posix.c:6596)
==43216==    by 0x4E5BEC3: xlator_notify (xlator.c:496)
==43216==    by 0x4F12CE8: default_notify (defaults.c:3090)
==43216==    by 0x129D019E: notify (trash.c:2307)
==43216== 
==43216== 85 bytes in 1 blocks are possibly lost in loss record 207 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0x514E36C: gf_strdup (mem-pool.h:187)
==43216==    by 0x5150CA3: rpc_clnt_connection_init (rpc-clnt.c:1036)
==43216==    by 0x5151169: rpc_clnt_new (rpc-clnt.c:1159)
==43216==    by 0x14A014DE: quota_enforcer_init (quota-enforcer-client.c:451)
==43216==    by 0x149FF51D: init (quota.c:5127)
==43216==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==43216==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==43216==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==43216==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==43216==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==43216== 
==43216== 85 bytes in 1 blocks are possibly lost in loss record 208 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0x514B4A5: gf_strdup (mem-pool.h:187)
==43216==    by 0x514BC2B: rpc_transport_load (rpc-transport.c:191)
==43216==    by 0x5150E30: rpc_clnt_connection_init (rpc-clnt.c:1067)
==43216==    by 0x5151169: rpc_clnt_new (rpc-clnt.c:1159)
==43216==    by 0x14A014DE: quota_enforcer_init (quota-enforcer-client.c:451)
==43216==    by 0x149FF51D: init (quota.c:5127)
==43216==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==43216==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==43216==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==43216==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==43216== 
==43216== 86 bytes in 1 blocks are definitely lost in loss record 209 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0x4E5499E: dict_set_lk (dict.c:378)
==43216==    by 0x4E54B82: dict_set (dict.c:424)
==43216==    by 0x4E584CB: dict_set_str (dict.c:2168)
==43216==    by 0x4EA196E: gf_add_cmdline_options (graph.c:260)
==43216==    by 0x4EA2394: glusterfs_graph_prepare (graph.c:523)
==43216==    by 0x40A2F9: glusterfs_process_volfp (glusterfsd.c:2319)
==43216==    by 0x40ECA5: mgmt_getspec_cbk (glusterfsd-mgmt.c:1648)
==43216==    by 0x51505D2: rpc_clnt_handle_reply (rpc-clnt.c:791)
==43216==    by 0x5150B34: rpc_clnt_notify (rpc-clnt.c:971)
==43216==    by 0x514CD1D: rpc_transport_notify (rpc-transport.c:541)
==43216== 
==43216== 87 bytes in 1 blocks are possibly lost in loss record 210 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0x4052E4: gf_strdup (mem-pool.h:187)
==43216==    by 0x40690C: gf_remember_backup_volfile_server (glusterfsd.c:688)
==43216==    by 0x4070DB: parse_opts (glusterfsd.c:836)
==43216==    by 0x67B4F7C: argp_parse (in /usr/lib64/libc-2.17.so)
==43216==    by 0x4092D4: parse_cmdline (glusterfsd.c:1866)
==43216==    by 0x40A5E5: main (glusterfsd.c:2417)
==43216== 
==43216== 87 bytes in 1 blocks are definitely lost in loss record 211 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0x4E5499E: dict_set_lk (dict.c:378)
==43216==    by 0x4E54B82: dict_set (dict.c:424)
==43216==    by 0x4E584CB: dict_set_str (dict.c:2168)
==43216==    by 0x514A3AC: rpcsvc_transport_unix_options_build (rpcsvc.c:2188)
==43216==    by 0x40F909: glusterfs_listener_init (glusterfsd-mgmt.c:2022)
==43216==    by 0x40A3EC: glusterfs_volumes_init (glusterfsd.c:2359)
==43216==    by 0x40A892: main (glusterfsd.c:2488)
==43216== 
==43216== 87 bytes in 1 blocks are definitely lost in loss record 212 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0x514B4A5: gf_strdup (mem-pool.h:187)
==43216==    by 0x514D136: rpc_transport_inet_options_build (rpc-transport.c:671)
==43216==    by 0x40FD9D: glusterfs_mgmt_init (glusterfsd-mgmt.c:2139)
==43216==    by 0x40A412: glusterfs_volumes_init (glusterfsd.c:2365)
==43216==    by 0x40A892: main (glusterfsd.c:2488)
==43216== 
==43216== 87 bytes in 1 blocks are definitely lost in loss record 213 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0x4E5499E: dict_set_lk (dict.c:378)
==43216==    by 0x4E54B82: dict_set (dict.c:424)
==43216==    by 0x4E584CB: dict_set_str (dict.c:2168)
==43216==    by 0x514D235: rpc_transport_inet_options_build (rpc-transport.c:691)
==43216==    by 0x40FD9D: glusterfs_mgmt_init (glusterfsd-mgmt.c:2139)
==43216==    by 0x40A412: glusterfs_volumes_init (glusterfsd.c:2365)
==43216==    by 0x40A892: main (glusterfsd.c:2488)
==43216== 
==43216== 87 bytes in 1 blocks are definitely lost in loss record 214 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0x4E5499E: dict_set_lk (dict.c:378)
==43216==    by 0x4E54B82: dict_set (dict.c:424)
==43216==    by 0x4E584CB: dict_set_str (dict.c:2168)
==43216==    by 0x14A0148C: quota_enforcer_init (quota-enforcer-client.c:442)
==43216==    by 0x149FF51D: init (quota.c:5127)
==43216==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==43216==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==43216==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==43216==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==43216==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==43216== 
==43216== 88 bytes in 1 blocks are possibly lost in loss record 215 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0x4E649E6: gf_resolve_ip6 (common-utils.c:265)
==43216==    by 0xFEAFDCE: af_inet_client_get_remote_sockaddr (name.c:258)
==43216==    by 0xFEB0857: socket_client_get_remote_sockaddr (name.c:530)
==43216==    by 0xFEABB53: socket_connect (socket.c:2955)
==43216==    by 0x514C7A1: rpc_transport_connect (rpc-transport.c:422)
==43216==    by 0x514FA2D: rpc_clnt_reconnect (rpc-clnt.c:423)
==43216==    by 0x51512AC: rpc_clnt_start (rpc-clnt.c:1201)
==43216==    by 0x40FF84: glusterfs_mgmt_init (glusterfsd-mgmt.c:2184)
==43216==    by 0x40A412: glusterfs_volumes_init (glusterfsd.c:2365)
==43216==    by 0x40A892: main (glusterfsd.c:2488)
==43216== 
==43216== 88 bytes in 1 blocks are possibly lost in loss record 216 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0x4ECB6BB: event_dispatch_epoll (event-epoll.c:709)
==43216==    by 0x4E8EEB9: event_dispatch (event.c:124)
==43216==    by 0x40A8B0: main (glusterfsd.c:2492)
==43216== 
==43216== 88 bytes in 1 blocks are possibly lost in loss record 217 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0x4ECB947: event_reconfigure_threads_epoll (event-epoll.c:824)
==43216==    by 0x4E8EF5B: event_reconfigure_threads (event.c:140)
==43216==    by 0x150611A3: server_check_event_threads (server.c:702)
==43216==    by 0x15061F17: init (server.c:946)
==43216==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==43216==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==43216==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==43216==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==43216==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==43216==    by 0x40ECA5: mgmt_getspec_cbk (glusterfsd-mgmt.c:1648)
==43216== 
==43216== 88 bytes in 1 blocks are possibly lost in loss record 218 of 755
==43216==    at 0x4C27BE3: malloc (vg_replace_malloc.c:299)
==43216==    by 0x4E8FB45: __gf_malloc (mem-pool.c:142)
==43216==    by 0x4E64F44: gf_dnscache_init (common-utils.c:366)
==43216==    by 0x14C2835B: init (io-stats.c:3686)
==43216==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==43216==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==43216==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==43216==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==43216==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==43216==    by 0x40ECA5: mgmt_getspec_cbk (glusterfsd-mgmt.c:1648)
==43216==    by 0x51505D2: rpc_clnt_handle_reply (rpc-clnt.c:791)
==43216==    by 0x5150B34: rpc_clnt_notify (rpc-clnt.c:971)
==43216== 
==43216== 88 bytes in 1 blocks are possibly lost in loss record 219 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0x1393505F: init (posix.c:3665)
==43216==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==43216==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==43216==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==43216==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==43216==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==43216==    by 0x40ECA5: mgmt_getspec_cbk (glusterfsd-mgmt.c:1648)
==43216==    by 0x51505D2: rpc_clnt_handle_reply (rpc-clnt.c:791)
==43216==    by 0x5150B34: rpc_clnt_notify (rpc-clnt.c:971)
==43216==    by 0x514CD1D: rpc_transport_notify (rpc-transport.c:541)
==43216== 
==43216== 88 bytes in 1 blocks are possibly lost in loss record 220 of 755
==43216==    at 0x4C27BE3: malloc (vg_replace_malloc.c:299)
==43216==    by 0x130402E6: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==43216==    by 0x1301B6A9: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==43216==    by 0x13023A25: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==43216==    by 0x13023B60: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==43216==    by 0x13023BDC: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==43216==    by 0x13028E1A: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==43216==    by 0x13049880: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==43216==    by 0x13049C5E: sqlite3_overload_function (in /usr/lib64/libsqlite3.so.0.8.6)
==43216==    by 0x1309E271: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==43216==    by 0x12E01B48: gf_open_sqlite3_conn (gfdb_sqlite3.c:192)
==43216==    by 0x12E02CAF: gf_sqlite3_init (gfdb_sqlite3.c:440)
==43216== 
==43216== 88 bytes in 1 blocks are possibly lost in loss record 221 of 755
==43216==    at 0x4C27BE3: malloc (vg_replace_malloc.c:299)
==43216==    by 0x130402E6: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==43216==    by 0x1301B6A9: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==43216==    by 0x13023A25: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==43216==    by 0x13023B60: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==43216==    by 0x13023BDC: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==43216==    by 0x13028E1A: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==43216==    by 0x13049880: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==43216==    by 0x13049C5E: sqlite3_overload_function (in /usr/lib64/libsqlite3.so.0.8.6)
==43216==    by 0x1309E50C: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==43216==    by 0x12E01B48: gf_open_sqlite3_conn (gfdb_sqlite3.c:192)
==43216==    by 0x12E02CAF: gf_sqlite3_init (gfdb_sqlite3.c:440)
==43216== 
==43216== 88 bytes in 1 blocks are possibly lost in loss record 222 of 755
==43216==    at 0x4C27BE3: malloc (vg_replace_malloc.c:299)
==43216==    by 0x130402E6: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==43216==    by 0x1301B6A9: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==43216==    by 0x13023A25: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==43216==    by 0x13023B60: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==43216==    by 0x13023BDC: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==43216==    by 0x13028E1A: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==43216==    by 0x13049880: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==43216==    by 0x13049C5E: sqlite3_overload_function (in /usr/lib64/libsqlite3.so.0.8.6)
==43216==    by 0x1309E528: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==43216==    by 0x12E01B48: gf_open_sqlite3_conn (gfdb_sqlite3.c:192)
==43216==    by 0x12E02CAF: gf_sqlite3_init (gfdb_sqlite3.c:440)
==43216== 
==43216== 89 bytes in 1 blocks are possibly lost in loss record 223 of 755
==43216==    at 0x4C27BE3: malloc (vg_replace_malloc.c:299)
==43216==    by 0x4E8FB45: __gf_malloc (mem-pool.c:142)
==43216==    by 0x4E8FDF0: gf_vasprintf (mem-pool.c:221)
==43216==    by 0x4E8FEDF: gf_asprintf (mem-pool.c:240)
==43216==    by 0x4E904D2: mem_pool_new_fn (mem-pool.c:385)
==43216==    by 0x40886F: glusterfs_ctx_defaults_init (glusterfsd.c:1514)
==43216==    by 0x40A5BC: main (glusterfsd.c:2413)
==43216== 
==43216== 89 bytes in 1 blocks are possibly lost in loss record 224 of 755
==43216==    at 0x4C27BE3: malloc (vg_replace_malloc.c:299)
==43216==    by 0x4E8FB45: __gf_malloc (mem-pool.c:142)
==43216==    by 0x4E8FDF0: gf_vasprintf (mem-pool.c:221)
==43216==    by 0x4E8FEDF: gf_asprintf (mem-pool.c:240)
==43216==    by 0x4E904D2: mem_pool_new_fn (mem-pool.c:385)
==43216==    by 0x4088D7: glusterfs_ctx_defaults_init (glusterfsd.c:1523)
==43216==    by 0x40A5BC: main (glusterfsd.c:2413)
==43216== 
==43216== 89 bytes in 1 blocks are possibly lost in loss record 225 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0x1505E939: gf_strdup (mem-pool.h:187)
==43216==    by 0x1506202C: init (server.c:973)
==43216==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==43216==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==43216==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==43216==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==43216==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==43216==    by 0x40ECA5: mgmt_getspec_cbk (glusterfsd-mgmt.c:1648)
==43216==    by 0x51505D2: rpc_clnt_handle_reply (rpc-clnt.c:791)
==43216==    by 0x5150B34: rpc_clnt_notify (rpc-clnt.c:971)
==43216== 
==43216== 90 bytes in 1 blocks are possibly lost in loss record 226 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0x514B4A5: gf_strdup (mem-pool.h:187)
==43216==    by 0x514BC2B: rpc_transport_load (rpc-transport.c:191)
==43216==    by 0x5149213: rpcsvc_create_listener (rpcsvc.c:1664)
==43216==    by 0x514955C: rpcsvc_create_listeners (rpcsvc.c:1757)
==43216==    by 0x40F98A: glusterfs_listener_init (glusterfsd-mgmt.c:2037)
==43216==    by 0x40A3EC: glusterfs_volumes_init (glusterfsd.c:2359)
==43216==    by 0x40A892: main (glusterfsd.c:2488)
==43216== 
==43216== 90 bytes in 1 blocks are possibly lost in loss record 227 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0x514B4A5: gf_strdup (mem-pool.h:187)
==43216==    by 0x514BC2B: rpc_transport_load (rpc-transport.c:191)
==43216==    by 0x5149213: rpcsvc_create_listener (rpcsvc.c:1664)
==43216==    by 0x514955C: rpcsvc_create_listeners (rpcsvc.c:1757)
==43216==    by 0x1506250B: init (server.c:1056)
==43216==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==43216==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==43216==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==43216==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==43216==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==43216== 
==43216== 90 bytes in 1 blocks are possibly lost in loss record 228 of 755
==43216==    at 0x4C27BE3: malloc (vg_replace_malloc.c:299)
==43216==    by 0x4E8FB45: __gf_malloc (mem-pool.c:142)
==43216==    by 0x4E8FDF0: gf_vasprintf (mem-pool.c:221)
==43216==    by 0x4E8FEDF: gf_asprintf (mem-pool.c:240)
==43216==    by 0x4E904D2: mem_pool_new_fn (mem-pool.c:385)
==43216==    by 0x129BB514: inode_table_new (inode.c:1617)
==43216==    by 0x129CF039: notify (trash.c:2172)
==43216==    by 0x4E5BEC3: xlator_notify (xlator.c:496)
==43216==    by 0x4F12DCF: default_notify (defaults.c:3114)
==43216==    by 0x1218A501: notify (posix.c:6596)
==43216==    by 0x4E5BEC3: xlator_notify (xlator.c:496)
==43216==    by 0x4F12CE8: default_notify (defaults.c:3090)
==43216== 
==43216== 90 bytes in 1 blocks are definitely lost in loss record 229 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0x4E5499E: dict_set_lk (dict.c:378)
==43216==    by 0x4E54B82: dict_set (dict.c:424)
==43216==    by 0x147D5551: index_make_xattrop_watchlist (index.c:2224)
==43216==    by 0x147D5A4E: init (index.c:2334)
==43216==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==43216==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==43216==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==43216==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==43216==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==43216==    by 0x40ECA5: mgmt_getspec_cbk (glusterfsd-mgmt.c:1648)
==43216== 
==43216== 90 bytes in 1 blocks are definitely lost in loss record 230 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0x4E5499E: dict_set_lk (dict.c:378)
==43216==    by 0x4E54B82: dict_set (dict.c:424)
==43216==    by 0x4E56CD3: dict_copy_one (dict.c:1314)
==43216==    by 0x4E56B26: dict_foreach_match (dict.c:1236)
==43216==    by 0x4E56A12: dict_foreach (dict.c:1194)
==43216==    by 0x4E56F16: dict_copy_with_ref (dict.c:1364)
==43216==    by 0x147D5B09: init (index.c:2346)
==43216==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==43216==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==43216==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==43216== 
==43216== 91 bytes in 1 blocks are possibly lost in loss record 233 of 755
==43216==    at 0x4C27BE3: malloc (vg_replace_malloc.c:299)
==43216==    by 0x4E8FB45: __gf_malloc (mem-pool.c:142)
==43216==    by 0x4E8FDF0: gf_vasprintf (mem-pool.c:221)
==43216==    by 0x4E8FEDF: gf_asprintf (mem-pool.c:240)
==43216==    by 0x129BB698: inode_table_new (inode.c:1635)
==43216==    by 0x129CF039: notify (trash.c:2172)
==43216==    by 0x4E5BEC3: xlator_notify (xlator.c:496)
==43216==    by 0x4F12DCF: default_notify (defaults.c:3114)
==43216==    by 0x1218A501: notify (posix.c:6596)
==43216==    by 0x4E5BEC3: xlator_notify (xlator.c:496)
==43216==    by 0x4F12CE8: default_notify (defaults.c:3090)
==43216==    by 0x129D019E: notify (trash.c:2307)
==43216== 
==43216== 91 bytes in 1 blocks are possibly lost in loss record 234 of 755
==43216==    at 0x4C27BE3: malloc (vg_replace_malloc.c:299)
==43216==    by 0x4E8FB45: __gf_malloc (mem-pool.c:142)
==43216==    by 0x4E8FDF0: gf_vasprintf (mem-pool.c:221)
==43216==    by 0x4E8FEDF: gf_asprintf (mem-pool.c:240)
==43216==    by 0x4E904D2: mem_pool_new_fn (mem-pool.c:385)
==43216==    by 0x4E72042: inode_table_new (inode.c:1617)
==43216==    by 0x15096890: server_setvolume (server-handshake.c:740)
==43216==    by 0x514731B: rpcsvc_handle_rpc_call (rpcsvc.c:701)
==43216==    by 0x514766E: rpcsvc_notify (rpcsvc.c:795)
==43216==    by 0x514CD1D: rpc_transport_notify (rpc-transport.c:541)
==43216==    by 0xFEA9D43: socket_event_poll_in (socket.c:2267)
==43216==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==43216== 
==43216== 91 bytes in 1 blocks are definitely lost in loss record 235 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0x4E5499E: dict_set_lk (dict.c:378)
==43216==    by 0x4E54B82: dict_set (dict.c:424)
==43216==    by 0x4E584CB: dict_set_str (dict.c:2168)
==43216==    by 0x5144A44: rpcsvc_auth_init_auths (rpcsvc-auth.c:148)
==43216==    by 0x5144FDA: rpcsvc_auth_init (rpcsvc-auth.c:292)
==43216==    by 0x514A796: rpcsvc_init (rpcsvc.c:2334)
==43216==    by 0x40F93C: glusterfs_listener_init (glusterfsd-mgmt.c:2027)
==43216==    by 0x40A3EC: glusterfs_volumes_init (glusterfsd.c:2359)
==43216==    by 0x40A892: main (glusterfsd.c:2488)
==43216== 
==43216== 91 bytes in 1 blocks are definitely lost in loss record 236 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0x4E5499E: dict_set_lk (dict.c:378)
==43216==    by 0x4E54B82: dict_set (dict.c:424)
==43216==    by 0x4E584CB: dict_set_str (dict.c:2168)
==43216==    by 0x5144AB0: rpcsvc_auth_init_auths (rpcsvc-auth.c:155)
==43216==    by 0x5144FDA: rpcsvc_auth_init (rpcsvc-auth.c:292)
==43216==    by 0x514A796: rpcsvc_init (rpcsvc.c:2334)
==43216==    by 0x40F93C: glusterfs_listener_init (glusterfsd-mgmt.c:2027)
==43216==    by 0x40A3EC: glusterfs_volumes_init (glusterfsd.c:2359)
==43216==    by 0x40A892: main (glusterfsd.c:2488)
==43216== 
==43216== 91 bytes in 1 blocks are definitely lost in loss record 237 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0x4E5499E: dict_set_lk (dict.c:378)
==43216==    by 0x4E54B82: dict_set (dict.c:424)
==43216==    by 0x4E584CB: dict_set_str (dict.c:2168)
==43216==    by 0x5144A44: rpcsvc_auth_init_auths (rpcsvc-auth.c:148)
==43216==    by 0x5144FDA: rpcsvc_auth_init (rpcsvc-auth.c:292)
==43216==    by 0x514A796: rpcsvc_init (rpcsvc.c:2334)
==43216==    by 0x150622FC: init (server.c:1019)
==43216==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==43216==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==43216==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==43216== 
==43216== 91 bytes in 1 blocks are definitely lost in loss record 238 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0x4E5499E: dict_set_lk (dict.c:378)
==43216==    by 0x4E54B82: dict_set (dict.c:424)
==43216==    by 0x4E584CB: dict_set_str (dict.c:2168)
==43216==    by 0x5144AB0: rpcsvc_auth_init_auths (rpcsvc-auth.c:155)
==43216==    by 0x5144FDA: rpcsvc_auth_init (rpcsvc-auth.c:292)
==43216==    by 0x514A796: rpcsvc_init (rpcsvc.c:2334)
==43216==    by 0x150622FC: init (server.c:1019)
==43216==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==43216==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==43216==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==43216== 
==43216== 92 bytes in 1 blocks are possibly lost in loss record 239 of 755
==43216==    at 0x4C27BE3: malloc (vg_replace_malloc.c:299)
==43216==    by 0x4E8FB45: __gf_malloc (mem-pool.c:142)
==43216==    by 0x4E8FDF0: gf_vasprintf (mem-pool.c:221)
==43216==    by 0x4E8FEDF: gf_asprintf (mem-pool.c:240)
==43216==    by 0x4E904D2: mem_pool_new_fn (mem-pool.c:385)
==43216==    by 0x40890B: glusterfs_ctx_defaults_init (glusterfsd.c:1527)
==43216==    by 0x40A5BC: main (glusterfsd.c:2413)
==43216== 
==43216== 92 bytes in 1 blocks are definitely lost in loss record 240 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0x4E5499E: dict_set_lk (dict.c:378)
==43216==    by 0x4E54B82: dict_set (dict.c:424)
==43216==    by 0x147D5551: index_make_xattrop_watchlist (index.c:2224)
==43216==    by 0x147D5ACA: init (index.c:2340)
==43216==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==43216==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==43216==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==43216==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==43216==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==43216==    by 0x40ECA5: mgmt_getspec_cbk (glusterfsd-mgmt.c:1648)
==43216== 
==43216== 92 bytes in 1 blocks are definitely lost in loss record 241 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0x4E5499E: dict_set_lk (dict.c:378)
==43216==    by 0x4E54B82: dict_set (dict.c:424)
==43216==    by 0x4E56CD3: dict_copy_one (dict.c:1314)
==43216==    by 0x4E56B26: dict_foreach_match (dict.c:1236)
==43216==    by 0x4E56A12: dict_foreach (dict.c:1194)
==43216==    by 0x4E56F16: dict_copy_with_ref (dict.c:1364)
==43216==    by 0x147D5B45: init (index.c:2349)
==43216==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==43216==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==43216==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==43216== 
==43216== 93 bytes in 1 blocks are possibly lost in loss record 242 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0x4E5D949: gf_strdup (mem-pool.h:187)
==43216==    by 0x4E5EA2C: gf_log_init (logging.c:685)
==43216==    by 0x408CCA: logging_init (glusterfsd.c:1628)
==43216==    by 0x40A65E: main (glusterfsd.c:2438)
==43216== 
==43216== 93 bytes in 1 blocks are possibly lost in loss record 243 of 755
==43216==    at 0x4C27BE3: malloc (vg_replace_malloc.c:299)
==43216==    by 0x4E8FB45: __gf_malloc (mem-pool.c:142)
==43216==    by 0x4E8FDF0: gf_vasprintf (mem-pool.c:221)
==43216==    by 0x4E8FEDF: gf_asprintf (mem-pool.c:240)
==43216==    by 0x4E904D2: mem_pool_new_fn (mem-pool.c:385)
==43216==    by 0x129BB436: inode_table_new (inode.c:1593)
==43216==    by 0x129CF039: notify (trash.c:2172)
==43216==    by 0x4E5BEC3: xlator_notify (xlator.c:496)
==43216==    by 0x4F12DCF: default_notify (defaults.c:3114)
==43216==    by 0x1218A501: notify (posix.c:6596)
==43216==    by 0x4E5BEC3: xlator_notify (xlator.c:496)
==43216==    by 0x4F12CE8: default_notify (defaults.c:3090)
==43216== 
==43216== 94 bytes in 1 blocks are possibly lost in loss record 244 of 755
==43216==    at 0x4C27BE3: malloc (vg_replace_malloc.c:299)
==43216==    by 0x4E8FB45: __gf_malloc (mem-pool.c:142)
==43216==    by 0x4E8FDF0: gf_vasprintf (mem-pool.c:221)
==43216==    by 0x4E8FEDF: gf_asprintf (mem-pool.c:240)
==43216==    by 0x4E904D2: mem_pool_new_fn (mem-pool.c:385)
==43216==    by 0x4087EF: glusterfs_ctx_defaults_init (glusterfsd.c:1508)
==43216==    by 0x40A5BC: main (glusterfsd.c:2413)
==43216== 
==43216== 94 bytes in 1 blocks are possibly lost in loss record 245 of 755
==43216==    at 0x4C27BE3: malloc (vg_replace_malloc.c:299)
==43216==    by 0x4E8FB45: __gf_malloc (mem-pool.c:142)
==43216==    by 0x4E8FDF0: gf_vasprintf (mem-pool.c:221)
==43216==    by 0x4E8FEDF: gf_asprintf (mem-pool.c:240)
==43216==    by 0x4E904D2: mem_pool_new_fn (mem-pool.c:385)
==43216==    by 0x4088A3: glusterfs_ctx_defaults_init (glusterfsd.c:1518)
==43216==    by 0x40A5BC: main (glusterfsd.c:2413)
==43216== 
==43216== 94 bytes in 1 blocks are possibly lost in loss record 246 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0x4052E4: gf_strdup (mem-pool.h:187)
==43216==    by 0x407942: parse_opts (glusterfsd.c:1095)
==43216==    by 0x67B5412: argp_parse (in /usr/lib64/libc-2.17.so)
==43216==    by 0x4092D4: parse_cmdline (glusterfsd.c:1866)
==43216==    by 0x40A5E5: main (glusterfsd.c:2417)
==43216== 
==43216== 94 bytes in 1 blocks are possibly lost in loss record 247 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0xFEA28F8: gf_strdup (mem-pool.h:187)
==43216==    by 0xFEAE929: socket_init (socket.c:4005)
==43216==    by 0xFEAF578: init (socket.c:4290)
==43216==    by 0x514C3DE: rpc_transport_load (rpc-transport.c:351)
==43216==    by 0x5149213: rpcsvc_create_listener (rpcsvc.c:1664)
==43216==    by 0x514955C: rpcsvc_create_listeners (rpcsvc.c:1757)
==43216==    by 0x40F98A: glusterfs_listener_init (glusterfsd-mgmt.c:2037)
==43216==    by 0x40A3EC: glusterfs_volumes_init (glusterfsd.c:2359)
==43216==    by 0x40A892: main (glusterfsd.c:2488)
==43216== 
==43216== 94 bytes in 1 blocks are possibly lost in loss record 248 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0xFEA28F8: gf_strdup (mem-pool.h:187)
==43216==    by 0xFEAE929: socket_init (socket.c:4005)
==43216==    by 0xFEAF578: init (socket.c:4290)
==43216==    by 0x514C3DE: rpc_transport_load (rpc-transport.c:351)
==43216==    by 0x5150E30: rpc_clnt_connection_init (rpc-clnt.c:1067)
==43216==    by 0x5151169: rpc_clnt_new (rpc-clnt.c:1159)
==43216==    by 0x40FE46: glusterfs_mgmt_init (glusterfsd-mgmt.c:2157)
==43216==    by 0x40A412: glusterfs_volumes_init (glusterfsd.c:2365)
==43216==    by 0x40A892: main (glusterfsd.c:2488)
==43216== 
==43216== 94 bytes in 1 blocks are possibly lost in loss record 249 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0xFEA28F8: gf_strdup (mem-pool.h:187)
==43216==    by 0xFEAE929: socket_init (socket.c:4005)
==43216==    by 0xFEAF578: init (socket.c:4290)
==43216==    by 0x514C3DE: rpc_transport_load (rpc-transport.c:351)
==43216==    by 0x5149213: rpcsvc_create_listener (rpcsvc.c:1664)
==43216==    by 0x514955C: rpcsvc_create_listeners (rpcsvc.c:1757)
==43216==    by 0x1506250B: init (server.c:1056)
==43216==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==43216==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==43216==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==43216== 
==43216== 94 bytes in 1 blocks are possibly lost in loss record 250 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0xFEA28F8: gf_strdup (mem-pool.h:187)
==43216==    by 0xFEAE929: socket_init (socket.c:4005)
==43216==    by 0xFEAF578: init (socket.c:4290)
==43216==    by 0x514C3DE: rpc_transport_load (rpc-transport.c:351)
==43216==    by 0x5150E30: rpc_clnt_connection_init (rpc-clnt.c:1067)
==43216==    by 0x5151169: rpc_clnt_new (rpc-clnt.c:1159)
==43216==    by 0x14A014DE: quota_enforcer_init (quota-enforcer-client.c:451)
==43216==    by 0x149FF51D: init (quota.c:5127)
==43216==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==43216==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==43216== 
==43216== 94 bytes in 1 blocks are possibly lost in loss record 251 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0x132C5046: gf_strdup (mem-pool.h:187)
==43216==    by 0x132D6700: changelog_init_options (changelog.c:2663)
==43216==    by 0x132D706A: init (changelog.c:2823)
==43216==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==43216==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==43216==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==43216==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==43216==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==43216==    by 0x40ECA5: mgmt_getspec_cbk (glusterfsd-mgmt.c:1648)
==43216==    by 0x51505D2: rpc_clnt_handle_reply (rpc-clnt.c:791)
==43216== 
==43216== 94 bytes in 1 blocks are possibly lost in loss record 252 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0xFEA28F8: gf_strdup (mem-pool.h:187)
==43216==    by 0xFEAE929: socket_init (socket.c:4005)
==43216==    by 0xFEAF578: init (socket.c:4290)
==43216==    by 0x514C3DE: rpc_transport_load (rpc-transport.c:351)
==43216==    by 0x5149213: rpcsvc_create_listener (rpcsvc.c:1664)
==43216==    by 0x514955C: rpcsvc_create_listeners (rpcsvc.c:1757)
==43216==    by 0x132DF1E6: changelog_rpc_server_init (changelog-rpc-common.c:318)
==43216==    by 0x132DDC27: changelog_init_rpc_listner (changelog-rpc.c:175)
==43216==    by 0x132D6D70: changelog_init_rpc (changelog.c:2768)
==43216==    by 0x132D71B1: init (changelog.c:2850)
==43216== 
==43216== 94 bytes in 1 blocks are possibly lost in loss record 253 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0x129B752F: gf_strdup (mem-pool.h:187)
==43216==    by 0x129D0A12: init (trash.c:2457)
==43216==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==43216==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==43216==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==43216==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==43216==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==43216==    by 0x40ECA5: mgmt_getspec_cbk (glusterfsd-mgmt.c:1648)
==43216==    by 0x51505D2: rpc_clnt_handle_reply (rpc-clnt.c:791)
==43216==    by 0x5150B34: rpc_clnt_notify (rpc-clnt.c:971)
==43216== 
==43216== 94 bytes in 1 blocks are possibly lost in loss record 254 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0x1216314A: gf_strdup (mem-pool.h:187)
==43216==    by 0x1218BBA6: init (posix.c:7090)
==43216==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==43216==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==43216==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==43216==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==43216==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==43216==    by 0x40ECA5: mgmt_getspec_cbk (glusterfsd-mgmt.c:1648)
==43216==    by 0x51505D2: rpc_clnt_handle_reply (rpc-clnt.c:791)
==43216==    by 0x5150B34: rpc_clnt_notify (rpc-clnt.c:971)
==43216== 
==43216== 94 bytes in 1 blocks are possibly lost in loss record 255 of 755
==43216==    at 0x4C27BE3: malloc (vg_replace_malloc.c:299)
==43216==    by 0x4E8FB45: __gf_malloc (mem-pool.c:142)
==43216==    by 0x4E8FDF0: gf_vasprintf (mem-pool.c:221)
==43216==    by 0x4E8FEDF: gf_asprintf (mem-pool.c:240)
==43216==    by 0x4E904D2: mem_pool_new_fn (mem-pool.c:385)
==43216==    by 0x129BB46E: inode_table_new (inode.c:1598)
==43216==    by 0x129CF039: notify (trash.c:2172)
==43216==    by 0x4E5BEC3: xlator_notify (xlator.c:496)
==43216==    by 0x4F12DCF: default_notify (defaults.c:3114)
==43216==    by 0x1218A501: notify (posix.c:6596)
==43216==    by 0x4E5BEC3: xlator_notify (xlator.c:496)
==43216==    by 0x4F12CE8: default_notify (defaults.c:3090)
==43216== 
==43216== 94 bytes in 1 blocks are possibly lost in loss record 256 of 755
==43216==    at 0x4C27BE3: malloc (vg_replace_malloc.c:299)
==43216==    by 0x4E8FB45: __gf_malloc (mem-pool.c:142)
==43216==    by 0x4E8FDF0: gf_vasprintf (mem-pool.c:221)
==43216==    by 0x4E8FEDF: gf_asprintf (mem-pool.c:240)
==43216==    by 0x4E904D2: mem_pool_new_fn (mem-pool.c:385)
==43216==    by 0x4E71F64: inode_table_new (inode.c:1593)
==43216==    by 0x15096890: server_setvolume (server-handshake.c:740)
==43216==    by 0x514731B: rpcsvc_handle_rpc_call (rpcsvc.c:701)
==43216==    by 0x514766E: rpcsvc_notify (rpcsvc.c:795)
==43216==    by 0x514CD1D: rpc_transport_notify (rpc-transport.c:541)
==43216==    by 0xFEA9D43: socket_event_poll_in (socket.c:2267)
==43216==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==43216== 
==43216== 95 bytes in 1 blocks are possibly lost in loss record 257 of 755
==43216==    at 0x4C27BE3: malloc (vg_replace_malloc.c:299)
==43216==    by 0x4E8FB45: __gf_malloc (mem-pool.c:142)
==43216==    by 0x4E8FDF0: gf_vasprintf (mem-pool.c:221)
==43216==    by 0x4E8FEDF: gf_asprintf (mem-pool.c:240)
==43216==    by 0x4E904D2: mem_pool_new_fn (mem-pool.c:385)
==43216==    by 0x4086EA: glusterfs_ctx_defaults_init (glusterfsd.c:1496)
==43216==    by 0x40A5BC: main (glusterfsd.c:2413)
==43216== 
==43216== 95 bytes in 1 blocks are possibly lost in loss record 258 of 755
==43216==    at 0x4C27BE3: malloc (vg_replace_malloc.c:299)
==43216==    by 0x4E8FB45: __gf_malloc (mem-pool.c:142)
==43216==    by 0x4E8FDF0: gf_vasprintf (mem-pool.c:221)
==43216==    by 0x4E8FEDF: gf_asprintf (mem-pool.c:240)
==43216==    by 0x4E904D2: mem_pool_new_fn (mem-pool.c:385)
==43216==    by 0x408772: glusterfs_ctx_defaults_init (glusterfsd.c:1502)
==43216==    by 0x40A5BC: main (glusterfsd.c:2413)
==43216== 
==43216== 95 bytes in 1 blocks are possibly lost in loss record 259 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0xFEA28F8: gf_strdup (mem-pool.h:187)
==43216==    by 0xFEAE7AD: socket_init (socket.c:3983)
==43216==    by 0xFEAF578: init (socket.c:4290)
==43216==    by 0x514C3DE: rpc_transport_load (rpc-transport.c:351)
==43216==    by 0x5149213: rpcsvc_create_listener (rpcsvc.c:1664)
==43216==    by 0x514955C: rpcsvc_create_listeners (rpcsvc.c:1757)
==43216==    by 0x40F98A: glusterfs_listener_init (glusterfsd-mgmt.c:2037)
==43216==    by 0x40A3EC: glusterfs_volumes_init (glusterfsd.c:2359)
==43216==    by 0x40A892: main (glusterfsd.c:2488)
==43216== 
==43216== 95 bytes in 1 blocks are possibly lost in loss record 260 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0xFEA28F8: gf_strdup (mem-pool.h:187)
==43216==    by 0xFEAE86B: socket_init (socket.c:3994)
==43216==    by 0xFEAF578: init (socket.c:4290)
==43216==    by 0x514C3DE: rpc_transport_load (rpc-transport.c:351)
==43216==    by 0x5149213: rpcsvc_create_listener (rpcsvc.c:1664)
==43216==    by 0x514955C: rpcsvc_create_listeners (rpcsvc.c:1757)
==43216==    by 0x40F98A: glusterfs_listener_init (glusterfsd-mgmt.c:2037)
==43216==    by 0x40A3EC: glusterfs_volumes_init (glusterfsd.c:2359)
==43216==    by 0x40A892: main (glusterfsd.c:2488)
==43216== 
==43216== 95 bytes in 1 blocks are possibly lost in loss record 261 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0xFEA28F8: gf_strdup (mem-pool.h:187)
==43216==    by 0xFEAE7AD: socket_init (socket.c:3983)
==43216==    by 0xFEAF578: init (socket.c:4290)
==43216==    by 0x514C3DE: rpc_transport_load (rpc-transport.c:351)
==43216==    by 0x5150E30: rpc_clnt_connection_init (rpc-clnt.c:1067)
==43216==    by 0x5151169: rpc_clnt_new (rpc-clnt.c:1159)
==43216==    by 0x40FE46: glusterfs_mgmt_init (glusterfsd-mgmt.c:2157)
==43216==    by 0x40A412: glusterfs_volumes_init (glusterfsd.c:2365)
==43216==    by 0x40A892: main (glusterfsd.c:2488)
==43216== 
==43216== 95 bytes in 1 blocks are possibly lost in loss record 262 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0xFEA28F8: gf_strdup (mem-pool.h:187)
==43216==    by 0xFEAE86B: socket_init (socket.c:3994)
==43216==    by 0xFEAF578: init (socket.c:4290)
==43216==    by 0x514C3DE: rpc_transport_load (rpc-transport.c:351)
==43216==    by 0x5150E30: rpc_clnt_connection_init (rpc-clnt.c:1067)
==43216==    by 0x5151169: rpc_clnt_new (rpc-clnt.c:1159)
==43216==    by 0x40FE46: glusterfs_mgmt_init (glusterfsd-mgmt.c:2157)
==43216==    by 0x40A412: glusterfs_volumes_init (glusterfsd.c:2365)
==43216==    by 0x40A892: main (glusterfsd.c:2488)
==43216== 
==43216== 95 bytes in 1 blocks are possibly lost in loss record 263 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0xFEA28F8: gf_strdup (mem-pool.h:187)
==43216==    by 0xFEAE7AD: socket_init (socket.c:3983)
==43216==    by 0xFEAF578: init (socket.c:4290)
==43216==    by 0x514C3DE: rpc_transport_load (rpc-transport.c:351)
==43216==    by 0x5149213: rpcsvc_create_listener (rpcsvc.c:1664)
==43216==    by 0x514955C: rpcsvc_create_listeners (rpcsvc.c:1757)
==43216==    by 0x1506250B: init (server.c:1056)
==43216==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==43216==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==43216==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==43216== 
==43216== 95 bytes in 1 blocks are possibly lost in loss record 264 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0xFEA28F8: gf_strdup (mem-pool.h:187)
==43216==    by 0xFEAE86B: socket_init (socket.c:3994)
==43216==    by 0xFEAF578: init (socket.c:4290)
==43216==    by 0x514C3DE: rpc_transport_load (rpc-transport.c:351)
==43216==    by 0x5149213: rpcsvc_create_listener (rpcsvc.c:1664)
==43216==    by 0x514955C: rpcsvc_create_listeners (rpcsvc.c:1757)
==43216==    by 0x1506250B: init (server.c:1056)
==43216==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==43216==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==43216==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==43216== 
==43216== 95 bytes in 1 blocks are possibly lost in loss record 265 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0xFEA28F8: gf_strdup (mem-pool.h:187)
==43216==    by 0xFEAE7AD: socket_init (socket.c:3983)
==43216==    by 0xFEAF578: init (socket.c:4290)
==43216==    by 0x514C3DE: rpc_transport_load (rpc-transport.c:351)
==43216==    by 0x5150E30: rpc_clnt_connection_init (rpc-clnt.c:1067)
==43216==    by 0x5151169: rpc_clnt_new (rpc-clnt.c:1159)
==43216==    by 0x14A014DE: quota_enforcer_init (quota-enforcer-client.c:451)
==43216==    by 0x149FF51D: init (quota.c:5127)
==43216==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==43216==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==43216== 
==43216== 95 bytes in 1 blocks are possibly lost in loss record 266 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0xFEA28F8: gf_strdup (mem-pool.h:187)
==43216==    by 0xFEAE86B: socket_init (socket.c:3994)
==43216==    by 0xFEAF578: init (socket.c:4290)
==43216==    by 0x514C3DE: rpc_transport_load (rpc-transport.c:351)
==43216==    by 0x5150E30: rpc_clnt_connection_init (rpc-clnt.c:1067)
==43216==    by 0x5151169: rpc_clnt_new (rpc-clnt.c:1159)
==43216==    by 0x14A014DE: quota_enforcer_init (quota-enforcer-client.c:451)
==43216==    by 0x149FF51D: init (quota.c:5127)
==43216==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==43216==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==43216== 
==43216== 95 bytes in 1 blocks are possibly lost in loss record 267 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0xFEA28F8: gf_strdup (mem-pool.h:187)
==43216==    by 0xFEAE7AD: socket_init (socket.c:3983)
==43216==    by 0xFEAF578: init (socket.c:4290)
==43216==    by 0x514C3DE: rpc_transport_load (rpc-transport.c:351)
==43216==    by 0x5149213: rpcsvc_create_listener (rpcsvc.c:1664)
==43216==    by 0x514955C: rpcsvc_create_listeners (rpcsvc.c:1757)
==43216==    by 0x132DF1E6: changelog_rpc_server_init (changelog-rpc-common.c:318)
==43216==    by 0x132DDC27: changelog_init_rpc_listner (changelog-rpc.c:175)
==43216==    by 0x132D6D70: changelog_init_rpc (changelog.c:2768)
==43216==    by 0x132D71B1: init (changelog.c:2850)
==43216== 
==43216== 95 bytes in 1 blocks are possibly lost in loss record 268 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0xFEA28F8: gf_strdup (mem-pool.h:187)
==43216==    by 0xFEAE86B: socket_init (socket.c:3994)
==43216==    by 0xFEAF578: init (socket.c:4290)
==43216==    by 0x514C3DE: rpc_transport_load (rpc-transport.c:351)
==43216==    by 0x5149213: rpcsvc_create_listener (rpcsvc.c:1664)
==43216==    by 0x514955C: rpcsvc_create_listeners (rpcsvc.c:1757)
==43216==    by 0x132DF1E6: changelog_rpc_server_init (changelog-rpc-common.c:318)
==43216==    by 0x132DDC27: changelog_init_rpc_listner (changelog-rpc.c:175)
==43216==    by 0x132D6D70: changelog_init_rpc (changelog.c:2768)
==43216==    by 0x132D71B1: init (changelog.c:2850)
==43216== 
==43216== 95 bytes in 1 blocks are possibly lost in loss record 269 of 755
==43216==    at 0x4C27BE3: malloc (vg_replace_malloc.c:299)
==43216==    by 0x4E8FB45: __gf_malloc (mem-pool.c:142)
==43216==    by 0x4E8FDF0: gf_vasprintf (mem-pool.c:221)
==43216==    by 0x4E8FEDF: gf_asprintf (mem-pool.c:240)
==43216==    by 0x4E904D2: mem_pool_new_fn (mem-pool.c:385)
==43216==    by 0x4E71F9C: inode_table_new (inode.c:1598)
==43216==    by 0x15096890: server_setvolume (server-handshake.c:740)
==43216==    by 0x514731B: rpcsvc_handle_rpc_call (rpcsvc.c:701)
==43216==    by 0x514766E: rpcsvc_notify (rpcsvc.c:795)
==43216==    by 0x514CD1D: rpc_transport_notify (rpc-transport.c:541)
==43216==    by 0xFEA9D43: socket_event_poll_in (socket.c:2267)
==43216==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==43216== 
==43216== 95 bytes in 1 blocks are definitely lost in loss record 270 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0x129B752F: gf_strdup (mem-pool.h:187)
==43216==    by 0x129BEF4B: trash_notify_mkdir_cbk (trash.c:441)
==43216==    by 0x1216EB15: posix_mkdir (posix.c:1693)
==43216==    by 0x129CFA85: notify (trash.c:2246)
==43216==    by 0x4E5BEC3: xlator_notify (xlator.c:496)
==43216==    by 0x4F12DCF: default_notify (defaults.c:3114)
==43216==    by 0x1218A501: notify (posix.c:6596)
==43216==    by 0x4E5BEC3: xlator_notify (xlator.c:496)
==43216==    by 0x4F12CE8: default_notify (defaults.c:3090)
==43216==    by 0x129D019E: notify (trash.c:2307)
==43216== 
==43216== 96 bytes in 1 blocks are possibly lost in loss record 274 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0x514C293: rpc_transport_load (rpc-transport.c:324)
==43216==    by 0x5149213: rpcsvc_create_listener (rpcsvc.c:1664)
==43216==    by 0x514955C: rpcsvc_create_listeners (rpcsvc.c:1757)
==43216==    by 0x40F98A: glusterfs_listener_init (glusterfsd-mgmt.c:2037)
==43216==    by 0x40A3EC: glusterfs_volumes_init (glusterfsd.c:2359)
==43216==    by 0x40A892: main (glusterfsd.c:2488)
==43216== 
==43216== 96 bytes in 1 blocks are possibly lost in loss record 275 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0x514C293: rpc_transport_load (rpc-transport.c:324)
==43216==    by 0x5150E30: rpc_clnt_connection_init (rpc-clnt.c:1067)
==43216==    by 0x5151169: rpc_clnt_new (rpc-clnt.c:1159)
==43216==    by 0x40FE46: glusterfs_mgmt_init (glusterfsd-mgmt.c:2157)
==43216==    by 0x40A412: glusterfs_volumes_init (glusterfsd.c:2365)
==43216==    by 0x40A892: main (glusterfsd.c:2488)
==43216== 
==43216== 96 bytes in 1 blocks are possibly lost in loss record 276 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0x514C293: rpc_transport_load (rpc-transport.c:324)
==43216==    by 0x5149213: rpcsvc_create_listener (rpcsvc.c:1664)
==43216==    by 0x514955C: rpcsvc_create_listeners (rpcsvc.c:1757)
==43216==    by 0x1506250B: init (server.c:1056)
==43216==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==43216==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==43216==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==43216==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==43216==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==43216==    by 0x40ECA5: mgmt_getspec_cbk (glusterfsd-mgmt.c:1648)
==43216== 
==43216== 96 bytes in 1 blocks are possibly lost in loss record 277 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0x514C293: rpc_transport_load (rpc-transport.c:324)
==43216==    by 0x5150E30: rpc_clnt_connection_init (rpc-clnt.c:1067)
==43216==    by 0x5151169: rpc_clnt_new (rpc-clnt.c:1159)
==43216==    by 0x14A014DE: quota_enforcer_init (quota-enforcer-client.c:451)
==43216==    by 0x149FF51D: init (quota.c:5127)
==43216==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==43216==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==43216==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==43216==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==43216==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==43216== 
==43216== 96 bytes in 1 blocks are possibly lost in loss record 278 of 755
==43216==    at 0x4C27BE3: malloc (vg_replace_malloc.c:299)
==43216==    by 0x4E8FB45: __gf_malloc (mem-pool.c:142)
==43216==    by 0x4E8FDF0: gf_vasprintf (mem-pool.c:221)
==43216==    by 0x4E8FEDF: gf_asprintf (mem-pool.c:240)
==43216==    by 0x4E904D2: mem_pool_new_fn (mem-pool.c:385)
==43216==    by 0x13935190: init (posix.c:3681)
==43216==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==43216==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==43216==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==43216==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==43216==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==43216==    by 0x40ECA5: mgmt_getspec_cbk (glusterfsd-mgmt.c:1648)
==43216== 
==43216== 96 bytes in 1 blocks are possibly lost in loss record 279 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0x132DD888: changelog_init_rpc_threads (changelog-rpc.c:105)
==43216==    by 0x132DDB5E: changelog_init_rpc_listner (changelog-rpc.c:169)
==43216==    by 0x132D6D70: changelog_init_rpc (changelog.c:2768)
==43216==    by 0x132D71B1: init (changelog.c:2850)
==43216==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==43216==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==43216==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==43216==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==43216==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==43216==    by 0x40ECA5: mgmt_getspec_cbk (glusterfsd-mgmt.c:1648)
==43216== 
==43216== 96 bytes in 1 blocks are possibly lost in loss record 280 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0x514B4A5: gf_strdup (mem-pool.h:187)
==43216==    by 0x514BC2B: rpc_transport_load (rpc-transport.c:191)
==43216==    by 0x5149213: rpcsvc_create_listener (rpcsvc.c:1664)
==43216==    by 0x514955C: rpcsvc_create_listeners (rpcsvc.c:1757)
==43216==    by 0x132DF1E6: changelog_rpc_server_init (changelog-rpc-common.c:318)
==43216==    by 0x132DDC27: changelog_init_rpc_listner (changelog-rpc.c:175)
==43216==    by 0x132D6D70: changelog_init_rpc (changelog.c:2768)
==43216==    by 0x132D71B1: init (changelog.c:2850)
==43216==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==43216==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==43216== 
==43216== 96 bytes in 1 blocks are possibly lost in loss record 281 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0x514C293: rpc_transport_load (rpc-transport.c:324)
==43216==    by 0x5149213: rpcsvc_create_listener (rpcsvc.c:1664)
==43216==    by 0x514955C: rpcsvc_create_listeners (rpcsvc.c:1757)
==43216==    by 0x132DF1E6: changelog_rpc_server_init (changelog-rpc-common.c:318)
==43216==    by 0x132DDC27: changelog_init_rpc_listner (changelog-rpc.c:175)
==43216==    by 0x132D6D70: changelog_init_rpc (changelog.c:2768)
==43216==    by 0x132D71B1: init (changelog.c:2850)
==43216==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==43216==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==43216==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==43216== 
==43216== 96 bytes in 1 blocks are possibly lost in loss record 282 of 755
==43216==    at 0x4C27BE3: malloc (vg_replace_malloc.c:299)
==43216==    by 0x130402E6: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==43216==    by 0x1301B6A9: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==43216==    by 0x13023A25: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==43216==    by 0x13023B60: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==43216==    by 0x13023BDC: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==43216==    by 0x13028E1A: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==43216==    by 0x13049880: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==43216==    by 0x1304999B: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==43216==    by 0x13049B4C: sqlite3_create_function_v2 (in /usr/lib64/libsqlite3.so.0.8.6)
==43216==    by 0x13049B94: sqlite3_create_function (in /usr/lib64/libsqlite3.so.0.8.6)
==43216==    by 0x1309E4B6: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==43216== 
==43216== 96 bytes in 1 blocks are possibly lost in loss record 283 of 755
==43216==    at 0x4C27BE3: malloc (vg_replace_malloc.c:299)
==43216==    by 0x130402E6: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==43216==    by 0x1301B6A9: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==43216==    by 0x13023A25: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==43216==    by 0x13023B60: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==43216==    by 0x13023BDC: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==43216==    by 0x13028E1A: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==43216==    by 0x13049880: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==43216==    by 0x130499DF: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==43216==    by 0x13049B4C: sqlite3_create_function_v2 (in /usr/lib64/libsqlite3.so.0.8.6)
==43216==    by 0x13049B94: sqlite3_create_function (in /usr/lib64/libsqlite3.so.0.8.6)
==43216==    by 0x1309E4B6: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==43216== 
==43216== 96 bytes in 1 blocks are possibly lost in loss record 284 of 755
==43216==    at 0x4C27BE3: malloc (vg_replace_malloc.c:299)
==43216==    by 0x130402E6: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==43216==    by 0x1301B6A9: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==43216==    by 0x13023A25: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==43216==    by 0x13023B60: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==43216==    by 0x13023BDC: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==43216==    by 0x13028E1A: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==43216==    by 0x13049880: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==43216==    by 0x13049B4C: sqlite3_create_function_v2 (in /usr/lib64/libsqlite3.so.0.8.6)
==43216==    by 0x13049B94: sqlite3_create_function (in /usr/lib64/libsqlite3.so.0.8.6)
==43216==    by 0x1309E4B6: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==43216==    by 0x12E01B48: gf_open_sqlite3_conn (gfdb_sqlite3.c:192)
==43216== 
==43216== 96 bytes in 1 blocks are possibly lost in loss record 285 of 755
==43216==    at 0x4C27BE3: malloc (vg_replace_malloc.c:299)
==43216==    by 0x130402E6: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==43216==    by 0x1301B6A9: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==43216==    by 0x13023A25: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==43216==    by 0x13023B60: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==43216==    by 0x13023BDC: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==43216==    by 0x13028E1A: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==43216==    by 0x13049880: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==43216==    by 0x1304999B: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==43216==    by 0x13049B4C: sqlite3_create_function_v2 (in /usr/lib64/libsqlite3.so.0.8.6)
==43216==    by 0x13049B94: sqlite3_create_function (in /usr/lib64/libsqlite3.so.0.8.6)
==43216==    by 0x1309E4F2: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==43216== 
==43216== 96 bytes in 1 blocks are possibly lost in loss record 286 of 755
==43216==    at 0x4C27BE3: malloc (vg_replace_malloc.c:299)
==43216==    by 0x130402E6: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==43216==    by 0x1301B6A9: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==43216==    by 0x13023A25: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==43216==    by 0x13023B60: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==43216==    by 0x13023BDC: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==43216==    by 0x13028E1A: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==43216==    by 0x13049880: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==43216==    by 0x130499DF: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==43216==    by 0x13049B4C: sqlite3_create_function_v2 (in /usr/lib64/libsqlite3.so.0.8.6)
==43216==    by 0x13049B94: sqlite3_create_function (in /usr/lib64/libsqlite3.so.0.8.6)
==43216==    by 0x1309E4F2: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==43216== 
==43216== 96 bytes in 1 blocks are possibly lost in loss record 287 of 755
==43216==    at 0x4C27BE3: malloc (vg_replace_malloc.c:299)
==43216==    by 0x130402E6: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==43216==    by 0x1301B6A9: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==43216==    by 0x13023A25: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==43216==    by 0x13023B60: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==43216==    by 0x13023BDC: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==43216==    by 0x13028E1A: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==43216==    by 0x13049880: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==43216==    by 0x13049B4C: sqlite3_create_function_v2 (in /usr/lib64/libsqlite3.so.0.8.6)
==43216==    by 0x13049B94: sqlite3_create_function (in /usr/lib64/libsqlite3.so.0.8.6)
==43216==    by 0x1309E4F2: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==43216==    by 0x12E01B48: gf_open_sqlite3_conn (gfdb_sqlite3.c:192)
==43216== 
==43216== 96 bytes in 1 blocks are possibly lost in loss record 288 of 755
==43216==    at 0x4C27BE3: malloc (vg_replace_malloc.c:299)
==43216==    by 0x130402E6: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==43216==    by 0x1301B6A9: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==43216==    by 0x13023A25: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==43216==    by 0x13023B60: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==43216==    by 0x13023BDC: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==43216==    by 0x13028E1A: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==43216==    by 0x13049880: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==43216==    by 0x13049C5E: sqlite3_overload_function (in /usr/lib64/libsqlite3.so.0.8.6)
==43216==    by 0x1309E544: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==43216==    by 0x12E01B48: gf_open_sqlite3_conn (gfdb_sqlite3.c:192)
==43216==    by 0x12E02CAF: gf_sqlite3_init (gfdb_sqlite3.c:440)
==43216== 
==43216== 96 bytes in 1 blocks are possibly lost in loss record 289 of 755
==43216==    at 0x4C27BE3: malloc (vg_replace_malloc.c:299)
==43216==    by 0x130402E6: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==43216==    by 0x1301B6A9: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==43216==    by 0x13023A25: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==43216==    by 0x13023B60: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==43216==    by 0x13023BDC: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==43216==    by 0x13028E1A: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==43216==    by 0x13049880: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==43216==    by 0x13049C5E: sqlite3_overload_function (in /usr/lib64/libsqlite3.so.0.8.6)
==43216==    by 0x1309E560: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==43216==    by 0x12E01B48: gf_open_sqlite3_conn (gfdb_sqlite3.c:192)
==43216==    by 0x12E02CAF: gf_sqlite3_init (gfdb_sqlite3.c:440)
==43216== 
==43216== 96 bytes in 1 blocks are possibly lost in loss record 290 of 755
==43216==    at 0x4C27BE3: malloc (vg_replace_malloc.c:299)
==43216==    by 0x130402E6: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==43216==    by 0x1301B6A9: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==43216==    by 0x13023A25: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==43216==    by 0x13023B60: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==43216==    by 0x13023BDC: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==43216==    by 0x13028E1A: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==43216==    by 0x13049880: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==43216==    by 0x13049C5E: sqlite3_overload_function (in /usr/lib64/libsqlite3.so.0.8.6)
==43216==    by 0x1309E57C: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==43216==    by 0x12E01B48: gf_open_sqlite3_conn (gfdb_sqlite3.c:192)
==43216==    by 0x12E02CAF: gf_sqlite3_init (gfdb_sqlite3.c:440)
==43216== 
==43216== 96 bytes in 1 blocks are possibly lost in loss record 291 of 755
==43216==    at 0x4C27BE3: malloc (vg_replace_malloc.c:299)
==43216==    by 0x130402E6: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==43216==    by 0x1301B6A9: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==43216==    by 0x13023A25: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==43216==    by 0x13023B60: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==43216==    by 0x13023BDC: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==43216==    by 0x13028E1A: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==43216==    by 0x13049880: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==43216==    by 0x13049B4C: sqlite3_create_function_v2 (in /usr/lib64/libsqlite3.so.0.8.6)
==43216==    by 0x13049B94: sqlite3_create_function (in /usr/lib64/libsqlite3.so.0.8.6)
==43216==    by 0x1309E62F: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==43216==    by 0x12E01B48: gf_open_sqlite3_conn (gfdb_sqlite3.c:192)
==43216== 
==43216== 96 bytes in 1 blocks are possibly lost in loss record 292 of 755
==43216==    at 0x4C27BE3: malloc (vg_replace_malloc.c:299)
==43216==    by 0x130402E6: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==43216==    by 0x1301B6A9: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==43216==    by 0x13023A25: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==43216==    by 0x13023B60: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==43216==    by 0x13023BDC: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==43216==    by 0x13028E1A: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==43216==    by 0x13049880: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==43216==    by 0x13049B4C: sqlite3_create_function_v2 (in /usr/lib64/libsqlite3.so.0.8.6)
==43216==    by 0x13049B94: sqlite3_create_function (in /usr/lib64/libsqlite3.so.0.8.6)
==43216==    by 0x1309E66B: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==43216==    by 0x12E01B48: gf_open_sqlite3_conn (gfdb_sqlite3.c:192)
==43216== 
==43216== 96 bytes in 1 blocks are definitely lost in loss record 293 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0x4E5499E: dict_set_lk (dict.c:378)
==43216==    by 0x4E54B82: dict_set (dict.c:424)
==43216==    by 0x4E584CB: dict_set_str (dict.c:2168)
==43216==    by 0x5144D69: rpcsvc_set_allow_insecure (rpcsvc-auth.c:231)
==43216==    by 0x5144F59: rpcsvc_auth_init (rpcsvc-auth.c:283)
==43216==    by 0x514A796: rpcsvc_init (rpcsvc.c:2334)
==43216==    by 0x40F93C: glusterfs_listener_init (glusterfsd-mgmt.c:2027)
==43216==    by 0x40A3EC: glusterfs_volumes_init (glusterfsd.c:2359)
==43216==    by 0x40A892: main (glusterfsd.c:2488)
==43216== 
==43216== 96 bytes in 1 blocks are definitely lost in loss record 294 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0x4E5499E: dict_set_lk (dict.c:378)
==43216==    by 0x4E54B82: dict_set (dict.c:424)
==43216==    by 0x4E584CB: dict_set_str (dict.c:2168)
==43216==    by 0x5144B1C: rpcsvc_auth_init_auths (rpcsvc-auth.c:162)
==43216==    by 0x5144FDA: rpcsvc_auth_init (rpcsvc-auth.c:292)
==43216==    by 0x514A796: rpcsvc_init (rpcsvc.c:2334)
==43216==    by 0x40F93C: glusterfs_listener_init (glusterfsd-mgmt.c:2027)
==43216==    by 0x40A3EC: glusterfs_volumes_init (glusterfsd.c:2359)
==43216==    by 0x40A892: main (glusterfsd.c:2488)
==43216== 
==43216== 96 bytes in 1 blocks are definitely lost in loss record 295 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0x4E5499E: dict_set_lk (dict.c:378)
==43216==    by 0x4E54B82: dict_set (dict.c:424)
==43216==    by 0x4E584CB: dict_set_str (dict.c:2168)
==43216==    by 0x5144D69: rpcsvc_set_allow_insecure (rpcsvc-auth.c:231)
==43216==    by 0x5144F59: rpcsvc_auth_init (rpcsvc-auth.c:283)
==43216==    by 0x514A796: rpcsvc_init (rpcsvc.c:2334)
==43216==    by 0x150622FC: init (server.c:1019)
==43216==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==43216==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==43216==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==43216== 
==43216== 96 bytes in 1 blocks are definitely lost in loss record 296 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0x4E5499E: dict_set_lk (dict.c:378)
==43216==    by 0x4E54B82: dict_set (dict.c:424)
==43216==    by 0x4E584CB: dict_set_str (dict.c:2168)
==43216==    by 0x5144B1C: rpcsvc_auth_init_auths (rpcsvc-auth.c:162)
==43216==    by 0x5144FDA: rpcsvc_auth_init (rpcsvc-auth.c:292)
==43216==    by 0x514A796: rpcsvc_init (rpcsvc.c:2334)
==43216==    by 0x150622FC: init (server.c:1019)
==43216==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==43216==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==43216==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==43216== 
==43216== 97 bytes in 1 blocks are possibly lost in loss record 297 of 755
==43216==    at 0x4C27BE3: malloc (vg_replace_malloc.c:299)
==43216==    by 0x4E8FB45: __gf_malloc (mem-pool.c:142)
==43216==    by 0x4E8FDF0: gf_vasprintf (mem-pool.c:221)
==43216==    by 0x4E8FEDF: gf_asprintf (mem-pool.c:240)
==43216==    by 0x4E6BA5F: gf_set_log_ident (common-utils.c:3491)
==43216==    by 0x408C34: logging_init (glusterfsd.c:1609)
==43216==    by 0x40A65E: main (glusterfsd.c:2438)
==43216== 
==43216== 97 bytes in 1 blocks are possibly lost in loss record 298 of 755
==43216==    at 0x4C27BE3: malloc (vg_replace_malloc.c:299)
==43216==    by 0x4E8FB45: __gf_malloc (mem-pool.c:142)
==43216==    by 0x4E8FDF0: gf_vasprintf (mem-pool.c:221)
==43216==    by 0x4E8FEDF: gf_asprintf (mem-pool.c:240)
==43216==    by 0x4E904D2: mem_pool_new_fn (mem-pool.c:385)
==43216==    by 0x5151087: rpc_clnt_new (rpc-clnt.c:1139)
==43216==    by 0x40FE46: glusterfs_mgmt_init (glusterfsd-mgmt.c:2157)
==43216==    by 0x40A412: glusterfs_volumes_init (glusterfsd.c:2365)
==43216==    by 0x40A892: main (glusterfsd.c:2488)
==43216== 
==43216== 97 bytes in 1 blocks are definitely lost in loss record 299 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0x4E5499E: dict_set_lk (dict.c:378)
==43216==    by 0x4E54B82: dict_set (dict.c:424)
==43216==    by 0x4E584CB: dict_set_str (dict.c:2168)
==43216==    by 0x514A362: rpcsvc_transport_unix_options_build (rpcsvc.c:2180)
==43216==    by 0x40F909: glusterfs_listener_init (glusterfsd-mgmt.c:2022)
==43216==    by 0x40A3EC: glusterfs_volumes_init (glusterfsd.c:2359)
==43216==    by 0x40A892: main (glusterfsd.c:2488)
==43216== 
==43216== 97 bytes in 1 blocks are definitely lost in loss record 300 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0x4E5499E: dict_set_lk (dict.c:378)
==43216==    by 0x4E54B82: dict_set (dict.c:424)
==43216==    by 0x4E584CB: dict_set_str (dict.c:2168)
==43216==    by 0x514A387: rpcsvc_transport_unix_options_build (rpcsvc.c:2184)
==43216==    by 0x40F909: glusterfs_listener_init (glusterfsd-mgmt.c:2022)
==43216==    by 0x40A3EC: glusterfs_volumes_init (glusterfsd.c:2359)
==43216==    by 0x40A892: main (glusterfsd.c:2488)
==43216== 
==43216== 97 bytes in 1 blocks are definitely lost in loss record 301 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0x4E5499E: dict_set_lk (dict.c:378)
==43216==    by 0x4E54B82: dict_set (dict.c:424)
==43216==    by 0x4E584CB: dict_set_str (dict.c:2168)
==43216==    by 0x14A01464: quota_enforcer_init (quota-enforcer-client.c:438)
==43216==    by 0x149FF51D: init (quota.c:5127)
==43216==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==43216==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==43216==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==43216==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==43216==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==43216== 
==43216== 99 bytes in 1 blocks are possibly lost in loss record 302 of 755
==43216==    at 0x4C27BE3: malloc (vg_replace_malloc.c:299)
==43216==    by 0x4E8FB45: __gf_malloc (mem-pool.c:142)
==43216==    by 0x4E8FDF0: gf_vasprintf (mem-pool.c:221)
==43216==    by 0x4E8FEDF: gf_asprintf (mem-pool.c:240)
==43216==    by 0x4E904D2: mem_pool_new_fn (mem-pool.c:385)
==43216==    by 0x514A732: rpcsvc_init (rpcsvc.c:2327)
==43216==    by 0x40F93C: glusterfs_listener_init (glusterfsd-mgmt.c:2027)
==43216==    by 0x40A3EC: glusterfs_volumes_init (glusterfsd.c:2359)
==43216==    by 0x40A892: main (glusterfsd.c:2488)
==43216== 
==43216== 99 bytes in 1 blocks are possibly lost in loss record 303 of 755
==43216==    at 0x4C27BE3: malloc (vg_replace_malloc.c:299)
==43216==    by 0x4E8FB45: __gf_malloc (mem-pool.c:142)
==43216==    by 0x4E8FDF0: gf_vasprintf (mem-pool.c:221)
==43216==    by 0x4E8FEDF: gf_asprintf (mem-pool.c:240)
==43216==    by 0x4E904D2: mem_pool_new_fn (mem-pool.c:385)
==43216==    by 0x149FF481: init (quota.c:5118)
==43216==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==43216==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==43216==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==43216==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==43216==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==43216==    by 0x40ECA5: mgmt_getspec_cbk (glusterfsd-mgmt.c:1648)
==43216== 
==43216== 99 bytes in 1 blocks are possibly lost in loss record 304 of 755
==43216==    at 0x4C27BE3: malloc (vg_replace_malloc.c:299)
==43216==    by 0x4E8FB45: __gf_malloc (mem-pool.c:142)
==43216==    by 0x4E8FDF0: gf_vasprintf (mem-pool.c:221)
==43216==    by 0x4E8FEDF: gf_asprintf (mem-pool.c:240)
==43216==    by 0x4E904D2: mem_pool_new_fn (mem-pool.c:385)
==43216==    by 0x147D5BD2: init (index.c:2357)
==43216==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==43216==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==43216==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==43216==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==43216==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==43216==    by 0x40ECA5: mgmt_getspec_cbk (glusterfsd-mgmt.c:1648)
==43216== 
==43216== 99 bytes in 1 blocks are possibly lost in loss record 305 of 755
==43216==    at 0x4C27BE3: malloc (vg_replace_malloc.c:299)
==43216==    by 0x4E8FB45: __gf_malloc (mem-pool.c:142)
==43216==    by 0x4E8FDF0: gf_vasprintf (mem-pool.c:221)
==43216==    by 0x4E8FEDF: gf_asprintf (mem-pool.c:240)
==43216==    by 0x4E904D2: mem_pool_new_fn (mem-pool.c:385)
==43216==    by 0x129D0936: init (trash.c:2438)
==43216==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==43216==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==43216==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==43216==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==43216==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==43216==    by 0x40ECA5: mgmt_getspec_cbk (glusterfsd-mgmt.c:1648)
==43216== 
==43216== 100 bytes in 1 blocks are possibly lost in loss record 306 of 755
==43216==    at 0x4C27BE3: malloc (vg_replace_malloc.c:299)
==43216==    by 0x4E8FB45: __gf_malloc (mem-pool.c:142)
==43216==    by 0x4E8FDF0: gf_vasprintf (mem-pool.c:221)
==43216==    by 0x4E8FEDF: gf_asprintf (mem-pool.c:240)
==43216==    by 0x4E904D2: mem_pool_new_fn (mem-pool.c:385)
==43216==    by 0x5151087: rpc_clnt_new (rpc-clnt.c:1139)
==43216==    by 0x14A014DE: quota_enforcer_init (quota-enforcer-client.c:451)
==43216==    by 0x149FF51D: init (quota.c:5127)
==43216==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==43216==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==43216==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==43216==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==43216== 
==43216== 100 bytes in 1 blocks are possibly lost in loss record 307 of 755
==43216==    at 0x4C27BE3: malloc (vg_replace_malloc.c:299)
==43216==    by 0x4E8FB45: __gf_malloc (mem-pool.c:142)
==43216==    by 0x4E8FDF0: gf_vasprintf (mem-pool.c:221)
==43216==    by 0x4E8FEDF: gf_asprintf (mem-pool.c:240)
==43216==    by 0x4E721C6: inode_table_new (inode.c:1635)
==43216==    by 0x15096890: server_setvolume (server-handshake.c:740)
==43216==    by 0x514731B: rpcsvc_handle_rpc_call (rpcsvc.c:701)
==43216==    by 0x514766E: rpcsvc_notify (rpcsvc.c:795)
==43216==    by 0x514CD1D: rpc_transport_notify (rpc-transport.c:541)
==43216==    by 0xFEA9D43: socket_event_poll_in (socket.c:2267)
==43216==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==43216==    by 0x4ECB1D7: event_dispatch_epoll_handler (event-epoll.c:571)
==43216== 
==43216== 101 bytes in 1 blocks are possibly lost in loss record 308 of 755
==43216==    at 0x4C27BE3: malloc (vg_replace_malloc.c:299)
==43216==    by 0x4E8FB45: __gf_malloc (mem-pool.c:142)
==43216==    by 0x4E8FDF0: gf_vasprintf (mem-pool.c:221)
==43216==    by 0x4E8FEDF: gf_asprintf (mem-pool.c:240)
==43216==    by 0x4E904D2: mem_pool_new_fn (mem-pool.c:385)
==43216==    by 0x51510EE: rpc_clnt_new (rpc-clnt.c:1148)
==43216==    by 0x40FE46: glusterfs_mgmt_init (glusterfsd-mgmt.c:2157)
==43216==    by 0x40A412: glusterfs_volumes_init (glusterfsd.c:2365)
==43216==    by 0x40A892: main (glusterfsd.c:2488)
==43216== 
==43216== 101 bytes in 1 blocks are possibly lost in loss record 309 of 755
==43216==    at 0x4C27BE3: malloc (vg_replace_malloc.c:299)
==43216==    by 0x4E8FB45: __gf_malloc (mem-pool.c:142)
==43216==    by 0x4E8FDF0: gf_vasprintf (mem-pool.c:221)
==43216==    by 0x4E8FEDF: gf_asprintf (mem-pool.c:240)
==43216==    by 0x4E904D2: mem_pool_new_fn (mem-pool.c:385)
==43216==    by 0x143A9945: init (marker.c:3443)
==43216==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==43216==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==43216==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==43216==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==43216==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==43216==    by 0x40ECA5: mgmt_getspec_cbk (glusterfsd-mgmt.c:1648)
==43216== 
==43216== 101 bytes in 1 blocks are possibly lost in loss record 310 of 755
==43216==    at 0x4C27BE3: malloc (vg_replace_malloc.c:299)
==43216==    by 0x4E8FB45: __gf_malloc (mem-pool.c:142)
==43216==    by 0x4E8FDF0: gf_vasprintf (mem-pool.c:221)
==43216==    by 0x4E8FEDF: gf_asprintf (mem-pool.c:240)
==43216==    by 0x4E904D2: mem_pool_new_fn (mem-pool.c:385)
==43216==    by 0x1418A79B: init (upcall.c:1693)
==43216==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==43216==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==43216==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==43216==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==43216==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==43216==    by 0x40ECA5: mgmt_getspec_cbk (glusterfsd-mgmt.c:1648)
==43216== 
==43216== 101 bytes in 1 blocks are possibly lost in loss record 311 of 755
==43216==    at 0x4C27BE3: malloc (vg_replace_malloc.c:299)
==43216==    by 0x4E8FB45: __gf_malloc (mem-pool.c:142)
==43216==    by 0x4E8FDF0: gf_vasprintf (mem-pool.c:221)
==43216==    by 0x4E8FEDF: gf_asprintf (mem-pool.c:240)
==43216==    by 0x4E904D2: mem_pool_new_fn (mem-pool.c:385)
==43216==    by 0x13B50CF0: init (worm.c:504)
==43216==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==43216==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==43216==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==43216==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==43216==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==43216==    by 0x40ECA5: mgmt_getspec_cbk (glusterfsd-mgmt.c:1648)
==43216== 
==43216== 101 bytes in 1 blocks are definitely lost in loss record 312 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0x4E5499E: dict_set_lk (dict.c:378)
==43216==    by 0x4E54B82: dict_set (dict.c:424)
==43216==    by 0x4E585B1: dict_set_dynstr (dict.c:2205)
==43216==    by 0x514A33D: rpcsvc_transport_unix_options_build (rpcsvc.c:2176)
==43216==    by 0x40F909: glusterfs_listener_init (glusterfsd-mgmt.c:2022)
==43216==    by 0x40A3EC: glusterfs_volumes_init (glusterfsd.c:2359)
==43216==    by 0x40A892: main (glusterfsd.c:2488)
==43216== 
==43216== 101 bytes in 1 blocks are definitely lost in loss record 313 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0x4E5499E: dict_set_lk (dict.c:378)
==43216==    by 0x4E54B82: dict_set (dict.c:424)
==43216==    by 0x4EBE088: xl_opt_validate (options.c:955)
==43216==    by 0x4E56B26: dict_foreach_match (dict.c:1236)
==43216==    by 0x4E56A12: dict_foreach (dict.c:1194)
==43216==    by 0x4EBE0F0: xlator_options_validate_list (options.c:977)
==43216==    by 0x514C360: rpc_transport_load (rpc-transport.c:338)
==43216==    by 0x5149213: rpcsvc_create_listener (rpcsvc.c:1664)
==43216==    by 0x514955C: rpcsvc_create_listeners (rpcsvc.c:1757)
==43216==    by 0x1506250B: init (server.c:1056)
==43216== 
==43216== 102 bytes in 1 blocks are definitely lost in loss record 314 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0x4E5499E: dict_set_lk (dict.c:378)
==43216==    by 0x4E54B82: dict_set (dict.c:424)
==43216==    by 0x4E584CB: dict_set_str (dict.c:2168)
==43216==    by 0x14A014B4: quota_enforcer_init (quota-enforcer-client.c:446)
==43216==    by 0x149FF51D: init (quota.c:5127)
==43216==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==43216==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==43216==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==43216==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==43216==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==43216== 
==43216== 103 bytes in 1 blocks are possibly lost in loss record 315 of 755
==43216==    at 0x4C27BE3: malloc (vg_replace_malloc.c:299)
==43216==    by 0x4E8FB45: __gf_malloc (mem-pool.c:142)
==43216==    by 0x4E8FDF0: gf_vasprintf (mem-pool.c:221)
==43216==    by 0x4E8FEDF: gf_asprintf (mem-pool.c:240)
==43216==    by 0x4E904D2: mem_pool_new_fn (mem-pool.c:385)
==43216==    by 0x514A732: rpcsvc_init (rpcsvc.c:2327)
==43216==    by 0x150622FC: init (server.c:1019)
==43216==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==43216==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==43216==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==43216==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==43216==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==43216== 
==43216== 104 bytes in 1 blocks are possibly lost in loss record 316 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0x5145E8F: rpcsvc_notify_wrapper_alloc (rpcsvc.c:66)
==43216==    by 0x51496F5: rpcsvc_register_notify (rpcsvc.c:1824)
==43216==    by 0x40F967: glusterfs_listener_init (glusterfsd-mgmt.c:2032)
==43216==    by 0x40A3EC: glusterfs_volumes_init (glusterfsd.c:2359)
==43216==    by 0x40A892: main (glusterfsd.c:2488)
==43216== 
==43216== 104 bytes in 1 blocks are possibly lost in loss record 317 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0x5145E8F: rpcsvc_notify_wrapper_alloc (rpcsvc.c:66)
==43216==    by 0x51496F5: rpcsvc_register_notify (rpcsvc.c:1824)
==43216==    by 0x150625FA: init (server.c:1072)
==43216==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==43216==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==43216==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==43216==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==43216==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==43216==    by 0x40ECA5: mgmt_getspec_cbk (glusterfsd-mgmt.c:1648)
==43216==    by 0x51505D2: rpc_clnt_handle_reply (rpc-clnt.c:791)
==43216== 
==43216== 104 bytes in 1 blocks are possibly lost in loss record 318 of 755
==43216==    at 0x4C27BE3: malloc (vg_replace_malloc.c:299)
==43216==    by 0x4E8FB45: __gf_malloc (mem-pool.c:142)
==43216==    by 0x4E8FDF0: gf_vasprintf (mem-pool.c:221)
==43216==    by 0x4E8FEDF: gf_asprintf (mem-pool.c:240)
==43216==    by 0x4E904D2: mem_pool_new_fn (mem-pool.c:385)
==43216==    by 0x51510EE: rpc_clnt_new (rpc-clnt.c:1148)
==43216==    by 0x14A014DE: quota_enforcer_init (quota-enforcer-client.c:451)
==43216==    by 0x149FF51D: init (quota.c:5127)
==43216==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==43216==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==43216==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==43216==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==43216== 
==43216== 104 bytes in 1 blocks are possibly lost in loss record 319 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0x13707A66: posix_acl_new (posix-acl.c:428)
==43216==    by 0x13716BE3: init (posix-acl.c:2316)
==43216==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==43216==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==43216==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==43216==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==43216==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==43216==    by 0x40ECA5: mgmt_getspec_cbk (glusterfsd-mgmt.c:1648)
==43216==    by 0x51505D2: rpc_clnt_handle_reply (rpc-clnt.c:791)
==43216==    by 0x5150B34: rpc_clnt_notify (rpc-clnt.c:971)
==43216== 
==43216== 104 bytes in 1 blocks are possibly lost in loss record 320 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0x5145E8F: rpcsvc_notify_wrapper_alloc (rpcsvc.c:66)
==43216==    by 0x51496F5: rpcsvc_register_notify (rpcsvc.c:1824)
==43216==    by 0x132DF16F: changelog_rpc_server_init (changelog-rpc-common.c:310)
==43216==    by 0x132DDC27: changelog_init_rpc_listner (changelog-rpc.c:175)
==43216==    by 0x132D6D70: changelog_init_rpc (changelog.c:2768)
==43216==    by 0x132D71B1: init (changelog.c:2850)
==43216==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==43216==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==43216==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==43216==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==43216== 
==43216== 106 bytes in 1 blocks are possibly lost in loss record 321 of 755
==43216==    at 0x4C27BE3: malloc (vg_replace_malloc.c:299)
==43216==    by 0x4E8FB45: __gf_malloc (mem-pool.c:142)
==43216==    by 0x4E8FDF0: gf_vasprintf (mem-pool.c:221)
==43216==    by 0x4E8FEDF: gf_asprintf (mem-pool.c:240)
==43216==    by 0x4E904D2: mem_pool_new_fn (mem-pool.c:385)
==43216==    by 0x514A732: rpcsvc_init (rpcsvc.c:2327)
==43216==    by 0x132DF0F9: changelog_rpc_server_init (changelog-rpc-common.c:302)
==43216==    by 0x132DDC27: changelog_init_rpc_listner (changelog-rpc.c:175)
==43216==    by 0x132D6D70: changelog_init_rpc (changelog.c:2768)
==43216==    by 0x132D71B1: init (changelog.c:2850)
==43216==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==43216==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==43216== 
==43216== 107 bytes in 1 blocks are possibly lost in loss record 322 of 755
==43216==    at 0x4C27BE3: malloc (vg_replace_malloc.c:299)
==43216==    by 0x4E8FB45: __gf_malloc (mem-pool.c:142)
==43216==    by 0x4E8FDF0: gf_vasprintf (mem-pool.c:221)
==43216==    by 0x4E8FEDF: gf_asprintf (mem-pool.c:240)
==43216==    by 0x4E904D2: mem_pool_new_fn (mem-pool.c:385)
==43216==    by 0x134EF2D6: init (bit-rot-stub.c:135)
==43216==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==43216==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==43216==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==43216==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==43216==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==43216==    by 0x40ECA5: mgmt_getspec_cbk (glusterfsd-mgmt.c:1648)
==43216== 
==43216== 107 bytes in 1 blocks are possibly lost in loss record 323 of 755
==43216==    at 0x4C27BE3: malloc (vg_replace_malloc.c:299)
==43216==    by 0x4E8FB45: __gf_malloc (mem-pool.c:142)
==43216==    by 0x4E8FDF0: gf_vasprintf (mem-pool.c:221)
==43216==    by 0x4E8FEDF: gf_asprintf (mem-pool.c:240)
==43216==    by 0x4E904D2: mem_pool_new_fn (mem-pool.c:385)
==43216==    by 0x132D6F76: init (changelog.c:2812)
==43216==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==43216==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==43216==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==43216==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==43216==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==43216==    by 0x40ECA5: mgmt_getspec_cbk (glusterfsd-mgmt.c:1648)
==43216== 
==43216== 112 bytes in 1 blocks are possibly lost in loss record 324 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0x4068D5: gf_remember_backup_volfile_server (glusterfsd.c:681)
==43216==    by 0x4070DB: parse_opts (glusterfsd.c:836)
==43216==    by 0x67B4F7C: argp_parse (in /usr/lib64/libc-2.17.so)
==43216==    by 0x4092D4: parse_cmdline (glusterfsd.c:1866)
==43216==    by 0x40A5E5: main (glusterfsd.c:2417)
==43216== 
==43216== 112 bytes in 1 blocks are possibly lost in loss record 325 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0x14C0CBA1: ios_create_sample_buf (io-stats.c:480)
==43216==    by 0x14C0CCCA: ios_init_sample_buf (io-stats.c:519)
==43216==    by 0x14C282AF: init (io-stats.c:3678)
==43216==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==43216==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==43216==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==43216==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==43216==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==43216==    by 0x40ECA5: mgmt_getspec_cbk (glusterfsd-mgmt.c:1648)
==43216==    by 0x51505D2: rpc_clnt_handle_reply (rpc-clnt.c:791)
==43216== 
==43216== 112 bytes in 1 blocks are possibly lost in loss record 326 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0x13D561C0: init (read-only.c:45)
==43216==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==43216==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==43216==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==43216==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==43216==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==43216==    by 0x40ECA5: mgmt_getspec_cbk (glusterfsd-mgmt.c:1648)
==43216==    by 0x51505D2: rpc_clnt_handle_reply (rpc-clnt.c:791)
==43216==    by 0x5150B34: rpc_clnt_notify (rpc-clnt.c:971)
==43216==    by 0x514CD1D: rpc_transport_notify (rpc-transport.c:541)
==43216== 
==43216== 112 bytes in 1 blocks are possibly lost in loss record 327 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0x132D736A: changelog_rt_init (changelog-rt.c:23)
==43216==    by 0x132D6C28: changelog_init_options (changelog.c:2722)
==43216==    by 0x132D706A: init (changelog.c:2823)
==43216==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==43216==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==43216==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==43216==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==43216==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==43216==    by 0x40ECA5: mgmt_getspec_cbk (glusterfsd-mgmt.c:1648)
==43216==    by 0x51505D2: rpc_clnt_handle_reply (rpc-clnt.c:791)
==43216== 
==43216== 113 bytes in 1 blocks are possibly lost in loss record 328 of 755
==43216==    at 0x4C27BE3: malloc (vg_replace_malloc.c:299)
==43216==    by 0x4E8FB45: __gf_malloc (mem-pool.c:142)
==43216==    by 0x4E8FDF0: gf_vasprintf (mem-pool.c:221)
==43216==    by 0x4E8FEDF: gf_asprintf (mem-pool.c:240)
==43216==    by 0x4E904D2: mem_pool_new_fn (mem-pool.c:385)
==43216==    by 0x12BEA39B: init (changetimerecorder.c:2109)
==43216==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==43216==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==43216==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==43216==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==43216==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==43216==    by 0x40ECA5: mgmt_getspec_cbk (glusterfsd-mgmt.c:1648)
==43216== 
==43216== 114 bytes in 1 blocks are possibly lost in loss record 329 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0x12195452: posix_handle_trash_init (posix-handle.c:674)
==43216==    by 0x1218C5A8: init (posix.c:7278)
==43216==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==43216==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==43216==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==43216==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==43216==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==43216==    by 0x40ECA5: mgmt_getspec_cbk (glusterfsd-mgmt.c:1648)
==43216==    by 0x51505D2: rpc_clnt_handle_reply (rpc-clnt.c:791)
==43216==    by 0x5150B34: rpc_clnt_notify (rpc-clnt.c:971)
==43216== 
==43216== 115 bytes in 1 blocks are possibly lost in loss record 330 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0x4052E4: gf_strdup (mem-pool.h:187)
==43216==    by 0x4074EC: parse_opts (glusterfsd.c:966)
==43216==    by 0x67B5412: argp_parse (in /usr/lib64/libc-2.17.so)
==43216==    by 0x4092D4: parse_cmdline (glusterfsd.c:1866)
==43216==    by 0x40A5E5: main (glusterfsd.c:2417)
==43216== 
==43216== 116 bytes in 1 blocks are possibly lost in loss record 331 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0x132C5046: gf_strdup (mem-pool.h:187)
==43216==    by 0x132D6780: changelog_init_options (changelog.c:2670)
==43216==    by 0x132D706A: init (changelog.c:2823)
==43216==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==43216==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==43216==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==43216==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==43216==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==43216==    by 0x40ECA5: mgmt_getspec_cbk (glusterfsd-mgmt.c:1648)
==43216==    by 0x51505D2: rpc_clnt_handle_reply (rpc-clnt.c:791)
==43216== 
==43216== 116 bytes in 1 blocks are definitely lost in loss record 332 of 755
==43216==    at 0x4C27BE3: malloc (vg_replace_malloc.c:299)
==43216==    by 0x4E8FB45: __gf_malloc (mem-pool.c:142)
==43216==    by 0x4E8FDF0: gf_vasprintf (mem-pool.c:221)
==43216==    by 0x4E8FEDF: gf_asprintf (mem-pool.c:240)
==43216==    by 0x12BEBBFE: extract_sql_params (ctr-helper.c:189)
==43216==    by 0x12BEBE3D: extract_db_params (ctr-helper.c:229)
==43216==    by 0x12BEA328: init (changetimerecorder.c:2100)
==43216==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==43216==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==43216==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==43216==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==43216==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==43216== 
==43216== 118 bytes in 1 blocks are possibly lost in loss record 333 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0x4E63EFC: gf_strdup (mem-pool.h:187)
==43216==    by 0x4E6A501: generate_glusterfs_ctx_id (common-utils.c:2941)
==43216==    by 0x408478: glusterfs_ctx_defaults_init (glusterfsd.c:1465)
==43216==    by 0x40A5BC: main (glusterfsd.c:2413)
==43216== 
==43216== 123 bytes in 1 blocks are possibly lost in loss record 335 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0x4052E4: gf_strdup (mem-pool.h:187)
==43216==    by 0x407452: parse_opts (glusterfsd.c:946)
==43216==    by 0x67B4F7C: argp_parse (in /usr/lib64/libc-2.17.so)
==43216==    by 0x4092D4: parse_cmdline (glusterfsd.c:1866)
==43216==    by 0x40A5E5: main (glusterfsd.c:2417)
==43216== 
==43216== 123 bytes in 1 blocks are possibly lost in loss record 336 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0x4E5D949: gf_strdup (mem-pool.h:187)
==43216==    by 0x4E5EC50: gf_log_init (logging.c:735)
==43216==    by 0x408CCA: logging_init (glusterfsd.c:1628)
==43216==    by 0x40A65E: main (glusterfsd.c:2438)
==43216== 
==43216== 128 bytes in 1 blocks are possibly lost in loss record 337 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0x13716B49: init (posix-acl.c:2305)
==43216==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==43216==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==43216==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==43216==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==43216==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==43216==    by 0x40ECA5: mgmt_getspec_cbk (glusterfsd-mgmt.c:1648)
==43216==    by 0x51505D2: rpc_clnt_handle_reply (rpc-clnt.c:791)
==43216==    by 0x5150B34: rpc_clnt_notify (rpc-clnt.c:971)
==43216==    by 0x514CD1D: rpc_transport_notify (rpc-transport.c:541)
==43216== 
==43216== 128 bytes in 1 blocks are possibly lost in loss record 338 of 755
==43216==    at 0x4C27BE3: malloc (vg_replace_malloc.c:299)
==43216==    by 0x130402E6: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==43216==    by 0x1301B6A9: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==43216==    by 0x13023A25: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==43216==    by 0x13023BDC: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==43216==    by 0x1302EDCB: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==43216==    by 0x1309E1F9: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==43216==    by 0x12E01B48: gf_open_sqlite3_conn (gfdb_sqlite3.c:192)
==43216==    by 0x12E02CAF: gf_sqlite3_init (gfdb_sqlite3.c:440)
==43216==    by 0x12DF97B5: init_db (gfdb_data_store.c:270)
==43216==    by 0x12BEA41F: init (changetimerecorder.c:2118)
==43216==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==43216== 
==43216== 128 bytes in 1 blocks are possibly lost in loss record 339 of 755
==43216==    at 0x4C27BE3: malloc (vg_replace_malloc.c:299)
==43216==    by 0x130402E6: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==43216==    by 0x1301B6A9: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==43216==    by 0x13023A25: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==43216==    by 0x13023BDC: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==43216==    by 0x1302EDEB: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==43216==    by 0x1309E20C: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==43216==    by 0x12E01B48: gf_open_sqlite3_conn (gfdb_sqlite3.c:192)
==43216==    by 0x12E02CAF: gf_sqlite3_init (gfdb_sqlite3.c:440)
==43216==    by 0x12DF97B5: init_db (gfdb_data_store.c:270)
==43216==    by 0x12BEA41F: init (changetimerecorder.c:2118)
==43216==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==43216== 
==43216== 129 bytes in 1 blocks are possibly lost in loss record 342 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0x4052E4: gf_strdup (mem-pool.h:187)
==43216==    by 0x40752A: parse_opts (glusterfsd.c:974)
==43216==    by 0x67B4F7C: argp_parse (in /usr/lib64/libc-2.17.so)
==43216==    by 0x4092D4: parse_cmdline (glusterfsd.c:1866)
==43216==    by 0x40A5E5: main (glusterfsd.c:2417)
==43216== 
==43216== 129 bytes in 1 blocks are definitely lost in loss record 343 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0x5145846: gf_strdup (mem-pool.h:187)
==43216==    by 0x514A30F: rpcsvc_transport_unix_options_build (rpcsvc.c:2170)
==43216==    by 0x40F909: glusterfs_listener_init (glusterfsd-mgmt.c:2022)
==43216==    by 0x40A3EC: glusterfs_volumes_init (glusterfsd.c:2359)
==43216==    by 0x40A892: main (glusterfsd.c:2488)
==43216== 
==43216== 136 bytes in 1 blocks are possibly lost in loss record 344 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0x4EE1D68: rbuf_init (rot-buffs.c:190)
==43216==    by 0x132D6D33: changelog_init_rpc (changelog.c:2764)
==43216==    by 0x132D71B1: init (changelog.c:2850)
==43216==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==43216==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==43216==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==43216==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==43216==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==43216==    by 0x40ECA5: mgmt_getspec_cbk (glusterfsd-mgmt.c:1648)
==43216==    by 0x51505D2: rpc_clnt_handle_reply (rpc-clnt.c:791)
==43216== 
==43216== 136 bytes in 1 blocks are possibly lost in loss record 345 of 755
==43216==    at 0x4C27BE3: malloc (vg_replace_malloc.c:299)
==43216==    by 0x130402E6: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==43216==    by 0x1301B6A9: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==43216==    by 0x13023A25: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==43216==    by 0x13023B60: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==43216==    by 0x13023BDC: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==43216==    by 0x1302D6FF: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==43216==    by 0x1304A432: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==43216==    by 0x1309E02E: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==43216==    by 0x12E01B48: gf_open_sqlite3_conn (gfdb_sqlite3.c:192)
==43216==    by 0x12E02CAF: gf_sqlite3_init (gfdb_sqlite3.c:440)
==43216==    by 0x12DF97B5: init_db (gfdb_data_store.c:270)
==43216== 
==43216== 136 bytes in 1 blocks are possibly lost in loss record 346 of 755
==43216==    at 0x4C27BE3: malloc (vg_replace_malloc.c:299)
==43216==    by 0x130402E6: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==43216==    by 0x1301B6A9: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==43216==    by 0x13023A25: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==43216==    by 0x13023B60: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==43216==    by 0x13023BDC: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==43216==    by 0x1302D6FF: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==43216==    by 0x1304A432: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==43216==    by 0x1309E091: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==43216==    by 0x12E01B48: gf_open_sqlite3_conn (gfdb_sqlite3.c:192)
==43216==    by 0x12E02CAF: gf_sqlite3_init (gfdb_sqlite3.c:440)
==43216==    by 0x12DF97B5: init_db (gfdb_data_store.c:270)
==43216== 
==43216== 136 bytes in 1 blocks are possibly lost in loss record 347 of 755
==43216==    at 0x4C27BE3: malloc (vg_replace_malloc.c:299)
==43216==    by 0x130402E6: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==43216==    by 0x1301B6A9: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==43216==    by 0x13023A25: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==43216==    by 0x13023B60: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==43216==    by 0x13023BDC: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==43216==    by 0x1302D6FF: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==43216==    by 0x1304A432: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==43216==    by 0x1309E0F1: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==43216==    by 0x12E01B48: gf_open_sqlite3_conn (gfdb_sqlite3.c:192)
==43216==    by 0x12E02CAF: gf_sqlite3_init (gfdb_sqlite3.c:440)
==43216==    by 0x12DF97B5: init_db (gfdb_data_store.c:270)
==43216== 
==43216== 136 bytes in 1 blocks are possibly lost in loss record 348 of 755
==43216==    at 0x4C27BE3: malloc (vg_replace_malloc.c:299)
==43216==    by 0x130402E6: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==43216==    by 0x1301B6A9: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==43216==    by 0x13023A25: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==43216==    by 0x1303409C: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==43216==    by 0x130340DD: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==43216==    by 0x13034382: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==43216==    by 0x1309E40A: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==43216==    by 0x12E01B48: gf_open_sqlite3_conn (gfdb_sqlite3.c:192)
==43216==    by 0x12E02CAF: gf_sqlite3_init (gfdb_sqlite3.c:440)
==43216==    by 0x12DF97B5: init_db (gfdb_data_store.c:270)
==43216==    by 0x12BEA41F: init (changetimerecorder.c:2118)
==43216== 
==43216== 136 bytes in 1 blocks are possibly lost in loss record 349 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0x129D04A8: init (trash.c:2369)
==43216==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==43216==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==43216==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==43216==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==43216==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==43216==    by 0x40ECA5: mgmt_getspec_cbk (glusterfsd-mgmt.c:1648)
==43216==    by 0x51505D2: rpc_clnt_handle_reply (rpc-clnt.c:791)
==43216==    by 0x5150B34: rpc_clnt_notify (rpc-clnt.c:971)
==43216==    by 0x514CD1D: rpc_transport_notify (rpc-transport.c:541)
==43216== 
==43216== 136 bytes in 1 blocks are possibly lost in loss record 350 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0x4E6DB96: gf_timer_call_after (timer.c:48)
==43216==    by 0x514FA65: rpc_clnt_reconnect (rpc-clnt.c:427)
==43216==    by 0x4E6E0EC: gf_timer_proc (timer.c:167)
==43216==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==43216==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==43216== 
==43216== 140 bytes in 1 blocks are possibly lost in loss record 351 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0x4E908B0: mem_get (mem-pool.c:513)
==43216==    by 0x4E906CE: mem_get0 (mem-pool.c:446)
==43216==    by 0x13B50D5E: init (worm.c:512)
==43216==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==43216==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==43216==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==43216==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==43216==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==43216==    by 0x40ECA5: mgmt_getspec_cbk (glusterfsd-mgmt.c:1648)
==43216==    by 0x51505D2: rpc_clnt_handle_reply (rpc-clnt.c:791)
==43216== 
==43216== 140 bytes in 1 blocks are definitely lost in loss record 352 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0x4E908B0: mem_get (mem-pool.c:513)
==43216==    by 0x4E906CE: mem_get0 (mem-pool.c:446)
==43216==    by 0x4E54919: dict_set_lk (dict.c:360)
==43216==    by 0x4E54B82: dict_set (dict.c:424)
==43216==    by 0x4E584CB: dict_set_str (dict.c:2168)
==43216==    by 0x514A362: rpcsvc_transport_unix_options_build (rpcsvc.c:2180)
==43216==    by 0x40F909: glusterfs_listener_init (glusterfsd-mgmt.c:2022)
==43216==    by 0x40A3EC: glusterfs_volumes_init (glusterfsd.c:2359)
==43216==    by 0x40A892: main (glusterfsd.c:2488)
==43216== 
==43216== 140 bytes in 1 blocks are definitely lost in loss record 353 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0x4E908B0: mem_get (mem-pool.c:513)
==43216==    by 0x4E906CE: mem_get0 (mem-pool.c:446)
==43216==    by 0x4E54919: dict_set_lk (dict.c:360)
==43216==    by 0x4E54B82: dict_set (dict.c:424)
==43216==    by 0x4E584CB: dict_set_str (dict.c:2168)
==43216==    by 0x514A387: rpcsvc_transport_unix_options_build (rpcsvc.c:2184)
==43216==    by 0x40F909: glusterfs_listener_init (glusterfsd-mgmt.c:2022)
==43216==    by 0x40A3EC: glusterfs_volumes_init (glusterfsd.c:2359)
==43216==    by 0x40A892: main (glusterfsd.c:2488)
==43216== 
==43216== 140 bytes in 1 blocks are definitely lost in loss record 354 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0x4E908B0: mem_get (mem-pool.c:513)
==43216==    by 0x4E906CE: mem_get0 (mem-pool.c:446)
==43216==    by 0x4E54919: dict_set_lk (dict.c:360)
==43216==    by 0x4E54B82: dict_set (dict.c:424)
==43216==    by 0x4E584CB: dict_set_str (dict.c:2168)
==43216==    by 0x514A3AC: rpcsvc_transport_unix_options_build (rpcsvc.c:2188)
==43216==    by 0x40F909: glusterfs_listener_init (glusterfsd-mgmt.c:2022)
==43216==    by 0x40A3EC: glusterfs_volumes_init (glusterfsd.c:2359)
==43216==    by 0x40A892: main (glusterfsd.c:2488)
==43216== 
==43216== 140 bytes in 1 blocks are definitely lost in loss record 355 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0x4E908B0: mem_get (mem-pool.c:513)
==43216==    by 0x4E906CE: mem_get0 (mem-pool.c:446)
==43216==    by 0x4E54919: dict_set_lk (dict.c:360)
==43216==    by 0x4E54B82: dict_set (dict.c:424)
==43216==    by 0x4E584CB: dict_set_str (dict.c:2168)
==43216==    by 0x5144D69: rpcsvc_set_allow_insecure (rpcsvc-auth.c:231)
==43216==    by 0x5144F59: rpcsvc_auth_init (rpcsvc-auth.c:283)
==43216==    by 0x514A796: rpcsvc_init (rpcsvc.c:2334)
==43216==    by 0x40F93C: glusterfs_listener_init (glusterfsd-mgmt.c:2027)
==43216==    by 0x40A3EC: glusterfs_volumes_init (glusterfsd.c:2359)
==43216== 
==43216== 140 bytes in 1 blocks are definitely lost in loss record 356 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0x4E908B0: mem_get (mem-pool.c:513)
==43216==    by 0x4E906CE: mem_get0 (mem-pool.c:446)
==43216==    by 0x4E54919: dict_set_lk (dict.c:360)
==43216==    by 0x4E54B82: dict_set (dict.c:424)
==43216==    by 0x4E584CB: dict_set_str (dict.c:2168)
==43216==    by 0x5144A44: rpcsvc_auth_init_auths (rpcsvc-auth.c:148)
==43216==    by 0x5144FDA: rpcsvc_auth_init (rpcsvc-auth.c:292)
==43216==    by 0x514A796: rpcsvc_init (rpcsvc.c:2334)
==43216==    by 0x40F93C: glusterfs_listener_init (glusterfsd-mgmt.c:2027)
==43216==    by 0x40A3EC: glusterfs_volumes_init (glusterfsd.c:2359)
==43216== 
==43216== 140 bytes in 1 blocks are definitely lost in loss record 357 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0x4E908B0: mem_get (mem-pool.c:513)
==43216==    by 0x4E906CE: mem_get0 (mem-pool.c:446)
==43216==    by 0x4E54919: dict_set_lk (dict.c:360)
==43216==    by 0x4E54B82: dict_set (dict.c:424)
==43216==    by 0x4E584CB: dict_set_str (dict.c:2168)
==43216==    by 0x5144AB0: rpcsvc_auth_init_auths (rpcsvc-auth.c:155)
==43216==    by 0x5144FDA: rpcsvc_auth_init (rpcsvc-auth.c:292)
==43216==    by 0x514A796: rpcsvc_init (rpcsvc.c:2334)
==43216==    by 0x40F93C: glusterfs_listener_init (glusterfsd-mgmt.c:2027)
==43216==    by 0x40A3EC: glusterfs_volumes_init (glusterfsd.c:2359)
==43216== 
==43216== 140 bytes in 1 blocks are definitely lost in loss record 358 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0x4E908B0: mem_get (mem-pool.c:513)
==43216==    by 0x4E906CE: mem_get0 (mem-pool.c:446)
==43216==    by 0x4E54919: dict_set_lk (dict.c:360)
==43216==    by 0x4E54B82: dict_set (dict.c:424)
==43216==    by 0x4E584CB: dict_set_str (dict.c:2168)
==43216==    by 0x5144B1C: rpcsvc_auth_init_auths (rpcsvc-auth.c:162)
==43216==    by 0x5144FDA: rpcsvc_auth_init (rpcsvc-auth.c:292)
==43216==    by 0x514A796: rpcsvc_init (rpcsvc.c:2334)
==43216==    by 0x40F93C: glusterfs_listener_init (glusterfsd-mgmt.c:2027)
==43216==    by 0x40A3EC: glusterfs_volumes_init (glusterfsd.c:2359)
==43216== 
==43216== 140 bytes in 1 blocks are definitely lost in loss record 359 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0x4E908B0: mem_get (mem-pool.c:513)
==43216==    by 0x4E906CE: mem_get0 (mem-pool.c:446)
==43216==    by 0x4E54919: dict_set_lk (dict.c:360)
==43216==    by 0x4E54B82: dict_set (dict.c:424)
==43216==    by 0x4E57BDF: dict_set_int32 (dict.c:1777)
==43216==    by 0x514D1CD: rpc_transport_inet_options_build (rpc-transport.c:684)
==43216==    by 0x40FD9D: glusterfs_mgmt_init (glusterfsd-mgmt.c:2139)
==43216==    by 0x40A412: glusterfs_volumes_init (glusterfsd.c:2365)
==43216==    by 0x40A892: main (glusterfsd.c:2488)
==43216== 
==43216== 140 bytes in 1 blocks are definitely lost in loss record 360 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0x4E908B0: mem_get (mem-pool.c:513)
==43216==    by 0x4E906CE: mem_get0 (mem-pool.c:446)
==43216==    by 0x4E54919: dict_set_lk (dict.c:360)
==43216==    by 0x4E54B82: dict_set (dict.c:424)
==43216==    by 0x4E584CB: dict_set_str (dict.c:2168)
==43216==    by 0x514D235: rpc_transport_inet_options_build (rpc-transport.c:691)
==43216==    by 0x40FD9D: glusterfs_mgmt_init (glusterfsd-mgmt.c:2139)
==43216==    by 0x40A412: glusterfs_volumes_init (glusterfsd.c:2365)
==43216==    by 0x40A892: main (glusterfsd.c:2488)
==43216== 
==43216== 140 bytes in 1 blocks are definitely lost in loss record 361 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0x4E908B0: mem_get (mem-pool.c:513)
==43216==    by 0x4E906CE: mem_get0 (mem-pool.c:446)
==43216==    by 0x4E54919: dict_set_lk (dict.c:360)
==43216==    by 0x4E54B82: dict_set (dict.c:424)
==43216==    by 0x4E584CB: dict_set_str (dict.c:2168)
==43216==    by 0x4EA196E: gf_add_cmdline_options (graph.c:260)
==43216==    by 0x4EA2394: glusterfs_graph_prepare (graph.c:523)
==43216==    by 0x40A2F9: glusterfs_process_volfp (glusterfsd.c:2319)
==43216==    by 0x40ECA5: mgmt_getspec_cbk (glusterfsd-mgmt.c:1648)
==43216==    by 0x51505D2: rpc_clnt_handle_reply (rpc-clnt.c:791)
==43216== 
==43216== 140 bytes in 1 blocks are definitely lost in loss record 362 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0x4E908B0: mem_get (mem-pool.c:513)
==43216==    by 0x4E906CE: mem_get0 (mem-pool.c:446)
==43216==    by 0x4E54919: dict_set_lk (dict.c:360)
==43216==    by 0x4E54B82: dict_set (dict.c:424)
==43216==    by 0x4E58200: dict_set_dynptr (dict.c:2042)
==43216==    by 0x150603EC: get_auth_types (server.c:367)
==43216==    by 0x4E56B26: dict_foreach_match (dict.c:1236)
==43216==    by 0x4E56A12: dict_foreach (dict.c:1194)
==43216==    by 0x15062130: init (server.c:986)
==43216==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==43216== 
==43216== 140 bytes in 1 blocks are definitely lost in loss record 363 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0x4E908B0: mem_get (mem-pool.c:513)
==43216==    by 0x4E906CE: mem_get0 (mem-pool.c:446)
==43216==    by 0x4E54919: dict_set_lk (dict.c:360)
==43216==    by 0x4E54B82: dict_set (dict.c:424)
==43216==    by 0x4E584CB: dict_set_str (dict.c:2168)
==43216==    by 0x5144D69: rpcsvc_set_allow_insecure (rpcsvc-auth.c:231)
==43216==    by 0x5144F59: rpcsvc_auth_init (rpcsvc-auth.c:283)
==43216==    by 0x514A796: rpcsvc_init (rpcsvc.c:2334)
==43216==    by 0x150622FC: init (server.c:1019)
==43216==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==43216== 
==43216== 140 bytes in 1 blocks are definitely lost in loss record 364 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0x4E908B0: mem_get (mem-pool.c:513)
==43216==    by 0x4E906CE: mem_get0 (mem-pool.c:446)
==43216==    by 0x4E54919: dict_set_lk (dict.c:360)
==43216==    by 0x4E54B82: dict_set (dict.c:424)
==43216==    by 0x4E584CB: dict_set_str (dict.c:2168)
==43216==    by 0x5144A44: rpcsvc_auth_init_auths (rpcsvc-auth.c:148)
==43216==    by 0x5144FDA: rpcsvc_auth_init (rpcsvc-auth.c:292)
==43216==    by 0x514A796: rpcsvc_init (rpcsvc.c:2334)
==43216==    by 0x150622FC: init (server.c:1019)
==43216==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==43216== 
==43216== 140 bytes in 1 blocks are definitely lost in loss record 365 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0x4E908B0: mem_get (mem-pool.c:513)
==43216==    by 0x4E906CE: mem_get0 (mem-pool.c:446)
==43216==    by 0x4E54919: dict_set_lk (dict.c:360)
==43216==    by 0x4E54B82: dict_set (dict.c:424)
==43216==    by 0x4E584CB: dict_set_str (dict.c:2168)
==43216==    by 0x5144AB0: rpcsvc_auth_init_auths (rpcsvc-auth.c:155)
==43216==    by 0x5144FDA: rpcsvc_auth_init (rpcsvc-auth.c:292)
==43216==    by 0x514A796: rpcsvc_init (rpcsvc.c:2334)
==43216==    by 0x150622FC: init (server.c:1019)
==43216==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==43216== 
==43216== 140 bytes in 1 blocks are definitely lost in loss record 366 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0x4E908B0: mem_get (mem-pool.c:513)
==43216==    by 0x4E906CE: mem_get0 (mem-pool.c:446)
==43216==    by 0x4E54919: dict_set_lk (dict.c:360)
==43216==    by 0x4E54B82: dict_set (dict.c:424)
==43216==    by 0x4E584CB: dict_set_str (dict.c:2168)
==43216==    by 0x5144B1C: rpcsvc_auth_init_auths (rpcsvc-auth.c:162)
==43216==    by 0x5144FDA: rpcsvc_auth_init (rpcsvc-auth.c:292)
==43216==    by 0x514A796: rpcsvc_init (rpcsvc.c:2334)
==43216==    by 0x150622FC: init (server.c:1019)
==43216==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==43216== 
==43216== 140 bytes in 1 blocks are definitely lost in loss record 367 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0x4E908B0: mem_get (mem-pool.c:513)
==43216==    by 0x4E906CE: mem_get0 (mem-pool.c:446)
==43216==    by 0x4E54919: dict_set_lk (dict.c:360)
==43216==    by 0x4E54B82: dict_set (dict.c:424)
==43216==    by 0x4EBE088: xl_opt_validate (options.c:955)
==43216==    by 0x4E56B26: dict_foreach_match (dict.c:1236)
==43216==    by 0x4E56A12: dict_foreach (dict.c:1194)
==43216==    by 0x4EBE0F0: xlator_options_validate_list (options.c:977)
==43216==    by 0x514C360: rpc_transport_load (rpc-transport.c:338)
==43216==    by 0x5149213: rpcsvc_create_listener (rpcsvc.c:1664)
==43216== 
==43216== 140 bytes in 1 blocks are definitely lost in loss record 368 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0x4E908B0: mem_get (mem-pool.c:513)
==43216==    by 0x4E906CE: mem_get0 (mem-pool.c:446)
==43216==    by 0x4E54919: dict_set_lk (dict.c:360)
==43216==    by 0x4E54B82: dict_set (dict.c:424)
==43216==    by 0x4E584CB: dict_set_str (dict.c:2168)
==43216==    by 0x14A01464: quota_enforcer_init (quota-enforcer-client.c:438)
==43216==    by 0x149FF51D: init (quota.c:5127)
==43216==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==43216==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==43216==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==43216== 
==43216== 140 bytes in 1 blocks are definitely lost in loss record 369 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0x4E908B0: mem_get (mem-pool.c:513)
==43216==    by 0x4E906CE: mem_get0 (mem-pool.c:446)
==43216==    by 0x4E54919: dict_set_lk (dict.c:360)
==43216==    by 0x4E54B82: dict_set (dict.c:424)
==43216==    by 0x4E584CB: dict_set_str (dict.c:2168)
==43216==    by 0x14A0148C: quota_enforcer_init (quota-enforcer-client.c:442)
==43216==    by 0x149FF51D: init (quota.c:5127)
==43216==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==43216==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==43216==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==43216== 
==43216== 140 bytes in 1 blocks are definitely lost in loss record 370 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0x4E908B0: mem_get (mem-pool.c:513)
==43216==    by 0x4E906CE: mem_get0 (mem-pool.c:446)
==43216==    by 0x4E54919: dict_set_lk (dict.c:360)
==43216==    by 0x4E54B82: dict_set (dict.c:424)
==43216==    by 0x4E584CB: dict_set_str (dict.c:2168)
==43216==    by 0x14A014B4: quota_enforcer_init (quota-enforcer-client.c:446)
==43216==    by 0x149FF51D: init (quota.c:5127)
==43216==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==43216==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==43216==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==43216== 
==43216== 140 bytes in 1 blocks are definitely lost in loss record 371 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0x4E908B0: mem_get (mem-pool.c:513)
==43216==    by 0x4E906CE: mem_get0 (mem-pool.c:446)
==43216==    by 0x4E54919: dict_set_lk (dict.c:360)
==43216==    by 0x4E54B82: dict_set (dict.c:424)
==43216==    by 0x4E56CD3: dict_copy_one (dict.c:1314)
==43216==    by 0x4E56B26: dict_foreach_match (dict.c:1236)
==43216==    by 0x4E56A12: dict_foreach (dict.c:1194)
==43216==    by 0x4E56F16: dict_copy_with_ref (dict.c:1364)
==43216==    by 0x147D5B45: init (index.c:2349)
==43216==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==43216== 
==43216== 140 bytes in 1 blocks are definitely lost in loss record 372 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0x4E908B0: mem_get (mem-pool.c:513)
==43216==    by 0x4E906CE: mem_get0 (mem-pool.c:446)
==43216==    by 0x13B50DB5: init (worm.c:518)
==43216==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==43216==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==43216==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==43216==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==43216==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==43216==    by 0x40ECA5: mgmt_getspec_cbk (glusterfsd-mgmt.c:1648)
==43216==    by 0x51505D2: rpc_clnt_handle_reply (rpc-clnt.c:791)
==43216== 
==43216== 144 bytes in 1 blocks are possibly lost in loss record 374 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0x4EC6949: gf_clienttable_alloc (client_t.c:97)
==43216==    by 0x408998: glusterfs_ctx_defaults_init (glusterfsd.c:1536)
==43216==    by 0x40A5BC: main (glusterfsd.c:2413)
==43216== 
==43216== 144 bytes in 1 blocks are possibly lost in loss record 375 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0x5144636: rpcsvc_auth_add_initer (rpcsvc-auth.c:35)
==43216==    by 0x51446D9: rpcsvc_auth_add_initers (rpcsvc-auth.c:54)
==43216==    by 0x5144F8B: rpcsvc_auth_init (rpcsvc-auth.c:286)
==43216==    by 0x514A796: rpcsvc_init (rpcsvc.c:2334)
==43216==    by 0x40F93C: glusterfs_listener_init (glusterfsd-mgmt.c:2027)
==43216==    by 0x40A3EC: glusterfs_volumes_init (glusterfsd.c:2359)
==43216==    by 0x40A892: main (glusterfsd.c:2488)
==43216== 
==43216== 144 bytes in 1 blocks are possibly lost in loss record 376 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0x5144636: rpcsvc_auth_add_initer (rpcsvc-auth.c:35)
==43216==    by 0x5144739: rpcsvc_auth_add_initers (rpcsvc-auth.c:63)
==43216==    by 0x5144F8B: rpcsvc_auth_init (rpcsvc-auth.c:286)
==43216==    by 0x514A796: rpcsvc_init (rpcsvc.c:2334)
==43216==    by 0x40F93C: glusterfs_listener_init (glusterfsd-mgmt.c:2027)
==43216==    by 0x40A3EC: glusterfs_volumes_init (glusterfsd.c:2359)
==43216==    by 0x40A892: main (glusterfsd.c:2488)
==43216== 
==43216== 144 bytes in 1 blocks are possibly lost in loss record 377 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0x5144636: rpcsvc_auth_add_initer (rpcsvc-auth.c:35)
==43216==    by 0x5144799: rpcsvc_auth_add_initers (rpcsvc-auth.c:72)
==43216==    by 0x5144F8B: rpcsvc_auth_init (rpcsvc-auth.c:286)
==43216==    by 0x514A796: rpcsvc_init (rpcsvc.c:2334)
==43216==    by 0x40F93C: glusterfs_listener_init (glusterfsd-mgmt.c:2027)
==43216==    by 0x40A3EC: glusterfs_volumes_init (glusterfsd.c:2359)
==43216==    by 0x40A892: main (glusterfsd.c:2488)
==43216== 
==43216== 144 bytes in 1 blocks are possibly lost in loss record 378 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0x5144636: rpcsvc_auth_add_initer (rpcsvc-auth.c:35)
==43216==    by 0x51447F6: rpcsvc_auth_add_initers (rpcsvc-auth.c:80)
==43216==    by 0x5144F8B: rpcsvc_auth_init (rpcsvc-auth.c:286)
==43216==    by 0x514A796: rpcsvc_init (rpcsvc.c:2334)
==43216==    by 0x40F93C: glusterfs_listener_init (glusterfsd-mgmt.c:2027)
==43216==    by 0x40A3EC: glusterfs_volumes_init (glusterfsd.c:2359)
==43216==    by 0x40A892: main (glusterfsd.c:2488)
==43216== 
==43216== 144 bytes in 1 blocks are possibly lost in loss record 379 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0x5144636: rpcsvc_auth_add_initer (rpcsvc-auth.c:35)
==43216==    by 0x51446D9: rpcsvc_auth_add_initers (rpcsvc-auth.c:54)
==43216==    by 0x5144F8B: rpcsvc_auth_init (rpcsvc-auth.c:286)
==43216==    by 0x514A796: rpcsvc_init (rpcsvc.c:2334)
==43216==    by 0x150622FC: init (server.c:1019)
==43216==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==43216==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==43216==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==43216==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==43216==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==43216== 
==43216== 144 bytes in 1 blocks are possibly lost in loss record 380 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0x5144636: rpcsvc_auth_add_initer (rpcsvc-auth.c:35)
==43216==    by 0x5144739: rpcsvc_auth_add_initers (rpcsvc-auth.c:63)
==43216==    by 0x5144F8B: rpcsvc_auth_init (rpcsvc-auth.c:286)
==43216==    by 0x514A796: rpcsvc_init (rpcsvc.c:2334)
==43216==    by 0x150622FC: init (server.c:1019)
==43216==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==43216==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==43216==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==43216==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==43216==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==43216== 
==43216== 144 bytes in 1 blocks are possibly lost in loss record 381 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0x5144636: rpcsvc_auth_add_initer (rpcsvc-auth.c:35)
==43216==    by 0x5144799: rpcsvc_auth_add_initers (rpcsvc-auth.c:72)
==43216==    by 0x5144F8B: rpcsvc_auth_init (rpcsvc-auth.c:286)
==43216==    by 0x514A796: rpcsvc_init (rpcsvc.c:2334)
==43216==    by 0x150622FC: init (server.c:1019)
==43216==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==43216==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==43216==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==43216==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==43216==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==43216== 
==43216== 144 bytes in 1 blocks are possibly lost in loss record 382 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0x5144636: rpcsvc_auth_add_initer (rpcsvc-auth.c:35)
==43216==    by 0x51447F6: rpcsvc_auth_add_initers (rpcsvc-auth.c:80)
==43216==    by 0x5144F8B: rpcsvc_auth_init (rpcsvc-auth.c:286)
==43216==    by 0x514A796: rpcsvc_init (rpcsvc.c:2334)
==43216==    by 0x150622FC: init (server.c:1019)
==43216==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==43216==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==43216==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==43216==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==43216==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==43216== 
==43216== 144 bytes in 1 blocks are possibly lost in loss record 383 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0x5144636: rpcsvc_auth_add_initer (rpcsvc-auth.c:35)
==43216==    by 0x51446D9: rpcsvc_auth_add_initers (rpcsvc-auth.c:54)
==43216==    by 0x5144F8B: rpcsvc_auth_init (rpcsvc-auth.c:286)
==43216==    by 0x514A796: rpcsvc_init (rpcsvc.c:2334)
==43216==    by 0x132DF0F9: changelog_rpc_server_init (changelog-rpc-common.c:302)
==43216==    by 0x132DDC27: changelog_init_rpc_listner (changelog-rpc.c:175)
==43216==    by 0x132D6D70: changelog_init_rpc (changelog.c:2768)
==43216==    by 0x132D71B1: init (changelog.c:2850)
==43216==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==43216==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==43216== 
==43216== 144 bytes in 1 blocks are possibly lost in loss record 384 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0x5144636: rpcsvc_auth_add_initer (rpcsvc-auth.c:35)
==43216==    by 0x5144739: rpcsvc_auth_add_initers (rpcsvc-auth.c:63)
==43216==    by 0x5144F8B: rpcsvc_auth_init (rpcsvc-auth.c:286)
==43216==    by 0x514A796: rpcsvc_init (rpcsvc.c:2334)
==43216==    by 0x132DF0F9: changelog_rpc_server_init (changelog-rpc-common.c:302)
==43216==    by 0x132DDC27: changelog_init_rpc_listner (changelog-rpc.c:175)
==43216==    by 0x132D6D70: changelog_init_rpc (changelog.c:2768)
==43216==    by 0x132D71B1: init (changelog.c:2850)
==43216==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==43216==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==43216== 
==43216== 144 bytes in 1 blocks are possibly lost in loss record 385 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0x5144636: rpcsvc_auth_add_initer (rpcsvc-auth.c:35)
==43216==    by 0x5144799: rpcsvc_auth_add_initers (rpcsvc-auth.c:72)
==43216==    by 0x5144F8B: rpcsvc_auth_init (rpcsvc-auth.c:286)
==43216==    by 0x514A796: rpcsvc_init (rpcsvc.c:2334)
==43216==    by 0x132DF0F9: changelog_rpc_server_init (changelog-rpc-common.c:302)
==43216==    by 0x132DDC27: changelog_init_rpc_listner (changelog-rpc.c:175)
==43216==    by 0x132D6D70: changelog_init_rpc (changelog.c:2768)
==43216==    by 0x132D71B1: init (changelog.c:2850)
==43216==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==43216==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==43216== 
==43216== 144 bytes in 1 blocks are possibly lost in loss record 386 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0x5144636: rpcsvc_auth_add_initer (rpcsvc-auth.c:35)
==43216==    by 0x51447F6: rpcsvc_auth_add_initers (rpcsvc-auth.c:80)
==43216==    by 0x5144F8B: rpcsvc_auth_init (rpcsvc-auth.c:286)
==43216==    by 0x514A796: rpcsvc_init (rpcsvc.c:2334)
==43216==    by 0x132DF0F9: changelog_rpc_server_init (changelog-rpc-common.c:302)
==43216==    by 0x132DDC27: changelog_init_rpc_listner (changelog-rpc.c:175)
==43216==    by 0x132D6D70: changelog_init_rpc (changelog.c:2768)
==43216==    by 0x132D71B1: init (changelog.c:2850)
==43216==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==43216==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==43216== 
==43216== 144 bytes in 1 blocks are possibly lost in loss record 387 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0x12BEA176: init (changetimerecorder.c:2061)
==43216==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==43216==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==43216==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==43216==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==43216==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==43216==    by 0x40ECA5: mgmt_getspec_cbk (glusterfsd-mgmt.c:1648)
==43216==    by 0x51505D2: rpc_clnt_handle_reply (rpc-clnt.c:791)
==43216==    by 0x5150B34: rpc_clnt_notify (rpc-clnt.c:971)
==43216==    by 0x514CD1D: rpc_transport_notify (rpc-transport.c:541)
==43216== 
==43216== 144 bytes in 1 blocks are possibly lost in loss record 388 of 755
==43216==    at 0x4C27BE3: malloc (vg_replace_malloc.c:299)
==43216==    by 0x130402E6: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==43216==    by 0x1301B6A9: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==43216==    by 0x13023A25: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==43216==    by 0x13023A4C: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==43216==    by 0x130596C0: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==43216==    by 0x1309E1B6: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==43216==    by 0x12E01B48: gf_open_sqlite3_conn (gfdb_sqlite3.c:192)
==43216==    by 0x12E02CAF: gf_sqlite3_init (gfdb_sqlite3.c:440)
==43216==    by 0x12DF97B5: init_db (gfdb_data_store.c:270)
==43216==    by 0x12BEA41F: init (changetimerecorder.c:2118)
==43216==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==43216== 
==43216== 146 bytes in 1 blocks are definitely lost in loss record 389 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0x4052E4: gf_strdup (mem-pool.h:187)
==43216==    by 0x40750B: parse_opts (glusterfsd.c:970)
==43216==    by 0x67B4F7C: argp_parse (in /usr/lib64/libc-2.17.so)
==43216==    by 0x4092D4: parse_cmdline (glusterfsd.c:1866)
==43216==    by 0x40A5E5: main (glusterfsd.c:2417)
==43216== 
==43216== 152 bytes in 1 blocks are possibly lost in loss record 391 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0x4085EF: glusterfs_ctx_defaults_init (glusterfsd.c:1486)
==43216==    by 0x40A5BC: main (glusterfsd.c:2413)
==43216== 
==43216== 155 bytes in 2 blocks are definitely lost in loss record 392 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0x4E5499E: dict_set_lk (dict.c:378)
==43216==    by 0x4E54B82: dict_set (dict.c:424)
==43216==    by 0x4E58200: dict_set_dynptr (dict.c:2042)
==43216==    by 0x150603EC: get_auth_types (server.c:367)
==43216==    by 0x4E56B26: dict_foreach_match (dict.c:1236)
==43216==    by 0x4E56A12: dict_foreach (dict.c:1194)
==43216==    by 0x15062130: init (server.c:986)
==43216==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==43216==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==43216==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==43216== 
==43216== 156 bytes in 1 blocks are possibly lost in loss record 393 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0x4E908B0: mem_get (mem-pool.c:513)
==43216==    by 0x4E906CE: mem_get0 (mem-pool.c:446)
==43216==    by 0x4E6FCB3: __dentry_create (inode.c:562)
==43216==    by 0x4E70B3B: __inode_link (inode.c:1016)
==43216==    by 0x4E70D02: inode_link (inode.c:1060)
==43216==    by 0x15098AD5: server_post_lookup (server-common.c:462)
==43216==    by 0x15077078: server_lookup_cbk (server-rpc-fops.c:141)
==43216==    by 0x14C16C3F: io_stats_lookup_cbk (io-stats.c:2115)
==43216==    by 0x149E3453: quota_lookup_cbk (quota.c:1612)
==43216==    by 0x4F0100E: default_lookup_cbk (defaults.c:1265)
==43216== 
==43216== 160 bytes in 1 blocks are possibly lost in loss record 394 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0x5151DF3: rpcclnt_cbk_program_register (rpc-clnt.c:1524)
==43216==    by 0x40FF17: glusterfs_mgmt_init (glusterfsd-mgmt.c:2171)
==43216==    by 0x40A412: glusterfs_volumes_init (glusterfsd.c:2365)
==43216==    by 0x40A892: main (glusterfsd.c:2488)
==43216== 
==43216== 160 bytes in 1 blocks are possibly lost in loss record 395 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0x1418A60F: init (upcall.c:1672)
==43216==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==43216==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==43216==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==43216==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==43216==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==43216==    by 0x40ECA5: mgmt_getspec_cbk (glusterfsd-mgmt.c:1648)
==43216==    by 0x51505D2: rpc_clnt_handle_reply (rpc-clnt.c:791)
==43216==    by 0x5150B34: rpc_clnt_notify (rpc-clnt.c:971)
==43216==    by 0x514CD1D: rpc_transport_notify (rpc-transport.c:541)
==43216== 
==43216== 164 bytes in 1 blocks are definitely lost in loss record 396 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0x4E908B0: mem_get (mem-pool.c:513)
==43216==    by 0x4E906CE: mem_get0 (mem-pool.c:446)
==43216==    by 0x4E53E07: get_new_data (dict.c:40)
==43216==    by 0x4E55D8E: data_from_dynstr (dict.c:882)
==43216==    by 0x4E58586: dict_set_dynstr (dict.c:2199)
==43216==    by 0x514A33D: rpcsvc_transport_unix_options_build (rpcsvc.c:2176)
==43216==    by 0x40F909: glusterfs_listener_init (glusterfsd-mgmt.c:2022)
==43216==    by 0x40A3EC: glusterfs_volumes_init (glusterfsd.c:2359)
==43216==    by 0x40A892: main (glusterfsd.c:2488)
==43216== 
==43216== 164 bytes in 1 blocks are definitely lost in loss record 397 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0x4E908B0: mem_get (mem-pool.c:513)
==43216==    by 0x4E906CE: mem_get0 (mem-pool.c:446)
==43216==    by 0x4E53E07: get_new_data (dict.c:40)
==43216==    by 0x4E55CD6: str_to_data (dict.c:860)
==43216==    by 0x4E584A0: dict_set_str (dict.c:2162)
==43216==    by 0x514A362: rpcsvc_transport_unix_options_build (rpcsvc.c:2180)
==43216==    by 0x40F909: glusterfs_listener_init (glusterfsd-mgmt.c:2022)
==43216==    by 0x40A3EC: glusterfs_volumes_init (glusterfsd.c:2359)
==43216==    by 0x40A892: main (glusterfsd.c:2488)
==43216== 
==43216== 164 bytes in 1 blocks are definitely lost in loss record 398 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0x4E908B0: mem_get (mem-pool.c:513)
==43216==    by 0x4E906CE: mem_get0 (mem-pool.c:446)
==43216==    by 0x4E53E07: get_new_data (dict.c:40)
==43216==    by 0x4E55CD6: str_to_data (dict.c:860)
==43216==    by 0x4E584A0: dict_set_str (dict.c:2162)
==43216==    by 0x514A387: rpcsvc_transport_unix_options_build (rpcsvc.c:2184)
==43216==    by 0x40F909: glusterfs_listener_init (glusterfsd-mgmt.c:2022)
==43216==    by 0x40A3EC: glusterfs_volumes_init (glusterfsd.c:2359)
==43216==    by 0x40A892: main (glusterfsd.c:2488)
==43216== 
==43216== 164 bytes in 1 blocks are definitely lost in loss record 399 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0x4E908B0: mem_get (mem-pool.c:513)
==43216==    by 0x4E906CE: mem_get0 (mem-pool.c:446)
==43216==    by 0x4E53E07: get_new_data (dict.c:40)
==43216==    by 0x4E55CD6: str_to_data (dict.c:860)
==43216==    by 0x4E584A0: dict_set_str (dict.c:2162)
==43216==    by 0x5144D69: rpcsvc_set_allow_insecure (rpcsvc-auth.c:231)
==43216==    by 0x5144F59: rpcsvc_auth_init (rpcsvc-auth.c:283)
==43216==    by 0x514A796: rpcsvc_init (rpcsvc.c:2334)
==43216==    by 0x40F93C: glusterfs_listener_init (glusterfsd-mgmt.c:2027)
==43216==    by 0x40A3EC: glusterfs_volumes_init (glusterfsd.c:2359)
==43216== 
==43216== 164 bytes in 1 blocks are definitely lost in loss record 400 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0x4E908B0: mem_get (mem-pool.c:513)
==43216==    by 0x4E906CE: mem_get0 (mem-pool.c:446)
==43216==    by 0x4E53E07: get_new_data (dict.c:40)
==43216==    by 0x4E55CD6: str_to_data (dict.c:860)
==43216==    by 0x4E584A0: dict_set_str (dict.c:2162)
==43216==    by 0x5144A44: rpcsvc_auth_init_auths (rpcsvc-auth.c:148)
==43216==    by 0x5144FDA: rpcsvc_auth_init (rpcsvc-auth.c:292)
==43216==    by 0x514A796: rpcsvc_init (rpcsvc.c:2334)
==43216==    by 0x40F93C: glusterfs_listener_init (glusterfsd-mgmt.c:2027)
==43216==    by 0x40A3EC: glusterfs_volumes_init (glusterfsd.c:2359)
==43216== 
==43216== 164 bytes in 1 blocks are definitely lost in loss record 401 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0x4E908B0: mem_get (mem-pool.c:513)
==43216==    by 0x4E906CE: mem_get0 (mem-pool.c:446)
==43216==    by 0x4E53E07: get_new_data (dict.c:40)
==43216==    by 0x4E55CD6: str_to_data (dict.c:860)
==43216==    by 0x4E584A0: dict_set_str (dict.c:2162)
==43216==    by 0x5144AB0: rpcsvc_auth_init_auths (rpcsvc-auth.c:155)
==43216==    by 0x5144FDA: rpcsvc_auth_init (rpcsvc-auth.c:292)
==43216==    by 0x514A796: rpcsvc_init (rpcsvc.c:2334)
==43216==    by 0x40F93C: glusterfs_listener_init (glusterfsd-mgmt.c:2027)
==43216==    by 0x40A3EC: glusterfs_volumes_init (glusterfsd.c:2359)
==43216== 
==43216== 164 bytes in 1 blocks are definitely lost in loss record 402 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0x4E908B0: mem_get (mem-pool.c:513)
==43216==    by 0x4E906CE: mem_get0 (mem-pool.c:446)
==43216==    by 0x4E53E07: get_new_data (dict.c:40)
==43216==    by 0x4E55CD6: str_to_data (dict.c:860)
==43216==    by 0x4E584A0: dict_set_str (dict.c:2162)
==43216==    by 0x5144B1C: rpcsvc_auth_init_auths (rpcsvc-auth.c:162)
==43216==    by 0x5144FDA: rpcsvc_auth_init (rpcsvc-auth.c:292)
==43216==    by 0x514A796: rpcsvc_init (rpcsvc.c:2334)
==43216==    by 0x40F93C: glusterfs_listener_init (glusterfsd-mgmt.c:2027)
==43216==    by 0x40A3EC: glusterfs_volumes_init (glusterfsd.c:2359)
==43216== 
==43216== 164 bytes in 1 blocks are definitely lost in loss record 403 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0x4E908B0: mem_get (mem-pool.c:513)
==43216==    by 0x4E906CE: mem_get0 (mem-pool.c:446)
==43216==    by 0x4E53E07: get_new_data (dict.c:40)
==43216==    by 0x4E55D8E: data_from_dynstr (dict.c:882)
==43216==    by 0x4E58586: dict_set_dynstr (dict.c:2199)
==43216==    by 0x51495A1: rpcsvc_create_listeners (rpcsvc.c:1767)
==43216==    by 0x40F98A: glusterfs_listener_init (glusterfsd-mgmt.c:2037)
==43216==    by 0x40A3EC: glusterfs_volumes_init (glusterfsd.c:2359)
==43216==    by 0x40A892: main (glusterfsd.c:2488)
==43216== 
==43216== 164 bytes in 1 blocks are definitely lost in loss record 404 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0x4E908B0: mem_get (mem-pool.c:513)
==43216==    by 0x4E906CE: mem_get0 (mem-pool.c:446)
==43216==    by 0x4E53E07: get_new_data (dict.c:40)
==43216==    by 0x4E55D8E: data_from_dynstr (dict.c:882)
==43216==    by 0x4E58586: dict_set_dynstr (dict.c:2199)
==43216==    by 0x514D164: rpc_transport_inet_options_build (rpc-transport.c:677)
==43216==    by 0x40FD9D: glusterfs_mgmt_init (glusterfsd-mgmt.c:2139)
==43216==    by 0x40A412: glusterfs_volumes_init (glusterfsd.c:2365)
==43216==    by 0x40A892: main (glusterfsd.c:2488)
==43216== 
==43216== 164 bytes in 1 blocks are definitely lost in loss record 405 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0x4E908B0: mem_get (mem-pool.c:513)
==43216==    by 0x4E906CE: mem_get0 (mem-pool.c:446)
==43216==    by 0x4E53E07: get_new_data (dict.c:40)
==43216==    by 0x4E556F8: data_from_int32 (dict.c:698)
==43216==    by 0x4E57BB4: dict_set_int32 (dict.c:1771)
==43216==    by 0x514D1CD: rpc_transport_inet_options_build (rpc-transport.c:684)
==43216==    by 0x40FD9D: glusterfs_mgmt_init (glusterfsd-mgmt.c:2139)
==43216==    by 0x40A412: glusterfs_volumes_init (glusterfsd.c:2365)
==43216==    by 0x40A892: main (glusterfsd.c:2488)
==43216== 
==43216== 164 bytes in 1 blocks are definitely lost in loss record 406 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0x4E908B0: mem_get (mem-pool.c:513)
==43216==    by 0x4E906CE: mem_get0 (mem-pool.c:446)
==43216==    by 0x4E53E07: get_new_data (dict.c:40)
==43216==    by 0x4E55CD6: str_to_data (dict.c:860)
==43216==    by 0x4E584A0: dict_set_str (dict.c:2162)
==43216==    by 0x514D235: rpc_transport_inet_options_build (rpc-transport.c:691)
==43216==    by 0x40FD9D: glusterfs_mgmt_init (glusterfsd-mgmt.c:2139)
==43216==    by 0x40A412: glusterfs_volumes_init (glusterfsd.c:2365)
==43216==    by 0x40A892: main (glusterfsd.c:2488)
==43216== 
==43216== 164 bytes in 1 blocks are definitely lost in loss record 407 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0x4E908B0: mem_get (mem-pool.c:513)
==43216==    by 0x4E906CE: mem_get0 (mem-pool.c:446)
==43216==    by 0x4E53E07: get_new_data (dict.c:40)
==43216==    by 0x4E55CD6: str_to_data (dict.c:860)
==43216==    by 0x4E584A0: dict_set_str (dict.c:2162)
==43216==    by 0x5144D69: rpcsvc_set_allow_insecure (rpcsvc-auth.c:231)
==43216==    by 0x5144F59: rpcsvc_auth_init (rpcsvc-auth.c:283)
==43216==    by 0x514A796: rpcsvc_init (rpcsvc.c:2334)
==43216==    by 0x150622FC: init (server.c:1019)
==43216==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==43216== 
==43216== 164 bytes in 1 blocks are definitely lost in loss record 408 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0x4E908B0: mem_get (mem-pool.c:513)
==43216==    by 0x4E906CE: mem_get0 (mem-pool.c:446)
==43216==    by 0x4E53E07: get_new_data (dict.c:40)
==43216==    by 0x4E55CD6: str_to_data (dict.c:860)
==43216==    by 0x4E584A0: dict_set_str (dict.c:2162)
==43216==    by 0x5144A44: rpcsvc_auth_init_auths (rpcsvc-auth.c:148)
==43216==    by 0x5144FDA: rpcsvc_auth_init (rpcsvc-auth.c:292)
==43216==    by 0x514A796: rpcsvc_init (rpcsvc.c:2334)
==43216==    by 0x150622FC: init (server.c:1019)
==43216==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==43216== 
==43216== 164 bytes in 1 blocks are definitely lost in loss record 409 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0x4E908B0: mem_get (mem-pool.c:513)
==43216==    by 0x4E906CE: mem_get0 (mem-pool.c:446)
==43216==    by 0x4E53E07: get_new_data (dict.c:40)
==43216==    by 0x4E55CD6: str_to_data (dict.c:860)
==43216==    by 0x4E584A0: dict_set_str (dict.c:2162)
==43216==    by 0x5144AB0: rpcsvc_auth_init_auths (rpcsvc-auth.c:155)
==43216==    by 0x5144FDA: rpcsvc_auth_init (rpcsvc-auth.c:292)
==43216==    by 0x514A796: rpcsvc_init (rpcsvc.c:2334)
==43216==    by 0x150622FC: init (server.c:1019)
==43216==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==43216== 
==43216== 164 bytes in 1 blocks are definitely lost in loss record 410 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0x4E908B0: mem_get (mem-pool.c:513)
==43216==    by 0x4E906CE: mem_get0 (mem-pool.c:446)
==43216==    by 0x4E53E07: get_new_data (dict.c:40)
==43216==    by 0x4E55CD6: str_to_data (dict.c:860)
==43216==    by 0x4E584A0: dict_set_str (dict.c:2162)
==43216==    by 0x5144B1C: rpcsvc_auth_init_auths (rpcsvc-auth.c:162)
==43216==    by 0x5144FDA: rpcsvc_auth_init (rpcsvc-auth.c:292)
==43216==    by 0x514A796: rpcsvc_init (rpcsvc.c:2334)
==43216==    by 0x150622FC: init (server.c:1019)
==43216==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==43216== 
==43216== 164 bytes in 1 blocks are definitely lost in loss record 411 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0x4E908B0: mem_get (mem-pool.c:513)
==43216==    by 0x4E906CE: mem_get0 (mem-pool.c:446)
==43216==    by 0x4E53E07: get_new_data (dict.c:40)
==43216==    by 0x4E55D8E: data_from_dynstr (dict.c:882)
==43216==    by 0x4E58586: dict_set_dynstr (dict.c:2199)
==43216==    by 0x51495A1: rpcsvc_create_listeners (rpcsvc.c:1767)
==43216==    by 0x1506250B: init (server.c:1056)
==43216==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==43216==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==43216==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==43216== 
==43216== 164 bytes in 1 blocks are definitely lost in loss record 412 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0x4E908B0: mem_get (mem-pool.c:513)
==43216==    by 0x4E906CE: mem_get0 (mem-pool.c:446)
==43216==    by 0x4E53E07: get_new_data (dict.c:40)
==43216==    by 0x4E55CD6: str_to_data (dict.c:860)
==43216==    by 0x4E584A0: dict_set_str (dict.c:2162)
==43216==    by 0x14A01464: quota_enforcer_init (quota-enforcer-client.c:438)
==43216==    by 0x149FF51D: init (quota.c:5127)
==43216==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==43216==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==43216==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==43216== 
==43216== 164 bytes in 1 blocks are definitely lost in loss record 413 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0x4E908B0: mem_get (mem-pool.c:513)
==43216==    by 0x4E906CE: mem_get0 (mem-pool.c:446)
==43216==    by 0x4E53E07: get_new_data (dict.c:40)
==43216==    by 0x4E55CD6: str_to_data (dict.c:860)
==43216==    by 0x4E584A0: dict_set_str (dict.c:2162)
==43216==    by 0x14A0148C: quota_enforcer_init (quota-enforcer-client.c:442)
==43216==    by 0x149FF51D: init (quota.c:5127)
==43216==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==43216==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==43216==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==43216== 
==43216== 164 bytes in 1 blocks are definitely lost in loss record 414 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0x4E908B0: mem_get (mem-pool.c:513)
==43216==    by 0x4E906CE: mem_get0 (mem-pool.c:446)
==43216==    by 0x4E53E07: get_new_data (dict.c:40)
==43216==    by 0x4E55CD6: str_to_data (dict.c:860)
==43216==    by 0x4E584A0: dict_set_str (dict.c:2162)
==43216==    by 0x14A014B4: quota_enforcer_init (quota-enforcer-client.c:446)
==43216==    by 0x149FF51D: init (quota.c:5127)
==43216==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==43216==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==43216==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==43216== 
==43216== 164 bytes in 1 blocks are definitely lost in loss record 415 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0x4E908B0: mem_get (mem-pool.c:513)
==43216==    by 0x4E906CE: mem_get0 (mem-pool.c:446)
==43216==    by 0x4E53E07: get_new_data (dict.c:40)
==43216==    by 0x4E55553: int_to_data (dict.c:659)
==43216==    by 0x147D54D8: index_make_xattrop_watchlist (index.c:2208)
==43216==    by 0x147D5A4E: init (index.c:2334)
==43216==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==43216==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==43216==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==43216==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==43216== 
==43216== 164 bytes in 1 blocks are definitely lost in loss record 416 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0x4E908B0: mem_get (mem-pool.c:513)
==43216==    by 0x4E906CE: mem_get0 (mem-pool.c:446)
==43216==    by 0x4E53E07: get_new_data (dict.c:40)
==43216==    by 0x4E55553: int_to_data (dict.c:659)
==43216==    by 0x147D54D8: index_make_xattrop_watchlist (index.c:2208)
==43216==    by 0x147D5ACA: init (index.c:2340)
==43216==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==43216==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==43216==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==43216==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==43216== 
==43216== 166 bytes in 2 blocks are possibly lost in loss record 417 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0x406B0A: gf_remember_xlator_option (glusterfsd.c:742)
==43216==    by 0x40789D: parse_opts (glusterfsd.c:1075)
==43216==    by 0x67B5412: argp_parse (in /usr/lib64/libc-2.17.so)
==43216==    by 0x4092D4: parse_cmdline (glusterfsd.c:1866)
==43216==    by 0x40A5E5: main (glusterfsd.c:2417)
==43216== 
==43216== 168 bytes in 1 blocks are possibly lost in loss record 420 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0x145C3789: init (barrier.c:625)
==43216==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==43216==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==43216==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==43216==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==43216==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==43216==    by 0x40ECA5: mgmt_getspec_cbk (glusterfsd-mgmt.c:1648)
==43216==    by 0x51505D2: rpc_clnt_handle_reply (rpc-clnt.c:791)
==43216==    by 0x5150B34: rpc_clnt_notify (rpc-clnt.c:971)
==43216==    by 0x514CD1D: rpc_transport_notify (rpc-transport.c:541)
==43216== 
==43216== 172 bytes in 2 blocks are possibly lost in loss record 421 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0x406BE2: gf_remember_xlator_option (glusterfsd.c:755)
==43216==    by 0x40789D: parse_opts (glusterfsd.c:1075)
==43216==    by 0x67B5412: argp_parse (in /usr/lib64/libc-2.17.so)
==43216==    by 0x4092D4: parse_cmdline (glusterfsd.c:1866)
==43216==    by 0x40A5E5: main (glusterfsd.c:2417)
==43216== 
==43216== 187 bytes in 2 blocks are possibly lost in loss record 424 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0x4052E4: gf_strdup (mem-pool.h:187)
==43216==    by 0x406C99: gf_remember_xlator_option (glusterfsd.c:767)
==43216==    by 0x40789D: parse_opts (glusterfsd.c:1075)
==43216==    by 0x67B5412: argp_parse (in /usr/lib64/libc-2.17.so)
==43216==    by 0x4092D4: parse_cmdline (glusterfsd.c:1866)
==43216==    by 0x40A5E5: main (glusterfsd.c:2417)
==43216== 
==43216== 192 bytes in 1 blocks are possibly lost in loss record 427 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0x4E6E372: gf_timer_registry_init (timer.c:222)
==43216==    by 0x4E6DB1A: gf_timer_call_after (timer.c:40)
==43216==    by 0x4E61A3D: __gf_log_inject_timer_event (logging.c:1792)
==43216==    by 0x4E61AA5: gf_log_inject_timer_event (logging.c:1814)
==43216==    by 0x40A0DA: daemonize (glusterfsd.c:2247)
==43216==    by 0x40A7C5: main (glusterfsd.c:2465)
==43216== 
==43216== 192 bytes in 1 blocks are possibly lost in loss record 428 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0x5149865: rpcsvc_program_register (rpcsvc.c:1877)
==43216==    by 0x514A859: rpcsvc_init (rpcsvc.c:2349)
==43216==    by 0x40F93C: glusterfs_listener_init (glusterfsd-mgmt.c:2027)
==43216==    by 0x40A3EC: glusterfs_volumes_init (glusterfsd.c:2359)
==43216==    by 0x40A892: main (glusterfsd.c:2488)
==43216== 
==43216== 192 bytes in 1 blocks are possibly lost in loss record 429 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0x5149865: rpcsvc_program_register (rpcsvc.c:1877)
==43216==    by 0x40F9AD: glusterfs_listener_init (glusterfsd-mgmt.c:2043)
==43216==    by 0x40A3EC: glusterfs_volumes_init (glusterfsd.c:2359)
==43216==    by 0x40A892: main (glusterfsd.c:2488)
==43216== 
==43216== 192 bytes in 1 blocks are possibly lost in loss record 430 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0x5149865: rpcsvc_program_register (rpcsvc.c:1877)
==43216==    by 0x514A859: rpcsvc_init (rpcsvc.c:2349)
==43216==    by 0x150622FC: init (server.c:1019)
==43216==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==43216==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==43216==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==43216==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==43216==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==43216==    by 0x40ECA5: mgmt_getspec_cbk (glusterfsd-mgmt.c:1648)
==43216==    by 0x51505D2: rpc_clnt_handle_reply (rpc-clnt.c:791)
==43216== 
==43216== 192 bytes in 1 blocks are possibly lost in loss record 431 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0x5149865: rpcsvc_program_register (rpcsvc.c:1877)
==43216==    by 0x15062683: init (server.c:1080)
==43216==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==43216==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==43216==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==43216==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==43216==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==43216==    by 0x40ECA5: mgmt_getspec_cbk (glusterfsd-mgmt.c:1648)
==43216==    by 0x51505D2: rpc_clnt_handle_reply (rpc-clnt.c:791)
==43216==    by 0x5150B34: rpc_clnt_notify (rpc-clnt.c:971)
==43216== 
==43216== 192 bytes in 1 blocks are possibly lost in loss record 432 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0x5149865: rpcsvc_program_register (rpcsvc.c:1877)
==43216==    by 0x15062734: init (server.c:1091)
==43216==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==43216==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==43216==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==43216==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==43216==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==43216==    by 0x40ECA5: mgmt_getspec_cbk (glusterfsd-mgmt.c:1648)
==43216==    by 0x51505D2: rpc_clnt_handle_reply (rpc-clnt.c:791)
==43216==    by 0x5150B34: rpc_clnt_notify (rpc-clnt.c:971)
==43216== 
==43216== 192 bytes in 1 blocks are possibly lost in loss record 433 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0x143A965E: init (marker.c:3391)
==43216==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==43216==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==43216==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==43216==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==43216==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==43216==    by 0x40ECA5: mgmt_getspec_cbk (glusterfsd-mgmt.c:1648)
==43216==    by 0x51505D2: rpc_clnt_handle_reply (rpc-clnt.c:791)
==43216==    by 0x5150B34: rpc_clnt_notify (rpc-clnt.c:971)
==43216==    by 0x514CD1D: rpc_transport_notify (rpc-transport.c:541)
==43216== 
==43216== 192 bytes in 1 blocks are possibly lost in loss record 434 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0x5149865: rpcsvc_program_register (rpcsvc.c:1877)
==43216==    by 0x514A859: rpcsvc_init (rpcsvc.c:2349)
==43216==    by 0x132DF0F9: changelog_rpc_server_init (changelog-rpc-common.c:302)
==43216==    by 0x132DDC27: changelog_init_rpc_listner (changelog-rpc.c:175)
==43216==    by 0x132D6D70: changelog_init_rpc (changelog.c:2768)
==43216==    by 0x132D71B1: init (changelog.c:2850)
==43216==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==43216==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==43216==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==43216==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==43216== 
==43216== 192 bytes in 1 blocks are possibly lost in loss record 435 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0x5149865: rpcsvc_program_register (rpcsvc.c:1877)
==43216==    by 0x132DF266: changelog_rpc_server_init (changelog-rpc-common.c:327)
==43216==    by 0x132DDC27: changelog_init_rpc_listner (changelog-rpc.c:175)
==43216==    by 0x132D6D70: changelog_init_rpc (changelog.c:2768)
==43216==    by 0x132D71B1: init (changelog.c:2850)
==43216==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==43216==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==43216==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==43216==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==43216==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==43216== 
==43216== 192 bytes in 2 blocks are possibly lost in loss record 436 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0x4EE88A9: gf_strdup (mem-pool.h:187)
==43216==    by 0x4EE9822: volume_option (graph.y:240)
==43216==    by 0x4EE8D57: graphyyparse (graph.y:69)
==43216==    by 0x4EEA75C: glusterfs_graph_construct (graph.y:590)
==43216==    by 0x40A211: glusterfs_process_volfp (glusterfsd.c:2305)
==43216==    by 0x40ECA5: mgmt_getspec_cbk (glusterfsd-mgmt.c:1648)
==43216==    by 0x51505D2: rpc_clnt_handle_reply (rpc-clnt.c:791)
==43216==    by 0x5150B34: rpc_clnt_notify (rpc-clnt.c:971)
==43216==    by 0x514CD1D: rpc_transport_notify (rpc-transport.c:541)
==43216==    by 0xFEA9D43: socket_event_poll_in (socket.c:2267)
==43216== 
==43216== 192 bytes in 2 blocks are possibly lost in loss record 437 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0x15097220: init (authenticate.c:85)
==43216==    by 0x4E56B26: dict_foreach_match (dict.c:1236)
==43216==    by 0x4E56A12: dict_foreach (dict.c:1194)
==43216==    by 0x150974B9: gf_auth_init (authenticate.c:149)
==43216==    by 0x1506216C: init (server.c:993)
==43216==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==43216==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==43216==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==43216==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==43216==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==43216== 
==43216== 192 bytes in 2 blocks are definitely lost in loss record 439 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0x150971B5: init (authenticate.c:77)
==43216==    by 0x4E56B26: dict_foreach_match (dict.c:1236)
==43216==    by 0x4E56A12: dict_foreach (dict.c:1194)
==43216==    by 0x150974B9: gf_auth_init (authenticate.c:149)
==43216==    by 0x1506216C: init (server.c:993)
==43216==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==43216==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==43216==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==43216==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==43216==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==43216== 
==43216== 196 bytes in 1 blocks are possibly lost in loss record 440 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0x4E908B0: mem_get (mem-pool.c:513)
==43216==    by 0x514EBD8: __saved_frames_put (rpc-clnt.c:82)
==43216==    by 0x514F250: __save_frame (rpc-clnt.c:230)
==43216==    by 0x515231E: rpc_clnt_submit (rpc-clnt.c:1662)
==43216==    by 0x40E934: mgmt_submit_request (glusterfsd-mgmt.c:1541)
==43216==    by 0x41079F: glusterfs_mgmt_pmap_signout (glusterfsd-mgmt.c:2399)
==43216==    by 0x4080C9: cleanup_and_exit (glusterfsd.c:1333)
==43216==    by 0x409C1A: glusterfs_sigwaiter (glusterfsd.c:2102)
==43216==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==43216==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==43216== 
==43216== 208 bytes in 1 blocks are possibly lost in loss record 441 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0x149FF194: init (quota.c:5103)
==43216==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==43216==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==43216==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==43216==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==43216==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==43216==    by 0x40ECA5: mgmt_getspec_cbk (glusterfsd-mgmt.c:1648)
==43216==    by 0x51505D2: rpc_clnt_handle_reply (rpc-clnt.c:791)
==43216==    by 0x5150B34: rpc_clnt_notify (rpc-clnt.c:971)
==43216==    by 0x514CD1D: rpc_transport_notify (rpc-transport.c:541)
==43216== 
==43216== 208 bytes in 1 blocks are possibly lost in loss record 442 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0x12DF9600: init_db (gfdb_data_store.c:234)
==43216==    by 0x12BEA41F: init (changetimerecorder.c:2118)
==43216==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==43216==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==43216==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==43216==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==43216==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==43216==    by 0x40ECA5: mgmt_getspec_cbk (glusterfsd-mgmt.c:1648)
==43216==    by 0x51505D2: rpc_clnt_handle_reply (rpc-clnt.c:791)
==43216==    by 0x5150B34: rpc_clnt_notify (rpc-clnt.c:971)
==43216== 
==43216== 208 bytes in 2 blocks are possibly lost in loss record 443 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0x14C2707D: ios_init_top_stats (io-stats.c:3343)
==43216==    by 0x14C280A3: init (io-stats.c:3658)
==43216==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==43216==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==43216==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==43216==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==43216==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==43216==    by 0x40ECA5: mgmt_getspec_cbk (glusterfsd-mgmt.c:1648)
==43216==    by 0x51505D2: rpc_clnt_handle_reply (rpc-clnt.c:791)
==43216==    by 0x5150B34: rpc_clnt_notify (rpc-clnt.c:971)
==43216== 
==43216== 222 bytes in 3 blocks are definitely lost in loss record 444 of 755
==43216==    at 0x4C27BE3: malloc (vg_replace_malloc.c:299)
==43216==    by 0x4E8FB45: __gf_malloc (mem-pool.c:142)
==43216==    by 0x4E8FDF0: gf_vasprintf (mem-pool.c:221)
==43216==    by 0x4E8FEDF: gf_asprintf (mem-pool.c:240)
==43216==    by 0x4E558D5: data_from_int8 (dict.c:743)
==43216==    by 0x4E579A8: dict_set_int8 (dict.c:1681)
==43216==    by 0x13708F9F: posix_acl_lookup (posix-acl.c:960)
==43216==    by 0x13931121: pl_lookup (posix.c:2657)
==43216==    by 0x4F10A23: default_lookup (defaults.c:2572)
==43216==    by 0x4F10A23: default_lookup (defaults.c:2572)
==43216==    by 0x4F10A23: default_lookup (defaults.c:2572)
==43216==    by 0x14181538: up_lookup (upcall.c:775)
==43216== 
==43216== 222 bytes in 3 blocks are definitely lost in loss record 445 of 755
==43216==    at 0x4C27BE3: malloc (vg_replace_malloc.c:299)
==43216==    by 0x4E8FB45: __gf_malloc (mem-pool.c:142)
==43216==    by 0x4E8FDF0: gf_vasprintf (mem-pool.c:221)
==43216==    by 0x4E8FEDF: gf_asprintf (mem-pool.c:240)
==43216==    by 0x4E558D5: data_from_int8 (dict.c:743)
==43216==    by 0x4E579A8: dict_set_int8 (dict.c:1681)
==43216==    by 0x13708FFF: posix_acl_lookup (posix-acl.c:965)
==43216==    by 0x13931121: pl_lookup (posix.c:2657)
==43216==    by 0x4F10A23: default_lookup (defaults.c:2572)
==43216==    by 0x4F10A23: default_lookup (defaults.c:2572)
==43216==    by 0x4F10A23: default_lookup (defaults.c:2572)
==43216==    by 0x14181538: up_lookup (upcall.c:775)
==43216== 
==43216== 222 bytes in 3 blocks are definitely lost in loss record 446 of 755
==43216==    at 0x4C27BE3: malloc (vg_replace_malloc.c:299)
==43216==    by 0x4E8FB45: __gf_malloc (mem-pool.c:142)
==43216==    by 0x4E8FDF0: gf_vasprintf (mem-pool.c:221)
==43216==    by 0x4E8FEDF: gf_asprintf (mem-pool.c:240)
==43216==    by 0x4E55B0B: data_from_uint32 (dict.c:805)
==43216==    by 0x4E57EC7: dict_set_uint32 (dict.c:1907)
==43216==    by 0x134FD75C: br_stub_lookup (bit-rot-stub.c:2772)
==43216==    by 0x137092ED: posix_acl_lookup (posix-acl.c:971)
==43216==    by 0x13931121: pl_lookup (posix.c:2657)
==43216==    by 0x4F10A23: default_lookup (defaults.c:2572)
==43216==    by 0x4F10A23: default_lookup (defaults.c:2572)
==43216==    by 0x4F10A23: default_lookup (defaults.c:2572)
==43216== 
==43216== 222 bytes in 3 blocks are definitely lost in loss record 447 of 755
==43216==    at 0x4C27BE3: malloc (vg_replace_malloc.c:299)
==43216==    by 0x4E8FB45: __gf_malloc (mem-pool.c:142)
==43216==    by 0x4E8FDF0: gf_vasprintf (mem-pool.c:221)
==43216==    by 0x4E8FEDF: gf_asprintf (mem-pool.c:240)
==43216==    by 0x4E55B0B: data_from_uint32 (dict.c:805)
==43216==    by 0x4E57EC7: dict_set_uint32 (dict.c:1907)
==43216==    by 0x134FD785: br_stub_lookup (bit-rot-stub.c:2775)
==43216==    by 0x137092ED: posix_acl_lookup (posix-acl.c:971)
==43216==    by 0x13931121: pl_lookup (posix.c:2657)
==43216==    by 0x4F10A23: default_lookup (defaults.c:2572)
==43216==    by 0x4F10A23: default_lookup (defaults.c:2572)
==43216==    by 0x4F10A23: default_lookup (defaults.c:2572)
==43216== 
==43216== 222 bytes in 3 blocks are definitely lost in loss record 448 of 755
==43216==    at 0x4C27BE3: malloc (vg_replace_malloc.c:299)
==43216==    by 0x4E8FB45: __gf_malloc (mem-pool.c:142)
==43216==    by 0x4E8FDF0: gf_vasprintf (mem-pool.c:221)
==43216==    by 0x4E8FEDF: gf_asprintf (mem-pool.c:240)
==43216==    by 0x4E55B0B: data_from_uint32 (dict.c:805)
==43216==    by 0x4E57EC7: dict_set_uint32 (dict.c:1907)
==43216==    by 0x134FD7AE: br_stub_lookup (bit-rot-stub.c:2778)
==43216==    by 0x137092ED: posix_acl_lookup (posix-acl.c:971)
==43216==    by 0x13931121: pl_lookup (posix.c:2657)
==43216==    by 0x4F10A23: default_lookup (defaults.c:2572)
==43216==    by 0x4F10A23: default_lookup (defaults.c:2572)
==43216==    by 0x4F10A23: default_lookup (defaults.c:2572)
==43216== 
==43216== 222 bytes in 3 blocks are definitely lost in loss record 449 of 755
==43216==    at 0x4C27BE3: malloc (vg_replace_malloc.c:299)
==43216==    by 0x4E8FB45: __gf_malloc (mem-pool.c:142)
==43216==    by 0x4E8FDF0: gf_vasprintf (mem-pool.c:221)
==43216==    by 0x4E8FEDF: gf_asprintf (mem-pool.c:240)
==43216==    by 0x4E5565E: data_from_int64 (dict.c:684)
==43216==    by 0x4E57CBB: dict_set_int64 (dict.c:1816)
==43216==    by 0x143B2A5B: mq_dict_set_contribution (marker-quota-helper.c:297)
==43216==    by 0x143B163B: mq_req_xattr (marker-quota.c:2144)
==43216==    by 0x143AB508: mq_are_xattrs_set (marker-quota.c:393)
==43216==    by 0x143AE4C6: mq_create_xattrs_task (marker-quota.c:1178)
==43216==    by 0x4EA4D85: synctask_wrap (syncop.c:376)
==43216==    by 0x66F7CEF: ??? (in /usr/lib64/libc-2.17.so)
==43216== 
==43216== 222 bytes in 3 blocks are definitely lost in loss record 450 of 755
==43216==    at 0x4C27BE3: malloc (vg_replace_malloc.c:299)
==43216==    by 0x4E8FB45: __gf_malloc (mem-pool.c:142)
==43216==    by 0x4E8FDF0: gf_vasprintf (mem-pool.c:221)
==43216==    by 0x4E8FEDF: gf_asprintf (mem-pool.c:240)
==43216==    by 0x4E559A8: data_from_uint64 (dict.c:763)
==43216==    by 0x4E57FCE: dict_set_uint64 (dict.c:1952)
==43216==    by 0x143B172C: mq_req_xattr (marker-quota.c:2156)
==43216==    by 0x143AB508: mq_are_xattrs_set (marker-quota.c:393)
==43216==    by 0x143AE4C6: mq_create_xattrs_task (marker-quota.c:1178)
==43216==    by 0x4EA4D85: synctask_wrap (syncop.c:376)
==43216==    by 0x66F7CEF: ??? (in /usr/lib64/libc-2.17.so)
==43216== 
==43216== 222 bytes in 3 blocks are definitely lost in loss record 451 of 755
==43216==    at 0x4C27BE3: malloc (vg_replace_malloc.c:299)
==43216==    by 0x4E8FB45: __gf_malloc (mem-pool.c:142)
==43216==    by 0x4E8FDF0: gf_vasprintf (mem-pool.c:221)
==43216==    by 0x4E8FEDF: gf_asprintf (mem-pool.c:240)
==43216==    by 0x4E558D5: data_from_int8 (dict.c:743)
==43216==    by 0x4E579A8: dict_set_int8 (dict.c:1681)
==43216==    by 0x143B1752: mq_req_xattr (marker-quota.c:2160)
==43216==    by 0x143AB508: mq_are_xattrs_set (marker-quota.c:393)
==43216==    by 0x143AE4C6: mq_create_xattrs_task (marker-quota.c:1178)
==43216==    by 0x4EA4D85: synctask_wrap (syncop.c:376)
==43216==    by 0x66F7CEF: ??? (in /usr/lib64/libc-2.17.so)
==43216== 
==43216== 224 bytes in 1 blocks are possibly lost in loss record 452 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0x4E90487: mem_pool_new_fn (mem-pool.c:381)
==43216==    by 0x4086EA: glusterfs_ctx_defaults_init (glusterfsd.c:1496)
==43216==    by 0x40A5BC: main (glusterfsd.c:2413)
==43216== 
==43216== 224 bytes in 1 blocks are possibly lost in loss record 453 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0x4E90487: mem_pool_new_fn (mem-pool.c:381)
==43216==    by 0x408772: glusterfs_ctx_defaults_init (glusterfsd.c:1502)
==43216==    by 0x40A5BC: main (glusterfsd.c:2413)
==43216== 
==43216== 224 bytes in 1 blocks are possibly lost in loss record 454 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0x4E90487: mem_pool_new_fn (mem-pool.c:381)
==43216==    by 0x4087EF: glusterfs_ctx_defaults_init (glusterfsd.c:1508)
==43216==    by 0x40A5BC: main (glusterfsd.c:2413)
==43216== 
==43216== 224 bytes in 1 blocks are possibly lost in loss record 455 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0x4E90487: mem_pool_new_fn (mem-pool.c:381)
==43216==    by 0x40886F: glusterfs_ctx_defaults_init (glusterfsd.c:1514)
==43216==    by 0x40A5BC: main (glusterfsd.c:2413)
==43216== 
==43216== 224 bytes in 1 blocks are possibly lost in loss record 456 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0x4E90487: mem_pool_new_fn (mem-pool.c:381)
==43216==    by 0x4088A3: glusterfs_ctx_defaults_init (glusterfsd.c:1518)
==43216==    by 0x40A5BC: main (glusterfsd.c:2413)
==43216== 
==43216== 224 bytes in 1 blocks are possibly lost in loss record 457 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0x4E90487: mem_pool_new_fn (mem-pool.c:381)
==43216==    by 0x4088D7: glusterfs_ctx_defaults_init (glusterfsd.c:1523)
==43216==    by 0x40A5BC: main (glusterfsd.c:2413)
==43216== 
==43216== 224 bytes in 1 blocks are possibly lost in loss record 458 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0x4E90487: mem_pool_new_fn (mem-pool.c:381)
==43216==    by 0x40890B: glusterfs_ctx_defaults_init (glusterfsd.c:1527)
==43216==    by 0x40A5BC: main (glusterfsd.c:2413)
==43216== 
==43216== 224 bytes in 1 blocks are possibly lost in loss record 459 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0x4E90487: mem_pool_new_fn (mem-pool.c:381)
==43216==    by 0x514A732: rpcsvc_init (rpcsvc.c:2327)
==43216==    by 0x40F93C: glusterfs_listener_init (glusterfsd-mgmt.c:2027)
==43216==    by 0x40A3EC: glusterfs_volumes_init (glusterfsd.c:2359)
==43216==    by 0x40A892: main (glusterfsd.c:2488)
==43216== 
==43216== 224 bytes in 1 blocks are possibly lost in loss record 460 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0x4E90487: mem_pool_new_fn (mem-pool.c:381)
==43216==    by 0x5151087: rpc_clnt_new (rpc-clnt.c:1139)
==43216==    by 0x40FE46: glusterfs_mgmt_init (glusterfsd-mgmt.c:2157)
==43216==    by 0x40A412: glusterfs_volumes_init (glusterfsd.c:2365)
==43216==    by 0x40A892: main (glusterfsd.c:2488)
==43216== 
==43216== 224 bytes in 1 blocks are possibly lost in loss record 461 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0x4E90487: mem_pool_new_fn (mem-pool.c:381)
==43216==    by 0x51510EE: rpc_clnt_new (rpc-clnt.c:1148)
==43216==    by 0x40FE46: glusterfs_mgmt_init (glusterfsd-mgmt.c:2157)
==43216==    by 0x40A412: glusterfs_volumes_init (glusterfsd.c:2365)
==43216==    by 0x40A892: main (glusterfsd.c:2488)
==43216== 
==43216== 224 bytes in 1 blocks are possibly lost in loss record 462 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0x4E90487: mem_pool_new_fn (mem-pool.c:381)
==43216==    by 0x514A732: rpcsvc_init (rpcsvc.c:2327)
==43216==    by 0x150622FC: init (server.c:1019)
==43216==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==43216==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==43216==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==43216==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==43216==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==43216==    by 0x40ECA5: mgmt_getspec_cbk (glusterfsd-mgmt.c:1648)
==43216==    by 0x51505D2: rpc_clnt_handle_reply (rpc-clnt.c:791)
==43216== 
==43216== 224 bytes in 1 blocks are possibly lost in loss record 463 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0x4E90487: mem_pool_new_fn (mem-pool.c:381)
==43216==    by 0x149FF481: init (quota.c:5118)
==43216==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==43216==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==43216==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==43216==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==43216==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==43216==    by 0x40ECA5: mgmt_getspec_cbk (glusterfsd-mgmt.c:1648)
==43216==    by 0x51505D2: rpc_clnt_handle_reply (rpc-clnt.c:791)
==43216==    by 0x5150B34: rpc_clnt_notify (rpc-clnt.c:971)
==43216== 
==43216== 224 bytes in 1 blocks are possibly lost in loss record 464 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0x4E90487: mem_pool_new_fn (mem-pool.c:381)
==43216==    by 0x5151087: rpc_clnt_new (rpc-clnt.c:1139)
==43216==    by 0x14A014DE: quota_enforcer_init (quota-enforcer-client.c:451)
==43216==    by 0x149FF51D: init (quota.c:5127)
==43216==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==43216==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==43216==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==43216==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==43216==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==43216==    by 0x40ECA5: mgmt_getspec_cbk (glusterfsd-mgmt.c:1648)
==43216== 
==43216== 224 bytes in 1 blocks are possibly lost in loss record 465 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0x4E90487: mem_pool_new_fn (mem-pool.c:381)
==43216==    by 0x51510EE: rpc_clnt_new (rpc-clnt.c:1148)
==43216==    by 0x14A014DE: quota_enforcer_init (quota-enforcer-client.c:451)
==43216==    by 0x149FF51D: init (quota.c:5127)
==43216==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==43216==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==43216==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==43216==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==43216==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==43216==    by 0x40ECA5: mgmt_getspec_cbk (glusterfsd-mgmt.c:1648)
==43216== 
==43216== 224 bytes in 1 blocks are possibly lost in loss record 466 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0x4E90487: mem_pool_new_fn (mem-pool.c:381)
==43216==    by 0x147D5BD2: init (index.c:2357)
==43216==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==43216==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==43216==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==43216==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==43216==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==43216==    by 0x40ECA5: mgmt_getspec_cbk (glusterfsd-mgmt.c:1648)
==43216==    by 0x51505D2: rpc_clnt_handle_reply (rpc-clnt.c:791)
==43216==    by 0x5150B34: rpc_clnt_notify (rpc-clnt.c:971)
==43216== 
==43216== 224 bytes in 1 blocks are possibly lost in loss record 467 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0x4E90487: mem_pool_new_fn (mem-pool.c:381)
==43216==    by 0x143A9945: init (marker.c:3443)
==43216==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==43216==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==43216==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==43216==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==43216==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==43216==    by 0x40ECA5: mgmt_getspec_cbk (glusterfsd-mgmt.c:1648)
==43216==    by 0x51505D2: rpc_clnt_handle_reply (rpc-clnt.c:791)
==43216==    by 0x5150B34: rpc_clnt_notify (rpc-clnt.c:971)
==43216== 
==43216== 224 bytes in 1 blocks are possibly lost in loss record 468 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0x4E90487: mem_pool_new_fn (mem-pool.c:381)
==43216==    by 0x1418A79B: init (upcall.c:1693)
==43216==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==43216==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==43216==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==43216==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==43216==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==43216==    by 0x40ECA5: mgmt_getspec_cbk (glusterfsd-mgmt.c:1648)
==43216==    by 0x51505D2: rpc_clnt_handle_reply (rpc-clnt.c:791)
==43216==    by 0x5150B34: rpc_clnt_notify (rpc-clnt.c:971)
==43216== 
==43216== 224 bytes in 1 blocks are possibly lost in loss record 469 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0x4E90487: mem_pool_new_fn (mem-pool.c:381)
==43216==    by 0x13B50CF0: init (worm.c:504)
==43216==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==43216==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==43216==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==43216==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==43216==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==43216==    by 0x40ECA5: mgmt_getspec_cbk (glusterfsd-mgmt.c:1648)
==43216==    by 0x51505D2: rpc_clnt_handle_reply (rpc-clnt.c:791)
==43216==    by 0x5150B34: rpc_clnt_notify (rpc-clnt.c:971)
==43216== 
==43216== 224 bytes in 1 blocks are possibly lost in loss record 470 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0x4E90487: mem_pool_new_fn (mem-pool.c:381)
==43216==    by 0x13935190: init (posix.c:3681)
==43216==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==43216==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==43216==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==43216==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==43216==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==43216==    by 0x40ECA5: mgmt_getspec_cbk (glusterfsd-mgmt.c:1648)
==43216==    by 0x51505D2: rpc_clnt_handle_reply (rpc-clnt.c:791)
==43216==    by 0x5150B34: rpc_clnt_notify (rpc-clnt.c:971)
==43216== 
==43216== 224 bytes in 1 blocks are possibly lost in loss record 471 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0x4E90487: mem_pool_new_fn (mem-pool.c:381)
==43216==    by 0x134EF2D6: init (bit-rot-stub.c:135)
==43216==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==43216==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==43216==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==43216==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==43216==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==43216==    by 0x40ECA5: mgmt_getspec_cbk (glusterfsd-mgmt.c:1648)
==43216==    by 0x51505D2: rpc_clnt_handle_reply (rpc-clnt.c:791)
==43216==    by 0x5150B34: rpc_clnt_notify (rpc-clnt.c:971)
==43216== 
==43216== 224 bytes in 1 blocks are possibly lost in loss record 472 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0x4E90487: mem_pool_new_fn (mem-pool.c:381)
==43216==    by 0x132D6F76: init (changelog.c:2812)
==43216==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==43216==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==43216==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==43216==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==43216==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==43216==    by 0x40ECA5: mgmt_getspec_cbk (glusterfsd-mgmt.c:1648)
==43216==    by 0x51505D2: rpc_clnt_handle_reply (rpc-clnt.c:791)
==43216==    by 0x5150B34: rpc_clnt_notify (rpc-clnt.c:971)
==43216== 
==43216== 224 bytes in 1 blocks are possibly lost in loss record 473 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0x4E90487: mem_pool_new_fn (mem-pool.c:381)
==43216==    by 0x514A732: rpcsvc_init (rpcsvc.c:2327)
==43216==    by 0x132DF0F9: changelog_rpc_server_init (changelog-rpc-common.c:302)
==43216==    by 0x132DDC27: changelog_init_rpc_listner (changelog-rpc.c:175)
==43216==    by 0x132D6D70: changelog_init_rpc (changelog.c:2768)
==43216==    by 0x132D71B1: init (changelog.c:2850)
==43216==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==43216==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==43216==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==43216==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==43216== 
==43216== 224 bytes in 1 blocks are possibly lost in loss record 474 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0x4E90487: mem_pool_new_fn (mem-pool.c:381)
==43216==    by 0x12BEA39B: init (changetimerecorder.c:2109)
==43216==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==43216==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==43216==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==43216==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==43216==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==43216==    by 0x40ECA5: mgmt_getspec_cbk (glusterfsd-mgmt.c:1648)
==43216==    by 0x51505D2: rpc_clnt_handle_reply (rpc-clnt.c:791)
==43216==    by 0x5150B34: rpc_clnt_notify (rpc-clnt.c:971)
==43216== 
==43216== 224 bytes in 1 blocks are possibly lost in loss record 475 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0x4E90487: mem_pool_new_fn (mem-pool.c:381)
==43216==    by 0x129D0936: init (trash.c:2438)
==43216==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==43216==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==43216==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==43216==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==43216==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==43216==    by 0x40ECA5: mgmt_getspec_cbk (glusterfsd-mgmt.c:1648)
==43216==    by 0x51505D2: rpc_clnt_handle_reply (rpc-clnt.c:791)
==43216==    by 0x5150B34: rpc_clnt_notify (rpc-clnt.c:971)
==43216== 
==43216== 224 bytes in 1 blocks are possibly lost in loss record 476 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0x4E90487: mem_pool_new_fn (mem-pool.c:381)
==43216==    by 0x129BB436: inode_table_new (inode.c:1593)
==43216==    by 0x129CF039: notify (trash.c:2172)
==43216==    by 0x4E5BEC3: xlator_notify (xlator.c:496)
==43216==    by 0x4F12DCF: default_notify (defaults.c:3114)
==43216==    by 0x1218A501: notify (posix.c:6596)
==43216==    by 0x4E5BEC3: xlator_notify (xlator.c:496)
==43216==    by 0x4F12CE8: default_notify (defaults.c:3090)
==43216==    by 0x129D019E: notify (trash.c:2307)
==43216==    by 0x4E5BEC3: xlator_notify (xlator.c:496)
==43216== 
==43216== 224 bytes in 1 blocks are possibly lost in loss record 477 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0x4E90487: mem_pool_new_fn (mem-pool.c:381)
==43216==    by 0x129BB46E: inode_table_new (inode.c:1598)
==43216==    by 0x129CF039: notify (trash.c:2172)
==43216==    by 0x4E5BEC3: xlator_notify (xlator.c:496)
==43216==    by 0x4F12DCF: default_notify (defaults.c:3114)
==43216==    by 0x1218A501: notify (posix.c:6596)
==43216==    by 0x4E5BEC3: xlator_notify (xlator.c:496)
==43216==    by 0x4F12CE8: default_notify (defaults.c:3090)
==43216==    by 0x129D019E: notify (trash.c:2307)
==43216==    by 0x4E5BEC3: xlator_notify (xlator.c:496)
==43216== 
==43216== 224 bytes in 1 blocks are possibly lost in loss record 478 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0x4E90487: mem_pool_new_fn (mem-pool.c:381)
==43216==    by 0x129BB514: inode_table_new (inode.c:1617)
==43216==    by 0x129CF039: notify (trash.c:2172)
==43216==    by 0x4E5BEC3: xlator_notify (xlator.c:496)
==43216==    by 0x4F12DCF: default_notify (defaults.c:3114)
==43216==    by 0x1218A501: notify (posix.c:6596)
==43216==    by 0x4E5BEC3: xlator_notify (xlator.c:496)
==43216==    by 0x4F12CE8: default_notify (defaults.c:3090)
==43216==    by 0x129D019E: notify (trash.c:2307)
==43216==    by 0x4E5BEC3: xlator_notify (xlator.c:496)
==43216== 
==43216== 224 bytes in 1 blocks are possibly lost in loss record 479 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0x4E90487: mem_pool_new_fn (mem-pool.c:381)
==43216==    by 0x4E71F64: inode_table_new (inode.c:1593)
==43216==    by 0x15096890: server_setvolume (server-handshake.c:740)
==43216==    by 0x514731B: rpcsvc_handle_rpc_call (rpcsvc.c:701)
==43216==    by 0x514766E: rpcsvc_notify (rpcsvc.c:795)
==43216==    by 0x514CD1D: rpc_transport_notify (rpc-transport.c:541)
==43216==    by 0xFEA9D43: socket_event_poll_in (socket.c:2267)
==43216==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==43216==    by 0x4ECB1D7: event_dispatch_epoll_handler (event-epoll.c:571)
==43216==    by 0x4ECB5F4: event_dispatch_epoll_worker (event-epoll.c:674)
==43216== 
==43216== 224 bytes in 1 blocks are possibly lost in loss record 480 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0x4E90487: mem_pool_new_fn (mem-pool.c:381)
==43216==    by 0x4E71F9C: inode_table_new (inode.c:1598)
==43216==    by 0x15096890: server_setvolume (server-handshake.c:740)
==43216==    by 0x514731B: rpcsvc_handle_rpc_call (rpcsvc.c:701)
==43216==    by 0x514766E: rpcsvc_notify (rpcsvc.c:795)
==43216==    by 0x514CD1D: rpc_transport_notify (rpc-transport.c:541)
==43216==    by 0xFEA9D43: socket_event_poll_in (socket.c:2267)
==43216==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==43216==    by 0x4ECB1D7: event_dispatch_epoll_handler (event-epoll.c:571)
==43216==    by 0x4ECB5F4: event_dispatch_epoll_worker (event-epoll.c:674)
==43216== 
==43216== 224 bytes in 1 blocks are possibly lost in loss record 481 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0x4E90487: mem_pool_new_fn (mem-pool.c:381)
==43216==    by 0x4E72042: inode_table_new (inode.c:1617)
==43216==    by 0x15096890: server_setvolume (server-handshake.c:740)
==43216==    by 0x514731B: rpcsvc_handle_rpc_call (rpcsvc.c:701)
==43216==    by 0x514766E: rpcsvc_notify (rpcsvc.c:795)
==43216==    by 0x514CD1D: rpc_transport_notify (rpc-transport.c:541)
==43216==    by 0xFEA9D43: socket_event_poll_in (socket.c:2267)
==43216==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==43216==    by 0x4ECB1D7: event_dispatch_epoll_handler (event-epoll.c:571)
==43216==    by 0x4ECB5F4: event_dispatch_epoll_worker (event-epoll.c:674)
==43216== 
==43216== 224 bytes in 2 blocks are possibly lost in loss record 482 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0x406A49: gf_remember_xlator_option (glusterfsd.c:729)
==43216==    by 0x40789D: parse_opts (glusterfsd.c:1075)
==43216==    by 0x67B5412: argp_parse (in /usr/lib64/libc-2.17.so)
==43216==    by 0x4092D4: parse_cmdline (glusterfsd.c:1866)
==43216==    by 0x40A5E5: main (glusterfsd.c:2417)
==43216== 
==43216== 231 bytes in 3 blocks are definitely lost in loss record 483 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0x4E6E844: gf_strdup (mem-pool.h:187)
==43216==    by 0x4E6FD0A: __dentry_create (inode.c:570)
==43216==    by 0x4E70B3B: __inode_link (inode.c:1016)
==43216==    by 0x4E70D02: inode_link (inode.c:1060)
==43216==    by 0x149E0E73: quota_build_ancestry_cbk (quota.c:778)
==43216==    by 0x143A79A9: marker_build_ancestry_cbk (marker.c:3055)
==43216==    by 0x14186A63: up_readdir_cbk (upcall.c:1264)
==43216==    by 0x13931DF5: pl_readdirp_cbk (posix.c:2700)
==43216==    by 0x137121B8: posix_acl_readdirp_cbk (posix-acl.c:1714)
==43216==    by 0x134FC918: br_stub_readdirp_cbk (bit-rot-stub.c:2543)
==43216== 
==43216== 232 bytes in 1 blocks are possibly lost in loss record 484 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0x514912C: rpcsvc_listener_alloc (rpcsvc.c:1632)
==43216==    by 0x514930B: rpcsvc_create_listener (rpcsvc.c:1684)
==43216==    by 0x514955C: rpcsvc_create_listeners (rpcsvc.c:1757)
==43216==    by 0x40F98A: glusterfs_listener_init (glusterfsd-mgmt.c:2037)
==43216==    by 0x40A3EC: glusterfs_volumes_init (glusterfsd.c:2359)
==43216==    by 0x40A892: main (glusterfsd.c:2488)
==43216== 
==43216== 232 bytes in 1 blocks are possibly lost in loss record 485 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0x514912C: rpcsvc_listener_alloc (rpcsvc.c:1632)
==43216==    by 0x514930B: rpcsvc_create_listener (rpcsvc.c:1684)
==43216==    by 0x514955C: rpcsvc_create_listeners (rpcsvc.c:1757)
==43216==    by 0x1506250B: init (server.c:1056)
==43216==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==43216==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==43216==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==43216==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==43216==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==43216==    by 0x40ECA5: mgmt_getspec_cbk (glusterfsd-mgmt.c:1648)
==43216== 
==43216== 232 bytes in 1 blocks are possibly lost in loss record 486 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0x13F6F721: init (leases.c:1025)
==43216==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==43216==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==43216==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==43216==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==43216==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==43216==    by 0x40ECA5: mgmt_getspec_cbk (glusterfsd-mgmt.c:1648)
==43216==    by 0x51505D2: rpc_clnt_handle_reply (rpc-clnt.c:791)
==43216==    by 0x5150B34: rpc_clnt_notify (rpc-clnt.c:971)
==43216==    by 0x514CD1D: rpc_transport_notify (rpc-transport.c:541)
==43216== 
==43216== 232 bytes in 1 blocks are possibly lost in loss record 487 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0x514912C: rpcsvc_listener_alloc (rpcsvc.c:1632)
==43216==    by 0x514930B: rpcsvc_create_listener (rpcsvc.c:1684)
==43216==    by 0x514955C: rpcsvc_create_listeners (rpcsvc.c:1757)
==43216==    by 0x132DF1E6: changelog_rpc_server_init (changelog-rpc-common.c:318)
==43216==    by 0x132DDC27: changelog_init_rpc_listner (changelog-rpc.c:175)
==43216==    by 0x132D6D70: changelog_init_rpc (changelog.c:2768)
==43216==    by 0x132D71B1: init (changelog.c:2850)
==43216==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==43216==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==43216==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==43216== 
==43216== 244 bytes in 1 blocks are possibly lost in loss record 490 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0x4E908B0: mem_get (mem-pool.c:513)
==43216==    by 0x4E906CE: mem_get0 (mem-pool.c:446)
==43216==    by 0x4E53E86: get_new_dict_full (dict.c:52)
==43216==    by 0x4E53F98: dict_new (dict.c:103)
==43216==    by 0x514A2F3: rpcsvc_transport_unix_options_build (rpcsvc.c:2166)
==43216==    by 0x40F909: glusterfs_listener_init (glusterfsd-mgmt.c:2022)
==43216==    by 0x40A3EC: glusterfs_volumes_init (glusterfsd.c:2359)
==43216==    by 0x40A892: main (glusterfsd.c:2488)
==43216== 
==43216== 244 bytes in 1 blocks are possibly lost in loss record 491 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0x4E908B0: mem_get (mem-pool.c:513)
==43216==    by 0x4E906CE: mem_get0 (mem-pool.c:446)
==43216==    by 0x4E53E86: get_new_dict_full (dict.c:52)
==43216==    by 0x4E53F98: dict_new (dict.c:103)
==43216==    by 0x514D11A: rpc_transport_inet_options_build (rpc-transport.c:667)
==43216==    by 0x40FD9D: glusterfs_mgmt_init (glusterfsd-mgmt.c:2139)
==43216==    by 0x40A412: glusterfs_volumes_init (glusterfsd.c:2365)
==43216==    by 0x40A892: main (glusterfsd.c:2488)
==43216== 
==43216== 244 bytes in 1 blocks are possibly lost in loss record 492 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0x4E908B0: mem_get (mem-pool.c:513)
==43216==    by 0x4E906CE: mem_get0 (mem-pool.c:446)
==43216==    by 0x4E53E86: get_new_dict_full (dict.c:52)
==43216==    by 0x4E53F98: dict_new (dict.c:103)
==43216==    by 0x15062038: init (server.c:983)
==43216==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==43216==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==43216==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==43216==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==43216==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==43216== 
==43216== 244 bytes in 1 blocks are possibly lost in loss record 493 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0x4E908B0: mem_get (mem-pool.c:513)
==43216==    by 0x4E906CE: mem_get0 (mem-pool.c:446)
==43216==    by 0x4E53E86: get_new_dict_full (dict.c:52)
==43216==    by 0x4E53F98: dict_new (dict.c:103)
==43216==    by 0x147D54B7: index_make_xattrop_watchlist (index.c:2202)
==43216==    by 0x147D5A4E: init (index.c:2334)
==43216==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==43216==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==43216==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==43216==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==43216== 
==43216== 244 bytes in 1 blocks are possibly lost in loss record 494 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0x4E908B0: mem_get (mem-pool.c:513)
==43216==    by 0x4E906CE: mem_get0 (mem-pool.c:446)
==43216==    by 0x4E53E86: get_new_dict_full (dict.c:52)
==43216==    by 0x4E53F98: dict_new (dict.c:103)
==43216==    by 0x147D54B7: index_make_xattrop_watchlist (index.c:2202)
==43216==    by 0x147D5ACA: init (index.c:2340)
==43216==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==43216==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==43216==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==43216==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==43216== 
==43216== 244 bytes in 1 blocks are possibly lost in loss record 495 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0x4E908B0: mem_get (mem-pool.c:513)
==43216==    by 0x4E906CE: mem_get0 (mem-pool.c:446)
==43216==    by 0x4E53E86: get_new_dict_full (dict.c:52)
==43216==    by 0x4E53F98: dict_new (dict.c:103)
==43216==    by 0x4E56E8F: dict_copy_with_ref (dict.c:1359)
==43216==    by 0x147D5B09: init (index.c:2346)
==43216==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==43216==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==43216==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==43216==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==43216== 
==43216== 244 bytes in 1 blocks are definitely lost in loss record 496 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0x4E908B0: mem_get (mem-pool.c:513)
==43216==    by 0x4E906CE: mem_get0 (mem-pool.c:446)
==43216==    by 0x4E53E86: get_new_dict_full (dict.c:52)
==43216==    by 0x4E53F98: dict_new (dict.c:103)
==43216==    by 0x132DF0A6: changelog_rpc_server_init (changelog-rpc-common.c:294)
==43216==    by 0x132DDC27: changelog_init_rpc_listner (changelog-rpc.c:175)
==43216==    by 0x132D6D70: changelog_init_rpc (changelog.c:2768)
==43216==    by 0x132D71B1: init (changelog.c:2850)
==43216==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==43216==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==43216== 
==43216== 260 bytes in 1 blocks are possibly lost in loss record 498 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0x4E908B0: mem_get (mem-pool.c:513)
==43216==    by 0x4E906CE: mem_get0 (mem-pool.c:446)
==43216==    by 0x129B92DB: __inode_create (inode.c:600)
==43216==    by 0x129BB331: __inode_table_init_root (inode.c:1560)
==43216==    by 0x129BB6A7: inode_table_new (inode.c:1641)
==43216==    by 0x129CF039: notify (trash.c:2172)
==43216==    by 0x4E5BEC3: xlator_notify (xlator.c:496)
==43216==    by 0x4F12DCF: default_notify (defaults.c:3114)
==43216==    by 0x1218A501: notify (posix.c:6596)
==43216==    by 0x4E5BEC3: xlator_notify (xlator.c:496)
==43216== 
==43216== 260 bytes in 1 blocks are possibly lost in loss record 499 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0x4E908B0: mem_get (mem-pool.c:513)
==43216==    by 0x4E906CE: mem_get0 (mem-pool.c:446)
==43216==    by 0x129B92DB: __inode_create (inode.c:600)
==43216==    by 0x129B9520: inode_new (inode.c:647)
==43216==    by 0x129CF06A: notify (trash.c:2182)
==43216==    by 0x4E5BEC3: xlator_notify (xlator.c:496)
==43216==    by 0x4F12DCF: default_notify (defaults.c:3114)
==43216==    by 0x1218A501: notify (posix.c:6596)
==43216==    by 0x4E5BEC3: xlator_notify (xlator.c:496)
==43216==    by 0x4F12CE8: default_notify (defaults.c:3090)
==43216== 
==43216== 260 bytes in 1 blocks are possibly lost in loss record 500 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0x4E908B0: mem_get (mem-pool.c:513)
==43216==    by 0x4E906CE: mem_get0 (mem-pool.c:446)
==43216==    by 0x129B92DB: __inode_create (inode.c:600)
==43216==    by 0x129B9520: inode_new (inode.c:647)
==43216==    by 0x129CF6BB: notify (trash.c:2230)
==43216==    by 0x4E5BEC3: xlator_notify (xlator.c:496)
==43216==    by 0x4F12DCF: default_notify (defaults.c:3114)
==43216==    by 0x1218A501: notify (posix.c:6596)
==43216==    by 0x4E5BEC3: xlator_notify (xlator.c:496)
==43216==    by 0x4F12CE8: default_notify (defaults.c:3090)
==43216== 
==43216== 260 bytes in 1 blocks are possibly lost in loss record 501 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0x4E908B0: mem_get (mem-pool.c:513)
==43216==    by 0x4E906CE: mem_get0 (mem-pool.c:446)
==43216==    by 0x129B92DB: __inode_create (inode.c:600)
==43216==    by 0x129B9520: inode_new (inode.c:647)
==43216==    by 0x129BEFB1: trash_notify_mkdir_cbk (trash.c:450)
==43216==    by 0x1216EB15: posix_mkdir (posix.c:1693)
==43216==    by 0x129CFA85: notify (trash.c:2246)
==43216==    by 0x4E5BEC3: xlator_notify (xlator.c:496)
==43216==    by 0x4F12DCF: default_notify (defaults.c:3114)
==43216==    by 0x1218A501: notify (posix.c:6596)
==43216== 
==43216== 260 bytes in 1 blocks are possibly lost in loss record 502 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0x4E908B0: mem_get (mem-pool.c:513)
==43216==    by 0x4E906CE: mem_get0 (mem-pool.c:446)
==43216==    by 0x4E6FE09: __inode_create (inode.c:600)
==43216==    by 0x4E71E5F: __inode_table_init_root (inode.c:1560)
==43216==    by 0x4E721D5: inode_table_new (inode.c:1641)
==43216==    by 0x15096890: server_setvolume (server-handshake.c:740)
==43216==    by 0x514731B: rpcsvc_handle_rpc_call (rpcsvc.c:701)
==43216==    by 0x514766E: rpcsvc_notify (rpcsvc.c:795)
==43216==    by 0x514CD1D: rpc_transport_notify (rpc-transport.c:541)
==43216==    by 0xFEA9D43: socket_event_poll_in (socket.c:2267)
==43216== 
==43216== 260 bytes in 1 blocks are possibly lost in loss record 503 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0x4E908B0: mem_get (mem-pool.c:513)
==43216==    by 0x4E906CE: mem_get0 (mem-pool.c:446)
==43216==    by 0x4E6FE09: __inode_create (inode.c:600)
==43216==    by 0x4E7004E: inode_new (inode.c:647)
==43216==    by 0x1506A05F: server_inode_new (server-helpers.c:1314)
==43216==    by 0x150877CF: server_lookup_resume (server-rpc-fops.c:3108)
==43216==    by 0x15064DE8: server_resolve_done (server-resolve.c:590)
==43216==    by 0x15064EE9: server_resolve_all (server-resolve.c:625)
==43216==    by 0x15064D8F: server_resolve (server-resolve.c:574)
==43216==    by 0x15064EC0: server_resolve_all (server-resolve.c:621)
==43216== 
==43216== 272 bytes in 1 blocks are possibly lost in loss record 504 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0x514F2E8: saved_frames_new (rpc-clnt.c:257)
==43216==    by 0x5150F0F: rpc_clnt_connection_init (rpc-clnt.c:1090)
==43216==    by 0x5151169: rpc_clnt_new (rpc-clnt.c:1159)
==43216==    by 0x40FE46: glusterfs_mgmt_init (glusterfsd-mgmt.c:2157)
==43216==    by 0x40A412: glusterfs_volumes_init (glusterfsd.c:2365)
==43216==    by 0x40A892: main (glusterfsd.c:2488)
==43216== 
==43216== 272 bytes in 1 blocks are possibly lost in loss record 505 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0x4EEA540: glusterfs_graph_new (graph.y:537)
==43216==    by 0x4EEA5DF: glusterfs_graph_construct (graph.y:560)
==43216==    by 0x40A211: glusterfs_process_volfp (glusterfsd.c:2305)
==43216==    by 0x40ECA5: mgmt_getspec_cbk (glusterfsd-mgmt.c:1648)
==43216==    by 0x51505D2: rpc_clnt_handle_reply (rpc-clnt.c:791)
==43216==    by 0x5150B34: rpc_clnt_notify (rpc-clnt.c:971)
==43216==    by 0x514CD1D: rpc_transport_notify (rpc-transport.c:541)
==43216==    by 0xFEA9D43: socket_event_poll_in (socket.c:2267)
==43216==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==43216==    by 0x4ECB1D7: event_dispatch_epoll_handler (event-epoll.c:571)
==43216== 
==43216== 272 bytes in 1 blocks are possibly lost in loss record 506 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0x514F2E8: saved_frames_new (rpc-clnt.c:257)
==43216==    by 0x514FD5E: rpc_clnt_connection_cleanup (rpc-clnt.c:537)
==43216==    by 0x5150722: rpc_clnt_handle_disconnect (rpc-clnt.c:881)
==43216==    by 0x51509F9: rpc_clnt_notify (rpc-clnt.c:937)
==43216==    by 0x514CD1D: rpc_transport_notify (rpc-transport.c:541)
==43216==    by 0xFEA5910: socket_event_poll_err (socket.c:1179)
==43216==    by 0xFEAA301: socket_event_handler (socket.c:2404)
==43216==    by 0x4ECB1D7: event_dispatch_epoll_handler (event-epoll.c:571)
==43216==    by 0x4ECB5F4: event_dispatch_epoll_worker (event-epoll.c:674)
==43216==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==43216== 
==43216== 272 bytes in 1 blocks are possibly lost in loss record 507 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0x129BB3B7: inode_table_new (inode.c:1578)
==43216==    by 0x129CF039: notify (trash.c:2172)
==43216==    by 0x4E5BEC3: xlator_notify (xlator.c:496)
==43216==    by 0x4F12DCF: default_notify (defaults.c:3114)
==43216==    by 0x1218A501: notify (posix.c:6596)
==43216==    by 0x4E5BEC3: xlator_notify (xlator.c:496)
==43216==    by 0x4F12CE8: default_notify (defaults.c:3090)
==43216==    by 0x129D019E: notify (trash.c:2307)
==43216==    by 0x4E5BEC3: xlator_notify (xlator.c:496)
==43216==    by 0x4F12CE8: default_notify (defaults.c:3090)
==43216== 
==43216== 272 bytes in 1 blocks are possibly lost in loss record 508 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0x4E71EE5: inode_table_new (inode.c:1578)
==43216==    by 0x15096890: server_setvolume (server-handshake.c:740)
==43216==    by 0x514731B: rpcsvc_handle_rpc_call (rpcsvc.c:701)
==43216==    by 0x514766E: rpcsvc_notify (rpcsvc.c:795)
==43216==    by 0x514CD1D: rpc_transport_notify (rpc-transport.c:541)
==43216==    by 0xFEA9D43: socket_event_poll_in (socket.c:2267)
==43216==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==43216==    by 0x4ECB1D7: event_dispatch_epoll_handler (event-epoll.c:571)
==43216==    by 0x4ECB5F4: event_dispatch_epoll_worker (event-epoll.c:674)
==43216==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==43216== 
==43216== 272 bytes in 2 blocks are possibly lost in loss record 509 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0x4E6DB96: gf_timer_call_after (timer.c:48)
==43216==    by 0x514EEF0: call_bail (rpc-clnt.c:160)
==43216==    by 0x4E6E0EC: gf_timer_proc (timer.c:167)
==43216==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==43216==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==43216== 
==43216== 284 bytes in 1 blocks are definitely lost in loss record 510 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0x4E908B0: mem_get (mem-pool.c:513)
==43216==    by 0x4E906CE: mem_get0 (mem-pool.c:446)
==43216==    by 0x4E9926E: create_frame (stack.c:31)
==43216==    by 0x41068B: glusterfs_mgmt_pmap_signout (glusterfsd-mgmt.c:2380)
==43216==    by 0x4080C9: cleanup_and_exit (glusterfsd.c:1333)
==43216==    by 0x409C1A: glusterfs_sigwaiter (glusterfsd.c:2102)
==43216==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==43216==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==43216== 
==43216== 288 bytes in 1 blocks are possibly lost in loss record 513 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0x514A5C7: rpcsvc_init (rpcsvc.c:2307)
==43216==    by 0x40F93C: glusterfs_listener_init (glusterfsd-mgmt.c:2027)
==43216==    by 0x40A3EC: glusterfs_volumes_init (glusterfsd.c:2359)
==43216==    by 0x40A892: main (glusterfsd.c:2488)
==43216== 
==43216== 288 bytes in 1 blocks are possibly lost in loss record 514 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0x514A5C7: rpcsvc_init (rpcsvc.c:2307)
==43216==    by 0x150622FC: init (server.c:1019)
==43216==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==43216==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==43216==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==43216==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==43216==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==43216==    by 0x40ECA5: mgmt_getspec_cbk (glusterfsd-mgmt.c:1648)
==43216==    by 0x51505D2: rpc_clnt_handle_reply (rpc-clnt.c:791)
==43216==    by 0x5150B34: rpc_clnt_notify (rpc-clnt.c:971)
==43216== 
==43216== 288 bytes in 1 blocks are possibly lost in loss record 515 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0x514A5C7: rpcsvc_init (rpcsvc.c:2307)
==43216==    by 0x132DF0F9: changelog_rpc_server_init (changelog-rpc-common.c:302)
==43216==    by 0x132DDC27: changelog_init_rpc_listner (changelog-rpc.c:175)
==43216==    by 0x132D6D70: changelog_init_rpc (changelog.c:2768)
==43216==    by 0x132D71B1: init (changelog.c:2850)
==43216==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==43216==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==43216==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==43216==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==43216==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==43216== 
==43216== 288 bytes in 3 blocks are definitely lost in loss record 516 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0x4E5499E: dict_set_lk (dict.c:378)
==43216==    by 0x4E54B82: dict_set (dict.c:424)
==43216==    by 0x4E57EF2: dict_set_uint32 (dict.c:1913)
==43216==    by 0x134FD75C: br_stub_lookup (bit-rot-stub.c:2772)
==43216==    by 0x137092ED: posix_acl_lookup (posix-acl.c:971)
==43216==    by 0x13931121: pl_lookup (posix.c:2657)
==43216==    by 0x4F10A23: default_lookup (defaults.c:2572)
==43216==    by 0x4F10A23: default_lookup (defaults.c:2572)
==43216==    by 0x4F10A23: default_lookup (defaults.c:2572)
==43216==    by 0x14181538: up_lookup (upcall.c:775)
==43216== 
==43216== 288 bytes in 3 blocks are definitely lost in loss record 517 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0x4E5499E: dict_set_lk (dict.c:378)
==43216==    by 0x4E54B82: dict_set (dict.c:424)
==43216==    by 0x4E579D3: dict_set_int8 (dict.c:1687)
==43216==    by 0x13708F9F: posix_acl_lookup (posix-acl.c:960)
==43216==    by 0x13931121: pl_lookup (posix.c:2657)
==43216==    by 0x4F10A23: default_lookup (defaults.c:2572)
==43216==    by 0x4F10A23: default_lookup (defaults.c:2572)
==43216==    by 0x4F10A23: default_lookup (defaults.c:2572)
==43216==    by 0x14181538: up_lookup (upcall.c:775)
==43216==    by 0x4EA6E19: syncop_lookup (syncop.c:1228)
==43216== 
==43216== 291 bytes in 3 blocks are definitely lost in loss record 518 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0x4E5499E: dict_set_lk (dict.c:378)
==43216==    by 0x4E54B82: dict_set (dict.c:424)
==43216==    by 0x4E57EF2: dict_set_uint32 (dict.c:1913)
==43216==    by 0x134FD7AE: br_stub_lookup (bit-rot-stub.c:2778)
==43216==    by 0x137092ED: posix_acl_lookup (posix-acl.c:971)
==43216==    by 0x13931121: pl_lookup (posix.c:2657)
==43216==    by 0x4F10A23: default_lookup (defaults.c:2572)
==43216==    by 0x4F10A23: default_lookup (defaults.c:2572)
==43216==    by 0x4F10A23: default_lookup (defaults.c:2572)
==43216==    by 0x14181538: up_lookup (upcall.c:775)
==43216== 
==43216== 291 bytes in 3 blocks are definitely lost in loss record 519 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0x4E5499E: dict_set_lk (dict.c:378)
==43216==    by 0x4E54B82: dict_set (dict.c:424)
==43216==    by 0x4E579D3: dict_set_int8 (dict.c:1687)
==43216==    by 0x13708FFF: posix_acl_lookup (posix-acl.c:965)
==43216==    by 0x13931121: pl_lookup (posix.c:2657)
==43216==    by 0x4F10A23: default_lookup (defaults.c:2572)
==43216==    by 0x4F10A23: default_lookup (defaults.c:2572)
==43216==    by 0x4F10A23: default_lookup (defaults.c:2572)
==43216==    by 0x14181538: up_lookup (upcall.c:775)
==43216==    by 0x4EA6E19: syncop_lookup (syncop.c:1228)
==43216== 
==43216== 294 bytes in 3 blocks are definitely lost in loss record 520 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0x4E5499E: dict_set_lk (dict.c:378)
==43216==    by 0x4E54B82: dict_set (dict.c:424)
==43216==    by 0x4E57EF2: dict_set_uint32 (dict.c:1913)
==43216==    by 0x134FD785: br_stub_lookup (bit-rot-stub.c:2775)
==43216==    by 0x137092ED: posix_acl_lookup (posix-acl.c:971)
==43216==    by 0x13931121: pl_lookup (posix.c:2657)
==43216==    by 0x4F10A23: default_lookup (defaults.c:2572)
==43216==    by 0x4F10A23: default_lookup (defaults.c:2572)
==43216==    by 0x4F10A23: default_lookup (defaults.c:2572)
==43216==    by 0x14181538: up_lookup (upcall.c:775)
==43216== 
==43216== 306 bytes in 3 blocks are definitely lost in loss record 521 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0x4E5499E: dict_set_lk (dict.c:378)
==43216==    by 0x4E54B82: dict_set (dict.c:424)
==43216==    by 0x4E579D3: dict_set_int8 (dict.c:1687)
==43216==    by 0x143B1752: mq_req_xattr (marker-quota.c:2160)
==43216==    by 0x143AB508: mq_are_xattrs_set (marker-quota.c:393)
==43216==    by 0x143AE4C6: mq_create_xattrs_task (marker-quota.c:1178)
==43216==    by 0x4EA4D85: synctask_wrap (syncop.c:376)
==43216==    by 0x66F7CEF: ??? (in /usr/lib64/libc-2.17.so)
==43216== 
==43216== 312 bytes in 3 blocks are definitely lost in loss record 523 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0x4E5499E: dict_set_lk (dict.c:378)
==43216==    by 0x4E54B82: dict_set (dict.c:424)
==43216==    by 0x4E57FF9: dict_set_uint64 (dict.c:1958)
==43216==    by 0x143B172C: mq_req_xattr (marker-quota.c:2156)
==43216==    by 0x143AB508: mq_are_xattrs_set (marker-quota.c:393)
==43216==    by 0x143AE4C6: mq_create_xattrs_task (marker-quota.c:1178)
==43216==    by 0x4EA4D85: synctask_wrap (syncop.c:376)
==43216==    by 0x66F7CEF: ??? (in /usr/lib64/libc-2.17.so)
==43216== 
==43216== 328 bytes in 1 blocks are possibly lost in loss record 524 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0x147D5748: init (index.c:2293)
==43216==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==43216==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==43216==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==43216==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==43216==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==43216==    by 0x40ECA5: mgmt_getspec_cbk (glusterfsd-mgmt.c:1648)
==43216==    by 0x51505D2: rpc_clnt_handle_reply (rpc-clnt.c:791)
==43216==    by 0x5150B34: rpc_clnt_notify (rpc-clnt.c:971)
==43216==    by 0x514CD1D: rpc_transport_notify (rpc-transport.c:541)
==43216== 
==43216== 328 bytes in 1 blocks are possibly lost in loss record 525 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0x1218BD08: init (posix.c:7132)
==43216==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==43216==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==43216==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==43216==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==43216==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==43216==    by 0x40ECA5: mgmt_getspec_cbk (glusterfsd-mgmt.c:1648)
==43216==    by 0x51505D2: rpc_clnt_handle_reply (rpc-clnt.c:791)
==43216==    by 0x5150B34: rpc_clnt_notify (rpc-clnt.c:971)
==43216==    by 0x514CD1D: rpc_transport_notify (rpc-transport.c:541)
==43216== 
==43216== 328 bytes in 2 blocks are definitely lost in loss record 526 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0x4E908B0: mem_get (mem-pool.c:513)
==43216==    by 0x4E906CE: mem_get0 (mem-pool.c:446)
==43216==    by 0x4E53E07: get_new_data (dict.c:40)
==43216==    by 0x4E55CD6: str_to_data (dict.c:860)
==43216==    by 0x4E584A0: dict_set_str (dict.c:2162)
==43216==    by 0x4EA196E: gf_add_cmdline_options (graph.c:260)
==43216==    by 0x4EA2394: glusterfs_graph_prepare (graph.c:523)
==43216==    by 0x40A2F9: glusterfs_process_volfp (glusterfsd.c:2319)
==43216==    by 0x40ECA5: mgmt_getspec_cbk (glusterfsd-mgmt.c:1648)
==43216==    by 0x51505D2: rpc_clnt_handle_reply (rpc-clnt.c:791)
==43216== 
==43216== 328 bytes in 2 blocks are definitely lost in loss record 527 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0x4E908B0: mem_get (mem-pool.c:513)
==43216==    by 0x4E906CE: mem_get0 (mem-pool.c:446)
==43216==    by 0x4E53E07: get_new_data (dict.c:40)
==43216==    by 0x4E55DE3: data_from_dynptr (dict.c:895)
==43216==    by 0x1509732A: init (authenticate.c:103)
==43216==    by 0x4E56B26: dict_foreach_match (dict.c:1236)
==43216==    by 0x4E56A12: dict_foreach (dict.c:1194)
==43216==    by 0x150974B9: gf_auth_init (authenticate.c:149)
==43216==    by 0x1506216C: init (server.c:993)
==43216==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==43216== 
==43216== 328 bytes in 4 blocks are definitely lost in loss record 528 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0x4E5499E: dict_set_lk (dict.c:378)
==43216==    by 0x4E54B82: dict_set (dict.c:424)
==43216==    by 0x4E58180: dict_set_static_ptr (dict.c:2022)
==43216==    by 0x1509639B: server_setvolume (server-handshake.c:666)
==43216==    by 0x514731B: rpcsvc_handle_rpc_call (rpcsvc.c:701)
==43216==    by 0x514766E: rpcsvc_notify (rpcsvc.c:795)
==43216==    by 0x514CD1D: rpc_transport_notify (rpc-transport.c:541)
==43216==    by 0xFEA9D43: socket_event_poll_in (socket.c:2267)
==43216==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==43216==    by 0x4ECB1D7: event_dispatch_epoll_handler (event-epoll.c:571)
==43216== 
==43216== 360 bytes in 1 blocks are possibly lost in loss record 532 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0x4E93243: iobuf_create_stdalloc_arena (iobuf.c:367)
==43216==    by 0x4E935BB: iobuf_pool_new (iobuf.c:431)
==43216==    by 0x4084EF: glusterfs_ctx_defaults_init (glusterfsd.c:1473)
==43216==    by 0x40A5BC: main (glusterfsd.c:2413)
==43216== 
==43216== 384 bytes in 4 blocks are possibly lost in loss record 534 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0x4EC6F2D: gf_client_get (client_t.c:238)
==43216==    by 0x15095B91: server_setvolume (server-handshake.c:524)
==43216==    by 0x514731B: rpcsvc_handle_rpc_call (rpcsvc.c:701)
==43216==    by 0x514766E: rpcsvc_notify (rpcsvc.c:795)
==43216==    by 0x514CD1D: rpc_transport_notify (rpc-transport.c:541)
==43216==    by 0xFEA9D43: socket_event_poll_in (socket.c:2267)
==43216==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==43216==    by 0x4ECB1D7: event_dispatch_epoll_handler (event-epoll.c:571)
==43216==    by 0x4ECB5F4: event_dispatch_epoll_worker (event-epoll.c:674)
==43216==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==43216== 
==43216== 420 bytes in 3 blocks are definitely lost in loss record 540 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0x4E908B0: mem_get (mem-pool.c:513)
==43216==    by 0x4E906CE: mem_get0 (mem-pool.c:446)
==43216==    by 0x4E54919: dict_set_lk (dict.c:360)
==43216==    by 0x4E54B82: dict_set (dict.c:424)
==43216==    by 0x4E579D3: dict_set_int8 (dict.c:1687)
==43216==    by 0x13708F9F: posix_acl_lookup (posix-acl.c:960)
==43216==    by 0x13931121: pl_lookup (posix.c:2657)
==43216==    by 0x4F10A23: default_lookup (defaults.c:2572)
==43216==    by 0x4F10A23: default_lookup (defaults.c:2572)
==43216==    by 0x4F10A23: default_lookup (defaults.c:2572)
==43216== 
==43216== 420 bytes in 3 blocks are definitely lost in loss record 541 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0x4E908B0: mem_get (mem-pool.c:513)
==43216==    by 0x4E906CE: mem_get0 (mem-pool.c:446)
==43216==    by 0x4E54919: dict_set_lk (dict.c:360)
==43216==    by 0x4E54B82: dict_set (dict.c:424)
==43216==    by 0x4E579D3: dict_set_int8 (dict.c:1687)
==43216==    by 0x13708FFF: posix_acl_lookup (posix-acl.c:965)
==43216==    by 0x13931121: pl_lookup (posix.c:2657)
==43216==    by 0x4F10A23: default_lookup (defaults.c:2572)
==43216==    by 0x4F10A23: default_lookup (defaults.c:2572)
==43216==    by 0x4F10A23: default_lookup (defaults.c:2572)
==43216== 
==43216== 420 bytes in 3 blocks are definitely lost in loss record 542 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0x4E908B0: mem_get (mem-pool.c:513)
==43216==    by 0x4E906CE: mem_get0 (mem-pool.c:446)
==43216==    by 0x4E54919: dict_set_lk (dict.c:360)
==43216==    by 0x4E54B82: dict_set (dict.c:424)
==43216==    by 0x4E57EF2: dict_set_uint32 (dict.c:1913)
==43216==    by 0x134FD75C: br_stub_lookup (bit-rot-stub.c:2772)
==43216==    by 0x137092ED: posix_acl_lookup (posix-acl.c:971)
==43216==    by 0x13931121: pl_lookup (posix.c:2657)
==43216==    by 0x4F10A23: default_lookup (defaults.c:2572)
==43216==    by 0x4F10A23: default_lookup (defaults.c:2572)
==43216== 
==43216== 420 bytes in 3 blocks are definitely lost in loss record 543 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0x4E908B0: mem_get (mem-pool.c:513)
==43216==    by 0x4E906CE: mem_get0 (mem-pool.c:446)
==43216==    by 0x4E54919: dict_set_lk (dict.c:360)
==43216==    by 0x4E54B82: dict_set (dict.c:424)
==43216==    by 0x4E57EF2: dict_set_uint32 (dict.c:1913)
==43216==    by 0x134FD785: br_stub_lookup (bit-rot-stub.c:2775)
==43216==    by 0x137092ED: posix_acl_lookup (posix-acl.c:971)
==43216==    by 0x13931121: pl_lookup (posix.c:2657)
==43216==    by 0x4F10A23: default_lookup (defaults.c:2572)
==43216==    by 0x4F10A23: default_lookup (defaults.c:2572)
==43216== 
==43216== 420 bytes in 3 blocks are definitely lost in loss record 544 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0x4E908B0: mem_get (mem-pool.c:513)
==43216==    by 0x4E906CE: mem_get0 (mem-pool.c:446)
==43216==    by 0x4E54919: dict_set_lk (dict.c:360)
==43216==    by 0x4E54B82: dict_set (dict.c:424)
==43216==    by 0x4E57EF2: dict_set_uint32 (dict.c:1913)
==43216==    by 0x134FD7AE: br_stub_lookup (bit-rot-stub.c:2778)
==43216==    by 0x137092ED: posix_acl_lookup (posix-acl.c:971)
==43216==    by 0x13931121: pl_lookup (posix.c:2657)
==43216==    by 0x4F10A23: default_lookup (defaults.c:2572)
==43216==    by 0x4F10A23: default_lookup (defaults.c:2572)
==43216== 
==43216== 420 bytes in 3 blocks are definitely lost in loss record 545 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0x4E908B0: mem_get (mem-pool.c:513)
==43216==    by 0x4E906CE: mem_get0 (mem-pool.c:446)
==43216==    by 0x4E54919: dict_set_lk (dict.c:360)
==43216==    by 0x4E54B82: dict_set (dict.c:424)
==43216==    by 0x4E57FF9: dict_set_uint64 (dict.c:1958)
==43216==    by 0x143B172C: mq_req_xattr (marker-quota.c:2156)
==43216==    by 0x143AB508: mq_are_xattrs_set (marker-quota.c:393)
==43216==    by 0x143AE4C6: mq_create_xattrs_task (marker-quota.c:1178)
==43216==    by 0x4EA4D85: synctask_wrap (syncop.c:376)
==43216==    by 0x66F7CEF: ??? (in /usr/lib64/libc-2.17.so)
==43216== 
==43216== 420 bytes in 3 blocks are definitely lost in loss record 546 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0x4E908B0: mem_get (mem-pool.c:513)
==43216==    by 0x4E906CE: mem_get0 (mem-pool.c:446)
==43216==    by 0x4E54919: dict_set_lk (dict.c:360)
==43216==    by 0x4E54B82: dict_set (dict.c:424)
==43216==    by 0x4E579D3: dict_set_int8 (dict.c:1687)
==43216==    by 0x143B1752: mq_req_xattr (marker-quota.c:2160)
==43216==    by 0x143AB508: mq_are_xattrs_set (marker-quota.c:393)
==43216==    by 0x143AE4C6: mq_create_xattrs_task (marker-quota.c:1178)
==43216==    by 0x4EA4D85: synctask_wrap (syncop.c:376)
==43216==    by 0x66F7CEF: ??? (in /usr/lib64/libc-2.17.so)
==43216== 
==43216== 427 bytes in 4 blocks are possibly lost in loss record 547 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0x4E5A1B5: gf_strdup (mem-pool.h:187)
==43216==    by 0x4E5CE3C: loc_copy (xlator.c:882)
==43216==    by 0x143AE02E: mq_synctask1 (marker-quota.c:1066)
==43216==    by 0x143AE199: mq_synctask (marker-quota.c:1097)
==43216==    by 0x143AE6F6: _mq_create_xattrs_txn (marker-quota.c:1236)
==43216==    by 0x143AE82D: mq_create_xattrs_txn (marker-quota.c:1253)
==43216==    by 0x143B0DCB: mq_inspect_directory_xattr (marker-quota.c:2027)
==43216==    by 0x143B13A8: mq_xattr_state (marker-quota.c:2117)
==43216==    by 0x143A6E80: marker_lookup_cbk (marker.c:2961)
==43216==    by 0x141811E0: up_lookup_cbk (upcall.c:753)
==43216== 
==43216== 429 bytes in 3 blocks are definitely lost in loss record 548 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0x4E5499E: dict_set_lk (dict.c:378)
==43216==    by 0x4E54B82: dict_set (dict.c:424)
==43216==    by 0x4E57CE6: dict_set_int64 (dict.c:1822)
==43216==    by 0x143B2A5B: mq_dict_set_contribution (marker-quota-helper.c:297)
==43216==    by 0x143B163B: mq_req_xattr (marker-quota.c:2144)
==43216==    by 0x143AB508: mq_are_xattrs_set (marker-quota.c:393)
==43216==    by 0x143AE4C6: mq_create_xattrs_task (marker-quota.c:1178)
==43216==    by 0x4EA4D85: synctask_wrap (syncop.c:376)
==43216==    by 0x66F7CEF: ??? (in /usr/lib64/libc-2.17.so)
==43216== 
==43216== 436 bytes in 4 blocks are possibly lost in loss record 549 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0x150650A7: gf_strdup (mem-pool.h:187)
==43216==    by 0x15069F68: auth_set_username_passwd (server-helpers.c:1288)
==43216==    by 0x15095D25: server_setvolume (server-handshake.c:553)
==43216==    by 0x514731B: rpcsvc_handle_rpc_call (rpcsvc.c:701)
==43216==    by 0x514766E: rpcsvc_notify (rpcsvc.c:795)
==43216==    by 0x514CD1D: rpc_transport_notify (rpc-transport.c:541)
==43216==    by 0xFEA9D43: socket_event_poll_in (socket.c:2267)
==43216==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==43216==    by 0x4ECB1D7: event_dispatch_epoll_handler (event-epoll.c:571)
==43216==    by 0x4ECB5F4: event_dispatch_epoll_worker (event-epoll.c:674)
==43216== 
==43216== 436 bytes in 4 blocks are possibly lost in loss record 550 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0x150650A7: gf_strdup (mem-pool.h:187)
==43216==    by 0x15069F7F: auth_set_username_passwd (server-helpers.c:1290)
==43216==    by 0x15095D25: server_setvolume (server-handshake.c:553)
==43216==    by 0x514731B: rpcsvc_handle_rpc_call (rpcsvc.c:701)
==43216==    by 0x514766E: rpcsvc_notify (rpcsvc.c:795)
==43216==    by 0x514CD1D: rpc_transport_notify (rpc-transport.c:541)
==43216==    by 0xFEA9D43: socket_event_poll_in (socket.c:2267)
==43216==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==43216==    by 0x4ECB1D7: event_dispatch_epoll_handler (event-epoll.c:571)
==43216==    by 0x4ECB5F4: event_dispatch_epoll_worker (event-epoll.c:674)
==43216== 
==43216== 440 bytes in 1 blocks are possibly lost in loss record 551 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0x515100F: rpc_clnt_new (rpc-clnt.c:1126)
==43216==    by 0x40FE46: glusterfs_mgmt_init (glusterfsd-mgmt.c:2157)
==43216==    by 0x40A412: glusterfs_volumes_init (glusterfsd.c:2365)
==43216==    by 0x40A892: main (glusterfsd.c:2488)
==43216== 
==43216== 440 bytes in 1 blocks are possibly lost in loss record 552 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0x515100F: rpc_clnt_new (rpc-clnt.c:1126)
==43216==    by 0x14A014DE: quota_enforcer_init (quota-enforcer-client.c:451)
==43216==    by 0x149FF51D: init (quota.c:5127)
==43216==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==43216==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==43216==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==43216==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==43216==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==43216==    by 0x40ECA5: mgmt_getspec_cbk (glusterfsd-mgmt.c:1648)
==43216==    by 0x51505D2: rpc_clnt_handle_reply (rpc-clnt.c:791)
==43216== 
==43216== 450 bytes in 5 blocks are possibly lost in loss record 553 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0xFEA28F8: gf_strdup (mem-pool.h:187)
==43216==    by 0xFEAB011: socket_server_event_handler (socket.c:2700)
==43216==    by 0x4ECB1D7: event_dispatch_epoll_handler (event-epoll.c:571)
==43216==    by 0x4ECB5F4: event_dispatch_epoll_worker (event-epoll.c:674)
==43216==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==43216==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==43216== 
==43216== 468 bytes in 3 blocks are possibly lost in loss record 555 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0x4E908B0: mem_get (mem-pool.c:513)
==43216==    by 0x4E906CE: mem_get0 (mem-pool.c:446)
==43216==    by 0x4E6FCB3: __dentry_create (inode.c:562)
==43216==    by 0x4E70B3B: __inode_link (inode.c:1016)
==43216==    by 0x4E70D02: inode_link (inode.c:1060)
==43216==    by 0x149E0E73: quota_build_ancestry_cbk (quota.c:778)
==43216==    by 0x143A79A9: marker_build_ancestry_cbk (marker.c:3055)
==43216==    by 0x14186A63: up_readdir_cbk (upcall.c:1264)
==43216==    by 0x13931DF5: pl_readdirp_cbk (posix.c:2700)
==43216==    by 0x137121B8: posix_acl_readdirp_cbk (posix-acl.c:1714)
==43216== 
==43216== 492 bytes in 3 blocks are definitely lost in loss record 557 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0x4E908B0: mem_get (mem-pool.c:513)
==43216==    by 0x4E906CE: mem_get0 (mem-pool.c:446)
==43216==    by 0x4E53E07: get_new_data (dict.c:40)
==43216==    by 0x4E5589E: data_from_int8 (dict.c:738)
==43216==    by 0x4E579A8: dict_set_int8 (dict.c:1681)
==43216==    by 0x13708F9F: posix_acl_lookup (posix-acl.c:960)
==43216==    by 0x13931121: pl_lookup (posix.c:2657)
==43216==    by 0x4F10A23: default_lookup (defaults.c:2572)
==43216==    by 0x4F10A23: default_lookup (defaults.c:2572)
==43216==    by 0x4F10A23: default_lookup (defaults.c:2572)
==43216== 
==43216== 492 bytes in 3 blocks are definitely lost in loss record 558 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0x4E908B0: mem_get (mem-pool.c:513)
==43216==    by 0x4E906CE: mem_get0 (mem-pool.c:446)
==43216==    by 0x4E53E07: get_new_data (dict.c:40)
==43216==    by 0x4E5589E: data_from_int8 (dict.c:738)
==43216==    by 0x4E579A8: dict_set_int8 (dict.c:1681)
==43216==    by 0x13708FFF: posix_acl_lookup (posix-acl.c:965)
==43216==    by 0x13931121: pl_lookup (posix.c:2657)
==43216==    by 0x4F10A23: default_lookup (defaults.c:2572)
==43216==    by 0x4F10A23: default_lookup (defaults.c:2572)
==43216==    by 0x4F10A23: default_lookup (defaults.c:2572)
==43216== 
==43216== 492 bytes in 3 blocks are definitely lost in loss record 559 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0x4E908B0: mem_get (mem-pool.c:513)
==43216==    by 0x4E906CE: mem_get0 (mem-pool.c:446)
==43216==    by 0x4E53E07: get_new_data (dict.c:40)
==43216==    by 0x4E55AD5: data_from_uint32 (dict.c:800)
==43216==    by 0x4E57EC7: dict_set_uint32 (dict.c:1907)
==43216==    by 0x134FD75C: br_stub_lookup (bit-rot-stub.c:2772)
==43216==    by 0x137092ED: posix_acl_lookup (posix-acl.c:971)
==43216==    by 0x13931121: pl_lookup (posix.c:2657)
==43216==    by 0x4F10A23: default_lookup (defaults.c:2572)
==43216==    by 0x4F10A23: default_lookup (defaults.c:2572)
==43216== 
==43216== 492 bytes in 3 blocks are definitely lost in loss record 560 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0x4E908B0: mem_get (mem-pool.c:513)
==43216==    by 0x4E906CE: mem_get0 (mem-pool.c:446)
==43216==    by 0x4E53E07: get_new_data (dict.c:40)
==43216==    by 0x4E55AD5: data_from_uint32 (dict.c:800)
==43216==    by 0x4E57EC7: dict_set_uint32 (dict.c:1907)
==43216==    by 0x134FD785: br_stub_lookup (bit-rot-stub.c:2775)
==43216==    by 0x137092ED: posix_acl_lookup (posix-acl.c:971)
==43216==    by 0x13931121: pl_lookup (posix.c:2657)
==43216==    by 0x4F10A23: default_lookup (defaults.c:2572)
==43216==    by 0x4F10A23: default_lookup (defaults.c:2572)
==43216== 
==43216== 492 bytes in 3 blocks are definitely lost in loss record 561 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0x4E908B0: mem_get (mem-pool.c:513)
==43216==    by 0x4E906CE: mem_get0 (mem-pool.c:446)
==43216==    by 0x4E53E07: get_new_data (dict.c:40)
==43216==    by 0x4E55AD5: data_from_uint32 (dict.c:800)
==43216==    by 0x4E57EC7: dict_set_uint32 (dict.c:1907)
==43216==    by 0x134FD7AE: br_stub_lookup (bit-rot-stub.c:2778)
==43216==    by 0x137092ED: posix_acl_lookup (posix-acl.c:971)
==43216==    by 0x13931121: pl_lookup (posix.c:2657)
==43216==    by 0x4F10A23: default_lookup (defaults.c:2572)
==43216==    by 0x4F10A23: default_lookup (defaults.c:2572)
==43216== 
==43216== 492 bytes in 3 blocks are definitely lost in loss record 562 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0x4E908B0: mem_get (mem-pool.c:513)
==43216==    by 0x4E906CE: mem_get0 (mem-pool.c:446)
==43216==    by 0x4E53E07: get_new_data (dict.c:40)
==43216==    by 0x4E55626: data_from_int64 (dict.c:679)
==43216==    by 0x4E57CBB: dict_set_int64 (dict.c:1816)
==43216==    by 0x143B2A5B: mq_dict_set_contribution (marker-quota-helper.c:297)
==43216==    by 0x143B163B: mq_req_xattr (marker-quota.c:2144)
==43216==    by 0x143AB508: mq_are_xattrs_set (marker-quota.c:393)
==43216==    by 0x143AE4C6: mq_create_xattrs_task (marker-quota.c:1178)
==43216==    by 0x4EA4D85: synctask_wrap (syncop.c:376)
==43216== 
==43216== 492 bytes in 3 blocks are definitely lost in loss record 563 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0x4E908B0: mem_get (mem-pool.c:513)
==43216==    by 0x4E906CE: mem_get0 (mem-pool.c:446)
==43216==    by 0x4E53E07: get_new_data (dict.c:40)
==43216==    by 0x4E55970: data_from_uint64 (dict.c:758)
==43216==    by 0x4E57FCE: dict_set_uint64 (dict.c:1952)
==43216==    by 0x143B172C: mq_req_xattr (marker-quota.c:2156)
==43216==    by 0x143AB508: mq_are_xattrs_set (marker-quota.c:393)
==43216==    by 0x143AE4C6: mq_create_xattrs_task (marker-quota.c:1178)
==43216==    by 0x4EA4D85: synctask_wrap (syncop.c:376)
==43216==    by 0x66F7CEF: ??? (in /usr/lib64/libc-2.17.so)
==43216== 
==43216== 492 bytes in 3 blocks are definitely lost in loss record 564 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0x4E908B0: mem_get (mem-pool.c:513)
==43216==    by 0x4E906CE: mem_get0 (mem-pool.c:446)
==43216==    by 0x4E53E07: get_new_data (dict.c:40)
==43216==    by 0x4E5589E: data_from_int8 (dict.c:738)
==43216==    by 0x4E579A8: dict_set_int8 (dict.c:1681)
==43216==    by 0x143B1752: mq_req_xattr (marker-quota.c:2160)
==43216==    by 0x143AB508: mq_are_xattrs_set (marker-quota.c:393)
==43216==    by 0x143AE4C6: mq_create_xattrs_task (marker-quota.c:1178)
==43216==    by 0x4EA4D85: synctask_wrap (syncop.c:376)
==43216==    by 0x66F7CEF: ??? (in /usr/lib64/libc-2.17.so)
==43216== 
==43216== 504 bytes in 3 blocks are possibly lost in loss record 565 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0x143B1FD6: mq_alloc_inode_ctx (marker-quota-helper.c:136)
==43216==    by 0x143B2D5D: __mq_inode_ctx_new (marker-quota-helper.c:363)
==43216==    by 0x143B2DE8: mq_inode_ctx_new (marker-quota-helper.c:385)
==43216==    by 0x143A6A6C: marker_lookup_cbk (marker.c:2935)
==43216==    by 0x141811E0: up_lookup_cbk (upcall.c:753)
==43216==    by 0x13930D5A: pl_lookup_cbk (posix.c:2648)
==43216==    by 0x13708E35: posix_acl_lookup_cbk (posix-acl.c:919)
==43216==    by 0x134FD448: br_stub_lookup_cbk (bit-rot-stub.c:2709)
==43216==    by 0x12BDC56C: ctr_lookup_cbk (changetimerecorder.c:306)
==43216==    by 0x121659B6: posix_lookup (posix.c:270)
==43216== 
==43216== 528 bytes in 1 blocks are possibly lost in loss record 570 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0xFEAE076: socket_init (socket.c:3833)
==43216==    by 0xFEAF578: init (socket.c:4290)
==43216==    by 0x514C3DE: rpc_transport_load (rpc-transport.c:351)
==43216==    by 0x5149213: rpcsvc_create_listener (rpcsvc.c:1664)
==43216==    by 0x514955C: rpcsvc_create_listeners (rpcsvc.c:1757)
==43216==    by 0x40F98A: glusterfs_listener_init (glusterfsd-mgmt.c:2037)
==43216==    by 0x40A3EC: glusterfs_volumes_init (glusterfsd.c:2359)
==43216==    by 0x40A892: main (glusterfsd.c:2488)
==43216== 
==43216== 528 bytes in 1 blocks are possibly lost in loss record 571 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0xFEAE076: socket_init (socket.c:3833)
==43216==    by 0xFEAF578: init (socket.c:4290)
==43216==    by 0x514C3DE: rpc_transport_load (rpc-transport.c:351)
==43216==    by 0x5150E30: rpc_clnt_connection_init (rpc-clnt.c:1067)
==43216==    by 0x5151169: rpc_clnt_new (rpc-clnt.c:1159)
==43216==    by 0x40FE46: glusterfs_mgmt_init (glusterfsd-mgmt.c:2157)
==43216==    by 0x40A412: glusterfs_volumes_init (glusterfsd.c:2365)
==43216==    by 0x40A892: main (glusterfsd.c:2488)
==43216== 
==43216== 528 bytes in 1 blocks are possibly lost in loss record 572 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0xFEAE076: socket_init (socket.c:3833)
==43216==    by 0xFEAF578: init (socket.c:4290)
==43216==    by 0x514C3DE: rpc_transport_load (rpc-transport.c:351)
==43216==    by 0x5149213: rpcsvc_create_listener (rpcsvc.c:1664)
==43216==    by 0x514955C: rpcsvc_create_listeners (rpcsvc.c:1757)
==43216==    by 0x1506250B: init (server.c:1056)
==43216==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==43216==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==43216==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==43216==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==43216== 
==43216== 528 bytes in 1 blocks are possibly lost in loss record 573 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0xFEAE076: socket_init (socket.c:3833)
==43216==    by 0xFEAF578: init (socket.c:4290)
==43216==    by 0x514C3DE: rpc_transport_load (rpc-transport.c:351)
==43216==    by 0x5150E30: rpc_clnt_connection_init (rpc-clnt.c:1067)
==43216==    by 0x5151169: rpc_clnt_new (rpc-clnt.c:1159)
==43216==    by 0x14A014DE: quota_enforcer_init (quota-enforcer-client.c:451)
==43216==    by 0x149FF51D: init (quota.c:5127)
==43216==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==43216==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==43216==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==43216== 
==43216== 528 bytes in 1 blocks are possibly lost in loss record 574 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0xFEAE076: socket_init (socket.c:3833)
==43216==    by 0xFEAF578: init (socket.c:4290)
==43216==    by 0x514C3DE: rpc_transport_load (rpc-transport.c:351)
==43216==    by 0x5149213: rpcsvc_create_listener (rpcsvc.c:1664)
==43216==    by 0x514955C: rpcsvc_create_listeners (rpcsvc.c:1757)
==43216==    by 0x132DF1E6: changelog_rpc_server_init (changelog-rpc-common.c:318)
==43216==    by 0x132DDC27: changelog_init_rpc_listner (changelog-rpc.c:175)
==43216==    by 0x132D6D70: changelog_init_rpc (changelog.c:2768)
==43216==    by 0x132D71B1: init (changelog.c:2850)
==43216==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==43216== 
==43216== 528 bytes in 1 blocks are definitely lost in loss record 575 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0x129B93F4: __inode_create (inode.c:614)
==43216==    by 0x129BB331: __inode_table_init_root (inode.c:1560)
==43216==    by 0x129BB6A7: inode_table_new (inode.c:1641)
==43216==    by 0x129CF039: notify (trash.c:2172)
==43216==    by 0x4E5BEC3: xlator_notify (xlator.c:496)
==43216==    by 0x4F12DCF: default_notify (defaults.c:3114)
==43216==    by 0x1218A501: notify (posix.c:6596)
==43216==    by 0x4E5BEC3: xlator_notify (xlator.c:496)
==43216==    by 0x4F12CE8: default_notify (defaults.c:3090)
==43216==    by 0x129D019E: notify (trash.c:2307)
==43216== 
==43216== 528 bytes in 1 blocks are definitely lost in loss record 576 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0x129B93F4: __inode_create (inode.c:614)
==43216==    by 0x129B9520: inode_new (inode.c:647)
==43216==    by 0x129CF06A: notify (trash.c:2182)
==43216==    by 0x4E5BEC3: xlator_notify (xlator.c:496)
==43216==    by 0x4F12DCF: default_notify (defaults.c:3114)
==43216==    by 0x1218A501: notify (posix.c:6596)
==43216==    by 0x4E5BEC3: xlator_notify (xlator.c:496)
==43216==    by 0x4F12CE8: default_notify (defaults.c:3090)
==43216==    by 0x129D019E: notify (trash.c:2307)
==43216==    by 0x4E5BEC3: xlator_notify (xlator.c:496)
==43216== 
==43216== 528 bytes in 1 blocks are definitely lost in loss record 577 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0x129B93F4: __inode_create (inode.c:614)
==43216==    by 0x129B9520: inode_new (inode.c:647)
==43216==    by 0x129CF6BB: notify (trash.c:2230)
==43216==    by 0x4E5BEC3: xlator_notify (xlator.c:496)
==43216==    by 0x4F12DCF: default_notify (defaults.c:3114)
==43216==    by 0x1218A501: notify (posix.c:6596)
==43216==    by 0x4E5BEC3: xlator_notify (xlator.c:496)
==43216==    by 0x4F12CE8: default_notify (defaults.c:3090)
==43216==    by 0x129D019E: notify (trash.c:2307)
==43216==    by 0x4E5BEC3: xlator_notify (xlator.c:496)
==43216== 
==43216== 528 bytes in 1 blocks are definitely lost in loss record 578 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0x129B93F4: __inode_create (inode.c:614)
==43216==    by 0x129B9520: inode_new (inode.c:647)
==43216==    by 0x129BEFB1: trash_notify_mkdir_cbk (trash.c:450)
==43216==    by 0x1216EB15: posix_mkdir (posix.c:1693)
==43216==    by 0x129CFA85: notify (trash.c:2246)
==43216==    by 0x4E5BEC3: xlator_notify (xlator.c:496)
==43216==    by 0x4F12DCF: default_notify (defaults.c:3114)
==43216==    by 0x1218A501: notify (posix.c:6596)
==43216==    by 0x4E5BEC3: xlator_notify (xlator.c:496)
==43216==    by 0x4F12CE8: default_notify (defaults.c:3090)
==43216== 
==43216== 541 bytes in 1 blocks are possibly lost in loss record 579 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0x4052E4: gf_strdup (mem-pool.h:187)
==43216==    by 0x40A78A: main (glusterfsd.c:2456)
==43216== 
==43216== 544 bytes in 4 blocks are possibly lost in loss record 580 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0x15069B1D: server_ctx_get (server-helpers.c:1178)
==43216==    by 0x15069969: server_cancel_grace_timer (server-helpers.c:1136)
==43216==    by 0x15095C21: server_setvolume (server-handshake.c:532)
==43216==    by 0x514731B: rpcsvc_handle_rpc_call (rpcsvc.c:701)
==43216==    by 0x514766E: rpcsvc_notify (rpcsvc.c:795)
==43216==    by 0x514CD1D: rpc_transport_notify (rpc-transport.c:541)
==43216==    by 0xFEA9D43: socket_event_poll_in (socket.c:2267)
==43216==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==43216==    by 0x4ECB1D7: event_dispatch_epoll_handler (event-epoll.c:571)
==43216==    by 0x4ECB5F4: event_dispatch_epoll_worker (event-epoll.c:674)
==43216== 
==43216== 544 bytes in 4 blocks are possibly lost in loss record 581 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0x4E8BE73: gf_fd_fdtable_alloc (fd.c:105)
==43216==    by 0x15069B32: server_ctx_get (server-helpers.c:1184)
==43216==    by 0x15069969: server_cancel_grace_timer (server-helpers.c:1136)
==43216==    by 0x15095C21: server_setvolume (server-handshake.c:532)
==43216==    by 0x514731B: rpcsvc_handle_rpc_call (rpcsvc.c:701)
==43216==    by 0x514766E: rpcsvc_notify (rpcsvc.c:795)
==43216==    by 0x514CD1D: rpc_transport_notify (rpc-transport.c:541)
==43216==    by 0xFEA9D43: socket_event_poll_in (socket.c:2267)
==43216==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==43216==    by 0x4ECB1D7: event_dispatch_epoll_handler (event-epoll.c:571)
==43216== 
==43216== 552 bytes in 4 blocks are possibly lost in loss record 582 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0x4EC65D4: gf_strdup (mem-pool.h:187)
==43216==    by 0x4EC6E2A: gf_client_get (client_t.c:212)
==43216==    by 0x15095B91: server_setvolume (server-handshake.c:524)
==43216==    by 0x514731B: rpcsvc_handle_rpc_call (rpcsvc.c:701)
==43216==    by 0x514766E: rpcsvc_notify (rpcsvc.c:795)
==43216==    by 0x514CD1D: rpc_transport_notify (rpc-transport.c:541)
==43216==    by 0xFEA9D43: socket_event_poll_in (socket.c:2267)
==43216==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==43216==    by 0x4ECB1D7: event_dispatch_epoll_handler (event-epoll.c:571)
==43216==    by 0x4ECB5F4: event_dispatch_epoll_worker (event-epoll.c:674)
==43216== 
==43216== 560 bytes in 4 blocks are definitely lost in loss record 584 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0x4E908B0: mem_get (mem-pool.c:513)
==43216==    by 0x4E906CE: mem_get0 (mem-pool.c:446)
==43216==    by 0x4E54919: dict_set_lk (dict.c:360)
==43216==    by 0x4E54B82: dict_set (dict.c:424)
==43216==    by 0x4E58180: dict_set_static_ptr (dict.c:2022)
==43216==    by 0x1509639B: server_setvolume (server-handshake.c:666)
==43216==    by 0x514731B: rpcsvc_handle_rpc_call (rpcsvc.c:701)
==43216==    by 0x514766E: rpcsvc_notify (rpcsvc.c:795)
==43216==    by 0x514CD1D: rpc_transport_notify (rpc-transport.c:541)
==43216==    by 0xFEA9D43: socket_event_poll_in (socket.c:2267)
==43216== 
==43216== 576 bytes in 1 blocks are possibly lost in loss record 586 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4011C24: _dl_allocate_tls (in /usr/lib64/ld-2.17.so)
==43216==    by 0x60B3960: pthread_create@@GLIBC_2.2.5 (in /usr/lib64/libpthread-2.17.so)
==43216==    by 0x4E6BC49: gf_thread_create (common-utils.c:3554)
==43216==    by 0x4E6E474: gf_timer_registry_init (timer.c:236)
==43216==    by 0x4E6DB1A: gf_timer_call_after (timer.c:40)
==43216==    by 0x4E61A3D: __gf_log_inject_timer_event (logging.c:1792)
==43216==    by 0x4E61AA5: gf_log_inject_timer_event (logging.c:1814)
==43216==    by 0x40A0DA: daemonize (glusterfsd.c:2247)
==43216==    by 0x40A7C5: main (glusterfsd.c:2465)
==43216== 
==43216== 576 bytes in 1 blocks are possibly lost in loss record 587 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4011C24: _dl_allocate_tls (in /usr/lib64/ld-2.17.so)
==43216==    by 0x60B3960: pthread_create@@GLIBC_2.2.5 (in /usr/lib64/libpthread-2.17.so)
==43216==    by 0x409E09: glusterfs_signals_setup (glusterfsd.c:2160)
==43216==    by 0x40A0E9: daemonize (glusterfsd.c:2249)
==43216==    by 0x40A7C5: main (glusterfsd.c:2465)
==43216== 
==43216== 576 bytes in 3 blocks are possibly lost in loss record 588 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0x143B20FB: mq_contri_init (marker-quota-helper.c:164)
==43216==    by 0x143B2402: __mq_add_new_contribution_node (marker-quota-helper.c:238)
==43216==    by 0x143B24F6: mq_add_new_contribution_node (marker-quota-helper.c:264)
==43216==    by 0x143B1293: mq_xattr_state (marker-quota.c:2105)
==43216==    by 0x143A6E80: marker_lookup_cbk (marker.c:2961)
==43216==    by 0x141811E0: up_lookup_cbk (upcall.c:753)
==43216==    by 0x13930D5A: pl_lookup_cbk (posix.c:2648)
==43216==    by 0x13708E35: posix_acl_lookup_cbk (posix-acl.c:919)
==43216==    by 0x134FD448: br_stub_lookup_cbk (bit-rot-stub.c:2709)
==43216==    by 0x12BDC56C: ctr_lookup_cbk (changetimerecorder.c:306)
==43216== 
==43216== 608 bytes in 1 blocks are possibly lost in loss record 589 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4011C24: _dl_allocate_tls (in /usr/lib64/ld-2.17.so)
==43216==    by 0x60B3960: pthread_create@@GLIBC_2.2.5 (in /usr/lib64/libpthread-2.17.so)
==43216==    by 0x4ECB70D: event_dispatch_epoll (event-epoll.c:726)
==43216==    by 0x4E8EEB9: event_dispatch (event.c:124)
==43216==    by 0x40A8B0: main (glusterfsd.c:2492)
==43216== 
==43216== 608 bytes in 1 blocks are possibly lost in loss record 590 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4011C24: _dl_allocate_tls (in /usr/lib64/ld-2.17.so)
==43216==    by 0x60B3960: pthread_create@@GLIBC_2.2.5 (in /usr/lib64/libpthread-2.17.so)
==43216==    by 0x4ECB98E: event_reconfigure_threads_epoll (event-epoll.c:834)
==43216==    by 0x4E8EF5B: event_reconfigure_threads (event.c:140)
==43216==    by 0x150611A3: server_check_event_threads (server.c:702)
==43216==    by 0x15061F17: init (server.c:946)
==43216==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==43216==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==43216==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==43216==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==43216==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==43216== 
==43216== 608 bytes in 1 blocks are possibly lost in loss record 591 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4011C24: _dl_allocate_tls (in /usr/lib64/ld-2.17.so)
==43216==    by 0x60B3960: pthread_create@@GLIBC_2.2.5 (in /usr/lib64/libpthread-2.17.so)
==43216==    by 0x4E6BC49: gf_thread_create (common-utils.c:3554)
==43216==    by 0x147D5CE1: init (index.c:2383)
==43216==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==43216==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==43216==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==43216==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==43216==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==43216==    by 0x40ECA5: mgmt_getspec_cbk (glusterfsd-mgmt.c:1648)
==43216==    by 0x51505D2: rpc_clnt_handle_reply (rpc-clnt.c:791)
==43216== 
==43216== 608 bytes in 1 blocks are possibly lost in loss record 592 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4011C24: _dl_allocate_tls (in /usr/lib64/ld-2.17.so)
==43216==    by 0x60B3960: pthread_create@@GLIBC_2.2.5 (in /usr/lib64/libpthread-2.17.so)
==43216==    by 0x4E6BC49: gf_thread_create (common-utils.c:3554)
==43216==    by 0x134EF4AE: init (bit-rot-stub.c:162)
==43216==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==43216==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==43216==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==43216==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==43216==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==43216==    by 0x40ECA5: mgmt_getspec_cbk (glusterfsd-mgmt.c:1648)
==43216==    by 0x51505D2: rpc_clnt_handle_reply (rpc-clnt.c:791)
==43216== 
==43216== 608 bytes in 1 blocks are possibly lost in loss record 593 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4011C24: _dl_allocate_tls (in /usr/lib64/ld-2.17.so)
==43216==    by 0x60B3960: pthread_create@@GLIBC_2.2.5 (in /usr/lib64/libpthread-2.17.so)
==43216==    by 0x4E6BC49: gf_thread_create (common-utils.c:3554)
==43216==    by 0x134EF1B4: br_stub_bad_object_container_init (bit-rot-stub.c:99)
==43216==    by 0x134EF4CF: init (bit-rot-stub.c:166)
==43216==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==43216==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==43216==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==43216==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==43216==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==43216==    by 0x40ECA5: mgmt_getspec_cbk (glusterfsd-mgmt.c:1648)
==43216== 
==43216== 608 bytes in 1 blocks are possibly lost in loss record 594 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4011C24: _dl_allocate_tls (in /usr/lib64/ld-2.17.so)
==43216==    by 0x60B3960: pthread_create@@GLIBC_2.2.5 (in /usr/lib64/libpthread-2.17.so)
==43216==    by 0x132DD85C: changelog_init_rpc_threads (changelog-rpc.c:99)
==43216==    by 0x132DDB5E: changelog_init_rpc_listner (changelog-rpc.c:169)
==43216==    by 0x132D6D70: changelog_init_rpc (changelog.c:2768)
==43216==    by 0x132D71B1: init (changelog.c:2850)
==43216==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==43216==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==43216==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==43216==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==43216==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==43216== 
==43216== 608 bytes in 1 blocks are possibly lost in loss record 595 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4011C24: _dl_allocate_tls (in /usr/lib64/ld-2.17.so)
==43216==    by 0x60B3960: pthread_create@@GLIBC_2.2.5 (in /usr/lib64/libpthread-2.17.so)
==43216==    by 0x4E6BC49: gf_thread_create (common-utils.c:3554)
==43216==    by 0x1219283B: posix_spawn_health_check_thread (posix-helpers.c:1927)
==43216==    by 0x1218C994: init (posix.c:7329)
==43216==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==43216==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==43216==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==43216==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==43216==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==43216==    by 0x40ECA5: mgmt_getspec_cbk (glusterfsd-mgmt.c:1648)
==43216== 
==43216== 608 bytes in 1 blocks are possibly lost in loss record 596 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4011C24: _dl_allocate_tls (in /usr/lib64/ld-2.17.so)
==43216==    by 0x60B3960: pthread_create@@GLIBC_2.2.5 (in /usr/lib64/libpthread-2.17.so)
==43216==    by 0x4E6BC49: gf_thread_create (common-utils.c:3554)
==43216==    by 0x121914C9: posix_spawn_janitor_thread (posix-helpers.c:1469)
==43216==    by 0x1218C9EF: init (posix.c:7335)
==43216==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==43216==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==43216==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==43216==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==43216==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==43216==    by 0x40ECA5: mgmt_getspec_cbk (glusterfsd-mgmt.c:1648)
==43216== 
==43216== 608 bytes in 1 blocks are possibly lost in loss record 597 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4011C24: _dl_allocate_tls (in /usr/lib64/ld-2.17.so)
==43216==    by 0x60B3960: pthread_create@@GLIBC_2.2.5 (in /usr/lib64/libpthread-2.17.so)
==43216==    by 0x4E6BC49: gf_thread_create (common-utils.c:3554)
==43216==    by 0x1218CA72: init (posix.c:7341)
==43216==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==43216==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==43216==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==43216==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==43216==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==43216==    by 0x40ECA5: mgmt_getspec_cbk (glusterfsd-mgmt.c:1648)
==43216==    by 0x51505D2: rpc_clnt_handle_reply (rpc-clnt.c:791)
==43216== 
==43216== 608 bytes in 1 blocks are possibly lost in loss record 598 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4011C24: _dl_allocate_tls (in /usr/lib64/ld-2.17.so)
==43216==    by 0x60B3960: pthread_create@@GLIBC_2.2.5 (in /usr/lib64/libpthread-2.17.so)
==43216==    by 0x4E6BC49: gf_thread_create (common-utils.c:3554)
==43216==    by 0x4EA5ADE: syncenv_scale (syncop.c:739)
==43216==    by 0x4EA547F: synctask_create (syncop.c:534)
==43216==    by 0x4EA55AE: synctask_new1 (syncop.c:576)
==43216==    by 0x143AE0D7: mq_synctask1 (marker-quota.c:1078)
==43216==    by 0x143AE199: mq_synctask (marker-quota.c:1097)
==43216==    by 0x143AE6F6: _mq_create_xattrs_txn (marker-quota.c:1236)
==43216==    by 0x143AE82D: mq_create_xattrs_txn (marker-quota.c:1253)
==43216==    by 0x143B0DCB: mq_inspect_directory_xattr (marker-quota.c:2027)
==43216== 
==43216== 656 bytes in 4 blocks are definitely lost in loss record 601 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0x4E908B0: mem_get (mem-pool.c:513)
==43216==    by 0x4E906CE: mem_get0 (mem-pool.c:446)
==43216==    by 0x4E53E07: get_new_data (dict.c:40)
==43216==    by 0x4E55C27: data_from_ptr_common (dict.c:841)
==43216==    by 0x4E58155: dict_set_static_ptr (dict.c:2016)
==43216==    by 0x1509639B: server_setvolume (server-handshake.c:666)
==43216==    by 0x514731B: rpcsvc_handle_rpc_call (rpcsvc.c:701)
==43216==    by 0x514766E: rpcsvc_notify (rpcsvc.c:795)
==43216==    by 0x514CD1D: rpc_transport_notify (rpc-transport.c:541)
==43216==    by 0xFEA9D43: socket_event_poll_in (socket.c:2267)
==43216== 
==43216== 660 bytes in 1 blocks are definitely lost in loss record 602 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0x4E908B0: mem_get (mem-pool.c:513)
==43216==    by 0x515200B: rpc_clnt_submit (rpc-clnt.c:1586)
==43216==    by 0x40E934: mgmt_submit_request (glusterfsd-mgmt.c:1541)
==43216==    by 0x41079F: glusterfs_mgmt_pmap_signout (glusterfsd-mgmt.c:2399)
==43216==    by 0x4080C9: cleanup_and_exit (glusterfsd.c:1333)
==43216==    by 0x409C1A: glusterfs_sigwaiter (glusterfsd.c:2102)
==43216==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==43216==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==43216== 
==43216== 712 bytes in 1 blocks are possibly lost in loss record 607 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0x1218BB7F: init (posix.c:7083)
==43216==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==43216==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==43216==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==43216==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==43216==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==43216==    by 0x40ECA5: mgmt_getspec_cbk (glusterfsd-mgmt.c:1648)
==43216==    by 0x51505D2: rpc_clnt_handle_reply (rpc-clnt.c:791)
==43216==    by 0x5150B34: rpc_clnt_notify (rpc-clnt.c:971)
==43216==    by 0x514CD1D: rpc_transport_notify (rpc-transport.c:541)
==43216== 
==43216== 732 bytes in 3 blocks are possibly lost in loss record 609 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0x4E908B0: mem_get (mem-pool.c:513)
==43216==    by 0x4E906CE: mem_get0 (mem-pool.c:446)
==43216==    by 0x4E53E86: get_new_dict_full (dict.c:52)
==43216==    by 0x4E53F98: dict_new (dict.c:103)
==43216==    by 0x1218FB3B: posix_xattr_fill (posix-helpers.c:811)
==43216==    by 0x121652B3: posix_lookup (posix.c:213)
==43216==    by 0x4F10A23: default_lookup (defaults.c:2572)
==43216==    by 0x12BDCD6D: ctr_lookup (changetimerecorder.c:357)
==43216==    by 0x4F10A23: default_lookup (defaults.c:2572)
==43216==    by 0x134FDA85: br_stub_lookup (bit-rot-stub.c:2784)
==43216== 
==43216== 732 bytes in 3 blocks are possibly lost in loss record 610 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0x4E908B0: mem_get (mem-pool.c:513)
==43216==    by 0x4E906CE: mem_get0 (mem-pool.c:446)
==43216==    by 0x4E53E86: get_new_dict_full (dict.c:52)
==43216==    by 0x4E53F98: dict_new (dict.c:103)
==43216==    by 0x143AB496: mq_are_xattrs_set (marker-quota.c:387)
==43216==    by 0x143AE4C6: mq_create_xattrs_task (marker-quota.c:1178)
==43216==    by 0x4EA4D85: synctask_wrap (syncop.c:376)
==43216==    by 0x66F7CEF: ??? (in /usr/lib64/libc-2.17.so)
==43216== 
==43216== 736 bytes in 4 blocks are possibly lost in loss record 611 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0x143ADF8B: mq_synctask1 (marker-quota.c:1057)
==43216==    by 0x143AE199: mq_synctask (marker-quota.c:1097)
==43216==    by 0x143AE6F6: _mq_create_xattrs_txn (marker-quota.c:1236)
==43216==    by 0x143AE82D: mq_create_xattrs_txn (marker-quota.c:1253)
==43216==    by 0x143B0DCB: mq_inspect_directory_xattr (marker-quota.c:2027)
==43216==    by 0x143B13A8: mq_xattr_state (marker-quota.c:2117)
==43216==    by 0x143A6E80: marker_lookup_cbk (marker.c:2961)
==43216==    by 0x141811E0: up_lookup_cbk (upcall.c:753)
==43216==    by 0x13930D5A: pl_lookup_cbk (posix.c:2648)
==43216==    by 0x13708E35: posix_acl_lookup_cbk (posix-acl.c:919)
==43216== 
==43216== 780 bytes in 3 blocks are possibly lost in loss record 612 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0x4E908B0: mem_get (mem-pool.c:513)
==43216==    by 0x4E906CE: mem_get0 (mem-pool.c:446)
==43216==    by 0x4E6FE09: __inode_create (inode.c:600)
==43216==    by 0x4E7004E: inode_new (inode.c:647)
==43216==    by 0x1506A05F: server_inode_new (server-helpers.c:1314)
==43216==    by 0x15063F03: resolve_gfid (server-resolve.c:208)
==43216==    by 0x1506484F: server_resolve_inode (server-resolve.c:421)
==43216==    by 0x15064CD4: server_resolve (server-resolve.c:562)
==43216==    by 0x15064E6B: server_resolve_all (server-resolve.c:614)
==43216==    by 0x15064F80: resolve_and_resume (server-resolve.c:645)
==43216== 
==43216== 800 bytes in 4 blocks are possibly lost in loss record 614 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0x4EC6E8E: gf_client_get (client_t.c:221)
==43216==    by 0x15095B91: server_setvolume (server-handshake.c:524)
==43216==    by 0x514731B: rpcsvc_handle_rpc_call (rpcsvc.c:701)
==43216==    by 0x514766E: rpcsvc_notify (rpcsvc.c:795)
==43216==    by 0x514CD1D: rpc_transport_notify (rpc-transport.c:541)
==43216==    by 0xFEA9D43: socket_event_poll_in (socket.c:2267)
==43216==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==43216==    by 0x4ECB1D7: event_dispatch_epoll_handler (event-epoll.c:571)
==43216==    by 0x4ECB5F4: event_dispatch_epoll_worker (event-epoll.c:674)
==43216==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==43216== 
==43216== 807 bytes in 9 blocks are definitely lost in loss record 615 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0x1218DF18: _posix_xattr_get_set_from_backend (posix-helpers.c:212)
==43216==    by 0x1218ED84: _posix_xattr_get_set (posix-helpers.c:516)
==43216==    by 0x4E56B26: dict_foreach_match (dict.c:1236)
==43216==    by 0x4E56A12: dict_foreach (dict.c:1194)
==43216==    by 0x1218FB9B: posix_xattr_fill (posix-helpers.c:824)
==43216==    by 0x121652B3: posix_lookup (posix.c:213)
==43216==    by 0x4F10A23: default_lookup (defaults.c:2572)
==43216==    by 0x12BDCD6D: ctr_lookup (changetimerecorder.c:357)
==43216==    by 0x4F10A23: default_lookup (defaults.c:2572)
==43216==    by 0x134FDA85: br_stub_lookup (bit-rot-stub.c:2784)
==43216== 
==43216== 832 bytes in 8 blocks are possibly lost in loss record 616 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0x14C26F53: ios_init_top_stats (io-stats.c:3331)
==43216==    by 0x14C280A3: init (io-stats.c:3658)
==43216==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==43216==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==43216==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==43216==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==43216==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==43216==    by 0x40ECA5: mgmt_getspec_cbk (glusterfsd-mgmt.c:1648)
==43216==    by 0x51505D2: rpc_clnt_handle_reply (rpc-clnt.c:791)
==43216==    by 0x5150B34: rpc_clnt_notify (rpc-clnt.c:971)
==43216== 
==43216== 840 bytes in 6 blocks are definitely lost in loss record 618 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0x4E908B0: mem_get (mem-pool.c:513)
==43216==    by 0x4E906CE: mem_get0 (mem-pool.c:446)
==43216==    by 0x4E54919: dict_set_lk (dict.c:360)
==43216==    by 0x4E54B82: dict_set (dict.c:424)
==43216==    by 0x4E5879A: dict_set_bin_common (dict.c:2288)
==43216==    by 0x4E587F6: dict_set_bin (dict.c:2302)
==43216==    by 0x1218E0F3: _posix_xattr_get_set_from_backend (posix-helpers.c:242)
==43216==    by 0x1218ED84: _posix_xattr_get_set (posix-helpers.c:516)
==43216==    by 0x4E56B26: dict_foreach_match (dict.c:1236)
==43216==    by 0x4E56A12: dict_foreach (dict.c:1194)
==43216== 
==43216== 852 bytes in 3 blocks are possibly lost in loss record 619 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0x4E908B0: mem_get (mem-pool.c:513)
==43216==    by 0x4E906CE: mem_get0 (mem-pool.c:446)
==43216==    by 0x12BDCAC4: ctr_lookup (changetimerecorder.c:357)
==43216==    by 0x4F10A23: default_lookup (defaults.c:2572)
==43216==    by 0x134FDA85: br_stub_lookup (bit-rot-stub.c:2784)
==43216==    by 0x137092ED: posix_acl_lookup (posix-acl.c:971)
==43216==    by 0x13931121: pl_lookup (posix.c:2657)
==43216==    by 0x4F10A23: default_lookup (defaults.c:2572)
==43216==    by 0x4F10A23: default_lookup (defaults.c:2572)
==43216==    by 0x4F10A23: default_lookup (defaults.c:2572)
==43216== 
==43216== 852 bytes in 3 blocks are possibly lost in loss record 620 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0x4E908B0: mem_get (mem-pool.c:513)
==43216==    by 0x4E906CE: mem_get0 (mem-pool.c:446)
==43216==    by 0x4EA6B99: syncop_lookup (syncop.c:1228)
==43216==    by 0x143AB550: mq_are_xattrs_set (marker-quota.c:397)
==43216==    by 0x143AE4C6: mq_create_xattrs_task (marker-quota.c:1178)
==43216==    by 0x4EA4D85: synctask_wrap (syncop.c:376)
==43216==    by 0x66F7CEF: ??? (in /usr/lib64/libc-2.17.so)
==43216== 
==43216== 852 bytes in 3 blocks are possibly lost in loss record 621 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0x4E908B0: mem_get (mem-pool.c:513)
==43216==    by 0x4E906CE: mem_get0 (mem-pool.c:446)
==43216==    by 0x141812C5: up_lookup (upcall.c:775)
==43216==    by 0x4EA6E19: syncop_lookup (syncop.c:1228)
==43216==    by 0x143AB550: mq_are_xattrs_set (marker-quota.c:397)
==43216==    by 0x143AE4C6: mq_create_xattrs_task (marker-quota.c:1178)
==43216==    by 0x4EA4D85: synctask_wrap (syncop.c:376)
==43216==    by 0x66F7CEF: ??? (in /usr/lib64/libc-2.17.so)
==43216== 
==43216== 852 bytes in 3 blocks are possibly lost in loss record 622 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0x4E908B0: mem_get (mem-pool.c:513)
==43216==    by 0x4E906CE: mem_get0 (mem-pool.c:446)
==43216==    by 0x13930EAE: pl_lookup (posix.c:2657)
==43216==    by 0x4F10A23: default_lookup (defaults.c:2572)
==43216==    by 0x4F10A23: default_lookup (defaults.c:2572)
==43216==    by 0x4F10A23: default_lookup (defaults.c:2572)
==43216==    by 0x14181538: up_lookup (upcall.c:775)
==43216==    by 0x4EA6E19: syncop_lookup (syncop.c:1228)
==43216==    by 0x143AB550: mq_are_xattrs_set (marker-quota.c:397)
==43216==    by 0x143AE4C6: mq_create_xattrs_task (marker-quota.c:1178)
==43216== 
==43216== 852 bytes in 3 blocks are possibly lost in loss record 623 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0x4E908B0: mem_get (mem-pool.c:513)
==43216==    by 0x4E906CE: mem_get0 (mem-pool.c:446)
==43216==    by 0x1370907A: posix_acl_lookup (posix-acl.c:971)
==43216==    by 0x13931121: pl_lookup (posix.c:2657)
==43216==    by 0x4F10A23: default_lookup (defaults.c:2572)
==43216==    by 0x4F10A23: default_lookup (defaults.c:2572)
==43216==    by 0x4F10A23: default_lookup (defaults.c:2572)
==43216==    by 0x14181538: up_lookup (upcall.c:775)
==43216==    by 0x4EA6E19: syncop_lookup (syncop.c:1228)
==43216==    by 0x143AB550: mq_are_xattrs_set (marker-quota.c:397)
==43216== 
==43216== 852 bytes in 3 blocks are possibly lost in loss record 624 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0x4E908B0: mem_get (mem-pool.c:513)
==43216==    by 0x4E906CE: mem_get0 (mem-pool.c:446)
==43216==    by 0x134FD7EB: br_stub_lookup (bit-rot-stub.c:2784)
==43216==    by 0x137092ED: posix_acl_lookup (posix-acl.c:971)
==43216==    by 0x13931121: pl_lookup (posix.c:2657)
==43216==    by 0x4F10A23: default_lookup (defaults.c:2572)
==43216==    by 0x4F10A23: default_lookup (defaults.c:2572)
==43216==    by 0x4F10A23: default_lookup (defaults.c:2572)
==43216==    by 0x14181538: up_lookup (upcall.c:775)
==43216==    by 0x4EA6E19: syncop_lookup (syncop.c:1228)
==43216== 
==43216== 856 bytes in 1 blocks are possibly lost in loss record 625 of 755
==43216==    at 0x4C27BE3: malloc (vg_replace_malloc.c:299)
==43216==    by 0x130402E6: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==43216==    by 0x1301B6A9: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==43216==    by 0x13023A25: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==43216==    by 0x13023A4C: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==43216==    by 0x1309DE50: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==43216==    by 0x12E01B48: gf_open_sqlite3_conn (gfdb_sqlite3.c:192)
==43216==    by 0x12E02CAF: gf_sqlite3_init (gfdb_sqlite3.c:440)
==43216==    by 0x12DF97B5: init_db (gfdb_data_store.c:270)
==43216==    by 0x12BEA41F: init (changetimerecorder.c:2118)
==43216==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==43216==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==43216== 
==43216== 872 bytes in 1 blocks are possibly lost in loss record 628 of 755
==43216==    at 0x4C27BE3: malloc (vg_replace_malloc.c:299)
==43216==    by 0x130402E6: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==43216==    by 0x1301B6A9: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==43216==    by 0x13023A25: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==43216==    by 0x13023A4C: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==43216==    by 0x13059775: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==43216==    by 0x1309E1B6: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==43216==    by 0x12E01B48: gf_open_sqlite3_conn (gfdb_sqlite3.c:192)
==43216==    by 0x12E02CAF: gf_sqlite3_init (gfdb_sqlite3.c:440)
==43216==    by 0x12DF97B5: init_db (gfdb_data_store.c:270)
==43216==    by 0x12BEA41F: init (changetimerecorder.c:2118)
==43216==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==43216== 
==43216== 976 bytes in 4 blocks are possibly lost in loss record 633 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0x4E908B0: mem_get (mem-pool.c:513)
==43216==    by 0x4E906CE: mem_get0 (mem-pool.c:446)
==43216==    by 0x4E53E86: get_new_dict_full (dict.c:52)
==43216==    by 0x4E53F98: dict_new (dict.c:103)
==43216==    by 0x15095763: server_setvolume (server-handshake.c:434)
==43216==    by 0x514731B: rpcsvc_handle_rpc_call (rpcsvc.c:701)
==43216==    by 0x514766E: rpcsvc_notify (rpcsvc.c:795)
==43216==    by 0x514CD1D: rpc_transport_notify (rpc-transport.c:541)
==43216==    by 0xFEA9D43: socket_event_poll_in (socket.c:2267)
==43216==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==43216== 
==43216== 992 bytes in 4 blocks are possibly lost in loss record 635 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0x4EC6D8D: gf_client_get (client_t.c:201)
==43216==    by 0x15095B91: server_setvolume (server-handshake.c:524)
==43216==    by 0x514731B: rpcsvc_handle_rpc_call (rpcsvc.c:701)
==43216==    by 0x514766E: rpcsvc_notify (rpcsvc.c:795)
==43216==    by 0x514CD1D: rpc_transport_notify (rpc-transport.c:541)
==43216==    by 0xFEA9D43: socket_event_poll_in (socket.c:2267)
==43216==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==43216==    by 0x4ECB1D7: event_dispatch_epoll_handler (event-epoll.c:571)
==43216==    by 0x4ECB5F4: event_dispatch_epoll_worker (event-epoll.c:674)
==43216==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==43216== 
==43216== 1,047 bytes in 9 blocks are definitely lost in loss record 636 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0x4E5499E: dict_set_lk (dict.c:378)
==43216==    by 0x4E54B82: dict_set (dict.c:424)
==43216==    by 0x4E5879A: dict_set_bin_common (dict.c:2288)
==43216==    by 0x4E587F6: dict_set_bin (dict.c:2302)
==43216==    by 0x1218E0F3: _posix_xattr_get_set_from_backend (posix-helpers.c:242)
==43216==    by 0x1218ED84: _posix_xattr_get_set (posix-helpers.c:516)
==43216==    by 0x4E56B26: dict_foreach_match (dict.c:1236)
==43216==    by 0x4E56A12: dict_foreach (dict.c:1194)
==43216==    by 0x1218FB9B: posix_xattr_fill (posix-helpers.c:824)
==43216==    by 0x121652B3: posix_lookup (posix.c:213)
==43216== 
==43216== 1,136 bytes in 4 blocks are possibly lost in loss record 641 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0x4E908B0: mem_get (mem-pool.c:513)
==43216==    by 0x4E906CE: mem_get0 (mem-pool.c:446)
==43216==    by 0x4E9926E: create_frame (stack.c:31)
==43216==    by 0x4EA5156: synctask_create (syncop.c:472)
==43216==    by 0x4EA55AE: synctask_new1 (syncop.c:576)
==43216==    by 0x143AE0D7: mq_synctask1 (marker-quota.c:1078)
==43216==    by 0x143AE199: mq_synctask (marker-quota.c:1097)
==43216==    by 0x143AE6F6: _mq_create_xattrs_txn (marker-quota.c:1236)
==43216==    by 0x143AE82D: mq_create_xattrs_txn (marker-quota.c:1253)
==43216==    by 0x143B0DCB: mq_inspect_directory_xattr (marker-quota.c:2027)
==43216== 
==43216== 1,152 bytes in 2 blocks are possibly lost in loss record 642 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4011C24: _dl_allocate_tls (in /usr/lib64/ld-2.17.so)
==43216==    by 0x60B3960: pthread_create@@GLIBC_2.2.5 (in /usr/lib64/libpthread-2.17.so)
==43216==    by 0x4E6BC49: gf_thread_create (common-utils.c:3554)
==43216==    by 0x4EA5DB5: syncenv_new (syncop.c:832)
==43216==    by 0x40A801: main (glusterfsd.c:2475)
==43216== 
==43216== 1,184 bytes in 4 blocks are possibly lost in loss record 644 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0x4EE1DF0: rbuf_init (rot-buffs.c:199)
==43216==    by 0x132D6D33: changelog_init_rpc (changelog.c:2764)
==43216==    by 0x132D71B1: init (changelog.c:2850)
==43216==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==43216==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==43216==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==43216==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==43216==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==43216==    by 0x40ECA5: mgmt_getspec_cbk (glusterfsd-mgmt.c:1648)
==43216==    by 0x51505D2: rpc_clnt_handle_reply (rpc-clnt.c:791)
==43216== 
==43216== 1,224 bytes in 1 blocks are possibly lost in loss record 647 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0x132D6F50: init (changelog.c:2808)
==43216==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==43216==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==43216==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==43216==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==43216==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==43216==    by 0x40ECA5: mgmt_getspec_cbk (glusterfsd-mgmt.c:1648)
==43216==    by 0x51505D2: rpc_clnt_handle_reply (rpc-clnt.c:791)
==43216==    by 0x5150B34: rpc_clnt_notify (rpc-clnt.c:971)
==43216==    by 0x514CD1D: rpc_transport_notify (rpc-transport.c:541)
==43216== 
==43216== 1,344 (528 direct, 816 indirect) bytes in 1 blocks are definitely lost in loss record 650 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0x4E6FF22: __inode_create (inode.c:614)
==43216==    by 0x4E71E5F: __inode_table_init_root (inode.c:1560)
==43216==    by 0x4E721D5: inode_table_new (inode.c:1641)
==43216==    by 0x15096890: server_setvolume (server-handshake.c:740)
==43216==    by 0x514731B: rpcsvc_handle_rpc_call (rpcsvc.c:701)
==43216==    by 0x514766E: rpcsvc_notify (rpcsvc.c:795)
==43216==    by 0x514CD1D: rpc_transport_notify (rpc-transport.c:541)
==43216==    by 0xFEA9D43: socket_event_poll_in (socket.c:2267)
==43216==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==43216==    by 0x4ECB1D7: event_dispatch_epoll_handler (event-epoll.c:571)
==43216== 
==43216== 1,476 bytes in 9 blocks are definitely lost in loss record 653 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0x4E908B0: mem_get (mem-pool.c:513)
==43216==    by 0x4E906CE: mem_get0 (mem-pool.c:446)
==43216==    by 0x4E53E07: get_new_data (dict.c:40)
==43216==    by 0x4E55E84: bin_to_data (dict.c:915)
==43216==    by 0x4E58754: dict_set_bin_common (dict.c:2280)
==43216==    by 0x4E587F6: dict_set_bin (dict.c:2302)
==43216==    by 0x1218E0F3: _posix_xattr_get_set_from_backend (posix-helpers.c:242)
==43216==    by 0x1218ED84: _posix_xattr_get_set (posix-helpers.c:516)
==43216==    by 0x4E56B26: dict_foreach_match (dict.c:1236)
==43216==    by 0x4E56A12: dict_foreach (dict.c:1194)
==43216== 
==43216== 1,496 bytes in 17 blocks are possibly lost in loss record 654 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0x4EA138B: glusterfs_xlator_link (graph.c:80)
==43216==    by 0x4EE9B54: volume_sub (graph.y:300)
==43216==    by 0x4EE8D86: graphyyparse (graph.y:73)
==43216==    by 0x4EEA75C: glusterfs_graph_construct (graph.y:590)
==43216==    by 0x40A211: glusterfs_process_volfp (glusterfsd.c:2305)
==43216==    by 0x40ECA5: mgmt_getspec_cbk (glusterfsd-mgmt.c:1648)
==43216==    by 0x51505D2: rpc_clnt_handle_reply (rpc-clnt.c:791)
==43216==    by 0x5150B34: rpc_clnt_notify (rpc-clnt.c:971)
==43216==    by 0x514CD1D: rpc_transport_notify (rpc-transport.c:541)
==43216==    by 0xFEA9D43: socket_event_poll_in (socket.c:2267)
==43216== 
==43216== 1,496 bytes in 17 blocks are possibly lost in loss record 655 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0x4EA13BB: glusterfs_xlator_link (graph.c:85)
==43216==    by 0x4EE9B54: volume_sub (graph.y:300)
==43216==    by 0x4EE8D86: graphyyparse (graph.y:73)
==43216==    by 0x4EEA75C: glusterfs_graph_construct (graph.y:590)
==43216==    by 0x40A211: glusterfs_process_volfp (glusterfsd.c:2305)
==43216==    by 0x40ECA5: mgmt_getspec_cbk (glusterfsd-mgmt.c:1648)
==43216==    by 0x51505D2: rpc_clnt_handle_reply (rpc-clnt.c:791)
==43216==    by 0x5150B34: rpc_clnt_notify (rpc-clnt.c:971)
==43216==    by 0x514CD1D: rpc_transport_notify (rpc-transport.c:541)
==43216==    by 0xFEA9D43: socket_event_poll_in (socket.c:2267)
==43216== 
==43216== 1,536 (528 direct, 1,008 indirect) bytes in 1 blocks are definitely lost in loss record 657 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0x4E6FF22: __inode_create (inode.c:614)
==43216==    by 0x4E7004E: inode_new (inode.c:647)
==43216==    by 0x1506A05F: server_inode_new (server-helpers.c:1314)
==43216==    by 0x150877CF: server_lookup_resume (server-rpc-fops.c:3108)
==43216==    by 0x15064DE8: server_resolve_done (server-resolve.c:590)
==43216==    by 0x15064EE9: server_resolve_all (server-resolve.c:625)
==43216==    by 0x15064D8F: server_resolve (server-resolve.c:574)
==43216==    by 0x15064EC0: server_resolve_all (server-resolve.c:621)
==43216==    by 0x150646EA: server_resolve_entry (server-resolve.c:368)
==43216==    by 0x15064CAF: server_resolve (server-resolve.c:558)
==43216== 
==43216== 1,583 bytes in 18 blocks are possibly lost in loss record 659 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0x4EE88A9: gf_strdup (mem-pool.h:187)
==43216==    by 0x4EE946D: new_volume (graph.y:160)
==43216==    by 0x4EE8CE5: graphyyparse (graph.y:52)
==43216==    by 0x4EEA75C: glusterfs_graph_construct (graph.y:590)
==43216==    by 0x40A211: glusterfs_process_volfp (glusterfsd.c:2305)
==43216==    by 0x40ECA5: mgmt_getspec_cbk (glusterfsd-mgmt.c:1648)
==43216==    by 0x51505D2: rpc_clnt_handle_reply (rpc-clnt.c:791)
==43216==    by 0x5150B34: rpc_clnt_notify (rpc-clnt.c:971)
==43216==    by 0x514CD1D: rpc_transport_notify (rpc-transport.c:541)
==43216==    by 0xFEA9D43: socket_event_poll_in (socket.c:2267)
==43216== 
==43216== 1,616 bytes in 18 blocks are possibly lost in loss record 660 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0x4E5A1B5: gf_strdup (mem-pool.h:187)
==43216==    by 0x4E5ABB2: xlator_set_type_virtual (xlator.c:110)
==43216==    by 0x4E5B626: xlator_set_type (xlator.c:293)
==43216==    by 0x4EE9691: volume_type (graph.y:207)
==43216==    by 0x4EE8D17: graphyyparse (graph.y:63)
==43216==    by 0x4EEA75C: glusterfs_graph_construct (graph.y:590)
==43216==    by 0x40A211: glusterfs_process_volfp (glusterfsd.c:2305)
==43216==    by 0x40ECA5: mgmt_getspec_cbk (glusterfsd-mgmt.c:1648)
==43216==    by 0x51505D2: rpc_clnt_handle_reply (rpc-clnt.c:791)
==43216==    by 0x5150B34: rpc_clnt_notify (rpc-clnt.c:971)
==43216== 
==43216== 1,712 bytes in 1 blocks are possibly lost in loss record 665 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0xFEADF05: init_openssl_mt (socket.c:3791)
==43216==    by 0x400F1E2: _dl_init (in /usr/lib64/ld-2.17.so)
==43216==    by 0x40138F5: dl_open_worker (in /usr/lib64/ld-2.17.so)
==43216==    by 0x400EFF3: _dl_catch_error (in /usr/lib64/ld-2.17.so)
==43216==    by 0x4012FEA: _dl_open (in /usr/lib64/ld-2.17.so)
==43216==    by 0x5EA7FBA: dlopen_doit (in /usr/lib64/libdl-2.17.so)
==43216==    by 0x400EFF3: _dl_catch_error (in /usr/lib64/ld-2.17.so)
==43216==    by 0x5EA85BC: _dlerror_run (in /usr/lib64/libdl-2.17.so)
==43216==    by 0x5EA8050: dlopen@@GLIBC_2.2.5 (in /usr/lib64/libdl-2.17.so)
==43216==    by 0x514C026: rpc_transport_load (rpc-transport.c:285)
==43216== 
==43216== 1,728 bytes in 18 blocks are possibly lost in loss record 666 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0x4E5B515: xlator_dynload (xlator.c:263)
==43216==    by 0x4E5B63B: xlator_set_type (xlator.c:295)
==43216==    by 0x4EE9691: volume_type (graph.y:207)
==43216==    by 0x4EE8D17: graphyyparse (graph.y:63)
==43216==    by 0x4EEA75C: glusterfs_graph_construct (graph.y:590)
==43216==    by 0x40A211: glusterfs_process_volfp (glusterfsd.c:2305)
==43216==    by 0x40ECA5: mgmt_getspec_cbk (glusterfsd-mgmt.c:1648)
==43216==    by 0x51505D2: rpc_clnt_handle_reply (rpc-clnt.c:791)
==43216==    by 0x5150B34: rpc_clnt_notify (rpc-clnt.c:971)
==43216==    by 0x514CD1D: rpc_transport_notify (rpc-transport.c:541)
==43216== 
==43216== 1,824 bytes in 3 blocks are possibly lost in loss record 667 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4011C24: _dl_allocate_tls (in /usr/lib64/ld-2.17.so)
==43216==    by 0x60B3960: pthread_create@@GLIBC_2.2.5 (in /usr/lib64/libpthread-2.17.so)
==43216==    by 0x132DD8DE: changelog_init_rpc_threads (changelog-rpc.c:112)
==43216==    by 0x132DDB5E: changelog_init_rpc_listner (changelog-rpc.c:169)
==43216==    by 0x132D6D70: changelog_init_rpc (changelog.c:2768)
==43216==    by 0x132D71B1: init (changelog.c:2850)
==43216==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==43216==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==43216==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==43216==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==43216==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==43216== 
==43216== 1,848 bytes in 1 blocks are possibly lost in loss record 669 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0x4E93338: iobuf_pool_new (iobuf.c:396)
==43216==    by 0x4084EF: glusterfs_ctx_defaults_init (glusterfsd.c:1473)
==43216==    by 0x40A5BC: main (glusterfsd.c:2413)
==43216== 
==43216== 1,924 bytes in 1 blocks are possibly lost in loss record 670 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0x4E908B0: mem_get (mem-pool.c:513)
==43216==    by 0x4E906CE: mem_get0 (mem-pool.c:446)
==43216==    by 0x4E9921D: create_frame (stack.c:25)
==43216==    by 0x41068B: glusterfs_mgmt_pmap_signout (glusterfsd-mgmt.c:2380)
==43216==    by 0x4080C9: cleanup_and_exit (glusterfsd.c:1333)
==43216==    by 0x409C1A: glusterfs_sigwaiter (glusterfsd.c:2102)
==43216==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==43216==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==43216== 
==43216== 1,924 bytes in 1 blocks are definitely lost in loss record 671 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0x4E908B0: mem_get (mem-pool.c:513)
==43216==    by 0x4E906CE: mem_get0 (mem-pool.c:446)
==43216==    by 0x4E9921D: create_frame (stack.c:25)
==43216==    by 0x4EA5156: synctask_create (syncop.c:472)
==43216==    by 0x4EA55AE: synctask_new1 (syncop.c:576)
==43216==    by 0x143AE0D7: mq_synctask1 (marker-quota.c:1078)
==43216==    by 0x143AE199: mq_synctask (marker-quota.c:1097)
==43216==    by 0x143AE6F6: _mq_create_xattrs_txn (marker-quota.c:1236)
==43216==    by 0x143AE82D: mq_create_xattrs_txn (marker-quota.c:1253)
==43216==    by 0x143B0DCB: mq_inspect_directory_xattr (marker-quota.c:2027)
==43216== 
==43216== 2,120 bytes in 1 blocks are possibly lost in loss record 673 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0x4EC687D: gf_client_clienttable_expand (client_t.c:61)
==43216==    by 0x4EC69A8: gf_clienttable_alloc (client_t.c:104)
==43216==    by 0x408998: glusterfs_ctx_defaults_init (glusterfsd.c:1536)
==43216==    by 0x40A5BC: main (glusterfsd.c:2413)
==43216== 
==43216== 2,398 bytes in 4 blocks are definitely lost in loss record 679 of 755
==43216==    at 0x4C27BE3: malloc (vg_replace_malloc.c:299)
==43216==    by 0x4E8FB45: __gf_malloc (mem-pool.c:142)
==43216==    by 0x150942FC: memdup (common-utils.h:614)
==43216==    by 0x15095922: server_setvolume (server-handshake.c:472)
==43216==    by 0x514731B: rpcsvc_handle_rpc_call (rpcsvc.c:701)
==43216==    by 0x514766E: rpcsvc_notify (rpcsvc.c:795)
==43216==    by 0x514CD1D: rpc_transport_notify (rpc-transport.c:541)
==43216==    by 0xFEA9D43: socket_event_poll_in (socket.c:2267)
==43216==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==43216==    by 0x4ECB1D7: event_dispatch_epoll_handler (event-epoll.c:571)
==43216==    by 0x4ECB5F4: event_dispatch_epoll_worker (event-epoll.c:674)
==43216==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==43216== 
==43216== 2,640 bytes in 5 blocks are possibly lost in loss record 681 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0xFEAE076: socket_init (socket.c:3833)
==43216==    by 0xFEAB118: socket_server_event_handler (socket.c:2723)
==43216==    by 0x4ECB1D7: event_dispatch_epoll_handler (event-epoll.c:571)
==43216==    by 0x4ECB5F4: event_dispatch_epoll_worker (event-epoll.c:674)
==43216==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==43216==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==43216== 
==43216== 2,872 bytes in 1 blocks are possibly lost in loss record 683 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0x514BC0C: rpc_transport_load (rpc-transport.c:187)
==43216==    by 0x5149213: rpcsvc_create_listener (rpcsvc.c:1664)
==43216==    by 0x514955C: rpcsvc_create_listeners (rpcsvc.c:1757)
==43216==    by 0x40F98A: glusterfs_listener_init (glusterfsd-mgmt.c:2037)
==43216==    by 0x40A3EC: glusterfs_volumes_init (glusterfsd.c:2359)
==43216==    by 0x40A892: main (glusterfsd.c:2488)
==43216== 
==43216== 2,872 bytes in 1 blocks are possibly lost in loss record 684 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0x514BC0C: rpc_transport_load (rpc-transport.c:187)
==43216==    by 0x5150E30: rpc_clnt_connection_init (rpc-clnt.c:1067)
==43216==    by 0x5151169: rpc_clnt_new (rpc-clnt.c:1159)
==43216==    by 0x40FE46: glusterfs_mgmt_init (glusterfsd-mgmt.c:2157)
==43216==    by 0x40A412: glusterfs_volumes_init (glusterfsd.c:2365)
==43216==    by 0x40A892: main (glusterfsd.c:2488)
==43216== 
==43216== 2,872 bytes in 1 blocks are possibly lost in loss record 685 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0x514BC0C: rpc_transport_load (rpc-transport.c:187)
==43216==    by 0x5149213: rpcsvc_create_listener (rpcsvc.c:1664)
==43216==    by 0x514955C: rpcsvc_create_listeners (rpcsvc.c:1757)
==43216==    by 0x1506250B: init (server.c:1056)
==43216==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==43216==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==43216==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==43216==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==43216==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==43216==    by 0x40ECA5: mgmt_getspec_cbk (glusterfsd-mgmt.c:1648)
==43216== 
==43216== 2,872 bytes in 1 blocks are possibly lost in loss record 686 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0x514BC0C: rpc_transport_load (rpc-transport.c:187)
==43216==    by 0x5150E30: rpc_clnt_connection_init (rpc-clnt.c:1067)
==43216==    by 0x5151169: rpc_clnt_new (rpc-clnt.c:1159)
==43216==    by 0x14A014DE: quota_enforcer_init (quota-enforcer-client.c:451)
==43216==    by 0x149FF51D: init (quota.c:5127)
==43216==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==43216==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==43216==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==43216==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==43216==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==43216== 
==43216== 2,872 bytes in 1 blocks are possibly lost in loss record 687 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0x514BC0C: rpc_transport_load (rpc-transport.c:187)
==43216==    by 0x5149213: rpcsvc_create_listener (rpcsvc.c:1664)
==43216==    by 0x514955C: rpcsvc_create_listeners (rpcsvc.c:1757)
==43216==    by 0x132DF1E6: changelog_rpc_server_init (changelog-rpc-common.c:318)
==43216==    by 0x132DDC27: changelog_init_rpc_listner (changelog-rpc.c:175)
==43216==    by 0x132D6D70: changelog_init_rpc (changelog.c:2768)
==43216==    by 0x132D71B1: init (changelog.c:2850)
==43216==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==43216==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==43216==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==43216== 
==43216== 2,880 bytes in 8 blocks are possibly lost in loss record 688 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0x4E929B4: __iobuf_arena_alloc (iobuf.c:174)
==43216==    by 0x4E92E47: __iobuf_pool_add_arena (iobuf.c:272)
==43216==    by 0x4E92F7E: iobuf_pool_add_arena (iobuf.c:297)
==43216==    by 0x4E93595: iobuf_pool_new (iobuf.c:425)
==43216==    by 0x4084EF: glusterfs_ctx_defaults_init (glusterfsd.c:1473)
==43216==    by 0x40A5BC: main (glusterfsd.c:2413)
==43216== 
==43216== 3,859 bytes in 1 blocks are possibly lost in loss record 694 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0x40ECFE: mgmt_getspec_cbk (glusterfsd-mgmt.c:1657)
==43216==    by 0x51505D2: rpc_clnt_handle_reply (rpc-clnt.c:791)
==43216==    by 0x5150B34: rpc_clnt_notify (rpc-clnt.c:971)
==43216==    by 0x514CD1D: rpc_transport_notify (rpc-transport.c:541)
==43216==    by 0xFEA9D43: socket_event_poll_in (socket.c:2267)
==43216==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==43216==    by 0x4ECB1D7: event_dispatch_epoll_handler (event-epoll.c:571)
==43216==    by 0x4ECB5F4: event_dispatch_epoll_worker (event-epoll.c:674)
==43216==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==43216==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==43216== 
==43216== 4,104 bytes in 1 blocks are possibly lost in loss record 695 of 755
==43216==    at 0x4C27BE3: malloc (vg_replace_malloc.c:299)
==43216==    by 0x130402E6: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==43216==    by 0x1301B6A9: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==43216==    by 0x13023A25: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==43216==    by 0x130264EA: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==43216==    by 0x13026A77: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==43216==    by 0x13059BEA: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==43216==    by 0x1309E1B6: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==43216==    by 0x12E01B48: gf_open_sqlite3_conn (gfdb_sqlite3.c:192)
==43216==    by 0x12E02CAF: gf_sqlite3_init (gfdb_sqlite3.c:440)
==43216==    by 0x12DF97B5: init_db (gfdb_data_store.c:270)
==43216==    by 0x12BEA41F: init (changetimerecorder.c:2118)
==43216== 
==43216== 4,168 bytes in 1 blocks are possibly lost in loss record 696 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0x129BE672: trash_notify_getxattr_cbk (trash.c:309)
==43216==    by 0x12181475: posix_getxattr (posix.c:4768)
==43216==    by 0x129BEBCE: trash_notify_lookup_cbk (trash.c:359)
==43216==    by 0x121659B6: posix_lookup (posix.c:270)
==43216==    by 0x129CF3F7: notify (trash.c:2187)
==43216==    by 0x4E5BEC3: xlator_notify (xlator.c:496)
==43216==    by 0x4F12DCF: default_notify (defaults.c:3114)
==43216==    by 0x1218A501: notify (posix.c:6596)
==43216==    by 0x4E5BEC3: xlator_notify (xlator.c:496)
==43216==    by 0x4F12CE8: default_notify (defaults.c:3090)
==43216== 
==43216== 4,216 bytes in 1 blocks are possibly lost in loss record 697 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0x12E016FA: gf_sql_connection_init (gfdb_sqlite3.c:26)
==43216==    by 0x12E02BAA: gf_sqlite3_init (gfdb_sqlite3.c:424)
==43216==    by 0x12DF97B5: init_db (gfdb_data_store.c:270)
==43216==    by 0x12BEA41F: init (changetimerecorder.c:2118)
==43216==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==43216==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==43216==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==43216==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==43216==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==43216==    by 0x40ECA5: mgmt_getspec_cbk (glusterfsd-mgmt.c:1648)
==43216== 
==43216== 4,347 bytes in 52 blocks are definitely lost in loss record 698 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0x4EE88A9: gf_strdup (mem-pool.h:187)
==43216==    by 0x4EE9822: volume_option (graph.y:240)
==43216==    by 0x4EE8D57: graphyyparse (graph.y:69)
==43216==    by 0x4EEA75C: glusterfs_graph_construct (graph.y:590)
==43216==    by 0x40A211: glusterfs_process_volfp (glusterfsd.c:2305)
==43216==    by 0x40ECA5: mgmt_getspec_cbk (glusterfsd-mgmt.c:1648)
==43216==    by 0x51505D2: rpc_clnt_handle_reply (rpc-clnt.c:791)
==43216==    by 0x5150B34: rpc_clnt_notify (rpc-clnt.c:971)
==43216==    by 0x514CD1D: rpc_transport_notify (rpc-transport.c:541)
==43216==    by 0xFEA9D43: socket_event_poll_in (socket.c:2267)
==43216== 
==43216== 4,392 bytes in 18 blocks are possibly lost in loss record 699 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0x4E908B0: mem_get (mem-pool.c:513)
==43216==    by 0x4E906CE: mem_get0 (mem-pool.c:446)
==43216==    by 0x4E53E86: get_new_dict_full (dict.c:52)
==43216==    by 0x4E53F7C: get_new_dict (dict.c:95)
==43216==    by 0x4EE94B4: new_volume (graph.y:167)
==43216==    by 0x4EE8CE5: graphyyparse (graph.y:52)
==43216==    by 0x4EEA75C: glusterfs_graph_construct (graph.y:590)
==43216==    by 0x40A211: glusterfs_process_volfp (glusterfsd.c:2305)
==43216==    by 0x40ECA5: mgmt_getspec_cbk (glusterfsd-mgmt.c:1648)
==43216==    by 0x51505D2: rpc_clnt_handle_reply (rpc-clnt.c:791)
==43216== 
==43216== 4,652 bytes in 54 blocks are definitely lost in loss record 700 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0x4E5499E: dict_set_lk (dict.c:378)
==43216==    by 0x4E54C7F: dict_add (dict.c:446)
==43216==    by 0x4E5967D: dict_unserialize (dict.c:2740)
==43216==    by 0x1509595A: server_setvolume (server-handshake.c:479)
==43216==    by 0x514731B: rpcsvc_handle_rpc_call (rpcsvc.c:701)
==43216==    by 0x514766E: rpcsvc_notify (rpcsvc.c:795)
==43216==    by 0x514CD1D: rpc_transport_notify (rpc-transport.c:541)
==43216==    by 0xFEA9D43: socket_event_poll_in (socket.c:2267)
==43216==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==43216==    by 0x4ECB1D7: event_dispatch_epoll_handler (event-epoll.c:571)
==43216== 
==43216== 4,786 bytes in 54 blocks are definitely lost in loss record 701 of 755
==43216==    at 0x4C27BE3: malloc (vg_replace_malloc.c:299)
==43216==    by 0x4E8FB45: __gf_malloc (mem-pool.c:142)
==43216==    by 0x4E5370F: memdup (common-utils.h:614)
==43216==    by 0x4E59646: dict_unserialize (dict.c:2736)
==43216==    by 0x1509595A: server_setvolume (server-handshake.c:479)
==43216==    by 0x514731B: rpcsvc_handle_rpc_call (rpcsvc.c:701)
==43216==    by 0x514766E: rpcsvc_notify (rpcsvc.c:795)
==43216==    by 0x514CD1D: rpc_transport_notify (rpc-transport.c:541)
==43216==    by 0xFEA9D43: socket_event_poll_in (socket.c:2267)
==43216==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==43216==    by 0x4ECB1D7: event_dispatch_epoll_handler (event-epoll.c:571)
==43216==    by 0x4ECB5F4: event_dispatch_epoll_worker (event-epoll.c:674)
==43216== 
==43216== 4,849 bytes in 55 blocks are definitely lost in loss record 702 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0x4E5499E: dict_set_lk (dict.c:378)
==43216==    by 0x4E54B82: dict_set (dict.c:424)
==43216==    by 0x4E585B1: dict_set_dynstr (dict.c:2205)
==43216==    by 0x4EE9847: volume_option (graph.y:241)
==43216==    by 0x4EE8D57: graphyyparse (graph.y:69)
==43216==    by 0x4EEA75C: glusterfs_graph_construct (graph.y:590)
==43216==    by 0x40A211: glusterfs_process_volfp (glusterfsd.c:2305)
==43216==    by 0x40ECA5: mgmt_getspec_cbk (glusterfsd-mgmt.c:1648)
==43216==    by 0x51505D2: rpc_clnt_handle_reply (rpc-clnt.c:791)
==43216==    by 0x5150B34: rpc_clnt_notify (rpc-clnt.c:971)
==43216== 
==43216== 5,600 bytes in 40 blocks are definitely lost in loss record 705 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0x4E908B0: mem_get (mem-pool.c:513)
==43216==    by 0x4E906CE: mem_get0 (mem-pool.c:446)
==43216==    by 0x4E54919: dict_set_lk (dict.c:360)
==43216==    by 0x4E54B82: dict_set (dict.c:424)
==43216==    by 0x4E585B1: dict_set_dynstr (dict.c:2205)
==43216==    by 0x4EE9847: volume_option (graph.y:241)
==43216==    by 0x4EE8D57: graphyyparse (graph.y:69)
==43216==    by 0x4EEA75C: glusterfs_graph_construct (graph.y:590)
==43216==    by 0x40A211: glusterfs_process_volfp (glusterfsd.c:2305)
==43216==    by 0x40ECA5: mgmt_getspec_cbk (glusterfsd-mgmt.c:1648)
==43216== 
==43216== 5,772 bytes in 3 blocks are possibly lost in loss record 706 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0x4E908B0: mem_get (mem-pool.c:513)
==43216==    by 0x4E906CE: mem_get0 (mem-pool.c:446)
==43216==    by 0x4E9921D: create_frame (stack.c:25)
==43216==    by 0x4EA5156: synctask_create (syncop.c:472)
==43216==    by 0x4EA55AE: synctask_new1 (syncop.c:576)
==43216==    by 0x143AE0D7: mq_synctask1 (marker-quota.c:1078)
==43216==    by 0x143AE199: mq_synctask (marker-quota.c:1097)
==43216==    by 0x143AE6F6: _mq_create_xattrs_txn (marker-quota.c:1236)
==43216==    by 0x143AE82D: mq_create_xattrs_txn (marker-quota.c:1253)
==43216==    by 0x143B0DCB: mq_inspect_directory_xattr (marker-quota.c:2027)
==43216== 
==43216== 6,424 bytes in 1 blocks are possibly lost in loss record 707 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0x14C27FEB: init (io-stats.c:3643)
==43216==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==43216==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==43216==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==43216==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==43216==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==43216==    by 0x40ECA5: mgmt_getspec_cbk (glusterfsd-mgmt.c:1648)
==43216==    by 0x51505D2: rpc_clnt_handle_reply (rpc-clnt.c:791)
==43216==    by 0x5150B34: rpc_clnt_notify (rpc-clnt.c:971)
==43216==    by 0x514CD1D: rpc_transport_notify (rpc-transport.c:541)
==43216== 
==43216== 7,000 bytes in 50 blocks are definitely lost in loss record 709 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0x4E908B0: mem_get (mem-pool.c:513)
==43216==    by 0x4E906CE: mem_get0 (mem-pool.c:446)
==43216==    by 0x4E54919: dict_set_lk (dict.c:360)
==43216==    by 0x4E54C7F: dict_add (dict.c:446)
==43216==    by 0x4E5967D: dict_unserialize (dict.c:2740)
==43216==    by 0x1509595A: server_setvolume (server-handshake.c:479)
==43216==    by 0x514731B: rpcsvc_handle_rpc_call (rpcsvc.c:701)
==43216==    by 0x514766E: rpcsvc_notify (rpcsvc.c:795)
==43216==    by 0x514CD1D: rpc_transport_notify (rpc-transport.c:541)
==43216==    by 0xFEA9D43: socket_event_poll_in (socket.c:2267)
==43216== 
==43216== 8,480 bytes in 4 blocks are possibly lost in loss record 711 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0x4E8BDB8: gf_fd_fdtable_expand (fd.c:72)
==43216==    by 0x4E8BEBB: gf_fd_fdtable_alloc (fd.c:113)
==43216==    by 0x15069B32: server_ctx_get (server-helpers.c:1184)
==43216==    by 0x15069969: server_cancel_grace_timer (server-helpers.c:1136)
==43216==    by 0x15095C21: server_setvolume (server-handshake.c:532)
==43216==    by 0x514731B: rpcsvc_handle_rpc_call (rpcsvc.c:701)
==43216==    by 0x514766E: rpcsvc_notify (rpcsvc.c:795)
==43216==    by 0x514CD1D: rpc_transport_notify (rpc-transport.c:541)
==43216==    by 0xFEA9D43: socket_event_poll_in (socket.c:2267)
==43216==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==43216== 
==43216== 8,528 bytes in 1 blocks are possibly lost in loss record 712 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0x134EF2B0: init (bit-rot-stub.c:131)
==43216==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==43216==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==43216==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==43216==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==43216==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==43216==    by 0x40ECA5: mgmt_getspec_cbk (glusterfsd-mgmt.c:1648)
==43216==    by 0x51505D2: rpc_clnt_handle_reply (rpc-clnt.c:791)
==43216==    by 0x5150B34: rpc_clnt_notify (rpc-clnt.c:971)
==43216==    by 0x514CD1D: rpc_transport_notify (rpc-transport.c:541)
==43216== 
==43216== 8,856 bytes in 54 blocks are definitely lost in loss record 713 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0x4E908B0: mem_get (mem-pool.c:513)
==43216==    by 0x4E906CE: mem_get0 (mem-pool.c:446)
==43216==    by 0x4E53E07: get_new_data (dict.c:40)
==43216==    by 0x4E55D8E: data_from_dynstr (dict.c:882)
==43216==    by 0x4E58586: dict_set_dynstr (dict.c:2199)
==43216==    by 0x4EE9847: volume_option (graph.y:241)
==43216==    by 0x4EE8D57: graphyyparse (graph.y:69)
==43216==    by 0x4EEA75C: glusterfs_graph_construct (graph.y:590)
==43216==    by 0x40A211: glusterfs_process_volfp (glusterfsd.c:2305)
==43216==    by 0x40ECA5: mgmt_getspec_cbk (glusterfsd-mgmt.c:1648)
==43216== 
==43216== 8,856 bytes in 54 blocks are definitely lost in loss record 714 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0x4E908B0: mem_get (mem-pool.c:513)
==43216==    by 0x4E906CE: mem_get0 (mem-pool.c:446)
==43216==    by 0x4E53E07: get_new_data (dict.c:40)
==43216==    by 0x4E59613: dict_unserialize (dict.c:2729)
==43216==    by 0x1509595A: server_setvolume (server-handshake.c:479)
==43216==    by 0x514731B: rpcsvc_handle_rpc_call (rpcsvc.c:701)
==43216==    by 0x514766E: rpcsvc_notify (rpcsvc.c:795)
==43216==    by 0x514CD1D: rpc_transport_notify (rpc-transport.c:541)
==43216==    by 0xFEA9D43: socket_event_poll_in (socket.c:2267)
==43216==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==43216== 
==43216== 12,066 (1,584 direct, 10,482 indirect) bytes in 3 blocks are definitely lost in loss record 715 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0x4E6FF22: __inode_create (inode.c:614)
==43216==    by 0x4E7004E: inode_new (inode.c:647)
==43216==    by 0x1506A05F: server_inode_new (server-helpers.c:1314)
==43216==    by 0x15063F03: resolve_gfid (server-resolve.c:208)
==43216==    by 0x1506484F: server_resolve_inode (server-resolve.c:421)
==43216==    by 0x15064CD4: server_resolve (server-resolve.c:562)
==43216==    by 0x15064E6B: server_resolve_all (server-resolve.c:614)
==43216==    by 0x15064F80: resolve_and_resume (server-resolve.c:645)
==43216==    by 0x15093491: server3_3_lookup (server-rpc-fops.c:6513)
==43216==    by 0x514731B: rpcsvc_handle_rpc_call (rpcsvc.c:701)
==43216== 
==43216== 12,296 bytes in 1 blocks are possibly lost in loss record 716 of 755
==43216==    at 0x4C27BE3: malloc (vg_replace_malloc.c:299)
==43216==    by 0x4E5A12B: __gf_default_malloc (mem-pool.h:108)
==43216==    by 0x4E5BF6C: xlator_mem_acct_init (xlator.c:520)
==43216==    by 0x14E5365F: mem_acct_init (decompounder.c:920)
==43216==    by 0x4E5BB06: xlator_init (xlator.c:419)
==43216==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==43216==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==43216==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==43216==    by 0x40ECA5: mgmt_getspec_cbk (glusterfsd-mgmt.c:1648)
==43216==    by 0x51505D2: rpc_clnt_handle_reply (rpc-clnt.c:791)
==43216==    by 0x5150B34: rpc_clnt_notify (rpc-clnt.c:971)
==43216==    by 0x514CD1D: rpc_transport_notify (rpc-transport.c:541)
==43216== 
==43216== 12,296 bytes in 1 blocks are possibly lost in loss record 717 of 755
==43216==    at 0x4C27BE3: malloc (vg_replace_malloc.c:299)
==43216==    by 0x4E5A12B: __gf_default_malloc (mem-pool.h:108)
==43216==    by 0x4E5BF6C: xlator_mem_acct_init (xlator.c:520)
==43216==    by 0x145C366F: mem_acct_init (barrier.c:600)
==43216==    by 0x4E5BB06: xlator_init (xlator.c:419)
==43216==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==43216==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==43216==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==43216==    by 0x40ECA5: mgmt_getspec_cbk (glusterfsd-mgmt.c:1648)
==43216==    by 0x51505D2: rpc_clnt_handle_reply (rpc-clnt.c:791)
==43216==    by 0x5150B34: rpc_clnt_notify (rpc-clnt.c:971)
==43216==    by 0x514CD1D: rpc_transport_notify (rpc-transport.c:541)
==43216== 
==43216== 12,296 bytes in 1 blocks are possibly lost in loss record 718 of 755
==43216==    at 0x4C27BE3: malloc (vg_replace_malloc.c:299)
==43216==    by 0x4E5A12B: __gf_default_malloc (mem-pool.h:108)
==43216==    by 0x4E5BF6C: xlator_mem_acct_init (xlator.c:520)
==43216==    by 0x13D560A8: mem_acct_init (read-only.c:20)
==43216==    by 0x4E5BB06: xlator_init (xlator.c:419)
==43216==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==43216==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==43216==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==43216==    by 0x40ECA5: mgmt_getspec_cbk (glusterfsd-mgmt.c:1648)
==43216==    by 0x51505D2: rpc_clnt_handle_reply (rpc-clnt.c:791)
==43216==    by 0x5150B34: rpc_clnt_notify (rpc-clnt.c:971)
==43216==    by 0x514CD1D: rpc_transport_notify (rpc-transport.c:541)
==43216== 
==43216== 12,296 bytes in 1 blocks are possibly lost in loss record 719 of 755
==43216==    at 0x4C27BE3: malloc (vg_replace_malloc.c:299)
==43216==    by 0x4E5A12B: __gf_default_malloc (mem-pool.h:108)
==43216==    by 0x4E5BF6C: xlator_mem_acct_init (xlator.c:520)
==43216==    by 0x13B4D8D0: mem_acct_init (worm.c:24)
==43216==    by 0x4E5BB06: xlator_init (xlator.c:419)
==43216==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==43216==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==43216==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==43216==    by 0x40ECA5: mgmt_getspec_cbk (glusterfsd-mgmt.c:1648)
==43216==    by 0x51505D2: rpc_clnt_handle_reply (rpc-clnt.c:791)
==43216==    by 0x5150B34: rpc_clnt_notify (rpc-clnt.c:971)
==43216==    by 0x514CD1D: rpc_transport_notify (rpc-transport.c:541)
==43216== 
==43216== 12,536 bytes in 1 blocks are possibly lost in loss record 720 of 755
==43216==    at 0x4C27BE3: malloc (vg_replace_malloc.c:299)
==43216==    by 0x4E5A12B: __gf_default_malloc (mem-pool.h:108)
==43216==    by 0x4E5BF6C: xlator_mem_acct_init (xlator.c:520)
==43216==    by 0x147D5615: mem_acct_init (index.c:2261)
==43216==    by 0x4E5BB06: xlator_init (xlator.c:419)
==43216==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==43216==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==43216==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==43216==    by 0x40ECA5: mgmt_getspec_cbk (glusterfsd-mgmt.c:1648)
==43216==    by 0x51505D2: rpc_clnt_handle_reply (rpc-clnt.c:791)
==43216==    by 0x5150B34: rpc_clnt_notify (rpc-clnt.c:971)
==43216==    by 0x514CD1D: rpc_transport_notify (rpc-transport.c:541)
==43216== 
==43216== 12,536 bytes in 1 blocks are possibly lost in loss record 721 of 755
==43216==    at 0x4C27BE3: malloc (vg_replace_malloc.c:299)
==43216==    by 0x4E5A12B: __gf_default_malloc (mem-pool.h:108)
==43216==    by 0x4E5BF6C: xlator_mem_acct_init (xlator.c:520)
==43216==    by 0x1418A333: mem_acct_init (upcall.c:1589)
==43216==    by 0x4E5BB06: xlator_init (xlator.c:419)
==43216==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==43216==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==43216==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==43216==    by 0x40ECA5: mgmt_getspec_cbk (glusterfsd-mgmt.c:1648)
==43216==    by 0x51505D2: rpc_clnt_handle_reply (rpc-clnt.c:791)
==43216==    by 0x5150B34: rpc_clnt_notify (rpc-clnt.c:971)
==43216==    by 0x514CD1D: rpc_transport_notify (rpc-transport.c:541)
==43216== 
==43216== 12,536 bytes in 1 blocks are possibly lost in loss record 722 of 755
==43216==    at 0x4C27BE3: malloc (vg_replace_malloc.c:299)
==43216==    by 0x4E5A12B: __gf_default_malloc (mem-pool.h:108)
==43216==    by 0x4E5BF6C: xlator_mem_acct_init (xlator.c:520)
==43216==    by 0x13706EC1: mem_acct_init (posix-acl.c:33)
==43216==    by 0x4E5BB06: xlator_init (xlator.c:419)
==43216==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==43216==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==43216==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==43216==    by 0x40ECA5: mgmt_getspec_cbk (glusterfsd-mgmt.c:1648)
==43216==    by 0x51505D2: rpc_clnt_handle_reply (rpc-clnt.c:791)
==43216==    by 0x5150B34: rpc_clnt_notify (rpc-clnt.c:971)
==43216==    by 0x514CD1D: rpc_transport_notify (rpc-transport.c:541)
==43216== 
==43216== 12,536 bytes in 1 blocks are possibly lost in loss record 723 of 755
==43216==    at 0x4C27BE3: malloc (vg_replace_malloc.c:299)
==43216==    by 0x4E5A12B: __gf_default_malloc (mem-pool.h:108)
==43216==    by 0x4E5BF6C: xlator_mem_acct_init (xlator.c:520)
==43216==    by 0x129D02CD: mem_acct_init (trash.c:2331)
==43216==    by 0x4E5BB06: xlator_init (xlator.c:419)
==43216==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==43216==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==43216==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==43216==    by 0x40ECA5: mgmt_getspec_cbk (glusterfsd-mgmt.c:1648)
==43216==    by 0x51505D2: rpc_clnt_handle_reply (rpc-clnt.c:791)
==43216==    by 0x5150B34: rpc_clnt_notify (rpc-clnt.c:971)
==43216==    by 0x514CD1D: rpc_transport_notify (rpc-transport.c:541)
==43216== 
==43216== 12,616 bytes in 1 blocks are possibly lost in loss record 725 of 755
==43216==    at 0x4C27BE3: malloc (vg_replace_malloc.c:299)
==43216==    by 0x4E5A12B: __gf_default_malloc (mem-pool.h:108)
==43216==    by 0x4E5BF6C: xlator_mem_acct_init (xlator.c:520)
==43216==    by 0x12BEA597: mem_acct_init (changetimerecorder.c:2161)
==43216==    by 0x4E5BB06: xlator_init (xlator.c:419)
==43216==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==43216==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==43216==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==43216==    by 0x40ECA5: mgmt_getspec_cbk (glusterfsd-mgmt.c:1648)
==43216==    by 0x51505D2: rpc_clnt_handle_reply (rpc-clnt.c:791)
==43216==    by 0x5150B34: rpc_clnt_notify (rpc-clnt.c:971)
==43216==    by 0x514CD1D: rpc_transport_notify (rpc-transport.c:541)
==43216== 
==43216== 12,696 bytes in 1 blocks are possibly lost in loss record 726 of 755
==43216==    at 0x4C27BE3: malloc (vg_replace_malloc.c:299)
==43216==    by 0x4E5A12B: __gf_default_malloc (mem-pool.h:108)
==43216==    by 0x4E5BF6C: xlator_mem_acct_init (xlator.c:520)
==43216==    by 0x14C27E04: mem_acct_init (io-stats.c:3587)
==43216==    by 0x4E5BB06: xlator_init (xlator.c:419)
==43216==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==43216==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==43216==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==43216==    by 0x40ECA5: mgmt_getspec_cbk (glusterfsd-mgmt.c:1648)
==43216==    by 0x51505D2: rpc_clnt_handle_reply (rpc-clnt.c:791)
==43216==    by 0x5150B34: rpc_clnt_notify (rpc-clnt.c:971)
==43216==    by 0x514CD1D: rpc_transport_notify (rpc-transport.c:541)
==43216== 
==43216== 12,768 bytes in 1 blocks are possibly lost in loss record 727 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0x4ECA5AB: event_pool_new_epoll (event-epoll.c:243)
==43216==    by 0x4E8EAED: event_pool_new (event.c:37)
==43216==    by 0x40856A: glusterfs_ctx_defaults_init (glusterfsd.c:1479)
==43216==    by 0x40A5BC: main (glusterfsd.c:2413)
==43216== 
==43216== 12,936 bytes in 1 blocks are possibly lost in loss record 728 of 755
==43216==    at 0x4C27BE3: malloc (vg_replace_malloc.c:299)
==43216==    by 0x4E5A12B: __gf_default_malloc (mem-pool.h:108)
==43216==    by 0x4E5BF6C: xlator_mem_acct_init (xlator.c:520)
==43216==    by 0x143A8BAD: mem_acct_init (marker.c:3179)
==43216==    by 0x4E5BB06: xlator_init (xlator.c:419)
==43216==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==43216==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==43216==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==43216==    by 0x40ECA5: mgmt_getspec_cbk (glusterfsd-mgmt.c:1648)
==43216==    by 0x51505D2: rpc_clnt_handle_reply (rpc-clnt.c:791)
==43216==    by 0x5150B34: rpc_clnt_notify (rpc-clnt.c:971)
==43216==    by 0x514CD1D: rpc_transport_notify (rpc-transport.c:541)
==43216== 
==43216== 12,936 bytes in 1 blocks are possibly lost in loss record 729 of 755
==43216==    at 0x4C27BE3: malloc (vg_replace_malloc.c:299)
==43216==    by 0x4E5A12B: __gf_default_malloc (mem-pool.h:108)
==43216==    by 0x4E5BF6C: xlator_mem_acct_init (xlator.c:520)
==43216==    by 0x13F6F45F: mem_acct_init (leases.c:939)
==43216==    by 0x4E5BB06: xlator_init (xlator.c:419)
==43216==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==43216==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==43216==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==43216==    by 0x40ECA5: mgmt_getspec_cbk (glusterfsd-mgmt.c:1648)
==43216==    by 0x51505D2: rpc_clnt_handle_reply (rpc-clnt.c:791)
==43216==    by 0x5150B34: rpc_clnt_notify (rpc-clnt.c:971)
==43216==    by 0x514CD1D: rpc_transport_notify (rpc-transport.c:541)
==43216== 
==43216== 12,936 bytes in 1 blocks are possibly lost in loss record 730 of 755
==43216==    at 0x4C27BE3: malloc (vg_replace_malloc.c:299)
==43216==    by 0x4E5A12B: __gf_default_malloc (mem-pool.h:108)
==43216==    by 0x4E5BF6C: xlator_mem_acct_init (xlator.c:520)
==43216==    by 0x1218A539: mem_acct_init (posix.c:6614)
==43216==    by 0x4E5BB06: xlator_init (xlator.c:419)
==43216==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==43216==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==43216==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==43216==    by 0x40ECA5: mgmt_getspec_cbk (glusterfsd-mgmt.c:1648)
==43216==    by 0x51505D2: rpc_clnt_handle_reply (rpc-clnt.c:791)
==43216==    by 0x5150B34: rpc_clnt_notify (rpc-clnt.c:971)
==43216==    by 0x514CD1D: rpc_transport_notify (rpc-transport.c:541)
==43216== 
==43216== 13,016 bytes in 1 blocks are possibly lost in loss record 731 of 755
==43216==    at 0x4C27BE3: malloc (vg_replace_malloc.c:299)
==43216==    by 0x4E5A12B: __gf_default_malloc (mem-pool.h:108)
==43216==    by 0x4E5BF6C: xlator_mem_acct_init (xlator.c:520)
==43216==    by 0x13934750: mem_acct_init (posix.c:3466)
==43216==    by 0x4E5BB06: xlator_init (xlator.c:419)
==43216==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==43216==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==43216==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==43216==    by 0x40ECA5: mgmt_getspec_cbk (glusterfsd-mgmt.c:1648)
==43216==    by 0x51505D2: rpc_clnt_handle_reply (rpc-clnt.c:791)
==43216==    by 0x5150B34: rpc_clnt_notify (rpc-clnt.c:971)
==43216==    by 0x514CD1D: rpc_transport_notify (rpc-transport.c:541)
==43216== 
==43216== 13,096 bytes in 1 blocks are possibly lost in loss record 732 of 755
==43216==    at 0x4C27BE3: malloc (vg_replace_malloc.c:299)
==43216==    by 0x4E5A12B: __gf_default_malloc (mem-pool.h:108)
==43216==    by 0x4E5BF6C: xlator_mem_acct_init (xlator.c:520)
==43216==    by 0x149FEEA3: mem_acct_init (quota.c:5038)
==43216==    by 0x4E5BB06: xlator_init (xlator.c:419)
==43216==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==43216==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==43216==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==43216==    by 0x40ECA5: mgmt_getspec_cbk (glusterfsd-mgmt.c:1648)
==43216==    by 0x51505D2: rpc_clnt_handle_reply (rpc-clnt.c:791)
==43216==    by 0x5150B34: rpc_clnt_notify (rpc-clnt.c:971)
==43216==    by 0x514CD1D: rpc_transport_notify (rpc-transport.c:541)
==43216== 
==43216== 13,256 bytes in 1 blocks are possibly lost in loss record 733 of 755
==43216==    at 0x4C27BE3: malloc (vg_replace_malloc.c:299)
==43216==    by 0x4E5A12B: __gf_default_malloc (mem-pool.h:108)
==43216==    by 0x4E5BF6C: xlator_mem_acct_init (xlator.c:520)
==43216==    by 0x15060CF6: mem_acct_init (server.c:616)
==43216==    by 0x4E5BB06: xlator_init (xlator.c:419)
==43216==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==43216==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==43216==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==43216==    by 0x40ECA5: mgmt_getspec_cbk (glusterfsd-mgmt.c:1648)
==43216==    by 0x51505D2: rpc_clnt_handle_reply (rpc-clnt.c:791)
==43216==    by 0x5150B34: rpc_clnt_notify (rpc-clnt.c:971)
==43216==    by 0x514CD1D: rpc_transport_notify (rpc-transport.c:541)
==43216== 
==43216== 13,416 bytes in 1 blocks are possibly lost in loss record 734 of 755
==43216==    at 0x4C27BE3: malloc (vg_replace_malloc.c:299)
==43216==    by 0x4E5A12B: __gf_default_malloc (mem-pool.h:108)
==43216==    by 0x4E5BF6C: xlator_mem_acct_init (xlator.c:520)
==43216==    by 0x132D54FB: mem_acct_init (changelog.c:2313)
==43216==    by 0x4E5BB06: xlator_init (xlator.c:419)
==43216==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==43216==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==43216==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==43216==    by 0x40ECA5: mgmt_getspec_cbk (glusterfsd-mgmt.c:1648)
==43216==    by 0x51505D2: rpc_clnt_handle_reply (rpc-clnt.c:791)
==43216==    by 0x5150B34: rpc_clnt_notify (rpc-clnt.c:971)
==43216==    by 0x514CD1D: rpc_transport_notify (rpc-transport.c:541)
==43216== 
==43216== 13,656 bytes in 1 blocks are possibly lost in loss record 735 of 755
==43216==    at 0x4C27BE3: malloc (vg_replace_malloc.c:299)
==43216==    by 0x4E5A12B: __gf_default_malloc (mem-pool.h:108)
==43216==    by 0x4E5BF6C: xlator_mem_acct_init (xlator.c:520)
==43216==    by 0x134EEEFD: mem_acct_init (bit-rot-stub.c:46)
==43216==    by 0x4E5BB06: xlator_init (xlator.c:419)
==43216==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==43216==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==43216==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==43216==    by 0x40ECA5: mgmt_getspec_cbk (glusterfsd-mgmt.c:1648)
==43216==    by 0x51505D2: rpc_clnt_handle_reply (rpc-clnt.c:791)
==43216==    by 0x5150B34: rpc_clnt_notify (rpc-clnt.c:971)
==43216==    by 0x514CD1D: rpc_transport_notify (rpc-transport.c:541)
==43216== 
==43216== 14,360 bytes in 5 blocks are possibly lost in loss record 736 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0xFEAAF3E: socket_server_event_handler (socket.c:2682)
==43216==    by 0x4ECB1D7: event_dispatch_epoll_handler (event-epoll.c:571)
==43216==    by 0x4ECB5F4: event_dispatch_epoll_worker (event-epoll.c:674)
==43216==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==43216==    by 0x67A873C: clone (in /usr/lib64/libc-2.17.so)
==43216== 
==43216== 15,600 bytes in 1 blocks are possibly lost in loss record 737 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0x4EA5C5C: syncenv_new (syncop.c:813)
==43216==    by 0x40A801: main (glusterfsd.c:2475)
==43216== 
==43216== 21,344 bytes in 4 blocks are possibly lost in loss record 741 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0x4EA5107: synctask_create (syncop.c:466)
==43216==    by 0x4EA55AE: synctask_new1 (syncop.c:576)
==43216==    by 0x143AE0D7: mq_synctask1 (marker-quota.c:1078)
==43216==    by 0x143AE199: mq_synctask (marker-quota.c:1097)
==43216==    by 0x143AE6F6: _mq_create_xattrs_txn (marker-quota.c:1236)
==43216==    by 0x143AE82D: mq_create_xattrs_txn (marker-quota.c:1253)
==43216==    by 0x143B0DCB: mq_inspect_directory_xattr (marker-quota.c:2027)
==43216==    by 0x143B13A8: mq_xattr_state (marker-quota.c:2117)
==43216==    by 0x143A6E80: marker_lookup_cbk (marker.c:2961)
==43216==    by 0x141811E0: up_lookup_cbk (upcall.c:753)
==43216== 
==43216== 32,816 bytes in 1 blocks are possibly lost in loss record 743 of 755
==43216==    at 0x4C27BE3: malloc (vg_replace_malloc.c:299)
==43216==    by 0x676B5C0: __alloc_dir (in /usr/lib64/libc-2.17.so)
==43216==    by 0x4E9193D: sys_opendir (syscall.c:101)
==43216==    by 0x1218C336: init (posix.c:7233)
==43216==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==43216==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==43216==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==43216==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==43216==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==43216==    by 0x40ECA5: mgmt_getspec_cbk (glusterfsd-mgmt.c:1648)
==43216==    by 0x51505D2: rpc_clnt_handle_reply (rpc-clnt.c:791)
==43216==    by 0x5150B34: rpc_clnt_notify (rpc-clnt.c:971)
==43216== 
==43216== 49,472 bytes in 1 blocks are possibly lost in loss record 744 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0x15061DC3: init (server.c:934)
==43216==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==43216==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==43216==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==43216==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==43216==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==43216==    by 0x40ECA5: mgmt_getspec_cbk (glusterfsd-mgmt.c:1648)
==43216==    by 0x51505D2: rpc_clnt_handle_reply (rpc-clnt.c:791)
==43216==    by 0x5150B34: rpc_clnt_notify (rpc-clnt.c:971)
==43216==    by 0x514CD1D: rpc_transport_notify (rpc-transport.c:541)
==43216== 
==43216== 53,280 bytes in 18 blocks are possibly lost in loss record 745 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0x4EE9379: new_volume (graph.y:139)
==43216==    by 0x4EE8CE5: graphyyparse (graph.y:52)
==43216==    by 0x4EEA75C: glusterfs_graph_construct (graph.y:590)
==43216==    by 0x40A211: glusterfs_process_volfp (glusterfsd.c:2305)
==43216==    by 0x40ECA5: mgmt_getspec_cbk (glusterfsd-mgmt.c:1648)
==43216==    by 0x51505D2: rpc_clnt_handle_reply (rpc-clnt.c:791)
==43216==    by 0x5150B34: rpc_clnt_notify (rpc-clnt.c:971)
==43216==    by 0x514CD1D: rpc_transport_notify (rpc-transport.c:541)
==43216==    by 0xFEA9D43: socket_event_poll_in (socket.c:2267)
==43216==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==43216== 
==43216== 64,008 bytes in 1 blocks are possibly lost in loss record 746 of 755
==43216==    at 0x4C27BE3: malloc (vg_replace_malloc.c:299)
==43216==    by 0x130402E6: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==43216==    by 0x1301B6A9: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==43216==    by 0x13023A25: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==43216==    by 0x1302A2B1: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==43216==    by 0x1309E45D: ??? (in /usr/lib64/libsqlite3.so.0.8.6)
==43216==    by 0x12E01B48: gf_open_sqlite3_conn (gfdb_sqlite3.c:192)
==43216==    by 0x12E02CAF: gf_sqlite3_init (gfdb_sqlite3.c:440)
==43216==    by 0x12DF97B5: init_db (gfdb_data_store.c:270)
==43216==    by 0x12BEA41F: init (changetimerecorder.c:2118)
==43216==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==43216==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==43216== 
==43216== 65,824 bytes in 4 blocks are possibly lost in loss record 747 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0x4EA5332: synctask_create (syncop.c:504)
==43216==    by 0x4EA55AE: synctask_new1 (syncop.c:576)
==43216==    by 0x143AE0D7: mq_synctask1 (marker-quota.c:1078)
==43216==    by 0x143AE199: mq_synctask (marker-quota.c:1097)
==43216==    by 0x143AE6F6: _mq_create_xattrs_txn (marker-quota.c:1236)
==43216==    by 0x143AE82D: mq_create_xattrs_txn (marker-quota.c:1253)
==43216==    by 0x143B0DCB: mq_inspect_directory_xattr (marker-quota.c:2027)
==43216==    by 0x143B13A8: mq_xattr_state (marker-quota.c:2117)
==43216==    by 0x143A6E80: marker_lookup_cbk (marker.c:2961)
==43216==    by 0x141811E0: up_lookup_cbk (upcall.c:753)
==43216== 
==43216== 81,992 bytes in 1 blocks are possibly lost in loss record 748 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0x4EC9E90: __event_newtable (event-epoll.c:54)
==43216==    by 0x4ECA008: __event_slot_alloc (event-epoll.c:85)
==43216==    by 0x4ECA246: event_slot_alloc (event-epoll.c:134)
==43216==    by 0x4ECA8D4: event_register_epoll (event-epoll.c:344)
==43216==    by 0x4E8EC3E: event_register (event.c:67)
==43216==    by 0xFEACC9C: socket_listen (socket.c:3356)
==43216==    by 0x514C834: rpc_transport_listen (rpc-transport.c:435)
==43216==    by 0x5149260: rpcsvc_create_listener (rpcsvc.c:1671)
==43216==    by 0x514955C: rpcsvc_create_listeners (rpcsvc.c:1757)
==43216==    by 0x40F98A: glusterfs_listener_init (glusterfsd-mgmt.c:2037)
==43216== 
==43216== 201,392 bytes in 8 blocks are possibly lost in loss record 749 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0x4E92574: __iobuf_arena_init_iobufs (iobuf.c:84)
==43216==    by 0x4E92B8D: __iobuf_arena_alloc (iobuf.c:208)
==43216==    by 0x4E92E47: __iobuf_pool_add_arena (iobuf.c:272)
==43216==    by 0x4E92F7E: iobuf_pool_add_arena (iobuf.c:297)
==43216==    by 0x4E93595: iobuf_pool_new (iobuf.c:425)
==43216==    by 0x4084EF: glusterfs_ctx_defaults_init (glusterfsd.c:1473)
==43216==    by 0x40A5BC: main (glusterfsd.c:2413)
==43216== 
==43216== 224,984 bytes in 1 blocks are possibly lost in loss record 750 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0x129BB4E4: inode_table_new (inode.c:1609)
==43216==    by 0x129CF039: notify (trash.c:2172)
==43216==    by 0x4E5BEC3: xlator_notify (xlator.c:496)
==43216==    by 0x4F12DCF: default_notify (defaults.c:3114)
==43216==    by 0x1218A501: notify (posix.c:6596)
==43216==    by 0x4E5BEC3: xlator_notify (xlator.c:496)
==43216==    by 0x4F12CE8: default_notify (defaults.c:3090)
==43216==    by 0x129D019E: notify (trash.c:2307)
==43216==    by 0x4E5BEC3: xlator_notify (xlator.c:496)
==43216==    by 0x4F12CE8: default_notify (defaults.c:3090)
==43216== 
==43216== 224,984 bytes in 1 blocks are possibly lost in loss record 751 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0x4E72012: inode_table_new (inode.c:1609)
==43216==    by 0x15096890: server_setvolume (server-handshake.c:740)
==43216==    by 0x514731B: rpcsvc_handle_rpc_call (rpcsvc.c:701)
==43216==    by 0x514766E: rpcsvc_notify (rpcsvc.c:795)
==43216==    by 0x514CD1D: rpc_transport_notify (rpc-transport.c:541)
==43216==    by 0xFEA9D43: socket_event_poll_in (socket.c:2267)
==43216==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==43216==    by 0x4ECB1D7: event_dispatch_epoll_handler (event-epoll.c:571)
==43216==    by 0x4ECB5F4: event_dispatch_epoll_worker (event-epoll.c:674)
==43216==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==43216== 
==43216== 1,048,648 bytes in 1 blocks are possibly lost in loss record 752 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0x129BB4A9: inode_table_new (inode.c:1603)
==43216==    by 0x129CF039: notify (trash.c:2172)
==43216==    by 0x4E5BEC3: xlator_notify (xlator.c:496)
==43216==    by 0x4F12DCF: default_notify (defaults.c:3114)
==43216==    by 0x1218A501: notify (posix.c:6596)
==43216==    by 0x4E5BEC3: xlator_notify (xlator.c:496)
==43216==    by 0x4F12CE8: default_notify (defaults.c:3090)
==43216==    by 0x129D019E: notify (trash.c:2307)
==43216==    by 0x4E5BEC3: xlator_notify (xlator.c:496)
==43216==    by 0x4F12CE8: default_notify (defaults.c:3090)
==43216== 
==43216== 1,048,648 bytes in 1 blocks are possibly lost in loss record 753 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0x4E71FD7: inode_table_new (inode.c:1603)
==43216==    by 0x15096890: server_setvolume (server-handshake.c:740)
==43216==    by 0x514731B: rpcsvc_handle_rpc_call (rpcsvc.c:701)
==43216==    by 0x514766E: rpcsvc_notify (rpcsvc.c:795)
==43216==    by 0x514CD1D: rpc_transport_notify (rpc-transport.c:541)
==43216==    by 0xFEA9D43: socket_event_poll_in (socket.c:2267)
==43216==    by 0xFEAA2A6: socket_event_handler (socket.c:2397)
==43216==    by 0x4ECB1D7: event_dispatch_epoll_handler (event-epoll.c:571)
==43216==    by 0x4ECB5F4: event_dispatch_epoll_worker (event-epoll.c:674)
==43216==    by 0x60B2DC4: start_thread (in /usr/lib64/libpthread-2.17.so)
==43216== 
==43216== 4,194,720 bytes in 4 blocks are possibly lost in loss record 754 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0x4EE1A0C: rbuf_alloc_rvec (rot-buffs.c:68)
==43216==    by 0x4EE1ADA: rlist_add_new_vec (rot-buffs.c:109)
==43216==    by 0x4EE1E90: rbuf_init (rot-buffs.c:211)
==43216==    by 0x132D6D33: changelog_init_rpc (changelog.c:2764)
==43216==    by 0x132D71B1: init (changelog.c:2850)
==43216==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==43216==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==43216==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==43216==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==43216==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==43216== 
==43216== 9,437,112 bytes in 1 blocks are possibly lost in loss record 755 of 755
==43216==    at 0x4C29975: calloc (vg_replace_malloc.c:711)
==43216==    by 0x4E8FA5E: __gf_calloc (mem-pool.c:117)
==43216==    by 0x14C0CBCB: ios_create_sample_buf (io-stats.c:486)
==43216==    by 0x14C0CCCA: ios_init_sample_buf (io-stats.c:519)
==43216==    by 0x14C282AF: init (io-stats.c:3678)
==43216==    by 0x4E5BA4F: __xlator_init (xlator.c:403)
==43216==    by 0x4E5BB7F: xlator_init (xlator.c:428)
==43216==    by 0x4EA1BBD: glusterfs_graph_init (graph.c:320)
==43216==    by 0x4EA2773: glusterfs_graph_activate (graph.c:670)
==43216==    by 0x40A317: glusterfs_process_volfp (glusterfsd.c:2324)
==43216==    by 0x40ECA5: mgmt_getspec_cbk (glusterfsd-mgmt.c:1648)
==43216==    by 0x51505D2: rpc_clnt_handle_reply (rpc-clnt.c:791)
==43216== 
==43216== LEAK SUMMARY:
==43216==    definitely lost: 87,111 bytes in 658 blocks
==43216==    indirectly lost: 12,306 bytes in 35 blocks
==43216==      possibly lost: 17,177,956 bytes in 587 blocks
==43216==    still reachable: 184,993 bytes in 3,012 blocks
==43216==                       of which reachable via heuristic:
==43216==                         length64           : 6,392 bytes in 25 blocks
==43216==         suppressed: 0 bytes in 0 blocks
==43216== Reachable blocks (those to which a pointer was found) are not shown.
==43216== To see them, rerun with: --leak-check=full --show-leak-kinds=all
==43216== 
==43216== For counts of detected and suppressed errors, rerun with: -v
==43216== ERROR SUMMARY: 10000491 errors from 515 contexts (suppressed: 0 from 0)


More information about the Gluster-devel mailing list