Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 17 May 2006 22:02:48 GMT
From:      Scott Long <scottl@FreeBSD.org>
To:        Perforce Change Reviews <perforce@freebsd.org>
Subject:   PERFORCE change 97383 for review
Message-ID:  <200605172202.k4HM2meF064798@repoman.freebsd.org>

next in thread | raw e-mail | index | archive | help
http://perforce.freebsd.org/chv.cgi?CH=97383

Change 97383 by scottl@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;



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