Re: [Qemu-devel] [PATCH 1/2] cutils:change strtosz_suffix_unit function

2012-12-16 Thread li guang
在 2012-12-14五的 13:09 +0100,Markus Armbruster写道: liguang lig.f...@cn.fujitsu.com writes: if value to be translated is larger than INT64_MAX, this function will not be convenient for caller to be aware of it, so change a little for this. Signed-off-by: liguang lig.f...@cn.fujitsu.com

Re: [Qemu-devel] [PATCH 1/2] cutils:change strtosz_suffix_unit function

2012-12-16 Thread li guang
在 2012-12-14五的 14:45 +0100,Igor Mammedov写道: On Fri, 14 Dec 2012 13:09:17 +0100 Markus Armbruster arm...@redhat.com wrote: liguang lig.f...@cn.fujitsu.com writes: if value to be translated is larger than INT64_MAX, this function will not be convenient for caller to be aware of it,

Re: [Qemu-devel] [PATCH 1/2] cutils:change strtosz_suffix_unit function

2012-12-14 Thread Markus Armbruster
liguang lig.f...@cn.fujitsu.com writes: if value to be translated is larger than INT64_MAX, this function will not be convenient for caller to be aware of it, so change a little for this. Signed-off-by: liguang lig.f...@cn.fujitsu.com --- cutils.c |3 ++- 1 files changed, 2

Re: [Qemu-devel] [PATCH 1/2] cutils:change strtosz_suffix_unit function

2012-12-14 Thread Igor Mammedov
On Fri, 14 Dec 2012 13:09:17 +0100 Markus Armbruster arm...@redhat.com wrote: liguang lig.f...@cn.fujitsu.com writes: if value to be translated is larger than INT64_MAX, this function will not be convenient for caller to be aware of it, so change a little for this. Signed-off-by:

Re: [Qemu-devel] [ [PATCH 1/2] cutils:change strtosz_suffix_unit function

2012-12-13 Thread Markus Armbruster
Igor Mammedov imamm...@redhat.com writes: On Fri, 7 Dec 2012 11:49:49 +0800 liguang lig.f...@cn.fujitsu.com wrote: if value to be translated is larger than INT64_MAX, this function will not be convenient for caller to be aware of it, so change a little for this. Signed-off-by: liguang

Re: [Qemu-devel] [ [PATCH 1/2] cutils:change strtosz_suffix_unit function

2012-12-13 Thread Igor Mammedov
On Thu, 13 Dec 2012 09:03:50 +0100 Markus Armbruster arm...@redhat.com wrote: Igor Mammedov imamm...@redhat.com writes: On Fri, 7 Dec 2012 11:49:49 +0800 liguang lig.f...@cn.fujitsu.com wrote: if value to be translated is larger than INT64_MAX, this function will not be convenient

Re: [Qemu-devel] [ [PATCH 1/2] cutils:change strtosz_suffix_unit function

2012-12-13 Thread Markus Armbruster
Igor Mammedov imamm...@redhat.com writes: On Thu, 13 Dec 2012 09:03:50 +0100 Markus Armbruster arm...@redhat.com wrote: Igor Mammedov imamm...@redhat.com writes: On Fri, 7 Dec 2012 11:49:49 +0800 liguang lig.f...@cn.fujitsu.com wrote: if value to be translated is larger than

[Qemu-devel] [PATCH 1/2] cutils:change strtosz_suffix_unit function

2012-12-13 Thread liguang
if value to be translated is larger than INT64_MAX, this function will not be convenient for caller to be aware of it, so change a little for this. Signed-off-by: liguang lig.f...@cn.fujitsu.com --- cutils.c |3 ++- 1 files changed, 2 insertions(+), 1 deletions(-) diff --git a/cutils.c

Re: [Qemu-devel] [ [PATCH 1/2] cutils:change strtosz_suffix_unit function

2012-12-12 Thread Stefan Hajnoczi
On Wed, Dec 12, 2012 at 08:58:17AM +0800, li guang wrote: 在 2012-12-11二的 10:52 +0100,Stefan Hajnoczi写道: On Fri, Dec 07, 2012 at 11:49:49AM +0800, liguang wrote: if value to be translated is larger than INT64_MAX, this function will not be convenient for caller to be aware of it, so

Re: [Qemu-devel] [ [PATCH 1/2] cutils:change strtosz_suffix_unit function

2012-12-12 Thread Igor Mammedov
On Fri, 7 Dec 2012 11:49:49 +0800 liguang lig.f...@cn.fujitsu.com wrote: if value to be translated is larger than INT64_MAX, this function will not be convenient for caller to be aware of it, so change a little for this. Signed-off-by: liguang lig.f...@cn.fujitsu.com --- cutils.c |5

Re: [Qemu-devel] [ [PATCH 1/2] cutils:change strtosz_suffix_unit function

2012-12-11 Thread Stefan Hajnoczi
On Fri, Dec 07, 2012 at 11:49:49AM +0800, liguang wrote: if value to be translated is larger than INT64_MAX, this function will not be convenient for caller to be aware of it, so change a little for this. Signed-off-by: liguang lig.f...@cn.fujitsu.com --- cutils.c |5 +++-- 1 files

Re: [Qemu-devel] [ [PATCH 1/2] cutils:change strtosz_suffix_unit function

2012-12-11 Thread Markus Armbruster
Stefan Hajnoczi stefa...@gmail.com writes: On Fri, Dec 07, 2012 at 11:49:49AM +0800, liguang wrote: if value to be translated is larger than INT64_MAX, this function will not be convenient for caller to be aware of it, so change a little for this. Signed-off-by: liguang

Re: [Qemu-devel] [ [PATCH 1/2] cutils:change strtosz_suffix_unit function

2012-12-11 Thread li guang
在 2012-12-11二的 10:52 +0100,Stefan Hajnoczi写道: On Fri, Dec 07, 2012 at 11:49:49AM +0800, liguang wrote: if value to be translated is larger than INT64_MAX, this function will not be convenient for caller to be aware of it, so change a little for this. Signed-off-by: liguang

[Qemu-devel] [ [PATCH 1/2] cutils:change strtosz_suffix_unit function

2012-12-06 Thread liguang
if value to be translated is larger than INT64_MAX, this function will not be convenient for caller to be aware of it, so change a little for this. Signed-off-by: liguang lig.f...@cn.fujitsu.com --- cutils.c |5 +++-- 1 files changed, 3 insertions(+), 2 deletions(-) diff --git a/cutils.c