Home
last modified time | relevance | path

Searched refs:SO_TIMESTAMPING (Results 1 – 19 of 19) sorted by relevance

/openbmc/linux/tools/include/uapi/asm-generic/
H A Dsocket.h133 #define SO_TIMESTAMPING SO_TIMESTAMPING_OLD macro
140 #define SO_TIMESTAMPING (sizeof(time_t) == sizeof(__kernel_long_t) ? SO_TIMESTAMPING_OLD : SO_TIMES… macro
148 #define SCM_TIMESTAMPING SO_TIMESTAMPING
/openbmc/linux/include/uapi/asm-generic/
H A Dsocket.h144 #define SO_TIMESTAMPING SO_TIMESTAMPING_OLD macro
151 #define SO_TIMESTAMPING (sizeof(time_t) == sizeof(__kernel_long_t) ? SO_TIMESTAMPING_OLD : SO_TIMES… macro
159 #define SCM_TIMESTAMPING SO_TIMESTAMPING
/openbmc/linux/arch/sparc/include/uapi/asm/
H A Dsocket.h142 #define SO_TIMESTAMPING SO_TIMESTAMPING_OLD macro
149 #define SO_TIMESTAMPING (sizeof(time_t) == sizeof(__kernel_long_t) ? SO_TIMESTAMPING_OLD : SO_TIMES… macro
157 #define SCM_TIMESTAMPING SO_TIMESTAMPING
/openbmc/linux/arch/alpha/include/uapi/asm/
H A Dsocket.h148 #define SO_TIMESTAMPING SO_TIMESTAMPING_OLD macro
155 #define SO_TIMESTAMPING (sizeof(time_t) == sizeof(__kernel_long_t) ? SO_TIMESTAMPING_OLD : SO_TIMES… macro
163 #define SCM_TIMESTAMPING SO_TIMESTAMPING
/openbmc/linux/arch/parisc/include/uapi/asm/
H A Dsocket.h140 #define SO_TIMESTAMPING SO_TIMESTAMPING_OLD macro
146 #define SO_TIMESTAMPING (sizeof(time_t) == sizeof(__kernel_long_t) ? SO_TIMESTAMPING_OLD : SO_TIMES… macro
154 #define SCM_TIMESTAMPING SO_TIMESTAMPING
/openbmc/linux/arch/mips/include/uapi/asm/
H A Dsocket.h159 #define SO_TIMESTAMPING SO_TIMESTAMPING_OLD macro
166 #define SO_TIMESTAMPING (sizeof(time_t) == sizeof(__kernel_long_t) ? SO_TIMESTAMPING_OLD : SO_TIMES… macro
174 #define SCM_TIMESTAMPING SO_TIMESTAMPING
/openbmc/linux/tools/testing/selftests/net/
H A Dtimestamping.c37 #ifndef SO_TIMESTAMPING
38 # define SO_TIMESTAMPING 37 macro
39 # define SCM_TIMESTAMPING SO_TIMESTAMPING
196 case SO_TIMESTAMPING: { in printpacket()
460 setsockopt(sock, SOL_SOCKET, SO_TIMESTAMPING, &so_timestamping, in main()
483 if (getsockopt(sock, SOL_SOCKET, SO_TIMESTAMPING, &so_timestamping_get, in main()
H A Dudpgso_bench_tx.c149 if (cmsg->cmsg_type == SO_TIMESTAMPING) { in flush_cmsg()
319 cm->cmsg_type = SO_TIMESTAMPING; in send_ts_cmsg()
578 if (setsockopt(fd, SOL_SOCKET, SO_TIMESTAMPING, &val, sizeof(val))) in set_tx_timestamping()
H A Dcmsg_sender.c282 if (setsockopt(fd, SOL_SOCKET, SO_TIMESTAMPING, in cs_write_cmsg()
292 cmsg->cmsg_type = SO_TIMESTAMPING; in cs_write_cmsg()
H A Dtxtimestamp.c573 if (setsockopt(fd, SOL_SOCKET, SO_TIMESTAMPING, in do_test()
630 cmsg->cmsg_type = SO_TIMESTAMPING; in do_test()
H A Drxtimestamp.c272 setsockopt(rcv, SOL_SOCKET, SO_TIMESTAMPING, in config_so_flags()
/openbmc/linux/drivers/net/ethernet/xscale/
H A DKconfig40 using the SO_TIMESTAMPING API.
/openbmc/linux/drivers/ptp/
H A DKconfig67 packets using the SO_TIMESTAMPING API.
87 using the SO_TIMESTAMPING API.
117 SO_TIMESTAMPING API.
/openbmc/linux/drivers/net/ethernet/freescale/enetc/
H A DKconfig65 packets using the SO_TIMESTAMPING API.
/openbmc/linux/Documentation/networking/
H A Dtimestamping.rst36 SO_TIMESTAMPING
71 1.3 SO_TIMESTAMPING (also SO_TIMESTAMPING_OLD and SO_TIMESTAMPING_NEW)
77 err = setsockopt(fd, SOL_SOCKET, SO_TIMESTAMPING, &val, sizeof(val));
293 cmsg->cmsg_type = SO_TIMESTAMPING;
308 err = setsockopt(fd, SOL_SOCKET, SO_TIMESTAMPING, &val, sizeof(val));
314 The SO_TIMESTAMPING interface supports timestamping of bytes in a
414 together with SO_TIMESTAMPING using SOF_TIMESTAMPING_SOFTWARE, a false
659 hardware timestamping on it. This is because the SO_TIMESTAMPING API does not
H A Dpacket_mmap.rst1034 PACKET_TIMESTAMP accepts the same integer bit field as SO_TIMESTAMPING::
H A Dethtool-netlink.rst1230 ``ETHTOOL_A_TSINFO_TIMESTAMPING`` bitset SO_TIMESTAMPING flags
/openbmc/linux/Documentation/driver-api/
H A Dptp.rst8 Linux. Together with the SO_TIMESTAMPING socket options, this
/openbmc/linux/tools/testing/selftests/bpf/
H A Dxdp_hw_metadata.c402 ret = setsockopt(fd, SOL_SOCKET, SO_TIMESTAMPING, &val, sizeof(val)); in timestamping_enable()