1
0
Fork 0

random: reuse rand_initialize

Signed-off-by: Matt Mackall <mpm@selenic.com>
Cc: Theodore Ts'o <tytso@mit.edu>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
hifive-unleashed-5.1
Matt Mackall 2008-04-29 01:02:58 -07:00 committed by Linus Torvalds
parent 43ae4860ff
commit 53c3f63e82
1 changed files with 2 additions and 4 deletions

View File

@ -899,7 +899,7 @@ static void init_std_data(struct entropy_store *r)
sizeof(*(utsname()))/4);
}
static int __init rand_initialize(void)
static int rand_initialize(void)
{
init_std_data(&input_pool);
init_std_data(&blocking_pool);
@ -1101,9 +1101,7 @@ static long random_ioctl(struct file *f, unsigned int cmd, unsigned long arg)
/* Clear the entropy pool counters. */
if (!capable(CAP_SYS_ADMIN))
return -EPERM;
init_std_data(&input_pool);
init_std_data(&blocking_pool);
init_std_data(&nonblocking_pool);
rand_initialize();
return 0;
default:
return -EINVAL;