Re: [linux-yocto] [PATCH] base.cfg: Add POSIX_TIMERS to fix ping hang

2017-04-21 Thread Cal Sullivan
On 04/21/2017 11:19 AM, Bruce Ashfield wrote: On 2017-04-18 11:38 AM, Paul Gortmaker wrote: On 2017-04-17 08:31 PM, Saul Wold wrote: busybox ping was hanging after 1 loop with 4.10.x/4.11.x kernel. ping was hanging waiting for alarm to expire. 4.10.x kernel intrdoduced new kernel config

Re: [linux-yocto] [PATCH] base.cfg: Add POSIX_TIMERS to fix ping hang

2017-04-21 Thread Bruce Ashfield
On 2017-04-18 11:38 AM, Paul Gortmaker wrote: On 2017-04-17 08:31 PM, Saul Wold wrote: busybox ping was hanging after 1 loop with 4.10.x/4.11.x kernel. ping was hanging waiting for alarm to expire. 4.10.x kernel intrdoduced new kernel config CONFIG_POSIX_TIMERS which needs to be enabled to

Re: [linux-yocto] [PATCH] base.cfg: Add POSIX_TIMERS to fix ping hang

2017-04-18 Thread Paul Gortmaker
On 2017-04-17 08:31 PM, Saul Wold wrote: > busybox ping was hanging after 1 loop with 4.10.x/4.11.x kernel. > ping was hanging waiting for alarm to expire. > 4.10.x kernel intrdoduced new kernel config CONFIG_POSIX_TIMERS > which needs to be enabled to enable calls timer_create, settimer, > alarm

[linux-yocto] [PATCH] base.cfg: Add POSIX_TIMERS to fix ping hang

2017-04-17 Thread Saul Wold
busybox ping was hanging after 1 loop with 4.10.x/4.11.x kernel. ping was hanging waiting for alarm to expire. 4.10.x kernel intrdoduced new kernel config CONFIG_POSIX_TIMERS which needs to be enabled to enable calls timer_create, settimer, alarm etc. Signed-off-by: Kushwaha, Priyalee