Use more preferable function name which implies using a pseudo-random number generator.
Signed-off-by: Akinobu Mita <akinobu.m...@gmail.com> Cc: Stephen Hemminger <shemmin...@vyatta.com> Cc: Jamal Hadi Salim <j...@mojatatu.com> Cc: "David S. Miller" <da...@davemloft.net> Cc: ne...@lists.linux-foundation.org Cc: net...@vger.kernel.org Cc: net...@vger.kernel.org --- * Change from v1 - leave net_random() callers as-is because that is a useful indirection net/sched/sch_choke.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/net/sched/sch_choke.c b/net/sched/sch_choke.c index cc37dd5..ef53ab8 100644 --- a/net/sched/sch_choke.c +++ b/net/sched/sch_choke.c @@ -80,7 +80,7 @@ struct choke_sched_data { /* deliver a random number between 0 and N - 1 */ static u32 random_N(unsigned int N) { - return reciprocal_divide(random32(), N); + return reciprocal_divide(prandom_u32(), N); } /* number of elements in queue including holes */ -- 1.7.11.7 -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majord...@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/