PERFORCE change 97383 for review

Scott Long scottl at FreeBSD.org
Wed May 17 22:03:12 UTC 2006


http://perforce.freebsd.org/chv.cgi?CH=97383

Change 97383 by scottl at scottl-x64 on 2006/05/17 22:02:05

	Fix argument order in cam_alloc_sim.

Affected files ...

.. //depot/projects/scottl-camlock/src/sys/cam/cam_sim.c#8 edit

Differences ...

==== //depot/projects/scottl-camlock/src/sys/cam/cam_sim.c#8 (text+ko) ====

@@ -60,7 +60,7 @@
 struct cam_sim *
 cam_sim_alloc(sim_action_func sim_action, sim_poll_func sim_poll,
 	      const char *sim_name, void *softc, u_int32_t unit,
-	      struct mtx *mtx, int max_dev_transactions, int malloc_flags,
+	      struct mtx *mtx, int malloc_flags, int max_dev_transactions,
 	      int max_tagged_dev_transactions, struct cam_devq *queue)
 {
 	struct cam_sim *sim;


More information about the p4-projects mailing list