From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from [140.186.70.92] (port=35417 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1P602C-00070Z-47 for qemu-devel@nongnu.org; Wed, 13 Oct 2010 08:02:21 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1P5x17-0004vg-6e for qemu-devel@nongnu.org; Wed, 13 Oct 2010 04:48:58 -0400 Received: from mx1.redhat.com ([209.132.183.28]:19952) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1P5x16-0004va-Vx for qemu-devel@nongnu.org; Wed, 13 Oct 2010 04:48:57 -0400 From: Jes.Sorensen@redhat.com Date: Wed, 13 Oct 2010 10:48:46 +0200 Message-Id: <1286959730-924-1-git-send-email-Jes.Sorensen@redhat.com> Subject: [Qemu-devel] [PATCH v8 0/4] Introduce strtosz 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: pbonzini@redhat.com, armbru@redhat.com From: Jes Sorensen This patch introduces cutils.c: strtosz() and gets rid of the multiple custom hacks for parsing byte sizes. In addition it adds 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. Note, this is tested on Linux and build tested for win32 using mingw32. v8 per Markus' suggestion, always write endptr, even on error. This time I hope it's there :) Cheers, Jes Jes Sorensen (4): Introduce strtosz() library function to convert a string to a byte count. 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 | 79 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ hmp-commands.hx | 5 ++- migration.c | 4 +- monitor.c | 47 +++++++++++++++++++++------------ qemu-common.h | 1 + vl.c | 31 +++++++-------------- 6 files changed, 125 insertions(+), 42 deletions(-) -- 1.7.2.3