diff options
author | Akinobu Mita <akinobu.mita@gmail.com> | 2013-03-04 21:58:20 +0900 |
---|---|---|
committer | Ben Myers <bpm@sgi.com> | 2013-03-07 12:33:57 -0600 |
commit | ecb3403de1efb56f78d9093376aec0a8af76b316 (patch) | |
tree | 54f0c677d9ff10994b57ad3593241df0c4cbb987 /fs/xfs/xfs_ialloc.c | |
parent | d5929de8337fef46f3e307914ed0f3cb845e66c1 (diff) | |
download | blackbird-obmc-linux-ecb3403de1efb56f78d9093376aec0a8af76b316.tar.gz blackbird-obmc-linux-ecb3403de1efb56f78d9093376aec0a8af76b316.zip |
xfs: rename random32() to prandom_u32()
Use more preferable function name which implies using a pseudo-random
number generator.
Signed-off-by: Akinobu Mita <akinobu.mita@gmail.com>
Acked-by: <bpm@sgi.com>
Cc: Ben Myers <bpm@sgi.com>
Cc: Alex Elder <elder@kernel.org>
Cc: xfs@oss.sgi.com
Signed-off-by: Ben Myers <bpm@sgi.com>
Diffstat (limited to 'fs/xfs/xfs_ialloc.c')
-rw-r--r-- | fs/xfs/xfs_ialloc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/xfs/xfs_ialloc.c b/fs/xfs/xfs_ialloc.c index 515bf71ce01c..ba626613bf49 100644 --- a/fs/xfs/xfs_ialloc.c +++ b/fs/xfs/xfs_ialloc.c @@ -369,7 +369,7 @@ xfs_ialloc_ag_alloc( * number from being easily guessable. */ error = xfs_ialloc_inode_init(args.mp, tp, agno, args.agbno, - args.len, random32()); + args.len, prandom_u32()); if (error) return error; |