summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorkib <kib@FreeBSD.org>2017-11-07 09:46:26 +0000
committerSebastian Huber <sebastian.huber@embedded-brains.de>2018-08-24 15:00:02 +0200
commit91e828be4fc1dbf7a1c1966ff6d3e9e3fbe9647f (patch)
tree2bdda8716758a8f1ccc45e07d7f64ea0eefea7c9
parent7ff81234c4635bc0c2ea25f0b27b80767cc4dd29 (diff)
downloadcygnal-91e828be4fc1dbf7a1c1966ff6d3e9e3fbe9647f.tar.gz
cygnal-91e828be4fc1dbf7a1c1966ff6d3e9e3fbe9647f.tar.bz2
cygnal-91e828be4fc1dbf7a1c1966ff6d3e9e3fbe9647f.zip
Use hardware timestamps to report packet timestamps
for SO_TIMESTAMP and other similar socket options. Provide new control message SCM_TIME_INFO to supply information about timestamp. Currently it indicates that the timestamp was hardware-assisted and high-precision, for software timestamps the message is not returned. Reserved fields are added to ABI to report additional info about it, it is expected that raw hardware clock value might be useful for some applications. Reviewed by: gallatin (previous version), hselasky Sponsored by: Mellanox Technologies MFC after: 2 weeks X-Differential revision: https://reviews.freebsd.org/D12638
-rw-r--r--newlib/libc/sys/rtems/include/sys/socket.h11
1 files changed, 11 insertions, 0 deletions
diff --git a/newlib/libc/sys/rtems/include/sys/socket.h b/newlib/libc/sys/rtems/include/sys/socket.h
index 87d0f33e6..7c42eb5ce 100644
--- a/newlib/libc/sys/rtems/include/sys/socket.h
+++ b/newlib/libc/sys/rtems/include/sys/socket.h
@@ -563,6 +563,17 @@ struct sockcred {
#define SCM_BINTIME 0x04 /* timestamp (struct bintime) */
#define SCM_REALTIME 0x05 /* timestamp (struct timespec) */
#define SCM_MONOTONIC 0x06 /* timestamp (struct timespec) */
+#define SCM_TIME_INFO 0x07 /* timestamp info */
+
+struct sock_timestamp_info {
+ __uint32_t st_info_flags;
+ __uint32_t st_info_pad0;
+ __uint64_t st_info_rsv[7];
+};
+
+#define ST_INFO_HW 0x0001 /* SCM_TIMESTAMP was hw */
+#define ST_INFO_HW_HPREC 0x0002 /* SCM_TIMESTAMP was hw-assisted
+ on entrance */
#endif
#if __BSD_VISIBLE