Author: neel
Date: Sun May 25 02:05:23 2014
New Revision: 266642
URL: http://svnweb.freebsd.org/changeset/base/266642

Log:
  Remove restriction on insb/insw/insl emulation. These instructions are
  properly emulated.

Modified:
  head/sys/amd64/vmm/vmm_ioport.c

Modified: head/sys/amd64/vmm/vmm_ioport.c
==============================================================================
--- head/sys/amd64/vmm/vmm_ioport.c     Sun May 25 00:57:24 2014        
(r266641)
+++ head/sys/amd64/vmm/vmm_ioport.c     Sun May 25 02:05:23 2014        
(r266642)
@@ -173,14 +173,6 @@ emulate_inout_str(struct vm *vm, int vcp
                return (EINVAL);
        }
 
-       /*
-        * XXX insb/insw/insd instructions not emulated at this time.
-        */
-       if (in) {
-               VCPU_CTR0(vm, vcpuid, "ins emulation not implemented");
-               return (EINVAL);
-       }
-
        *retu = true;
        return (0);     /* Return to userspace to finish emulation */
 }
_______________________________________________
svn-src-head@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-src-head
To unsubscribe, send any mail to "svn-src-head-unsubscr...@freebsd.org"

Reply via email to