]> git.baikalelectronics.ru Git - kernel.git/commit
Merge branch 'syststamp-removal'
authorDavid S. Miller <davem@davemloft.net>
Tue, 29 Jul 2014 18:40:07 +0000 (11:40 -0700)
committerDavid S. Miller <davem@davemloft.net>
Tue, 29 Jul 2014 18:40:25 +0000 (11:40 -0700)
commitf373c0220373255eec852134a28e8ed10d219ed5
tree2915bc3a3e8ea825e7b02349b05915aaff8a91eb
parent8c68fe05bed45ede7ecac980c1e354a8007ecb1c
parentf89e2555d4b08b58502b42a049c33ee66d48fa87
Merge branch 'syststamp-removal'

Willem de Bruijn says:

====================
net: remove deprecated syststamp

The network stack can generate two kinds of hardware timestamps:
- hwtstamp stores a hw timestamp in device-specific raw format
- syststamp convers the raw format to system time

The second is deprecated and only implemented by a single device
driver. The suggested alternative is to communicate hwtstamp +
directly expose the NIC PTP clock device through ptp_clock_info.
The remaining driver (octeon) does not expose such a standard
interface as of now. It does have its own PTP library that depends
on its own shared memory PTP clock interface.

This patchset
1. reverts the syststamp code in the one driver (octeon)
2. reverts an unnecessary zero initialization in another (vxge)
3. modifies PF_PACKET to use syststamp is != 0 (because always == 0)
4. modifies SCM_TIMESTAMPING in the same way

For backwards compatibility, the interfaces are not removed.
Applications can still request SOF_TIMESTAMPING_SYS_HARDWARE. The
response field in scm_timestamping also remains. As was the case
for hardware/drivers that did not implement the feature, the
setsockopt succeeds, but the response field is always zero.
====================

Acked-by: Richard Cochran <richardcochran@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>