From 174a3fa33b0f4ef9396c31d2b41c32d5c824de97 Mon Sep 17 00:00:00 2001 From: William Dauchy Date: Wed, 24 Oct 2012 14:51:06 +0200 Subject: [PATCH] kvm tools: specify the amount to balloon is in MB Signed-off-by: William Dauchy Signed-off-by: Pekka Enberg --- builtin-balloon.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/builtin-balloon.c b/builtin-balloon.c index 5bd2291..d158ace 100644 --- a/builtin-balloon.c +++ b/builtin-balloon.c @@ -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(), };