diff options
author | Anand Avati <avati@gluster.com> | 2009-10-30 03:15:19 +0000 |
---|---|---|
committer | Anand V. Avati <avati@dev.gluster.com> | 2009-10-30 03:37:35 -0700 |
commit | 5d9a4d81b3928e6af15aaeb7fab18fb451f7abcc (patch) | |
tree | 0a8925007c56c972e134ebaeed457690d5ff02ec /glusterfsd | |
parent | bee7b8877dfbc321637e00106c073fecdd0847f0 (diff) |
iobuf: initialize size without 4KB padding
since new fuse bridge takes care of landing write buffers to aligned iobufs
and the 4KB header padding is no more necessary
Signed-off-by: Anand V. Avati <avati@blackhole.gluster.com>
Signed-off-by: Anand V. Avati <avati@dev.gluster.com>
BUG: 315 (generation number support)
URL: http://bugs.gluster.com/cgi-bin/bugzilla3/show_bug.cgi?id=315
Diffstat (limited to 'glusterfsd')
-rw-r--r-- | glusterfsd/src/glusterfsd.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/glusterfsd/src/glusterfsd.c b/glusterfsd/src/glusterfsd.c index 68ae5b3152f..0399d11245d 100644 --- a/glusterfsd/src/glusterfsd.c +++ b/glusterfsd/src/glusterfsd.c @@ -1139,7 +1139,7 @@ main (int argc, char *argv[]) } ctx->page_size = 128 * GF_UNIT_KB; - ctx->iobuf_pool = iobuf_pool_new (8 * GF_UNIT_MB, ctx->page_size + 4096); + ctx->iobuf_pool = iobuf_pool_new (8 * GF_UNIT_MB, ctx->page_size); ctx->event_pool = event_pool_new (DEFAULT_EVENT_POOL_SIZE); pthread_mutex_init (&(ctx->lock), NULL); pool = ctx->pool = CALLOC (1, sizeof (call_pool_t)); |