]> git.baikalelectronics.ru Git - kernel.git/commit
Merge branch 'net-timestamps-y2038'
authorDavid S. Miller <davem@davemloft.net>
Tue, 1 Mar 2016 22:18:45 +0000 (17:18 -0500)
committerDavid S. Miller <davem@davemloft.net>
Tue, 1 Mar 2016 22:18:45 +0000 (17:18 -0500)
commitb9922273b78b6d719c924146034a16ebbe83fd91
tree995d717d35294cc0bac130b78949d2bbf00d49ab
parentac2c5cfb8874f84d54a433a56b82ee24ddbce6e9
parent0c2f0eb553b9e4e2273f6e854c19c2d898c55480
Merge branch 'net-timestamps-y2038'

Deepa Dinamani says:

====================
Convert network timestamps to be y2038 safe

Introduction:

The series is aimed at transitioning network timestamps to being
y2038 safe.
All patches can be reviewed and merged independently.

Socket timestamps and ioctl calls will be handled separately.

Thanks to Arnd Bergmann for discussing solution options with me.

Solution:

Data type struct timespec is not y2038 safe.
Replace timespec with struct timespec64 which is y2038 safe.

Changes v1 -> v2:
  Move and rename inet_current_time() as discussed
  Squash patches 1 and 2
  Reword commit text for patch 2/3
  Carry over review tags
====================

Signed-off-by: David S. Miller <davem@davemloft.net>