diff options
author | Akinobu Mita <akinobu.mita@gmail.com> | 2012-12-23 21:14:07 -0500 |
---|---|---|
committer | Antonio Quartulli <ordex@autistici.org> | 2013-01-19 08:18:12 -0500 |
commit | e76e4320a26ba6301dfd3e9a28a1e3faccd302ab (patch) | |
tree | e90d014817332420ba1f590bc2ac689d026f3130 /net/batman-adv | |
parent | 88a32c9a8a3f0217430f0b67fc90e425c1ceaa7f (diff) |
batman-adv: 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: Antonio Quartulli <ordex@autistici.org>
Signed-off-by: Marek Lindner <lindner_marek@yahoo.de>
Cc: Simon Wunderlich <siwu@hrz.tu-chemnitz.de>
Cc: Antonio Quartulli <ordex@autistici.org>
Cc: b.a.t.m.a.n@lists.open-mesh.org
Cc: "David S. Miller" <davem@davemloft.net>
Cc: netdev@vger.kernel.org
Signed-off-by: Antonio Quartulli <ordex@autistici.org>
Diffstat (limited to 'net/batman-adv')
-rw-r--r-- | net/batman-adv/bat_iv_ogm.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/net/batman-adv/bat_iv_ogm.c b/net/batman-adv/bat_iv_ogm.c index 8f2de43b7597..36b97278c118 100644 --- a/net/batman-adv/bat_iv_ogm.c +++ b/net/batman-adv/bat_iv_ogm.c | |||
@@ -123,7 +123,7 @@ batadv_iv_ogm_emit_send_time(const struct batadv_priv *bat_priv) | |||
123 | unsigned int msecs; | 123 | unsigned int msecs; |
124 | 124 | ||
125 | msecs = atomic_read(&bat_priv->orig_interval) - BATADV_JITTER; | 125 | msecs = atomic_read(&bat_priv->orig_interval) - BATADV_JITTER; |
126 | msecs += random32() % (2 * BATADV_JITTER); | 126 | msecs += prandom_u32() % (2 * BATADV_JITTER); |
127 | 127 | ||
128 | return jiffies + msecs_to_jiffies(msecs); | 128 | return jiffies + msecs_to_jiffies(msecs); |
129 | } | 129 | } |
@@ -131,7 +131,7 @@ batadv_iv_ogm_emit_send_time(const struct batadv_priv *bat_priv) | |||
131 | /* when do we schedule a ogm packet to be sent */ | 131 | /* when do we schedule a ogm packet to be sent */ |
132 | static unsigned long batadv_iv_ogm_fwd_send_time(void) | 132 | static unsigned long batadv_iv_ogm_fwd_send_time(void) |
133 | { | 133 | { |
134 | return jiffies + msecs_to_jiffies(random32() % (BATADV_JITTER / 2)); | 134 | return jiffies + msecs_to_jiffies(prandom_u32() % (BATADV_JITTER / 2)); |
135 | } | 135 | } |
136 | 136 | ||
137 | /* apply hop penalty for a normal link */ | 137 | /* apply hop penalty for a normal link */ |