Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 19 Dec 2018 19:21:30 +0000 (UTC)
From:      Navdeep Parhar <np@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r342234 - head/sys/dev/cxgbe
Message-ID:  <201812191921.wBJJLUZO039000@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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);



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201812191921.wBJJLUZO039000>