From 58d494e67478437aade13cf8c71f54de6068e5ef Mon Sep 17 00:00:00 2001 From: BAILLEUL Quentin Date: Tue, 10 Mar 2026 11:02:46 +0100 Subject: [PATCH] Fix an issue with CBS credit reloading --- contrib/tsn/model/cbs.cc | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/contrib/tsn/model/cbs.cc b/contrib/tsn/model/cbs.cc index cb0593d..b5a14ab 100644 --- a/contrib/tsn/model/cbs.cc +++ b/contrib/tsn/model/cbs.cc @@ -84,6 +84,10 @@ Cbs::Update() } else { + if (m_state == IDLE) + { + UpdateCredit(false); + } m_state = WAITING; } }