svn commit: r346946 - stable/11/sys/dev/cxgbe
Navdeep Parhar
np at FreeBSD.org
Tue Apr 30 07:34:35 UTC 2019
Author: np
Date: Tue Apr 30 07:34:34 2019
New Revision: 346946
URL: https://svnweb.freebsd.org/changeset/base/346946
Log:
MFC r342234:
cxgbe(4): Do not issue mbox commands after t4_fw_bye.
Sponsored by: Chelsio Communications
Modified:
stable/11/sys/dev/cxgbe/t4_clip.c
Directory Properties:
stable/11/ (props changed)
Modified: stable/11/sys/dev/cxgbe/t4_clip.c
==============================================================================
--- stable/11/sys/dev/cxgbe/t4_clip.c Tue Apr 30 07:32:02 2019 (r346945)
+++ stable/11/sys/dev/cxgbe/t4_clip.c Tue Apr 30 07:34:34 2019 (r346946)
@@ -324,7 +324,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