svn commit: r331793 - stable/11/sys/dev/mlx4/mlx4_ib

Hans Petter Selasky hselasky at FreeBSD.org
Fri Mar 30 18:46:39 UTC 2018


Author: hselasky
Date: Fri Mar 30 18:46:38 2018
New Revision: 331793
URL: https://svnweb.freebsd.org/changeset/base/331793

Log:
  MFC r330595:
  The mlx4ib(4) should not be loaded before the ibcore is initialized.
  
  Sponsored by:	Mellanox Technologies

Modified:
  stable/11/sys/dev/mlx4/mlx4_ib/mlx4_ib_main.c
Directory Properties:
  stable/11/   (props changed)

Modified: stable/11/sys/dev/mlx4/mlx4_ib/mlx4_ib_main.c
==============================================================================
--- stable/11/sys/dev/mlx4/mlx4_ib/mlx4_ib_main.c	Fri Mar 30 18:45:47 2018	(r331792)
+++ stable/11/sys/dev/mlx4/mlx4_ib/mlx4_ib_main.c	Fri Mar 30 18:46:38 2018	(r331793)
@@ -3318,7 +3318,7 @@ static void __exit mlx4_ib_cleanup(void)
 	destroy_workqueue(wq);
 }
 
-module_init_order(mlx4_ib_init, SI_ORDER_MIDDLE);
+module_init_order(mlx4_ib_init, SI_ORDER_THIRD);
 module_exit(mlx4_ib_cleanup);
 
 static int


More information about the svn-src-all mailing list