svn commit: r213823 - projects/ofed/head/sys/ofed/drivers/net/mlx4

Jeff Roberson jeff at FreeBSD.org
Thu Oct 14 01:49:42 UTC 2010


Author: jeff
Date: Thu Oct 14 01:49:40 2010
New Revision: 213823
URL: http://svn.freebsd.org/changeset/base/213823

Log:
   - Use SI_ORDER_MIDDLE for mlx4 so that it can't be reordered after
     the vm scheduler which does not return.
  
  Sponsored by:	Isilon Systems, iX Systems, and Panasas.

Modified:
  projects/ofed/head/sys/ofed/drivers/net/mlx4/main.c

Modified: projects/ofed/head/sys/ofed/drivers/net/mlx4/main.c
==============================================================================
--- projects/ofed/head/sys/ofed/drivers/net/mlx4/main.c	Thu Oct 14 01:48:51 2010	(r213822)
+++ projects/ofed/head/sys/ofed/drivers/net/mlx4/main.c	Thu Oct 14 01:49:40 2010	(r213823)
@@ -1654,5 +1654,5 @@ static void __exit mlx4_cleanup(void)
 	destroy_workqueue(mlx4_wq);
 }
 
-module_init_order(mlx4_init, SI_ORDER_ANY);
+module_init_order(mlx4_init, SI_ORDER_MIDDLE);
 module_exit(mlx4_cleanup);


More information about the svn-src-projects mailing list