svn commit: r345606 - stable/12/sys/dev/cxgbe
Navdeep Parhar
np at FreeBSD.org
Tue Sep 3 14:05:49 UTC 2019
Author: np
Date: Wed Mar 27 21:34:13 2019
New Revision: 345606
URL: https://svnweb.freebsd.org/changeset/base/345606
Log:
MFC r342234:
cxgbe(4): Do not issue mbox commands after t4_fw_bye.
Sponsored by: Chelsio Communications
Modified:
stable/12/sys/dev/cxgbe/t4_clip.c
Directory Properties:
stable/12/ (props changed)
Modified: stable/12/sys/dev/cxgbe/t4_clip.c
==============================================================================
--- stable/12/sys/dev/cxgbe/t4_clip.c Wed Mar 27 21:29:45 2019 (r345605)
+++ stable/12/sys/dev/cxgbe/t4_clip.c Wed Mar 27 21:34:13 2019 (r345606)
@@ -325,7 +325,9 @@ t4_destroy_clip_table(struct adapter *sc)
("%s: CLIP entry %p still in use (%d)", __func__,
ce, ce->refcount));
TAILQ_REMOVE(&sc->clip_table, ce, link);
+#if 0
delete_lip(sc, &ce->lip);
+#endif
free(ce, M_CXGBE);
}
mtx_unlock(&sc->clip_table_lock);
More information about the svn-src-stable
mailing list