]> git.karo-electronics.de Git - karo-tx-linux.git/commit
Always clear QUEUE_FLAG_ADD_RANDOM if any underlying device does not
authorMilan Broz <mbroz@redhat.com>
Thu, 27 Sep 2012 23:28:17 +0000 (09:28 +1000)
committerStephen Rothwell <sfr@canb.auug.org.au>
Thu, 27 Sep 2012 23:28:17 +0000 (09:28 +1000)
commit122e80617e58b1cd8a6c3719077f78122135daed
tree7407db993fea6d2f6d926d3b5ff1195d06d6c2b1
parentf6293c941d1a4589a3f4745e6ad68683c58d07b7
Always clear QUEUE_FLAG_ADD_RANDOM if any underlying device does not
have it set. Otherwise devices with predictable characteristics may
contribute entropy.

QUEUE_FLAG_ADD_RANDOM specifies whether or not queue IO timings
contribute to the random pool.

For bio-based targets this flag is always 0 because such devices have no
real queue.

For request-based devices this flag was always set to 1 by default.

Now set it according to the flags on underlying devices. If there is at
least one device which should not contribute, set the flag to zero: If a
device, such as fast SSD storage, is not suitable for supplying entropy,
a request-based queue stacked over it will not be either.

Because the checking logic is exactly same as for the rotational flag,
share the iteration function with device_is_nonrot().

Signed-off-by: Milan Broz <mbroz@redhat.com>
Cc: stable@vger.kernel.org
Signed-off-by: Alasdair G Kergon <agk@redhat.com>
drivers/md/dm-table.c