diff options
author | Harshavardhana Ranganath <harsha@gluster.com> | 2010-01-21 05:36:42 +0000 |
---|---|---|
committer | Anand V. Avati <avati@dev.gluster.com> | 2010-01-21 07:45:40 -0800 |
commit | ab8cabcd30bbb5dde4cb8a35d4fd88136994f526 (patch) | |
tree | 5a0dd495b054f39c71de67ae580dd7a6b939fbac /extras/volgen/glusterfs-volgen.in | |
parent | 27399cc92d62a168f768c490fc19c935e7e513f1 (diff) |
Cache size is now dynamic and is 20% of the total memory on the client side.
Signed-off-by: Harshavardhana <harsha@gluster.com>
Signed-off-by: Anand V. Avati <avati@dev.gluster.com>
BUG: 516 (cache-size should not be hard-coded to 1GB)
URL: http://bugs.gluster.com/cgi-bin/bugzilla3/show_bug.cgi?id=516
Diffstat (limited to 'extras/volgen/glusterfs-volgen.in')
-rwxr-xr-x | extras/volgen/glusterfs-volgen.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/extras/volgen/glusterfs-volgen.in b/extras/volgen/glusterfs-volgen.in index bd19d1227..638ba7975 100755 --- a/extras/volgen/glusterfs-volgen.in +++ b/extras/volgen/glusterfs-volgen.in @@ -82,7 +82,7 @@ def generate_volume_files (): group.add_option("--nfs", action="store_true", dest="need_nfs", default=False, help="booster nfs reexport") group.add_option("--cifs", action="store_true", dest="need_cifs", - default=False, help="booster cifs reexport"), + default=False, help="booster cifs reexport") parse.add_option_group(group) # CIFS option list @@ -100,7 +100,7 @@ def generate_volume_files (): group.add_option("--ibdev", type="int", dest="ib_dev", default=1, help="Infiniband device number <N>") group.add_option("-c", "--conf-dir", dest="conf_dir", - help="output directory for volume files"), + help="output directory for volume files") parse.add_option_group(group) group = OptionGroup(parse, "Extra Options") |