From owner-dev-commits-src-main@freebsd.org Thu May 27 05:44:13 2021 Return-Path: Delivered-To: dev-commits-src-main@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id E8F6C6332B1; Thu, 27 May 2021 05:44:13 +0000 (UTC) (envelope-from git@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "R3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4FrGwF2bMwz3qmF; Thu, 27 May 2021 05:44:13 +0000 (UTC) (envelope-from git@FreeBSD.org) Received: from gitrepo.freebsd.org (gitrepo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:5]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 40C551ED09; Thu, 27 May 2021 05:44:13 +0000 (UTC) (envelope-from git@FreeBSD.org) Received: from gitrepo.freebsd.org ([127.0.1.44]) by gitrepo.freebsd.org (8.16.1/8.16.1) with ESMTP id 14R5iD98085065; Thu, 27 May 2021 05:44:13 GMT (envelope-from git@gitrepo.freebsd.org) Received: (from git@localhost) by gitrepo.freebsd.org (8.16.1/8.16.1/Submit) id 14R5iD8k085064; Thu, 27 May 2021 05:44:13 GMT (envelope-from git) Date: Thu, 27 May 2021 05:44:13 GMT Message-Id: <202105270544.14R5iD8k085064@gitrepo.freebsd.org> To: src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-main@FreeBSD.org From: Navdeep Parhar Subject: git: 740d722def71 - main - cxgbe(4): Use correct argument in call to hashdestroy. MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit X-Git-Committer: np X-Git-Repository: src X-Git-Refname: refs/heads/main X-Git-Reftype: branch X-Git-Commit: 740d722def71905dd74a622acce1561701ccbec6 Auto-Submitted: auto-generated X-BeenThere: dev-commits-src-main@freebsd.org X-Mailman-Version: 2.1.34 Precedence: list List-Id: Commit messages for the main branch of the src repository List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 27 May 2021 05:44:14 -0000 The branch main has been updated by np: URL: https://cgit.FreeBSD.org/src/commit/?id=740d722def71905dd74a622acce1561701ccbec6 commit 740d722def71905dd74a622acce1561701ccbec6 Author: Navdeep Parhar AuthorDate: 2021-05-27 04:32:13 +0000 Commit: Navdeep Parhar CommitDate: 2021-05-27 05:31:06 +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. MFC after: 2 weeks Sponsored by: Chelsio Communications --- 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