Received: by 2002:a05:6a10:2785:0:0:0:0 with SMTP id ia5csp1561467pxb; Sun, 10 Jan 2021 02:40:45 -0800 (PST) X-Google-Smtp-Source: ABdhPJz0i/WH+dZNpOrgn7iKJTnvGUjIXS1CTejJOxTNdv+gWVpmbGvcEWgEkJjRsOYl1d7lmoOQ X-Received: by 2002:a17:906:15c7:: with SMTP id l7mr7805306ejd.226.1610275245730; Sun, 10 Jan 2021 02:40:45 -0800 (PST) ARC-Seal: i=1; a=rsa-sha256; t=1610275245; cv=none; d=google.com; s=arc-20160816; b=wIofy6FMkiMSlj4yGO4Jp5V/vhvqvJEHIJuQkQZc6nZJRbwkmSsxfzJIHwEgzUI9o6 hU2BPUXRANuXRGHiGUbVhwghI0vpTMzfH1tHW3O1/tXZ4fUX1qoZLMSEpU5uGfQ7b6YQ M3p0X2JmSl/rsdLR98DDwH2pD+9OtHnVR7x+65WH5zhGIAqJvLo4LyT1KQCUiR78lwuG yRMvKF5+eU5w5eAoZhdVW/Tft+4odIM7+aq7LDegTGVAQJfxORMKhsTibGgRHrHRDh9r 3NNmrcbp/ciHUwlN0U1WLFVBGZRLJeVlYVfFv4WSUbtxRPH4/Vs8CUA+a+wIVuFIS757 m2cA== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=list-id:precedence:content-transfer-encoding:mime-version :references:in-reply-to:message-id:date:subject:cc:to:from; bh=rzipfrpjktfdotM8parXQx3y1iSw+THlnJ3MFSHUf+8=; b=ePwppfDwNzGgFWkDDpEegtpnX/KCqiH7Bh7osyYPkZAtNtVmL+PavK3mgeCKp0de63 boB+SgN0Kw8pWkaTaTNGqW52NPzjzWsRDiV6c2Cb94zY/2oj7nt5i395OqaiTo89Yyq3 bL4hQUhkFR5gJidaTUS1bJ3qYOUMJiQ/stHUNX0GILNVZfiF4oHv0FFq9x0fojoZNkIe kCoKV/AfW9fyDACawB9A4SL6Z5Lw1p9kPOjhkRP+VB+w9BGHM1A3+CXxeci50c+3gtLN aiz3bQe8o23MOGS7hPsNAO+/v7YruUnMaXjDFCp1GXZeTSdxgs8sU2qaJ/vZN5M0DSJh h7bA== ARC-Authentication-Results: i=1; mx.google.com; spf=pass (google.com: domain of linux-kernel-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Return-Path: Received: from vger.kernel.org (vger.kernel.org. [23.128.96.18]) by mx.google.com with ESMTP id jg5si5224161ejc.490.2021.01.10.02.40.21; Sun, 10 Jan 2021 02:40:45 -0800 (PST) Received-SPF: pass (google.com: domain of linux-kernel-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) client-ip=23.128.96.18; Authentication-Results: mx.google.com; spf=pass (google.com: domain of linux-kernel-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1726288AbhAJKiy (ORCPT + 99 others); Sun, 10 Jan 2021 05:38:54 -0500 Received: from smtp05.smtpout.orange.fr ([80.12.242.127]:27666 "EHLO smtp.smtpout.orange.fr" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1726251AbhAJKiy (ORCPT ); Sun, 10 Jan 2021 05:38:54 -0500 Received: from localhost.localdomain ([153.202.107.157]) by mwinf5d52 with ME id Eyd42400Q3PnFJp03yd8wk; Sun, 10 Jan 2021 11:37:11 +0100 X-ME-Helo: localhost.localdomain X-ME-Auth: bWFpbGhvbC52aW5jZW50QHdhbmFkb28uZnI= X-ME-Date: Sun, 10 Jan 2021 11:37:11 +0100 X-ME-IP: 153.202.107.157 From: Vincent Mailhol To: Marc Kleine-Budde , linux-can@vger.kernel.org Cc: Vincent Mailhol , Wolfgang Grandegger , "David S. Miller" , Jakub Kicinski , netdev@vger.kernel.org (open list:NETWORKING DRIVERS), linux-kernel@vger.kernel.org (open list) Subject: [PATCH 1/1] can: dev: add software tx timestamps Date: Sun, 10 Jan 2021 19:35:26 +0900 Message-Id: <20210110103526.61047-2-mailhol.vincent@wanadoo.fr> X-Mailer: git-send-email 2.26.2 In-Reply-To: <20210110103526.61047-1-mailhol.vincent@wanadoo.fr> References: <20210110103526.61047-1-mailhol.vincent@wanadoo.fr> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Call skb_tx_timestamp() within can_put_echo_skb() so that a software tx timestamp gets attached on the skb. There two main reasons to include this call in can_put_echo_skb(): * It easily allow to enable the tx timestamp on all devices with just one small change. * According to Documentation/networking/timestamping.rst, the tx timestamps should be generated in the device driver as close as possible, but always prior to passing the packet to the network interface. During the call to can_put_echo_skb(), the skb gets cloned meaning that the driver should not dereference the skb variable anymore after can_put_echo_skb() returns. This makes can_put_echo_skb() the very last place we can use the skb without having to access the echo_skb[] array. Remarks: * By default, skb_tx_timestamp() does nothing. It needs to be activated by passing the SOF_TIMESTAMPING_TX_SOFTWARE flag either through socket options or control messages. * The hardware rx timestamp of a local loopback message is the hardware tx timestamp. This means that there are no needs to implement SOF_TIMESTAMPING_TX_HARDWARE for CAN sockets. References: Support for the error queue in CAN RAW sockets (which is needed for tx timestamps) was introduced in: https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/commit/?id=eb88531bdbfaafb827192d1fc6c5a3fcc4fadd96 Signed-off-by: Vincent Mailhol --- drivers/net/can/dev.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/drivers/net/can/dev.c b/drivers/net/can/dev.c index 3486704c8a95..3904e0874543 100644 --- a/drivers/net/can/dev.c +++ b/drivers/net/can/dev.c @@ -484,6 +484,8 @@ int can_put_echo_skb(struct sk_buff *skb, struct net_device *dev, /* save this skb for tx interrupt echo handling */ priv->echo_skb[idx] = skb; + + skb_tx_timestamp(skb); } else { /* locking problem with netif_stop_queue() ?? */ netdev_err(dev, "%s: BUG! echo_skb %d is occupied!\n", __func__, idx); -- 2.26.2