[PATCH] ovs: Only clear tstamp when changing namespaces

From: Tyler J. Stachecki
Date: Sun Sep 19 2021 - 11:44:16 EST


As of "ovs: clear skb->tstamp in forwarding path", the
tstamp is now being cleared unconditionally to fix fq qdisc
operation with ovs vports.

While this is mostly correct and fixes forwarding for that
use case, a slight adjustment is necessary to ensure that
the tstamp is cleared *only when the forwarding is across
namespaces*.

Signed-off-by: Tyler J. Stachecki <stachecki.tyler@xxxxxxxxx>
---
net/openvswitch/vport.c | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/net/openvswitch/vport.c b/net/openvswitch/vport.c
index cf2ce5812489..c2d32a5c3697 100644
--- a/net/openvswitch/vport.c
+++ b/net/openvswitch/vport.c
@@ -507,7 +507,8 @@ void ovs_vport_send(struct vport *vport, struct sk_buff *skb, u8 mac_proto)
}

skb->dev = vport->dev;
- skb->tstamp = 0;
+ if (dev_net(skb->dev))
+ skb->tstamp = 0;
vport->ops->send(skb);
return;

--
2.20.1