VirtualBox

Changeset 76311 in vbox for trunk/include


Ignore:
Timestamp:
Dec 20, 2018 12:45:01 PM (6 years ago)
Author:
vboxsync
Message:

hm_svm.h: Added an SVMMSRS struct similar to VT-x for AMD-V MSRs. Preparing for bigger changes.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/include/VBox/vmm/hm_svm.h

    r75611 r76311  
    10181018
    10191019/**
     1020 * SVM MSRs.
     1021 */
     1022typedef struct SVMMSRS
     1023{
     1024    /** HWCR MSR. */
     1025    uint64_t        u64MsrHwcr;
     1026    /** Reserved for future. */
     1027    uint64_t        u64Padding[23];
     1028} SVMMSRS;
     1029AssertCompileSizeAlignment(SVMMSRS, 8);
     1030AssertCompileSize(SVMMSRS, 192);
     1031/** Pointer to a SVMMSRS struct. */
     1032typedef SVMMSRS *PSVMMSRS;
     1033/** Pointer to a const SVMMSRS struct. */
     1034typedef const SVMMSRS *PCSVMMSRS;
     1035
     1036/**
    10201037 * SVM nested-guest VMCB cache.
    10211038 *
Note: See TracChangeset for help on using the changeset viewer.

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