git: b58fc654a9b4 - stable/13 - cxgbe(4): Use correct argument in call to hashdestroy.
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Wed, 20 Oct 2021 17:27:06 UTC
The branch stable/13 has been updated by np:
URL: https://cgit.FreeBSD.org/src/commit/?id=b58fc654a9b4ec60bd6ec0116fd68b4237389a12
commit b58fc654a9b4ec60bd6ec0116fd68b4237389a12
Author: Navdeep Parhar <np@FreeBSD.org>
AuthorDate: 2021-05-27 04:32:13 +0000
Commit: Navdeep Parhar <np@FreeBSD.org>
CommitDate: 2021-10-20 17:16:18 +0000
cxgbe(4): Use correct argument in call to hashdestroy.
This fixes a panic on driver module unload.
Fixes: 24b98f288d11 cxgbe(4): Overhaul CLIP (Compressed Local IPv6) table management.
Sponsored by: Chelsio Communications
(cherry picked from commit 740d722def71905dd74a622acce1561701ccbec6)
---
sys/dev/cxgbe/t4_clip.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/sys/dev/cxgbe/t4_clip.c b/sys/dev/cxgbe/t4_clip.c
index 18d78a9e830b..98734d6d11ce 100644
--- a/sys/dev/cxgbe/t4_clip.c
+++ b/sys/dev/cxgbe/t4_clip.c
@@ -712,7 +712,7 @@ t4_destroy_clip_table(struct adapter *sc)
free(ce, M_CXGBE);
}
}
- hashdestroy(&sc->clip_table, M_CXGBE, sc->clip_mask);
+ hashdestroy(sc->clip_table, M_CXGBE, sc->clip_mask);
sc->clip_table = NULL;
done:
mtx_unlock(&clip_db_lock);
@@ -856,7 +856,7 @@ t4_clip_modunload(void)
{
EVENTHANDLER_DEREGISTER(ifaddr_event_ext, ifaddr_evhandler);
taskqueue_drain(taskqueue_thread, &clip_db_task);
- hashdestroy(&clip_db, M_CXGBE, clip_db_mask);
+ hashdestroy(clip_db, M_CXGBE, clip_db_mask);
mtx_destroy(&clip_db_lock);
}
#endif