Re: [PATCH rtems-libbsd 1/7] rtemsbsd: Catch timeout overflows

2021-08-02 Thread Chris Johns
On 29/7/21 8:44 am, Chris Johns wrote: > On 28/7/21 4:44 pm, Sebastian Huber wrote: >> On 28/07/2021 08:43, Chris Johns wrote: Why don't we use the FreeBSD implementation one-to-one: freebsd-org/sys/kern/kern_clock.c >>> I am fixing the code that exists. I have no idea why

Re: [PATCH rtems-libbsd 1/7] rtemsbsd: Catch timeout overflows

2021-07-28 Thread Chris Johns
On 28/7/21 4:44 pm, Sebastian Huber wrote: > On 28/07/2021 08:43, Chris Johns wrote: >>> Why don't we use the FreeBSD implementation one-to-one: >>> >>> freebsd-org/sys/kern/kern_clock.c >>> >> I am fixing the code that exists. I have no idea why kern_clock.c was not >> ported >> in the first

Re: [PATCH rtems-libbsd 1/7] rtemsbsd: Catch timeout overflows

2021-07-28 Thread Sebastian Huber
On 28/07/2021 08:43, Chris Johns wrote: Why don't we use the FreeBSD implementation one-to-one: freebsd-org/sys/kern/kern_clock.c I am fixing the code that exists. I have no idea why kern_clock.c was not ported in the first place. I will not be porting the clock code at this point in time,

Re: [PATCH rtems-libbsd 1/7] rtemsbsd: Catch timeout overflows

2021-07-28 Thread Chris Johns
On 28/7/21 4:03 pm, Sebastian Huber wrote: > On 28/07/2021 00:53, Chris Johns wrote: >> On 28/7/21 7:38 am, Gedare Bloom wrote: >>> On Tue, Jul 27, 2021 at 2:59 AMĀ  wrote: From: Chris Johns Update #4475 >>> This change could probably use its own ticket. >> Without the change the RPC

Re: [PATCH rtems-libbsd 1/7] rtemsbsd: Catch timeout overflows

2021-07-28 Thread Sebastian Huber
On 28/07/2021 00:53, Chris Johns wrote: On 28/7/21 7:38 am, Gedare Bloom wrote: On Tue, Jul 27, 2021 at 2:59 AM wrote: From: Chris Johns Update #4475 This change could probably use its own ticket. Without the change the RPC client fails to connect in a reliable way because the connection

Re: [PATCH rtems-libbsd 1/7] rtemsbsd: Catch timeout overflows

2021-07-27 Thread Chris Johns
On 28/7/21 7:38 am, Gedare Bloom wrote: > On Tue, Jul 27, 2021 at 2:59 AM wrote: >> >> From: Chris Johns >> >> Update #4475 > This change could probably use its own ticket. Without the change the RPC client fails to connect in a reliable way because the connection may time out for no real

Re: [PATCH rtems-libbsd 1/7] rtemsbsd: Catch timeout overflows

2021-07-27 Thread Gedare Bloom
On Tue, Jul 27, 2021 at 2:59 AM wrote: > > From: Chris Johns > > Update #4475 This change could probably use its own ticket. > --- > rtemsbsd/rtems/rtems-kernel-timesupport.c | 8 +++- > 1 file changed, 7 insertions(+), 1 deletion(-) > > diff --git

[PATCH rtems-libbsd 1/7] rtemsbsd: Catch timeout overflows

2021-07-27 Thread chrisj
From: Chris Johns Update #4475 --- rtemsbsd/rtems/rtems-kernel-timesupport.c | 8 +++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/rtemsbsd/rtems/rtems-kernel-timesupport.c b/rtemsbsd/rtems/rtems-kernel-timesupport.c index ef14d1fa..5d290d66 100644 ---