can: j1939: cancel rxtimer on multipacket broadcast session complete
If j1939_xtp_rx_dat_one() receive last frame of multipacket broadcast message,
j1939_session_timers_cancel() should be called to cancel rxtimer.
Fixes: 9d71dd0c70
("can: add support of SAE J1939 protocol")
Signed-off-by: Zhang Changzhong <zhangchangzhong@huawei.com>
Link: https://lore.kernel.org/r/1596599425-5534-3-git-send-email-zhangchangzhong@huawei.com
Acked-by: Oleksij Rempel <o.rempel@pengutronix.de>
Signed-off-by: Marc Kleine-Budde <mkl@pengutronix.de>
This commit is contained in:
parent
f4fd77fd87
commit
e8b1765308
|
@ -1824,6 +1824,7 @@ static void j1939_xtp_rx_dat_one(struct j1939_session *session,
|
||||||
}
|
}
|
||||||
|
|
||||||
if (final) {
|
if (final) {
|
||||||
|
j1939_session_timers_cancel(session);
|
||||||
j1939_session_completed(session);
|
j1939_session_completed(session);
|
||||||
} else if (do_cts_eoma) {
|
} else if (do_cts_eoma) {
|
||||||
j1939_tp_set_rxtimeout(session, 1250);
|
j1939_tp_set_rxtimeout(session, 1250);
|
||||||
|
|
Loading…
Reference in New Issue