aboutsummaryrefslogtreecommitdiffstats
path: root/drivers
diff options
context:
space:
mode:
authorClemens Ladisch <clemens@ladisch.de>2012-08-13 03:08:41 -0400
committerStefan Richter <stefanr@s5r6.in-berlin.de>2012-09-25 10:18:17 -0400
commitbadfcb24891ccd6d37750864b97586af8ab052c3 (patch)
treeaa48313cfb470d4555098075924813e0d5dc404c /drivers
parent979570e02981d4a8fc20b3cc8fd651856c98ee9d (diff)
firewire: core: feed /dev/random with devices' GUIDs
Send the GUIDs of newly registered controllers and devices to the /dev/random driver to help seed its pools. Signed-off-by: Clemens Ladisch <clemens@ladisch.de> Signed-off-by: Stefan Richter <stefanr@s5r6.in-berlin.de>
Diffstat (limited to 'drivers')
-rw-r--r--drivers/firewire/core-device.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/drivers/firewire/core-device.c b/drivers/firewire/core-device.c
index 7a05fd24d68b..3873d535b28d 100644
--- a/drivers/firewire/core-device.c
+++ b/drivers/firewire/core-device.c
@@ -32,6 +32,7 @@
32#include <linux/mod_devicetable.h> 32#include <linux/mod_devicetable.h>
33#include <linux/module.h> 33#include <linux/module.h>
34#include <linux/mutex.h> 34#include <linux/mutex.h>
35#include <linux/random.h>
35#include <linux/rwsem.h> 36#include <linux/rwsem.h>
36#include <linux/slab.h> 37#include <linux/slab.h>
37#include <linux/spinlock.h> 38#include <linux/spinlock.h>
@@ -1066,6 +1067,8 @@ static void fw_device_init(struct work_struct *work)
1066 device->config_rom_retries = 0; 1067 device->config_rom_retries = 0;
1067 1068
1068 set_broadcast_channel(device, device->generation); 1069 set_broadcast_channel(device, device->generation);
1070
1071 add_device_randomness(&device->config_rom[3], 8);
1069 } 1072 }
1070 1073
1071 /* 1074 /*