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