From: Oleksij Rempel Date: Fri, 25 Oct 2019 13:04:13 +0000 (+0200) Subject: can: j1939: transport: j1939_session_fresh_new(): make sure EOMA is send with the... X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=eaa654f164ba9acd5656e6485eeb5e73da8bfc3e;p=linux.git can: j1939: transport: j1939_session_fresh_new(): make sure EOMA is send with the total message size set We were sending malformed EOMA messageswith total message size set to 0. This patch fixes the bug. Reported-by: https://github.com/linux-can/can-utils/issues/159 Signed-off-by: Oleksij Rempel Acked-by: Kurt Van Dijck Signed-off-by: Marc Kleine-Budde --- diff --git a/net/can/j1939/transport.c b/net/can/j1939/transport.c index fe000ea757eac..06183d6f4fb77 100644 --- a/net/can/j1939/transport.c +++ b/net/can/j1939/transport.c @@ -1432,7 +1432,7 @@ j1939_session *j1939_session_fresh_new(struct j1939_priv *priv, skcb = j1939_skb_to_cb(skb); memcpy(skcb, rel_skcb, sizeof(*skcb)); - session = j1939_session_new(priv, skb, skb->len); + session = j1939_session_new(priv, skb, size); if (!session) { kfree_skb(skb); return NULL;