Re: [U-Boot] [PATCH v3 02/21] net: Move MAC-seeded rand out of bootp.c

2012-05-29 Thread Joe Hershberger
Hi Michael, On Mon, May 28, 2012 at 5:03 PM, Michael Walle mich...@walle.cc wrote: [sorry for my first mail.. wasn't intented to be send] Sorry for being too late on this. Am Mittwoch 23 Mai 2012, 19:57:58 schrieb Joe Hershberger: Make the MAC-seeded random number generator available to

Re: [U-Boot] [PATCH v3 02/21] net: Move MAC-seeded rand out of bootp.c

2012-05-29 Thread Joe Hershberger
Hi Michael, On Tue, May 29, 2012 at 1:23 PM, Michael Walle mich...@walle.cc wrote: Hi Joe, Am Dienstag 29 Mai 2012, 20:08:26 schrieb Joe Hershberger: If you can verify that the functionality of the CONFIG_BOOTP_RANDOM_DELAY and CONFIG_CMD_LINK_LOCAL are uneffected, then I'm OK with it.

Re: [U-Boot] [PATCH v3 02/21] net: Move MAC-seeded rand out of bootp.c

2012-05-29 Thread Michael Walle
Hi Joe, Am Dienstag 29 Mai 2012, 23:08:23 schrieb Joe Hershberger: Hi Michael, On Tue, May 29, 2012 at 1:23 PM, Michael Walle mich...@walle.cc wrote: Hi Joe, Am Dienstag 29 Mai 2012, 20:08:26 schrieb Joe Hershberger: If you can verify that the functionality of the

Re: [U-Boot] [PATCH v3 02/21] net: Move MAC-seeded rand out of bootp.c

2012-05-29 Thread Joe Hershberger
Hi Michael, On Tue, May 29, 2012 at 5:06 PM, Michael Walle mich...@walle.cc wrote: Hi Joe, Am Dienstag 29 Mai 2012, 23:08:23 schrieb Joe Hershberger: Hi Michael, On Tue, May 29, 2012 at 1:23 PM, Michael Walle mich...@walle.cc wrote: Hi Joe, Am Dienstag 29 Mai 2012, 20:08:26 schrieb

Re: [U-Boot] [PATCH v3 02/21] net: Move MAC-seeded rand out of bootp.c

2012-05-29 Thread Michael Walle
Hi Joe, Am Mittwoch 30 Mai 2012, 00:40:18 schrieb Joe Hershberger: Ah now i get it. But which other code may run and seed the NG with the timer only, while we are in the link local netloop? Shouldn't it be safe to first call srand(mac+timer) and then rand() multiple times? No other code

Re: [U-Boot] [PATCH v3 02/21] net: Move MAC-seeded rand out of bootp.c

2012-05-28 Thread Michael Walle
Am Mittwoch 23 Mai 2012, 19:57:58 schrieb Joe Hershberger: t_ran -- Mit freundlichen Grüßen, Michael Walle In den Rohrwiesen 1a 66440 Blieskastel mich...@walle.cc --- Don't cry because it is over, smile because it happened. ___ U-Boot mailing

Re: [U-Boot] [PATCH v3 02/21] net: Move MAC-seeded rand out of bootp.c

2012-05-28 Thread Michael Walle
[sorry for my first mail.. wasn't intented to be send] Sorry for being too late on this. Am Mittwoch 23 Mai 2012, 19:57:58 schrieb Joe Hershberger: Make the MAC-seeded random number generator available to /net in general. MAC-seeded rand will be needed by link-local as well, so give it an

[U-Boot] [PATCH v3 02/21] net: Move MAC-seeded rand out of bootp.c

2012-05-23 Thread Joe Hershberger
Make the MAC-seeded random number generator available to /net in general. MAC-seeded rand will be needed by link-local as well, so give it an interface. Signed-off-by: Joe Hershberger joe.hershber...@ni.com Cc: Joe Hershberger joe.hershber...@gmail.com --- Changes for v3: - Lowercase hex -