dri-devel.lists.freedesktop.org archive mirror
 help / color / mirror / Atom feed
From: Ian Romanick <idr@freedesktop.org>
To: Jan Vesely <jan.vesely@rutgers.edu>, dri-devel@lists.freedesktop.org
Subject: Re: [libdrm][PATCH v2 1/2] random: Use unsigned long for seed
Date: Tue, 10 Feb 2015 10:21:39 -0800	[thread overview]
Message-ID: <54DA4C33.5040205@freedesktop.org> (raw)
In-Reply-To: <1423524499-311-1-git-send-email-jan.vesely@rutgers.edu>

This patch is

Reviewed-by: Ian Romanick <ian.d.romanick@intel.com>

On 02/09/2015 03:28 PM, Jan Vesely wrote:
> v2: Remove unrelated change in main()
> 
> This is more consistent with the rest, and avoids potential undefined
> behavior (signed overflow) ind drmRandom()
> 
> Signed-off-by: Jan Vesely <jan.vesely@rutgers.edu>
> ---
>  xf86drmRandom.c | 12 ++++++------
>  1 file changed, 6 insertions(+), 6 deletions(-)
> 
> diff --git a/xf86drmRandom.c b/xf86drmRandom.c
> index ecab9e2..94922ad 100644
> --- a/xf86drmRandom.c
> +++ b/xf86drmRandom.c
> @@ -98,7 +98,7 @@ typedef struct RandomState {
>      unsigned long q;		/* m div a */
>      unsigned long r;		/* m mod a */
>      unsigned long check;
> -    long          seed;
> +    unsigned long seed;
>  } RandomState;
>  
>  #if RANDOM_MAIN
> @@ -147,13 +147,13 @@ int drmRandomDestroy(void *state)
>  unsigned long drmRandom(void *state)
>  {
>      RandomState   *s = (RandomState *)state;
> -    long          hi;
> -    long          lo;
> +    unsigned long hi;
> +    unsigned long lo;
>  
>      hi      = s->seed / s->q;
>      lo      = s->seed % s->q;
>      s->seed = s->a * lo - s->r * hi;
> -    if (s->seed <= 0) s->seed += s->m;
> +    if ((s->a * lo) <= (s->r * hi)) s->seed += s->m;
>  
>      return s->seed;
>  }
> @@ -166,7 +166,7 @@ double drmRandomDouble(void *state)
>  }
>  
>  #if RANDOM_MAIN
> -static void check_period(long seed)
> +static void check_period(unsigned long seed)
>  {
>      unsigned long count = 0;
>      unsigned long initial;
> @@ -178,7 +178,7 @@ static void check_period(long seed)
>      while (initial != drmRandom(state)) {
>  	if (!++count) break;
>      }
> -    printf("With seed of %10ld, period = %10lu (0x%08lx)\n",
> +    printf("With seed of %10lu, period = %10lu (0x%08lx)\n",
>  	   seed, count, count);
>      drmRandomDestroy(state);
>  }
> 

_______________________________________________
dri-devel mailing list
dri-devel@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/dri-devel

  reply	other threads:[~2015-02-10 18:21 UTC|newest]

Thread overview: 16+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-02-09 21:39 [libdrm][PATCH 1/2] random: Use unsigned long for seed Jan Vesely
2015-02-09 21:39 ` [libdrm][PATCH 2/2] Fix gcc -Wextra warnings Jan Vesely
2015-02-09 23:12   ` Ian Romanick
2015-02-09 23:32   ` Emil Velikov
2015-02-10  0:02     ` Jan Vesely
2015-02-10  0:27       ` Emil Velikov
2015-02-10 21:37         ` Jan Vesely
2015-02-10 22:55           ` Emil Velikov
2015-02-09 23:11 ` [libdrm][PATCH 1/2] random: Use unsigned long for seed Ian Romanick
2015-02-09 23:26   ` Jan Vesely
2015-02-09 23:28   ` [libdrm][PATCH v2 " Jan Vesely
2015-02-10 18:21     ` Ian Romanick [this message]
2015-02-10  0:10 ` [libdrm][PATCH 3/2] Fix always true comparison Jan Vesely
2015-02-25 17:11   ` Jan Vesely
2015-02-25 18:41     ` Emil Velikov
2015-03-02 20:01       ` Jan Vesely

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=54DA4C33.5040205@freedesktop.org \
    --to=idr@freedesktop.org \
    --cc=dri-devel@lists.freedesktop.org \
    --cc=jan.vesely@rutgers.edu \
    /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).