All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 1/8] drivers/random: Cache align ip_random better
@ 2011-03-14  0:20 ` George Spelvin
  0 siblings, 0 replies; 22+ messages in thread
From: George Spelvin @ 2011-03-14  0:20 UTC (permalink / raw)
  To: penberg, herbert, mpm; +Cc: linux-mm, linux-kernel, linux

Cache aligning the secret[] buffer makes copying from it infinitesimally
more efficient.
---
 drivers/char/random.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/drivers/char/random.c b/drivers/char/random.c
index 72a4fcb..4bcc4f2 100644
--- a/drivers/char/random.c
+++ b/drivers/char/random.c
@@ -1417,8 +1417,8 @@ static __u32 twothirdsMD4Transform(__u32 const buf[4], __u32 const in[12])
 #define HASH_MASK ((1 << HASH_BITS) - 1)
 
 static struct keydata {
-	__u32 count; /* already shifted to the final position */
 	__u32 secret[12];
+	__u32 count; /* already shifted to the final position */
 } ____cacheline_aligned ip_keydata[2];
 
 static unsigned int ip_cnt;
-- 
1.7.4.1


^ permalink raw reply related	[flat|nested] 22+ messages in thread

end of thread, other threads:[~2011-03-22  9:04 UTC | newest]

Thread overview: 22+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-03-14  0:20 [PATCH 1/8] drivers/random: Cache align ip_random better George Spelvin
2011-03-14  0:20 ` George Spelvin
2011-03-16  2:54 ` Matt Mackall
2011-03-16  2:54   ` Matt Mackall
2011-03-16  6:24   ` Pekka Enberg
2011-03-16  6:24     ` Pekka Enberg
2011-03-16 17:17 ` Hugh Dickins
2011-03-16 17:17   ` Hugh Dickins
2011-03-16 18:10   ` George Spelvin
2011-03-16 18:10     ` George Spelvin
2011-03-16 18:42     ` Hugh Dickins
2011-03-16 18:42       ` Hugh Dickins
2011-03-16 19:45       ` George Spelvin
2011-03-16 19:45         ` George Spelvin
2011-03-22  9:03         ` Herbert Xu
2011-03-22  9:03           ` Herbert Xu
2011-03-16 18:23   ` Matt Mackall
2011-03-16 18:23     ` Matt Mackall
2011-03-16 19:26     ` Eric Dumazet
2011-03-16 19:26       ` Eric Dumazet
2011-03-16 19:55       ` Matt Mackall
2011-03-16 19:55         ` Matt Mackall

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.