From: Jes Sorensen <jes.soren...@redhat.com> 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.
New in v3 I tried to apply the changes suggested by Markus, notably I changed the name from strtobytes() to strtosz(), as well as added better error handling. Jes Jes Sorensen (6): Introduce strtosz() library function to convert a string to a byte count. Support human unit formats in strtosz, eg. 1.0G Add more error handling to strtosz() 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 | 61 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ hmp-commands.hx | 2 +- migration.c | 4 +- monitor.c | 46 ++++++++++++++++++++++++++--------------- qemu-common.h | 1 + vl.c | 31 +++++++++------------------- 6 files changed, 104 insertions(+), 41 deletions(-) -- 1.7.2.3