Author: neel
Date: Thu Apr 16 20:15:47 2015
New Revision: 281612
URL: https://svnweb.freebsd.org/changeset/base/281612
Log:
  Prefer 'vcpu_should_yield()' over checking 'curthread->td_flags' directly.
  
  MFC after:    1 week

Modified:
  head/sys/amd64/vmm/amd/svm.c

Modified: head/sys/amd64/vmm/amd/svm.c
==============================================================================
--- head/sys/amd64/vmm/amd/svm.c        Thu Apr 16 20:11:49 2015        
(r281611)
+++ head/sys/amd64/vmm/amd/svm.c        Thu Apr 16 20:15:47 2015        
(r281612)
@@ -1917,7 +1917,7 @@ svm_vmrun(void *arg, int vcpu, register_
                }
 
                /* We are asked to give the cpu by scheduler. */
-               if (curthread->td_flags & (TDF_ASTPENDING | TDF_NEEDRESCHED)) {
+               if (vcpu_should_yield(vm, vcpu)) {
                        enable_gintr();
                        vm_exit_astpending(vm, vcpu, state->rip);
                        break;
_______________________________________________
svn-src-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-src-all
To unsubscribe, send any mail to "svn-src-all-unsubscr...@freebsd.org"

Reply via email to