Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 7 Mar 2018 13:58:58 +0000 (UTC)
From:      Hans Petter Selasky <hselasky@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r330595 - head/sys/dev/mlx4/mlx4_ib
Message-ID:  <201803071358.w27Dwwmp027863@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: hselasky
Date: Wed Mar  7 13:58:58 2018
New Revision: 330595
URL: https://svnweb.freebsd.org/changeset/base/330595

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

Modified:
  head/sys/dev/mlx4/mlx4_ib/mlx4_ib_main.c

Modified: head/sys/dev/mlx4/mlx4_ib/mlx4_ib_main.c
==============================================================================
--- head/sys/dev/mlx4/mlx4_ib/mlx4_ib_main.c	Wed Mar  7 13:57:32 2018	(r330594)
+++ head/sys/dev/mlx4/mlx4_ib/mlx4_ib_main.c	Wed Mar  7 13:58:58 2018	(r330595)
@@ -3317,7 +3317,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



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