Re: [Y2038] [PATCH 11/12] [RFC] ipv4: avoid timespec in timestamp computation

2015-09-30 Thread Arnd Bergmann
On Wednesday 30 September 2015 19:55:43 kbuild test robot wrote: > Hi Arnd, > > [auto build test results on v4.3-rc3 -- if it's inappropriate base, please > ignore] > > config: mn10300-asb2364_defconfig (attached as .config) > reproduce: > wget > https://git.kernel.org/cgit/linux/kernel/git/w

Re: [PATCH 11/12] [RFC] ipv4: avoid timespec in timestamp computation

2015-09-30 Thread kbuild test robot
Hi Arnd, [auto build test results on v4.3-rc3 -- if it's inappropriate base, please ignore] reproduce: # apt-get install sparse make ARCH=x86_64 allmodconfig make C=1 CF=-D__CHECK_ENDIAN__ sparse warnings: (new ones prefixed by >>) >> kernel/time/timekeeping.c:850:5: sparse: symbol 'kti

Re: [PATCH 11/12] [RFC] ipv4: avoid timespec in timestamp computation

2015-09-30 Thread kbuild test robot
Hi Arnd, [auto build test results on v4.3-rc3 -- if it's inappropriate base, please ignore] config: mn10300-asb2364_defconfig (attached as .config) reproduce: wget https://git.kernel.org/cgit/linux/kernel/git/wfg/lkp-tests.git/plain/sbin/make.cross -O ~/bin/make.cross chmod +x ~/bin/make.c

[PATCH 11/12] [RFC] ipv4: avoid timespec in timestamp computation

2015-09-30 Thread Arnd Bergmann
This is an attempt to avoid the use of timespec in ipv4, where getnstimeofday() used to be used for computing the number of milliseconds since midnight, in three places. That computation would overflow in 2038 on 32-bit machines, and the normal workaround for this is to use timespec64, which in tu