diff options
Diffstat (limited to 'glusterfsd/src/glusterfsd.c')
-rw-r--r-- | glusterfsd/src/glusterfsd.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/glusterfsd/src/glusterfsd.c b/glusterfsd/src/glusterfsd.c index 442ecb1946..0366b36eb6 100644 --- a/glusterfsd/src/glusterfsd.c +++ b/glusterfsd/src/glusterfsd.c @@ -1688,9 +1688,13 @@ glusterfs_ctx_defaults_init(glusterfs_ctx_t *ctx) INIT_LIST_HEAD(&cmd_args->xlator_options); INIT_LIST_HEAD(&cmd_args->volfile_servers); ctx->pxl_count = 0; + ctx->diskxl_count = 0; pthread_mutex_init(&ctx->fd_lock, NULL); pthread_cond_init(&ctx->fd_cond, NULL); INIT_LIST_HEAD(&ctx->janitor_fds); + pthread_mutex_init(&ctx->xl_lock, NULL); + pthread_cond_init(&ctx->xl_cond, NULL); + INIT_LIST_HEAD(&ctx->diskth_xl); lim.rlim_cur = RLIM_INFINITY; lim.rlim_max = RLIM_INFINITY; |