Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 11 Jan 2024 05:34:33 GMT
From:      Navdeep Parhar <np@FreeBSD.org>
To:        src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-branches@FreeBSD.org
Subject:   git: 86ad0ace9c05 - stable/13 - cxgbe(4): Destroy the tick mutex during VI detach.
Message-ID:  <202401110534.40B5YXN8010097@gitrepo.freebsd.org>

next in thread | raw e-mail | index | archive | help
The branch stable/13 has been updated by np:

URL: https://cgit.FreeBSD.org/src/commit/?id=86ad0ace9c057173a3f935e48115782ac5516ecf

commit 86ad0ace9c057173a3f935e48115782ac5516ecf
Author:     Navdeep Parhar <np@FreeBSD.org>
AuthorDate: 2023-12-27 21:00:29 +0000
Commit:     Navdeep Parhar <np@FreeBSD.org>
CommitDate: 2024-01-11 05:06:59 +0000

    cxgbe(4): Destroy the tick mutex during VI detach.
    
    This avoids a mutex reinitialization when the VI is detached and
    reattached.
    
    Fixes:  516fe911a6b7 cxgbe(4): Always use the per-VI callout to read interface stats.
    Sponsored by:   Chelsio Communications
    
    (cherry picked from commit 8b144c015c9cce0bc99a7fbdc43f22f51a946d2c)
---
 sys/dev/cxgbe/t4_main.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/sys/dev/cxgbe/t4_main.c b/sys/dev/cxgbe/t4_main.c
index 8a4b31209501..afe3c42b48b2 100644
--- a/sys/dev/cxgbe/t4_main.c
+++ b/sys/dev/cxgbe/t4_main.c
@@ -2750,6 +2750,7 @@ cxgbe_vi_detach(struct vi_info *vi)
 #endif
 	cxgbe_uninit_synchronized(vi);
 	callout_drain(&vi->tick);
+	mtx_destroy(&vi->tick_mtx);
 	sysctl_ctx_free(&vi->ctx);
 	vi_full_uninit(vi);
 



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202401110534.40B5YXN8010097>