qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
From: Anthony Liguori <anthony@codemonkey.ws>
To: Jes.Sorensen@redhat.com
Cc: agraf@suse.de, qemu-devel@nongnu.org, armbru@redhat.com
Subject: [Qemu-devel] Re: [PATCH] Make strtosz() return int64_t instead of ssize_t
Date: Wed, 05 Jan 2011 07:46:27 -0600	[thread overview]
Message-ID: <4D247633.80304@codemonkey.ws> (raw)
In-Reply-To: <1294224062-18745-1-git-send-email-Jes.Sorensen@redhat.com>

On 01/05/2011 04:41 AM, Jes.Sorensen@redhat.com wrote:
> From: Jes Sorensen<Jes.Sorensen@redhat.com>
>
> strtosz() needs to return a 64 bit type even on 32 bit
> architectures. Otherwise qemu-img will fail to create disk
> images>= 2GB
>
> Signed-off-by: Jes Sorensen<Jes.Sorensen@redhat.com>
>    

off_t would be the proper type to use.

Regards,

Anthony Liguori

> ---
>   cutils.c      |    8 ++++----
>   monitor.c     |    2 +-
>   qemu-common.h |    4 ++--
>   qemu-img.c    |    2 +-
>   vl.c          |    4 ++--
>   5 files changed, 10 insertions(+), 10 deletions(-)
>
> diff --git a/cutils.c b/cutils.c
> index 7984bc1..4d2e27c 100644
> --- a/cutils.c
> +++ b/cutils.c
> @@ -291,9 +291,9 @@ int fcntl_setfl(int fd, int flag)
>    * value must be terminated by whitespace, ',' or '\0'. Return -1 on
>    * error.
>    */
> -ssize_t strtosz_suffix(const char *nptr, char **end, const char default_suffix)
> +int64_t strtosz_suffix(const char *nptr, char **end, const char default_suffix)
>   {
> -    ssize_t retval = -1;
> +    int64_t retval = -1;
>       char *endptr, c, d;
>       int mul_required = 0;
>       double val, mul, integral, fraction;
> @@ -365,7 +365,7 @@ ssize_t strtosz_suffix(const char *nptr, char **end, const char default_suffix)
>               goto fail;
>           }
>       }
> -    if ((val * mul>= ~(size_t)0) || val<  0) {
> +    if ((val * mul>= INT64_MAX) || val<  0) {
>           goto fail;
>       }
>       retval = val * mul;
> @@ -378,7 +378,7 @@ fail:
>       return retval;
>   }
>
> -ssize_t strtosz(const char *nptr, char **end)
> +int64_t strtosz(const char *nptr, char **end)
>   {
>       return strtosz_suffix(nptr, end, STRTOSZ_DEFSUFFIX_MB);
>   }
> diff --git a/monitor.c b/monitor.c
> index f258000..fcdae15 100644
> --- a/monitor.c
> +++ b/monitor.c
> @@ -4162,7 +4162,7 @@ static const mon_cmd_t *monitor_parse_command(Monitor *mon,
>               break;
>           case 'o':
>               {
> -                ssize_t val;
> +                int64_t val;
>                   char *end;
>
>                   while (qemu_isspace(*p)) {
> diff --git a/qemu-common.h b/qemu-common.h
> index 63d9943..cce6e61 100644
> --- a/qemu-common.h
> +++ b/qemu-common.h
> @@ -158,8 +158,8 @@ int fcntl_setfl(int fd, int flag);
>   #define STRTOSZ_DEFSUFFIX_MB	'M'
>   #define STRTOSZ_DEFSUFFIX_KB	'K'
>   #define STRTOSZ_DEFSUFFIX_B	'B'
> -ssize_t strtosz(const char *nptr, char **end);
> -ssize_t strtosz_suffix(const char *nptr, char **end, const char default_suffix);
> +int64_t strtosz(const char *nptr, char **end);
> +int64_t strtosz_suffix(const char *nptr, char **end, const char default_suffix);
>
>   /* path.c */
>   void init_paths(const char *prefix);
> diff --git a/qemu-img.c b/qemu-img.c
> index afd9ed2..6af2a4c 100644
> --- a/qemu-img.c
> +++ b/qemu-img.c
> @@ -320,7 +320,7 @@ static int img_create(int argc, char **argv)
>
>       /* Get image size, if specified */
>       if (optind<  argc) {
> -        ssize_t sval;
> +        int64_t sval;
>           sval = strtosz_suffix(argv[optind++], NULL, STRTOSZ_DEFSUFFIX_B);
>           if (sval<  0) {
>               error_report("Invalid image size specified! You may use k, M, G or "
> diff --git a/vl.c b/vl.c
> index 78fcef1..93425f4 100644
> --- a/vl.c
> +++ b/vl.c
> @@ -804,7 +804,7 @@ static void numa_add(const char *optarg)
>           if (get_param_value(option, 128, "mem", optarg) == 0) {
>               node_mem[nodenr] = 0;
>           } else {
> -            ssize_t sval;
> +            int64_t sval;
>               sval = strtosz(option, NULL);
>               if (sval<  0) {
>                   fprintf(stderr, "qemu: invalid numa mem size: %s\n", optarg);
> @@ -2245,7 +2245,7 @@ int main(int argc, char **argv, char **envp)
>                   exit(0);
>                   break;
>               case QEMU_OPTION_m: {
> -                ssize_t value;
> +                int64_t value;
>
>                   value = strtosz(optarg, NULL);
>                   if (value<  0) {
>    

  parent reply	other threads:[~2011-01-05 13:46 UTC|newest]

Thread overview: 9+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2011-01-05 10:41 [Qemu-devel] [PATCH] Make strtosz() return int64_t instead of ssize_t Jes.Sorensen
2011-01-05 12:34 ` [Qemu-devel] " Michael S. Tsirkin
2011-01-05 12:36   ` Jes Sorensen
2011-01-05 12:49     ` Michael S. Tsirkin
2011-01-05 13:46 ` Anthony Liguori [this message]
2011-01-05 14:40   ` Jes Sorensen
2011-01-05 18:29     ` Anthony Liguori
2011-01-05 19:30       ` Jes Sorensen
2011-01-11 13:36 ` [Qemu-devel] " Kevin Wolf

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=4D247633.80304@codemonkey.ws \
    --to=anthony@codemonkey.ws \
    --cc=Jes.Sorensen@redhat.com \
    --cc=agraf@suse.de \
    --cc=armbru@redhat.com \
    --cc=qemu-devel@nongnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).