| From 642cc5338160028e52d2c654c5a20f26a298b191 Mon Sep 17 00:00:00 2001 |
| From: Ingo Molnar <mingo@elte.hu> |
| Date: Fri, 3 Jul 2009 08:29:30 -0500 |
| Subject: [PATCH 014/351] drivers: random: Reduce preempt disabled region |
| X-NVConfidentiality: public |
| |
| No need to keep preemption disabled across the whole function. |
| |
| Signed-off-by: Ingo Molnar <mingo@elte.hu> |
| Signed-off-by: Thomas Gleixner <tglx@linutronix.de> |
| --- |
| drivers/char/random.c | 3 --- |
| 1 file changed, 3 deletions(-) |
| |
| diff --git a/drivers/char/random.c b/drivers/char/random.c |
| index b583e5336630..86400bde0a6f 100644 |
| --- a/drivers/char/random.c |
| +++ b/drivers/char/random.c |
| @@ -796,8 +796,6 @@ static void add_timer_randomness(struct timer_rand_state *state, unsigned num) |
| } sample; |
| long delta, delta2, delta3; |
| |
| - preempt_disable(); |
| - |
| sample.jiffies = jiffies; |
| sample.cycles = random_get_entropy(); |
| sample.num = num; |
| @@ -838,7 +836,6 @@ static void add_timer_randomness(struct timer_rand_state *state, unsigned num) |
| */ |
| credit_entropy_bits(r, min_t(int, fls(delta>>1), 11)); |
| } |
| - preempt_enable(); |
| } |
| |
| void add_input_randomness(unsigned int type, unsigned int code, |
| -- |
| 2.10.1 |
| |