diff options
author | Ji-Hyeon Gim <potatogim@gluesys.com> | 2017-05-05 18:06:25 +0900 |
---|---|---|
committer | Shyamsundar Ranganathan <srangana@redhat.com> | 2017-05-28 13:30:55 +0000 |
commit | 6544347166054f9b2ed10cdc8fe9025852ea3257 (patch) | |
tree | 689c4133d686946191839079d6d1ee1ae73af161 /libglusterfs | |
parent | bea02e26a3967a6e679e30fbb77ecfeff1e71f37 (diff) |
libglusterfs: updates old comment for 'arena_size'
the comment (libglusterfs/src/iobuf.h:88-90) for 'arena_size' field
in 'struct iobuf_arena' is not valid anymore. According to line 190 in
__iobuf_arena_alloc() no longer follows that equation.
Change-Id: I68558164b309123cf19093e2da89bc156df294fd
BUG: 1455831
Signed-off-by: Ji-Hyeon Gim <potatogim@gluesys.com>
Reviewed-on: https://review.gluster.org/17393
Smoke: Gluster Build System <jenkins@build.gluster.org>
Reviewed-by: Amar Tumballi <amarts@redhat.com>
Tested-by: Shyamsundar Ranganathan <srangana@redhat.com>
NetBSD-regression: NetBSD Build System <jenkins@build.gluster.org>
CentOS-regression: Gluster Build System <jenkins@build.gluster.org>
Diffstat (limited to 'libglusterfs')
-rw-r--r-- | libglusterfs/src/iobuf.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libglusterfs/src/iobuf.h b/libglusterfs/src/iobuf.h index 9a256257ff5..03aa954bbdd 100644 --- a/libglusterfs/src/iobuf.h +++ b/libglusterfs/src/iobuf.h @@ -85,9 +85,9 @@ struct iobuf_arena { struct list_head all_list; size_t page_size; /* size of all iobufs in this arena */ - size_t arena_size; /* this is equal to - (iobuf_pool->arena_size / page_size) - * page_size */ + size_t arena_size; + /* this is equal to rounded_size * num_iobufs. + (rounded_size comes with gf_iobuf_get_pagesize().) */ size_t page_count; struct iobuf_pool *iobuf_pool; |