[PATCH] random.c compiler warning

From: René Scharfe (l.s.r@web.de)
Date: Fri Oct 26 2001 - 23:40:47 EST


Hi all,

the patch below removes a compiler warning in random.c. To be exact
it's the first hunk of the patch that does it. There's a comparision
between signed and unsigned values which triggers that warning.

The rest of the patch is just there for consistency and because it just
looks better to me. Those sizeof()s were introduced in kernel 2.4.13, I
just can't imagine why. Care to explain anyone?

René

--- linux-2.4.14-pre2/drivers/char/random.c Fri Oct 26 23:07:16 2001
+++ linux-2.4.14-pre2-rs/drivers/char/random.c Sat Oct 27 05:34:34 2001
@@ -1246,7 +1246,7 @@
         if (r->entropy_count < nbytes * 8 &&
             r->entropy_count < r->poolinfo.POOLBITS) {
                 int nwords = min(r->poolinfo.poolwords - r->entropy_count/32,
- sizeof(tmp) / 4);
+ TMP_BUF_SIZE);
 
                 DEBUG_ENT("xfer %d from primary to %s (have %d, need %d)\n",
                           nwords * 32,
@@ -1260,9 +1260,9 @@
         if (r->extract_count > 1024) {
                 DEBUG_ENT("reseeding %s with %d from primary\n",
                           r == sec_random_state ? "secondary" : "unknown",
- sizeof(tmp) * 8);
- extract_entropy(random_state, tmp, sizeof(tmp), 0);
- add_entropy_words(r, tmp, sizeof(tmp) / 4);
+ TMP_BUF_SIZE * 32);
+ extract_entropy(random_state, tmp, TMP_BUF_SIZE * 4, 0);
+ add_entropy_words(r, tmp, TMP_BUF_SIZE);
                 r->extract_count = 0;
         }
 }

-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/



This archive was generated by hypermail 2b29 : Wed Oct 31 2001 - 21:00:32 EST