From: Vincent Mailhol <mailhol.vincent@xxxxxxxxxx> The length of Remote Transmission Request (RTR) frames is always 0 bytes. The DLC represents the requested length, not the actual length of the RTR. But __can_get_echo_skb() returns the DLC value regardless. Apply can_get_len() function to retrieve the correct length. This patch depends on: 7d4b1cbca3bd can: dev: can_get_len(): add a helper function to get the correct length of Classical frames Signed-off-by: Vincent Mailhol <mailhol.vincent@xxxxxxxxxx> Link: https://lore.kernel.org/r/20201002154219.4887-5-mailhol.vincent@xxxxxxxxxx Fixes: cf5046b309b3 ("can: dev: let can_get_echo_skb() return dlc of CAN frame") [mkl: renamed get_can_len() -> can_get_len()] Signed-off-by: Marc Kleine-Budde <mkl@xxxxxxxxxxxxxx> --- drivers/net/can/dev.c | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/drivers/net/can/dev.c b/drivers/net/can/dev.c index 73cfcd7e9517..47b45a2223f9 100644 --- a/drivers/net/can/dev.c +++ b/drivers/net/can/dev.c @@ -507,14 +507,9 @@ __can_get_echo_skb(struct net_device *dev, unsigned int idx, u8 *len_ptr) } if (priv->echo_skb[idx]) { - /* Using "struct canfd_frame::len" for the frame - * length is supported on both CAN and CANFD frames. - */ struct sk_buff *skb = priv->echo_skb[idx]; - struct canfd_frame *cf = (struct canfd_frame *)skb->data; - u8 len = cf->len; - *len_ptr = len; + *len_ptr = can_get_len(skb); priv->echo_skb[idx] = NULL; return skb; -- 2.28.0