diff options
author | Matt Mackall <mpm@selenic.com> | 2006-03-07 21:55:47 -0800 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2006-03-08 14:15:04 -0800 |
commit | 62287fbb54b4af71dc5a4918350f81a4cd467788 (patch) | |
tree | 0242e2f6e11ce93c0bec8f72228f4f7c6f8e2161 /drivers | |
parent | 07ed76b2a085a31f427c2a912a562627947dc7de (diff) | |
download | op-kernel-dev-62287fbb54b4af71dc5a4918350f81a4cd467788.zip op-kernel-dev-62287fbb54b4af71dc5a4918350f81a4cd467788.tar.gz |
[PATCH] dac960: add disk entropy in request completions
Signed-off-by: Matt Mackall <mpm@selenic.com>
Tested-by: Anders K. Pedersen <akp@cohaesio.com>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/block/DAC960.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/block/DAC960.c b/drivers/block/DAC960.c index 6ede1f3..37b8cda 100644 --- a/drivers/block/DAC960.c +++ b/drivers/block/DAC960.c @@ -41,6 +41,7 @@ #include <linux/timer.h> #include <linux/pci.h> #include <linux/init.h> +#include <linux/random.h> #include <asm/io.h> #include <asm/uaccess.h> #include "DAC960.h" @@ -3463,7 +3464,7 @@ static inline boolean DAC960_ProcessCompletedRequest(DAC960_Command_T *Command, Command->SegmentCount, Command->DmaDirection); if (!end_that_request_first(Request, UpToDate, Command->BlockCount)) { - + add_disk_randomness(Request->rq_disk); end_that_request_last(Request, UpToDate); if (Command->Completion) { |