From patchwork Wed Oct 24 12:51:06 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: William Dauchy X-Patchwork-Id: 1638071 Return-Path: X-Original-To: patchwork-kvm@patchwork.kernel.org Delivered-To: patchwork-process-083081@patchwork2.kernel.org Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by patchwork2.kernel.org (Postfix) with ESMTP id 7B3F6DFABE for ; Wed, 24 Oct 2012 12:59:13 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S934190Ab2JXM7B (ORCPT ); Wed, 24 Oct 2012 08:59:01 -0400 Received: from mail4.gandi.net ([217.70.183.210]:38312 "EHLO mail4.gandi.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S934142Ab2JXM66 (ORCPT ); Wed, 24 Oct 2012 08:58:58 -0400 Received: from localhost (mfiltercorp1-d.gandi.net [217.70.183.155]) by mail4.gandi.net (Postfix) with ESMTP id D3B27120A71; Wed, 24 Oct 2012 14:50:53 +0200 (CEST) X-Virus-Scanned: Debian amavisd-new at mfiltercorp1-d.gandi.net Received: from mail4.gandi.net ([217.70.183.210]) by localhost (mfiltercorp1-d.gandi.net [217.70.183.155]) (amavisd-new, port 10024) with ESMTP id w6j8MmikHM-k; Wed, 24 Oct 2012 14:50:53 +0200 (CEST) Received: from dontpanic.gandi.net (unknown [217.70.181.51]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mail4.gandi.net (Postfix) with ESMTPSA id B7E04120A73; Wed, 24 Oct 2012 14:50:52 +0200 (CEST) From: William Dauchy To: penberg@kernel.org Cc: kvm@vger.kernel.org, levinsasha928@gmail.com, William Dauchy Subject: [PATCH 5/5] kvm tools: specify the amount to balloon is in MB Date: Wed, 24 Oct 2012 14:51:06 +0200 Message-Id: <1351083066-3748-6-git-send-email-william@gandi.net> X-Mailer: git-send-email 1.7.10.4 In-Reply-To: <1351083066-3748-1-git-send-email-william@gandi.net> References: <1351083066-3748-1-git-send-email-william@gandi.net> Sender: kvm-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: kvm@vger.kernel.org Signed-off-by: William Dauchy --- tools/kvm/builtin-balloon.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/kvm/builtin-balloon.c b/tools/kvm/builtin-balloon.c index 5bd2291..d158ace 100644 --- a/tools/kvm/builtin-balloon.c +++ b/tools/kvm/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(), };