2009-06-05 22:29:30

by Christoph Lameter

[permalink] [raw]
Subject: [this_cpu_xx 08/11] Use this_cpu_ptr in crypto subsystem

Just a slight optimization that removes one array lookup.
The processor number is needed for other things as well so the
get/put_cpu cannot be removed.

Cc: Huang Ying <[email protected]>
Signed-off-by: Christoph Lameter <[email protected]>

---
crypto/cryptd.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)

Index: linux-2.6/crypto/cryptd.c
===================================================================
--- linux-2.6.orig/crypto/cryptd.c 2009-05-27 11:55:20.000000000 -0500
+++ linux-2.6/crypto/cryptd.c 2009-05-27 11:56:55.000000000 -0500
@@ -93,7 +93,7 @@ static int cryptd_enqueue_request(struct
struct cryptd_cpu_queue *cpu_queue;

cpu = get_cpu();
- cpu_queue = per_cpu_ptr(queue->cpu_queue, cpu);
+ cpu_queue = this_cpu_ptr(queue->cpu_queue);
err = crypto_enqueue_request(&cpu_queue->queue, request);
queue_work_on(cpu, kcrypto_wq, &cpu_queue->work);
put_cpu();

--