timestamping.txt 22 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538
  1. 1. Control Interfaces
  2. The interfaces for receiving network packages timestamps are:
  3. * SO_TIMESTAMP
  4. Generates a timestamp for each incoming packet in (not necessarily
  5. monotonic) system time. Reports the timestamp via recvmsg() in a
  6. control message as struct timeval (usec resolution).
  7. * SO_TIMESTAMPNS
  8. Same timestamping mechanism as SO_TIMESTAMP, but reports the
  9. timestamp as struct timespec (nsec resolution).
  10. * IP_MULTICAST_LOOP + SO_TIMESTAMP[NS]
  11. Only for multicast:approximate transmit timestamp obtained by
  12. reading the looped packet receive timestamp.
  13. * SO_TIMESTAMPING
  14. Generates timestamps on reception, transmission or both. Supports
  15. multiple timestamp sources, including hardware. Supports generating
  16. timestamps for stream sockets.
  17. 1.1 SO_TIMESTAMP:
  18. This socket option enables timestamping of datagrams on the reception
  19. path. Because the destination socket, if any, is not known early in
  20. the network stack, the feature has to be enabled for all packets. The
  21. same is true for all early receive timestamp options.
  22. For interface details, see `man 7 socket`.
  23. 1.2 SO_TIMESTAMPNS:
  24. This option is identical to SO_TIMESTAMP except for the returned data type.
  25. Its struct timespec allows for higher resolution (ns) timestamps than the
  26. timeval of SO_TIMESTAMP (ms).
  27. 1.3 SO_TIMESTAMPING:
  28. Supports multiple types of timestamp requests. As a result, this
  29. socket option takes a bitmap of flags, not a boolean. In
  30. err = setsockopt(fd, SOL_SOCKET, SO_TIMESTAMPING, &val, sizeof(val));
  31. val is an integer with any of the following bits set. Setting other
  32. bit returns EINVAL and does not change the current state.
  33. The socket option configures timestamp generation for individual
  34. sk_buffs (1.3.1), timestamp reporting to the socket's error
  35. queue (1.3.2) and options (1.3.3). Timestamp generation can also
  36. be enabled for individual sendmsg calls using cmsg (1.3.4).
  37. 1.3.1 Timestamp Generation
  38. Some bits are requests to the stack to try to generate timestamps. Any
  39. combination of them is valid. Changes to these bits apply to newly
  40. created packets, not to packets already in the stack. As a result, it
  41. is possible to selectively request timestamps for a subset of packets
  42. (e.g., for sampling) by embedding an send() call within two setsockopt
  43. calls, one to enable timestamp generation and one to disable it.
  44. Timestamps may also be generated for reasons other than being
  45. requested by a particular socket, such as when receive timestamping is
  46. enabled system wide, as explained earlier.
  47. SOF_TIMESTAMPING_RX_HARDWARE:
  48. Request rx timestamps generated by the network adapter.
  49. SOF_TIMESTAMPING_RX_SOFTWARE:
  50. Request rx timestamps when data enters the kernel. These timestamps
  51. are generated just after a device driver hands a packet to the
  52. kernel receive stack.
  53. SOF_TIMESTAMPING_TX_HARDWARE:
  54. Request tx timestamps generated by the network adapter. This flag
  55. can be enabled via both socket options and control messages.
  56. SOF_TIMESTAMPING_TX_SOFTWARE:
  57. Request tx timestamps when data leaves the kernel. These timestamps
  58. are generated in the device driver as close as possible, but always
  59. prior to, passing the packet to the network interface. Hence, they
  60. require driver support and may not be available for all devices.
  61. This flag can be enabled via both socket options and control messages.
  62. SOF_TIMESTAMPING_TX_SCHED:
  63. Request tx timestamps prior to entering the packet scheduler. Kernel
  64. transmit latency is, if long, often dominated by queuing delay. The
  65. difference between this timestamp and one taken at
  66. SOF_TIMESTAMPING_TX_SOFTWARE will expose this latency independent
  67. of protocol processing. The latency incurred in protocol
  68. processing, if any, can be computed by subtracting a userspace
  69. timestamp taken immediately before send() from this timestamp. On
  70. machines with virtual devices where a transmitted packet travels
  71. through multiple devices and, hence, multiple packet schedulers,
  72. a timestamp is generated at each layer. This allows for fine
  73. grained measurement of queuing delay. This flag can be enabled
  74. via both socket options and control messages.
  75. SOF_TIMESTAMPING_TX_ACK:
  76. Request tx timestamps when all data in the send buffer has been
  77. acknowledged. This only makes sense for reliable protocols. It is
  78. currently only implemented for TCP. For that protocol, it may
  79. over-report measurement, because the timestamp is generated when all
  80. data up to and including the buffer at send() was acknowledged: the
  81. cumulative acknowledgment. The mechanism ignores SACK and FACK.
  82. This flag can be enabled via both socket options and control messages.
  83. 1.3.2 Timestamp Reporting
  84. The other three bits control which timestamps will be reported in a
  85. generated control message. Changes to the bits take immediate
  86. effect at the timestamp reporting locations in the stack. Timestamps
  87. are only reported for packets that also have the relevant timestamp
  88. generation request set.
  89. SOF_TIMESTAMPING_SOFTWARE:
  90. Report any software timestamps when available.
  91. SOF_TIMESTAMPING_SYS_HARDWARE:
  92. This option is deprecated and ignored.
  93. SOF_TIMESTAMPING_RAW_HARDWARE:
  94. Report hardware timestamps as generated by
  95. SOF_TIMESTAMPING_TX_HARDWARE when available.
  96. 1.3.3 Timestamp Options
  97. The interface supports the options
  98. SOF_TIMESTAMPING_OPT_ID:
  99. Generate a unique identifier along with each packet. A process can
  100. have multiple concurrent timestamping requests outstanding. Packets
  101. can be reordered in the transmit path, for instance in the packet
  102. scheduler. In that case timestamps will be queued onto the error
  103. queue out of order from the original send() calls. It is not always
  104. possible to uniquely match timestamps to the original send() calls
  105. based on timestamp order or payload inspection alone, then.
  106. This option associates each packet at send() with a unique
  107. identifier and returns that along with the timestamp. The identifier
  108. is derived from a per-socket u32 counter (that wraps). For datagram
  109. sockets, the counter increments with each sent packet. For stream
  110. sockets, it increments with every byte.
  111. The counter starts at zero. It is initialized the first time that
  112. the socket option is enabled. It is reset each time the option is
  113. enabled after having been disabled. Resetting the counter does not
  114. change the identifiers of existing packets in the system.
  115. This option is implemented only for transmit timestamps. There, the
  116. timestamp is always looped along with a struct sock_extended_err.
  117. The option modifies field ee_data to pass an id that is unique
  118. among all possibly concurrently outstanding timestamp requests for
  119. that socket.
  120. SOF_TIMESTAMPING_OPT_CMSG:
  121. Support recv() cmsg for all timestamped packets. Control messages
  122. are already supported unconditionally on all packets with receive
  123. timestamps and on IPv6 packets with transmit timestamp. This option
  124. extends them to IPv4 packets with transmit timestamp. One use case
  125. is to correlate packets with their egress device, by enabling socket
  126. option IP_PKTINFO simultaneously.
  127. SOF_TIMESTAMPING_OPT_TSONLY:
  128. Applies to transmit timestamps only. Makes the kernel return the
  129. timestamp as a cmsg alongside an empty packet, as opposed to
  130. alongside the original packet. This reduces the amount of memory
  131. charged to the socket's receive budget (SO_RCVBUF) and delivers
  132. the timestamp even if sysctl net.core.tstamp_allow_data is 0.
  133. This option disables SOF_TIMESTAMPING_OPT_CMSG.
  134. SOF_TIMESTAMPING_OPT_STATS:
  135. Optional stats that are obtained along with the transmit timestamps.
  136. It must be used together with SOF_TIMESTAMPING_OPT_TSONLY. When the
  137. transmit timestamp is available, the stats are available in a
  138. separate control message of type SCM_TIMESTAMPING_OPT_STATS, as a
  139. list of TLVs (struct nlattr) of types. These stats allow the
  140. application to associate various transport layer stats with
  141. the transmit timestamps, such as how long a certain block of
  142. data was limited by peer's receiver window.
  143. SOF_TIMESTAMPING_OPT_PKTINFO:
  144. Enable the SCM_TIMESTAMPING_PKTINFO control message for incoming
  145. packets with hardware timestamps. The message contains struct
  146. scm_ts_pktinfo, which supplies the index of the real interface which
  147. received the packet and its length at layer 2. A valid (non-zero)
  148. interface index will be returned only if CONFIG_NET_RX_BUSY_POLL is
  149. enabled and the driver is using NAPI. The struct contains also two
  150. other fields, but they are reserved and undefined.
  151. SOF_TIMESTAMPING_OPT_TX_SWHW:
  152. Request both hardware and software timestamps for outgoing packets
  153. when SOF_TIMESTAMPING_TX_HARDWARE and SOF_TIMESTAMPING_TX_SOFTWARE
  154. are enabled at the same time. If both timestamps are generated,
  155. two separate messages will be looped to the socket's error queue,
  156. each containing just one timestamp.
  157. New applications are encouraged to pass SOF_TIMESTAMPING_OPT_ID to
  158. disambiguate timestamps and SOF_TIMESTAMPING_OPT_TSONLY to operate
  159. regardless of the setting of sysctl net.core.tstamp_allow_data.
  160. An exception is when a process needs additional cmsg data, for
  161. instance SOL_IP/IP_PKTINFO to detect the egress network interface.
  162. Then pass option SOF_TIMESTAMPING_OPT_CMSG. This option depends on
  163. having access to the contents of the original packet, so cannot be
  164. combined with SOF_TIMESTAMPING_OPT_TSONLY.
  165. 1.3.4. Enabling timestamps via control messages
  166. In addition to socket options, timestamp generation can be requested
  167. per write via cmsg, only for SOF_TIMESTAMPING_TX_* (see Section 1.3.1).
  168. Using this feature, applications can sample timestamps per sendmsg()
  169. without paying the overhead of enabling and disabling timestamps via
  170. setsockopt:
  171. struct msghdr *msg;
  172. ...
  173. cmsg = CMSG_FIRSTHDR(msg);
  174. cmsg->cmsg_level = SOL_SOCKET;
  175. cmsg->cmsg_type = SO_TIMESTAMPING;
  176. cmsg->cmsg_len = CMSG_LEN(sizeof(__u32));
  177. *((__u32 *) CMSG_DATA(cmsg)) = SOF_TIMESTAMPING_TX_SCHED |
  178. SOF_TIMESTAMPING_TX_SOFTWARE |
  179. SOF_TIMESTAMPING_TX_ACK;
  180. err = sendmsg(fd, msg, 0);
  181. The SOF_TIMESTAMPING_TX_* flags set via cmsg will override
  182. the SOF_TIMESTAMPING_TX_* flags set via setsockopt.
  183. Moreover, applications must still enable timestamp reporting via
  184. setsockopt to receive timestamps:
  185. __u32 val = SOF_TIMESTAMPING_SOFTWARE |
  186. SOF_TIMESTAMPING_OPT_ID /* or any other flag */;
  187. err = setsockopt(fd, SOL_SOCKET, SO_TIMESTAMPING, &val, sizeof(val));
  188. 1.4 Bytestream Timestamps
  189. The SO_TIMESTAMPING interface supports timestamping of bytes in a
  190. bytestream. Each request is interpreted as a request for when the
  191. entire contents of the buffer has passed a timestamping point. That
  192. is, for streams option SOF_TIMESTAMPING_TX_SOFTWARE will record
  193. when all bytes have reached the device driver, regardless of how
  194. many packets the data has been converted into.
  195. In general, bytestreams have no natural delimiters and therefore
  196. correlating a timestamp with data is non-trivial. A range of bytes
  197. may be split across segments, any segments may be merged (possibly
  198. coalescing sections of previously segmented buffers associated with
  199. independent send() calls). Segments can be reordered and the same
  200. byte range can coexist in multiple segments for protocols that
  201. implement retransmissions.
  202. It is essential that all timestamps implement the same semantics,
  203. regardless of these possible transformations, as otherwise they are
  204. incomparable. Handling "rare" corner cases differently from the
  205. simple case (a 1:1 mapping from buffer to skb) is insufficient
  206. because performance debugging often needs to focus on such outliers.
  207. In practice, timestamps can be correlated with segments of a
  208. bytestream consistently, if both semantics of the timestamp and the
  209. timing of measurement are chosen correctly. This challenge is no
  210. different from deciding on a strategy for IP fragmentation. There, the
  211. definition is that only the first fragment is timestamped. For
  212. bytestreams, we chose that a timestamp is generated only when all
  213. bytes have passed a point. SOF_TIMESTAMPING_TX_ACK as defined is easy to
  214. implement and reason about. An implementation that has to take into
  215. account SACK would be more complex due to possible transmission holes
  216. and out of order arrival.
  217. On the host, TCP can also break the simple 1:1 mapping from buffer to
  218. skbuff as a result of Nagle, cork, autocork, segmentation and GSO. The
  219. implementation ensures correctness in all cases by tracking the
  220. individual last byte passed to send(), even if it is no longer the
  221. last byte after an skbuff extend or merge operation. It stores the
  222. relevant sequence number in skb_shinfo(skb)->tskey. Because an skbuff
  223. has only one such field, only one timestamp can be generated.
  224. In rare cases, a timestamp request can be missed if two requests are
  225. collapsed onto the same skb. A process can detect this situation by
  226. enabling SOF_TIMESTAMPING_OPT_ID and comparing the byte offset at
  227. send time with the value returned for each timestamp. It can prevent
  228. the situation by always flushing the TCP stack in between requests,
  229. for instance by enabling TCP_NODELAY and disabling TCP_CORK and
  230. autocork.
  231. These precautions ensure that the timestamp is generated only when all
  232. bytes have passed a timestamp point, assuming that the network stack
  233. itself does not reorder the segments. The stack indeed tries to avoid
  234. reordering. The one exception is under administrator control: it is
  235. possible to construct a packet scheduler configuration that delays
  236. segments from the same stream differently. Such a setup would be
  237. unusual.
  238. 2 Data Interfaces
  239. Timestamps are read using the ancillary data feature of recvmsg().
  240. See `man 3 cmsg` for details of this interface. The socket manual
  241. page (`man 7 socket`) describes how timestamps generated with
  242. SO_TIMESTAMP and SO_TIMESTAMPNS records can be retrieved.
  243. 2.1 SCM_TIMESTAMPING records
  244. These timestamps are returned in a control message with cmsg_level
  245. SOL_SOCKET, cmsg_type SCM_TIMESTAMPING, and payload of type
  246. struct scm_timestamping {
  247. struct timespec ts[3];
  248. };
  249. The structure can return up to three timestamps. This is a legacy
  250. feature. At least one field is non-zero at any time. Most timestamps
  251. are passed in ts[0]. Hardware timestamps are passed in ts[2].
  252. ts[1] used to hold hardware timestamps converted to system time.
  253. Instead, expose the hardware clock device on the NIC directly as
  254. a HW PTP clock source, to allow time conversion in userspace and
  255. optionally synchronize system time with a userspace PTP stack such
  256. as linuxptp. For the PTP clock API, see Documentation/ptp/ptp.txt.
  257. Note that if the SO_TIMESTAMP or SO_TIMESTAMPNS option is enabled
  258. together with SO_TIMESTAMPING using SOF_TIMESTAMPING_SOFTWARE, a false
  259. software timestamp will be generated in the recvmsg() call and passed
  260. in ts[0] when a real software timestamp is missing. This happens also
  261. on hardware transmit timestamps.
  262. 2.1.1 Transmit timestamps with MSG_ERRQUEUE
  263. For transmit timestamps the outgoing packet is looped back to the
  264. socket's error queue with the send timestamp(s) attached. A process
  265. receives the timestamps by calling recvmsg() with flag MSG_ERRQUEUE
  266. set and with a msg_control buffer sufficiently large to receive the
  267. relevant metadata structures. The recvmsg call returns the original
  268. outgoing data packet with two ancillary messages attached.
  269. A message of cm_level SOL_IP(V6) and cm_type IP(V6)_RECVERR
  270. embeds a struct sock_extended_err. This defines the error type. For
  271. timestamps, the ee_errno field is ENOMSG. The other ancillary message
  272. will have cm_level SOL_SOCKET and cm_type SCM_TIMESTAMPING. This
  273. embeds the struct scm_timestamping.
  274. 2.1.1.2 Timestamp types
  275. The semantics of the three struct timespec are defined by field
  276. ee_info in the extended error structure. It contains a value of
  277. type SCM_TSTAMP_* to define the actual timestamp passed in
  278. scm_timestamping.
  279. The SCM_TSTAMP_* types are 1:1 matches to the SOF_TIMESTAMPING_*
  280. control fields discussed previously, with one exception. For legacy
  281. reasons, SCM_TSTAMP_SND is equal to zero and can be set for both
  282. SOF_TIMESTAMPING_TX_HARDWARE and SOF_TIMESTAMPING_TX_SOFTWARE. It
  283. is the first if ts[2] is non-zero, the second otherwise, in which
  284. case the timestamp is stored in ts[0].
  285. 2.1.1.3 Fragmentation
  286. Fragmentation of outgoing datagrams is rare, but is possible, e.g., by
  287. explicitly disabling PMTU discovery. If an outgoing packet is fragmented,
  288. then only the first fragment is timestamped and returned to the sending
  289. socket.
  290. 2.1.1.4 Packet Payload
  291. The calling application is often not interested in receiving the whole
  292. packet payload that it passed to the stack originally: the socket
  293. error queue mechanism is just a method to piggyback the timestamp on.
  294. In this case, the application can choose to read datagrams with a
  295. smaller buffer, possibly even of length 0. The payload is truncated
  296. accordingly. Until the process calls recvmsg() on the error queue,
  297. however, the full packet is queued, taking up budget from SO_RCVBUF.
  298. 2.1.1.5 Blocking Read
  299. Reading from the error queue is always a non-blocking operation. To
  300. block waiting on a timestamp, use poll or select. poll() will return
  301. POLLERR in pollfd.revents if any data is ready on the error queue.
  302. There is no need to pass this flag in pollfd.events. This flag is
  303. ignored on request. See also `man 2 poll`.
  304. 2.1.2 Receive timestamps
  305. On reception, there is no reason to read from the socket error queue.
  306. The SCM_TIMESTAMPING ancillary data is sent along with the packet data
  307. on a normal recvmsg(). Since this is not a socket error, it is not
  308. accompanied by a message SOL_IP(V6)/IP(V6)_RECVERROR. In this case,
  309. the meaning of the three fields in struct scm_timestamping is
  310. implicitly defined. ts[0] holds a software timestamp if set, ts[1]
  311. is again deprecated and ts[2] holds a hardware timestamp if set.
  312. 3. Hardware Timestamping configuration: SIOCSHWTSTAMP and SIOCGHWTSTAMP
  313. Hardware time stamping must also be initialized for each device driver
  314. that is expected to do hardware time stamping. The parameter is defined in
  315. /include/linux/net_tstamp.h as:
  316. struct hwtstamp_config {
  317. int flags; /* no flags defined right now, must be zero */
  318. int tx_type; /* HWTSTAMP_TX_* */
  319. int rx_filter; /* HWTSTAMP_FILTER_* */
  320. };
  321. Desired behavior is passed into the kernel and to a specific device by
  322. calling ioctl(SIOCSHWTSTAMP) with a pointer to a struct ifreq whose
  323. ifr_data points to a struct hwtstamp_config. The tx_type and
  324. rx_filter are hints to the driver what it is expected to do. If
  325. the requested fine-grained filtering for incoming packets is not
  326. supported, the driver may time stamp more than just the requested types
  327. of packets.
  328. Drivers are free to use a more permissive configuration than the requested
  329. configuration. It is expected that drivers should only implement directly the
  330. most generic mode that can be supported. For example if the hardware can
  331. support HWTSTAMP_FILTER_V2_EVENT, then it should generally always upscale
  332. HWTSTAMP_FILTER_V2_L2_SYNC_MESSAGE, and so forth, as HWTSTAMP_FILTER_V2_EVENT
  333. is more generic (and more useful to applications).
  334. A driver which supports hardware time stamping shall update the struct
  335. with the actual, possibly more permissive configuration. If the
  336. requested packets cannot be time stamped, then nothing should be
  337. changed and ERANGE shall be returned (in contrast to EINVAL, which
  338. indicates that SIOCSHWTSTAMP is not supported at all).
  339. Only a processes with admin rights may change the configuration. User
  340. space is responsible to ensure that multiple processes don't interfere
  341. with each other and that the settings are reset.
  342. Any process can read the actual configuration by passing this
  343. structure to ioctl(SIOCGHWTSTAMP) in the same way. However, this has
  344. not been implemented in all drivers.
  345. /* possible values for hwtstamp_config->tx_type */
  346. enum {
  347. /*
  348. * no outgoing packet will need hardware time stamping;
  349. * should a packet arrive which asks for it, no hardware
  350. * time stamping will be done
  351. */
  352. HWTSTAMP_TX_OFF,
  353. /*
  354. * enables hardware time stamping for outgoing packets;
  355. * the sender of the packet decides which are to be
  356. * time stamped by setting SOF_TIMESTAMPING_TX_SOFTWARE
  357. * before sending the packet
  358. */
  359. HWTSTAMP_TX_ON,
  360. };
  361. /* possible values for hwtstamp_config->rx_filter */
  362. enum {
  363. /* time stamp no incoming packet at all */
  364. HWTSTAMP_FILTER_NONE,
  365. /* time stamp any incoming packet */
  366. HWTSTAMP_FILTER_ALL,
  367. /* return value: time stamp all packets requested plus some others */
  368. HWTSTAMP_FILTER_SOME,
  369. /* PTP v1, UDP, any kind of event packet */
  370. HWTSTAMP_FILTER_PTP_V1_L4_EVENT,
  371. /* for the complete list of values, please check
  372. * the include file /include/linux/net_tstamp.h
  373. */
  374. };
  375. 3.1 Hardware Timestamping Implementation: Device Drivers
  376. A driver which supports hardware time stamping must support the
  377. SIOCSHWTSTAMP ioctl and update the supplied struct hwtstamp_config with
  378. the actual values as described in the section on SIOCSHWTSTAMP. It
  379. should also support SIOCGHWTSTAMP.
  380. Time stamps for received packets must be stored in the skb. To get a pointer
  381. to the shared time stamp structure of the skb call skb_hwtstamps(). Then
  382. set the time stamps in the structure:
  383. struct skb_shared_hwtstamps {
  384. /* hardware time stamp transformed into duration
  385. * since arbitrary point in time
  386. */
  387. ktime_t hwtstamp;
  388. };
  389. Time stamps for outgoing packets are to be generated as follows:
  390. - In hard_start_xmit(), check if (skb_shinfo(skb)->tx_flags & SKBTX_HW_TSTAMP)
  391. is set no-zero. If yes, then the driver is expected to do hardware time
  392. stamping.
  393. - If this is possible for the skb and requested, then declare
  394. that the driver is doing the time stamping by setting the flag
  395. SKBTX_IN_PROGRESS in skb_shinfo(skb)->tx_flags , e.g. with
  396. skb_shinfo(skb)->tx_flags |= SKBTX_IN_PROGRESS;
  397. You might want to keep a pointer to the associated skb for the next step
  398. and not free the skb. A driver not supporting hardware time stamping doesn't
  399. do that. A driver must never touch sk_buff::tstamp! It is used to store
  400. software generated time stamps by the network subsystem.
  401. - Driver should call skb_tx_timestamp() as close to passing sk_buff to hardware
  402. as possible. skb_tx_timestamp() provides a software time stamp if requested
  403. and hardware timestamping is not possible (SKBTX_IN_PROGRESS not set).
  404. - As soon as the driver has sent the packet and/or obtained a
  405. hardware time stamp for it, it passes the time stamp back by
  406. calling skb_hwtstamp_tx() with the original skb, the raw
  407. hardware time stamp. skb_hwtstamp_tx() clones the original skb and
  408. adds the timestamps, therefore the original skb has to be freed now.
  409. If obtaining the hardware time stamp somehow fails, then the driver
  410. should not fall back to software time stamping. The rationale is that
  411. this would occur at a later time in the processing pipeline than other
  412. software time stamping and therefore could lead to unexpected deltas
  413. between time stamps.