svn commit: r346864 - stable/11/sys/dev/cxgbe/tom

Navdeep Parhar np at FreeBSD.org
Mon Apr 29 00:57:48 UTC 2019


Author: np
Date: Mon Apr 29 00:57:47 2019
New Revision: 346864
URL: https://svnweb.freebsd.org/changeset/base/346864

Log:
  MFC r334139:
  
  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:
  stable/11/sys/dev/cxgbe/tom/t4_cpl_io.c
Directory Properties:
  stable/11/   (props changed)

Modified: stable/11/sys/dev/cxgbe/tom/t4_cpl_io.c
==============================================================================
--- stable/11/sys/dev/cxgbe/tom/t4_cpl_io.c	Mon Apr 29 00:40:02 2019	(r346863)
+++ stable/11/sys/dev/cxgbe/tom/t4_cpl_io.c	Mon Apr 29 00:57:47 2019	(r346864)
@@ -1952,7 +1952,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-all mailing list