Re: [PATCH net] ipv4: Fix updating SOF_TIMESTAMPING_OPT_ID when SKBTX_HW_TSTAMP is enabled

2019-04-29 Thread Stephen Mallon
On Mon, Apr 29, 2019 at 11:32:08AM -0400, Willem de Bruijn wrote: > On Mon, Apr 29, 2019 at 11:02 AM Richard Cochran > wrote: > > > > On Sun, Apr 28, 2019 at 10:57:57PM -0400, Willem de Bruijn wrote: > > > It is debatable whether this is a fix or a new feature. It extends > > > SOF_TIMESTAMPING_OP

[PATCH net] ipv4: Fix updating SOF_TIMESTAMPING_OPT_ID when SKBTX_HW_TSTAMP is enabled

2019-04-27 Thread Stephen Mallon
Ensure that the unique timestamp identifier is incremented for skb hardware timestamps, not just software timestamps. Signed-off-by: Stephen Mallon --- net/ipv4/ip_output.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/net/ipv4/ip_output.c b/net/ipv4/ip_output.c index

[PATCH net] tcp: Fix SOF_TIMESTAMPING_RX_HARDWARE to use the latest timestamp during TCP coalescing

2018-11-20 Thread Stephen Mallon
During tcp coalescing ensure that the skb hardware timestamp refers to the highest sequence number data. Previously only the software timestamp was updated during coalescing. Signed-off-by: Stephen Mallon --- net/ipv4/tcp_input.c | 1 + 1 file changed, 1 insertion(+) diff --git a/net/ipv4