From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from [140.186.70.92] (port=57477 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Ovr24-0005ME-U9 for qemu-devel@nongnu.org; Wed, 15 Sep 2010 08:24:14 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.69) (envelope-from ) id 1Ovr1z-00036w-34 for qemu-devel@nongnu.org; Wed, 15 Sep 2010 08:24:12 -0400 Received: from mx1.redhat.com ([209.132.183.28]:41292) by eggs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1Ovr1y-00036j-RX for qemu-devel@nongnu.org; Wed, 15 Sep 2010 08:24:07 -0400 From: Jes.Sorensen@redhat.com Date: Wed, 15 Sep 2010 14:23:55 +0200 Message-Id: <1284553440-17985-1-git-send-email-Jes.Sorensen@redhat.com> Subject: [Qemu-devel] [PATCH 0/5] Introduce strtobytes and make use of it List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: armbru@redhat.com, quintela@redhat.com From: Jes Sorensen This patch introduces cutils.c: strtobytes() and gets rid of the multiple custom hacks for parsing byte sizes. In addition it add supports for specifying human style sizes such as 1.5G. Last it eliminates the horrible abuse of a float to store the byte size for migrate_set_speed in the monitor. Jes Jes Sorensen (5): Introduce strtobytes() library function to convert string to byte count. Support human unit formats in strtobytes, eg. 1.0G Add support for 'o' octet (bytes) format as monitor parameter. Switch migrate_set_speed() to take an 'o' argument rather than a float. Remove obsolete 'f' double parameter type cutils.c | 64 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ migration.c | 4 +- monitor.c | 44 ++++++++++++++++++++++++------------- qemu-common.h | 1 + qemu-monitor.hx | 2 +- vl.c | 26 ++++++---------------- 6 files changed, 103 insertions(+), 38 deletions(-) -- 1.7.2.2