Re: [Openipmi-developer] [PATCH 4/8] ipmi: kill off 'timespec' usage again

2019-11-08 Thread Corey Minyard
On Fri, Nov 08, 2019 at 09:34:27PM +0100, Arnd Bergmann wrote: > 'struct timespec' is getting removed from the kernel. The usage in ipmi > was fixed before in commit 48862ea2ce86 ("ipmi: Update timespec usage > to timespec64"), but unfortunately it crept back in. > > The busy looping code can bett

[Openipmi-developer] [PATCH 4/8] ipmi: kill off 'timespec' usage again

2019-11-08 Thread Arnd Bergmann
'struct timespec' is getting removed from the kernel. The usage in ipmi was fixed before in commit 48862ea2ce86 ("ipmi: Update timespec usage to timespec64"), but unfortunately it crept back in. The busy looping code can better use ktime_t anyway, so use that there to simplify the implementation.

[Openipmi-developer] [PATCH 0/8] y2038: bug fixes from y2038 work

2019-11-08 Thread Arnd Bergmann
I've gone through the remaining uses of time_t etc and come up with a set of 90 patches of varying complexity and importance, to the point of being able to remove the old time_t/timeval/timespec from the kernel headers completely. This set includes the eight patches that I think should be merged r