svn commit: r334139 - head/sys/dev/cxgbe/tom

Navdeep Parhar np at FreeBSD.org
Thu May 24 08:32:03 UTC 2018


Author: np
Date: Thu May 24 08:32:02 2018
New Revision: 334139
URL: https://svnweb.freebsd.org/changeset/base/334139

Log:
  cxgbe/t4_tom: ABORT_RPL_RSS is a shared CPL and t4_tom shouldn't remove
  the global handler when it's being unloaded.

Modified:
  head/sys/dev/cxgbe/tom/t4_cpl_io.c

Modified: head/sys/dev/cxgbe/tom/t4_cpl_io.c
==============================================================================
--- head/sys/dev/cxgbe/tom/t4_cpl_io.c	Thu May 24 08:21:43 2018	(r334138)
+++ head/sys/dev/cxgbe/tom/t4_cpl_io.c	Thu May 24 08:32:02 2018	(r334139)
@@ -1942,7 +1942,7 @@ t4_uninit_cpl_io_handlers(void)
 	t4_register_cpl_handler(CPL_PEER_CLOSE, NULL);
 	t4_register_cpl_handler(CPL_CLOSE_CON_RPL, NULL);
 	t4_register_cpl_handler(CPL_ABORT_REQ_RSS, NULL);
-	t4_register_cpl_handler(CPL_ABORT_RPL_RSS, NULL);
+	t4_register_shared_cpl_handler(CPL_ABORT_RPL_RSS, NULL, CPL_COOKIE_TOM);
 	t4_register_cpl_handler(CPL_RX_DATA, NULL);
 	t4_register_shared_cpl_handler(CPL_FW4_ACK, NULL, CPL_COOKIE_TOM);
 }


More information about the svn-src-head mailing list