ext2/3: use prandom_u32() instead of get_random_bytes()
authorZhangZhen <zhenzhang.zhang@huawei.com>
Wed, 26 Feb 2014 02:32:41 +0000 (10:32 +0800)
committerJan Kara <jack@suse.cz>
Tue, 4 Mar 2014 11:19:03 +0000 (12:19 +0100)
commite878167af92fda03eb3a8597eec24128d4d47c43
tree27eb1888379fd6e6a182ea0d01401140c9819ba4
parent4ddb987a478aa303c38cfc543d309247ccbfa395
ext2/3: use prandom_u32() instead of get_random_bytes()

Many of the uses of get_random_bytes() do not actually need
cryptographically secure random numbers.  Replace those uses with a
call to prandom_u32(), which is faster and which doesn't consume
entropy from the /dev/random driver.

The commit dd1f723bf56bd96efc9d90e9e60dc511c79de48f has made that for
ext4, and i did the same for ext2/3.

Signed-off-by: Zhang Zhen <zhenzhang.zhang@huawei.com>
Signed-off-by: Jan Kara <jack@suse.cz>
fs/ext2/ialloc.c
fs/ext3/ialloc.c