net: Postpone skb_clear_delivery_time() until knowing the skb is delivered locally
authorMartin KaFai Lau <kafai@fb.com>
Wed, 2 Mar 2022 19:56:22 +0000 (11:56 -0800)
committerDavid S. Miller <davem@davemloft.net>
Thu, 3 Mar 2022 14:38:48 +0000 (14:38 +0000)
commitcd14e9b7b8d312dfbf75ce1f78552902e51b9045
treef78e76b3a2fded7b5ee29d2a4cfe3768087242e5
parent80fcec675112bd2f697ca1ca74ceb923c53cd569
net: Postpone skb_clear_delivery_time() until knowing the skb is delivered locally

The previous patches handled the delivery_time in the ingress path
before the routing decision is made.  This patch can postpone clearing
delivery_time in a skb until knowing it is delivered locally and also
set the (rcv) timestamp if needed.  This patch moves the
skb_clear_delivery_time() from dev.c to ip_local_deliver_finish()
and ip6_input_finish().

Signed-off-by: Martin KaFai Lau <kafai@fb.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
net/core/dev.c
net/ipv4/ip_input.c
net/ipv6/ip6_input.c