VirtualBox

儲存庫 vbox 的更動 49784


忽略:
時間撮記:
2013-12-5 上午10:30:06 (11 年 以前)
作者:
vboxsync
訊息:

HostDrivers: Fix SUPR0QueryVTCaps() to be preemption safe.

檔案:
修改 1 筆資料

圖例:

未更動
新增
刪除
  • trunk/src/VBox/HostDrivers/Support/SUPDrv.c

    r49728 r49784  
    33983398SUPR0DECL(int) SUPR0QueryVTCaps(PSUPDRVSESSION pSession, uint32_t *pfCaps)
    33993399{
     3400    int rc = VERR_UNSUPPORTED_CPU;
     3401    RTTHREADPREEMPTSTATE PreemptState = RTTHREADPREEMPTSTATE_INITIALIZER;
     3402
    34003403    /*
    34013404     * Input validation.
     
    34053408
    34063409    *pfCaps = 0;
    3407 
    3408     /** @todo r=ramshankar: Although we're only reading CPUIDs/MSRs here which
    3409      *        should be identical on all CPUs on the system, it's probably
    3410      *        cleaner to prevent migration nonetheless? */
     3410    /* We may modify MSRs and re-read them, disable preemption so we make sure we don't migrate CPUs. */
     3411    RTThreadPreemptDisable(&PreemptState);
    34113412    if (ASMHasCpuId())
    34123413    {
     
    34853486                            *pfCaps |= SUPVTCAPS_NESTED_PAGING;
    34863487                    }
    3487                     return VINF_SUCCESS;
    34883488                }
    3489                 return rc;
    34903489            }
    3491             return VERR_VMX_NO_VMX;
    3492         }
    3493 
    3494         if (   ASMIsAmdCpuEx(uVendorEBX, uVendorECX, uVendorEDX)
    3495             && ASMIsValidStdRange(uMaxId))
     3490            else
     3491                rc = VERR_VMX_NO_VMX;
     3492        }
     3493        else if (   ASMIsAmdCpuEx(uVendorEBX, uVendorECX, uVendorEDX)
     3494                 && ASMIsValidStdRange(uMaxId))
    34963495        {
    34973496            uint32_t fExtFeaturesEcx, uExtMaxId;
     
    35173516                        *pfCaps |= SUPVTCAPS_NESTED_PAGING;
    35183517
    3519                     return VINF_SUCCESS;
     3518                    rc = VINF_SUCCESS;
    35203519                }
    3521                 return VERR_SVM_DISABLED;
     3520                else
     3521                    rc = VERR_SVM_DISABLED;
    35223522            }
    3523             return VERR_SVM_NO_SVM;
    3524         }
    3525     }
    3526 
    3527     return VERR_UNSUPPORTED_CPU;
     3523            else
     3524                rc = VERR_SVM_NO_SVM;
     3525        }
     3526    }
     3527
     3528    RTThreadPreemptRestore(&PreemptState);
     3529    return rc;
    35283530}
    35293531
注意: 瀏覽 TracChangeset 來幫助您使用更動檢視器

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette