kvm tools: specify the amount to balloon is in MB

Signed-off-by: William Dauchy <william@gandi.net>
Signed-off-by: Pekka Enberg <penberg@kernel.org>
This commit is contained in:
William Dauchy
2012-10-24 14:51:06 +02:00
committed by Will Deacon
parent d3476f7d3b
commit 174a3fa33b
+2 -2
View File
@@ -22,8 +22,8 @@ static const struct option balloon_options[] = {
OPT_GROUP("Instance options:"),
OPT_STRING('n', "name", &instance_name, "name", "Instance name"),
OPT_GROUP("Balloon options:"),
OPT_U64('i', "inflate", &inflate, "Amount to inflate"),
OPT_U64('d', "deflate", &deflate, "Amount to deflate"),
OPT_U64('i', "inflate", &inflate, "Amount to inflate (in MB)"),
OPT_U64('d', "deflate", &deflate, "Amount to deflate (in MB)"),
OPT_END(),
};