summaryrefslogtreecommitdiff
path: root/drivers
diff options
context:
space:
mode:
authorLuck, Tony <tony.luck@intel.com>2011-11-16 10:50:56 -0800
committerPaul Gortmaker <paul.gortmaker@windriver.com>2012-08-17 15:36:02 -0400
commit5f5fe51544214bce4f5caa598a7a51e7663fbac1 (patch)
tree79ffcc58b4e08a425335c84aa5ec753e0409b18b /drivers
parente4e2e412f4292b63031220064f6ab6f804bd5aaf (diff)
fix typo/thinko in get_random_bytes()
commit bd29e568a4cb6465f6e5ec7c1c1f3ae7d99cbec1 upstream. If there is an architecture-specific random number generator we use it to acquire randomness one "long" at a time. We should put these random words into consecutive words in the result buffer - not just overwrite the first word again and again. Signed-off-by: Tony Luck <tony.luck@intel.com> Acked-by: H. Peter Anvin <hpa@zytor.com> Acked-by: Thomas Gleixner <tglx@linutronix.de> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org> Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
Diffstat (limited to 'drivers')
-rw-r--r--drivers/char/random.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/char/random.c b/drivers/char/random.c
index 6da0696c9630..df4eb6ded57c 100644
--- a/drivers/char/random.c
+++ b/drivers/char/random.c
@@ -934,7 +934,7 @@ void get_random_bytes(void *buf, int nbytes)
if (!arch_get_random_long(&v))
break;
- memcpy(buf, &v, chunk);
+ memcpy(p, &v, chunk);
p += chunk;
nbytes -= chunk;
}