From: Jan Vesely <jan.vesely@rutgers.edu>
To: dri-devel@lists.freedesktop.org, Ian Romanick <idr@freedesktop.org>
Subject: [libdrm][PATCH v2 1/2] random: Use unsigned long for seed
Date: Mon, 9 Feb 2015 18:28:19 -0500 [thread overview]
Message-ID: <1423524499-311-1-git-send-email-jan.vesely@rutgers.edu> (raw)
In-Reply-To: <54D93E99.4010107@freedesktop.org>
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);
}
--
2.1.0
_______________________________________________
dri-devel mailing list
dri-devel@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/dri-devel
next prev parent reply other threads:[~2015-02-09 23:28 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 ` Jan Vesely [this message]
2015-02-10 18:21 ` [libdrm][PATCH v2 " Ian Romanick
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=1423524499-311-1-git-send-email-jan.vesely@rutgers.edu \
--to=jan.vesely@rutgers.edu \
--cc=dri-devel@lists.freedesktop.org \
--cc=idr@freedesktop.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).