lkml.org 
[lkml]   [2013]   [Jan]   [3]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
    Patch in this message
    /
    From
    Subject[PATCH -v2 10/26] mmc: rename random32() to prandom_u32()
    Date
    Use more preferable function name which implies using a pseudo-random
    number generator.

    Signed-off-by: Akinobu Mita <akinobu.mita@gmail.com>
    Cc: Chris Ball <cjb@laptop.org>
    Cc: linux-mmc@vger.kernel.org
    ---

    No change from v1

    drivers/mmc/core/core.c | 4 ++--
    1 file changed, 2 insertions(+), 2 deletions(-)

    diff --git a/drivers/mmc/core/core.c b/drivers/mmc/core/core.c
    index aaed768..4b05da5 100644
    --- a/drivers/mmc/core/core.c
    +++ b/drivers/mmc/core/core.c
    @@ -120,8 +120,8 @@ static void mmc_should_fail_request(struct mmc_host *host,
    !should_fail(&host->fail_mmc_request, data->blksz * data->blocks))
    return;

    - data->error = data_errors[random32() % ARRAY_SIZE(data_errors)];
    - data->bytes_xfered = (random32() % (data->bytes_xfered >> 9)) << 9;
    + data->error = data_errors[prandom_u32() % ARRAY_SIZE(data_errors)];
    + data->bytes_xfered = (prandom_u32() % (data->bytes_xfered >> 9)) << 9;
    }

    #else /* CONFIG_FAIL_MMC_REQUEST */
    --
    1.7.11.7


    \
     
     \ /
      Last update: 2013-01-03 14:21    [W:4.780 / U:0.788 seconds]
    ©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site