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>
This commit is contained in:
@@ -842,7 +842,7 @@ xfs_alloc_ag_vextent_near(
|
||||
*/
|
||||
int dofirst; /* set to do first algorithm */
|
||||
|
||||
dofirst = random32() & 1;
|
||||
dofirst = prandom_u32() & 1;
|
||||
#endif
|
||||
|
||||
restart:
|
||||
|
Reference in New Issue
Block a user