* [B.A.T.M.A.N.] [PATCH -v2 19/26] batman-adv: rename random32() to prandom_u32() [not found] <1357215562-6288-1-git-send-email-akinobu.mita@gmail.com> @ 2013-01-03 12:19 ` Akinobu Mita 2013-01-04 2:12 ` Antonio Quartulli 0 siblings, 1 reply; 4+ messages in thread From: Akinobu Mita @ 2013-01-03 12:19 UTC (permalink / raw) To: linux-kernel, akpm Cc: netdev, b.a.t.m.a.n, Akinobu Mita, Simon Wunderlich, Marek Lindner, David S. Miller 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> Cc: 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 --- No change from v1 net/batman-adv/bat_iv_ogm.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/net/batman-adv/bat_iv_ogm.c b/net/batman-adv/bat_iv_ogm.c index 7d02ebd..bc434c4 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) unsigned int msecs; msecs = atomic_read(&bat_priv->orig_interval) - BATADV_JITTER; - msecs += random32() % (2 * BATADV_JITTER); + msecs += prandom_u32() % (2 * BATADV_JITTER); return jiffies + msecs_to_jiffies(msecs); } @@ -131,7 +131,7 @@ batadv_iv_ogm_emit_send_time(const struct batadv_priv *bat_priv) /* when do we schedule a ogm packet to be sent */ static unsigned long batadv_iv_ogm_fwd_send_time(void) { - return jiffies + msecs_to_jiffies(random32() % (BATADV_JITTER / 2)); + return jiffies + msecs_to_jiffies(prandom_u32() % (BATADV_JITTER / 2)); } /* apply hop penalty for a normal link */ -- 1.7.11.7 ^ permalink raw reply related [flat|nested] 4+ messages in thread
* Re: [B.A.T.M.A.N.] [PATCH -v2 19/26] batman-adv: rename random32() to prandom_u32() 2013-01-03 12:19 ` [B.A.T.M.A.N.] [PATCH -v2 19/26] batman-adv: rename random32() to prandom_u32() Akinobu Mita @ 2013-01-04 2:12 ` Antonio Quartulli 2013-01-04 13:50 ` Akinobu Mita 0 siblings, 1 reply; 4+ messages in thread From: Antonio Quartulli @ 2013-01-04 2:12 UTC (permalink / raw) To: Akinobu Mita Cc: netdev, b.a.t.m.a.n, linux-kernel, Simon Wunderlich, akpm, Marek Lindner, David S. Miller [-- Attachment #1: Type: text/plain, Size: 898 bytes --] On Thu, Jan 03, 2013 at 09:19:15PM +0900, Akinobu Mita wrote: > 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> > Cc: 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 > --- Hello Akinobu, as you can see in <201301021952.49979.lindner_marek@yahoo.de>, Marek Lindner already applied this change onto our tree. You didn't need to resend this patch to netdev, it will be sent by us through a future pull request. Thanks a lot. Cheers, -- Antonio Quartulli ..each of us alone is worth nothing.. Ernesto "Che" Guevara [-- Attachment #2: Type: application/pgp-signature, Size: 836 bytes --] ^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [B.A.T.M.A.N.] [PATCH -v2 19/26] batman-adv: rename random32() to prandom_u32() 2013-01-04 2:12 ` Antonio Quartulli @ 2013-01-04 13:50 ` Akinobu Mita 2013-01-06 9:00 ` Antonio Quartulli 0 siblings, 1 reply; 4+ messages in thread From: Akinobu Mita @ 2013-01-04 13:50 UTC (permalink / raw) To: Antonio Quartulli Cc: netdev, b.a.t.m.a.n, linux-kernel, Simon Wunderlich, akpm, Marek Lindner, David S. Miller 2013/1/4 Antonio Quartulli <ordex@autistici.org>: > On Thu, Jan 03, 2013 at 09:19:15PM +0900, Akinobu Mita wrote: >> 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> >> Cc: 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 >> --- > > Hello Akinobu, > > as you can see in <201301021952.49979.lindner_marek@yahoo.de>, Marek Lindner > already applied this change onto our tree. You didn't need to resend this patch > to netdev, it will be sent by us through a future pull request. Yes. I read Marek's email. But I included it in v2 again in order not to break the build. Because it doesn't show up the latest linux-next yet and the last patch 26/26 removes random32() and srandom32(). But I should have mentioned it and trimmed the Cc list. Sorry for the confusion. ^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [B.A.T.M.A.N.] [PATCH -v2 19/26] batman-adv: rename random32() to prandom_u32() 2013-01-04 13:50 ` Akinobu Mita @ 2013-01-06 9:00 ` Antonio Quartulli 0 siblings, 0 replies; 4+ messages in thread From: Antonio Quartulli @ 2013-01-06 9:00 UTC (permalink / raw) To: Akinobu Mita Cc: netdev, b.a.t.m.a.n, linux-kernel, Simon Wunderlich, akpm, Marek Lindner, David S. Miller [-- Attachment #1: Type: text/plain, Size: 1428 bytes --] On Fri, Jan 04, 2013 at 10:50:41PM +0900, Akinobu Mita wrote: > 2013/1/4 Antonio Quartulli <ordex@autistici.org>: > > On Thu, Jan 03, 2013 at 09:19:15PM +0900, Akinobu Mita wrote: > >> 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> > >> Cc: 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 > >> --- > > > > Hello Akinobu, > > > > as you can see in <201301021952.49979.lindner_marek@yahoo.de>, Marek Lindner > > already applied this change onto our tree. You didn't need to resend this patch > > to netdev, it will be sent by us through a future pull request. > > Yes. I read Marek's email. But I included it in v2 again in order not > to break the build. Because it doesn't show up the latest linux-next yet > and the last patch 26/26 removes random32() and srandom32(). > > But I should have mentioned it and trimmed the Cc list. > Sorry for the confusion. Ok..everything is fine as soon David won't apply this patch. Cheers, -- Antonio Quartulli ..each of us alone is worth nothing.. Ernesto "Che" Guevara [-- Attachment #2: Type: application/pgp-signature, Size: 836 bytes --] ^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2013-01-06 9:00 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
[not found] <1357215562-6288-1-git-send-email-akinobu.mita@gmail.com>
2013-01-03 12:19 ` [B.A.T.M.A.N.] [PATCH -v2 19/26] batman-adv: rename random32() to prandom_u32() Akinobu Mita
2013-01-04 2:12 ` Antonio Quartulli
2013-01-04 13:50 ` Akinobu Mita
2013-01-06 9:00 ` Antonio Quartulli
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox