| Submitter | Ben Greear |
|---|---|
| Date | July 22, 2010, 7:54 p.m. |
| Message ID | <1279828488-17800-3-git-send-email-greearb@candelatech.com> |
| Download | mbox | patch |
| Permalink | /patch/59636/ |
| State | Not Applicable |
| Delegated to: | David Miller |
| Headers | show |
Comments
Patch
diff --git a/drivers/net/veth.c b/drivers/net/veth.c index 0cfbb3d..161ee02 100644 --- a/drivers/net/veth.c +++ b/drivers/net/veth.c @@ -181,11 +181,6 @@ static netdev_tx_t veth_xmit(struct sk_buff *skb, struct net_device *dev) if (dev->features & NETIF_F_NO_CSUM) skb->ip_summed = rcv_priv->ip_summed; - /* Zero out the time-stamp so that receiving code is forced - * to recalculate it. - */ - skb->tstamp.tv64 = 0; - length = skb->len + ETH_HLEN; if (dev_forward_skb(rcv, skb) != NET_RX_SUCCESS) goto rx_drop;
The timestamp is already cleared in the dev_forward_skb logic. Signed-off-by: Ben Greear <greearb@candelatech.com> --- :100644 100644 0cfbb3d... 161ee02... M drivers/net/veth.c drivers/net/veth.c | 5 ----- 1 files changed, 0 insertions(+), 5 deletions(-)