svn commit: r342234 - head/sys/dev/cxgbe
Navdeep Parhar
np at FreeBSD.org
Wed Dec 19 19:21:31 UTC 2018
Author: np
Date: Wed Dec 19 19:21:29 2018
New Revision: 342234
URL: https://svnweb.freebsd.org/changeset/base/342234
Log:
cxgbe(4): Do not issue mbox commands after t4_fw_bye.
Sponsored by: Chelsio Communications
Modified:
head/sys/dev/cxgbe/t4_clip.c
Modified: head/sys/dev/cxgbe/t4_clip.c
==============================================================================
--- head/sys/dev/cxgbe/t4_clip.c Wed Dec 19 18:32:32 2018 (r342233)
+++ head/sys/dev/cxgbe/t4_clip.c Wed Dec 19 19:21:29 2018 (r342234)
@@ -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-head
mailing list