svn commit: r207696 - head/sys/dev/mvs

Alexander Motin mav at FreeBSD.org
Thu May 6 06:44:27 UTC 2010


Author: mav
Date: Thu May  6 06:44:26 2010
New Revision: 207696
URL: http://svn.freebsd.org/changeset/base/207696

Log:
  Fix polled operation. Now it is possible to dump kernel via mvs(4).

Modified:
  head/sys/dev/mvs/mvs.c

Modified: head/sys/dev/mvs/mvs.c
==============================================================================
--- head/sys/dev/mvs/mvs.c	Thu May  6 06:44:19 2010	(r207695)
+++ head/sys/dev/mvs/mvs.c	Thu May  6 06:44:26 2010	(r207696)
@@ -2168,6 +2168,6 @@ mvspoll(struct cam_sim *sim)
 
 	arg.arg = ch->dev;
 	arg.cause = 2; /* XXX */
-	mvs_ch_intr(arg.arg);
+	mvs_ch_intr(&arg);
 }
 


More information about the svn-src-head mailing list