diff options
author | Matt Mackall <mpm@selenic.com> | 2008-04-29 04:02:58 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2008-04-29 11:06:24 -0400 |
commit | 53c3f63e824764da23676e5c718755ff4aac9b63 (patch) | |
tree | b17b87f69d1437361725ff809796d48604849eeb | |
parent | 43ae4860ff4a358c29b9d364e45c2d09ad9fa067 (diff) |
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>
-rw-r--r-- | drivers/char/random.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/drivers/char/random.c b/drivers/char/random.c index 964d78d31578..a2329a11e139 100644 --- a/drivers/char/random.c +++ b/drivers/char/random.c | |||
@@ -899,7 +899,7 @@ static void init_std_data(struct entropy_store *r) | |||
899 | sizeof(*(utsname()))/4); | 899 | sizeof(*(utsname()))/4); |
900 | } | 900 | } |
901 | 901 | ||
902 | static int __init rand_initialize(void) | 902 | static int rand_initialize(void) |
903 | { | 903 | { |
904 | init_std_data(&input_pool); | 904 | init_std_data(&input_pool); |
905 | init_std_data(&blocking_pool); | 905 | init_std_data(&blocking_pool); |
@@ -1101,9 +1101,7 @@ static long random_ioctl(struct file *f, unsigned int cmd, unsigned long arg) | |||
1101 | /* Clear the entropy pool counters. */ | 1101 | /* Clear the entropy pool counters. */ |
1102 | if (!capable(CAP_SYS_ADMIN)) | 1102 | if (!capable(CAP_SYS_ADMIN)) |
1103 | return -EPERM; | 1103 | return -EPERM; |
1104 | init_std_data(&input_pool); | 1104 | rand_initialize(); |
1105 | init_std_data(&blocking_pool); | ||
1106 | init_std_data(&nonblocking_pool); | ||
1107 | return 0; | 1105 | return 0; |
1108 | default: | 1106 | default: |
1109 | return -EINVAL; | 1107 | return -EINVAL; |