svn commit: r288524 - head/usr.sbin/bhyve

Peter Grehan grehan at FreeBSD.org
Fri Oct 2 22:05:52 UTC 2015


Author: grehan
Date: Fri Oct  2 22:05:51 2015
New Revision: 288524
URL: https://svnweb.freebsd.org/changeset/base/288524

Log:
  Fix post-test typo that snuck in.

Modified:
  head/usr.sbin/bhyve/fwctl.c

Modified: head/usr.sbin/bhyve/fwctl.c
==============================================================================
--- head/usr.sbin/bhyve/fwctl.c	Fri Oct  2 21:25:48 2015	(r288523)
+++ head/usr.sbin/bhyve/fwctl.c	Fri Oct  2 22:05:51 2015	(r288524)
@@ -536,7 +536,7 @@ fwctl_handler(struct vmctx *ctx, int vcp
 	return (0);
 }
 INOUT_PORT(fwctl_wreg, FWCTL_OUT, IOPORT_F_INOUT, fwctl_handler);
-INOUT_PORT(fwctl_rreg, FWCTL_IN,  IOPORT_F_OUT,   fwctl_handler);
+INOUT_PORT(fwctl_rreg, FWCTL_IN,  IOPORT_F_IN,    fwctl_handler);
 
 void
 fwctl_init(void)


More information about the svn-src-head mailing list