summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCole Robinson <crobinso@redhat.com>2014-03-22 12:19:44 -0400
committerCole Robinson <crobinso@redhat.com>2014-03-22 12:19:44 -0400
commitd1749c614d0c7c3000faa4e48d79b087698bd62d (patch)
treeea6e933e360c1070574b59627ed2e1d9c1999781
parent7096c3708e8d9b8b14302782734319f81278dd83 (diff)
downloadvirt-manager-d1749c614d0c7c3000faa4e48d79b087698bd62d.tar.gz
cli: Move hugepages=on example to membacking
-rw-r--r--virtinst/cli.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/virtinst/cli.py b/virtinst/cli.py
index 2decdb90..c8b79c6d 100644
--- a/virtinst/cli.py
+++ b/virtinst/cli.py
@@ -616,7 +616,7 @@ def add_memory_option(grp, backcompat=False):
grp.add_argument("--memory",
help=_("Configure guest memory allocation. Ex:\n"
"--memory 1024 (in megabytes)\n"
- "--memory 512,maxmemory=1024,hugepages=on"))
+ "--memory 512,maxmemory=1024"))
if backcompat:
grp.add_argument("-r", "--ram", type=int, dest="oldmemory",
help=argparse.SUPPRESS)
@@ -787,7 +787,8 @@ def add_guest_xml_options(geng):
geng.add_argument("--blkiotune", action="append",
help=_("Tune blkio policy for the domain process."))
geng.add_argument("--membacking", action="append",
- help=_("Set memory backing policy for the domain process."))
+ help=_("Set memory backing policy for the domain process. Ex:\n"
+ "--membacking hugepages=on"))
geng.add_argument("--features",
help=_("Set domain <features> XML. Ex:\n"
"--features acpi=off\n"