~ubuntu-branches/ubuntu/raring/virtualbox-ose/raring

« back to all changes in this revision

Viewing changes to include/VBox/hwacc_vmx.h

  • Committer: Bazaar Package Importer
  • Author(s): Felix Geyer
  • Date: 2009-12-18 16:44:29 UTC
  • mfrom: (0.3.3 upstream) (0.4.6 squeeze)
  • Revision ID: james.westby@ubuntu.com-20091218164429-jd34ccexpv5na11a
Tags: 3.1.2-dfsg-1ubuntu1
* Merge from Debian unstable (LP: #498219), remaining changes:
  - Disable update action
    - debian/patches/u01-disable-update-action.dpatch
  - VirtualBox should go in Accessories, not in System tools (LP: #288590)
    - debian/virtualbox-ose-qt.files/virtualbox-ose.desktop
  - Add Apport hook
    - debian/virtualbox-ose.files/source_virtualbox-ose.py
    - debian/virtualbox-ose.install
  - Add Launchpad integration
    - debian/control
    - debian/lpi-bug.xpm
    - debian/patches/u02-lp-integration.dpatch
* Fixes the following bugs:
  - Kernel module fails to build with Linux >= 2.6.32 (LP: #474625)
  - X.Org drivers need to be rebuilt against X-Server 1.7 (LP: #495935)
  - The *-source packages try to build the kernel modules even though the
    kernel headers aren't available (LP: #473334)
* Replace *-source packages with transitional packages for *-dkms.
* Adapt u01-disable-update-action.dpatch and u02-lp-integration.dpatch for
  new upstream version.

Show diffs side-by-side

added added

removed removed

Lines of Context:
398
398
/** @} */
399
399
 
400
400
 
 
401
/** @name VT-x capability qword
 
402
 * @{
 
403
 */
 
404
#pragma pack(1)
 
405
typedef union
 
406
{
 
407
    struct
 
408
    {
 
409
        uint32_t        disallowed0;
 
410
        uint32_t        allowed1;
 
411
    } n;
 
412
    uint64_t            u;
 
413
} VMX_CAPABILITY;
 
414
#pragma pack()
 
415
/** @} */
 
416
 
401
417
/** @name VMX Basic Exit Reasons.
402
418
 * @{
403
419
 */
861
877
#define VMX_VMCS_CTRL_PROC_EXEC2_EPT                            RT_BIT(1)
862
878
/** Descriptor table instructions cause VM-exits. */
863
879
#define VMX_VMCS_CTRL_PROC_EXEC2_DESCRIPTOR_INSTR_EXIT          RT_BIT(2)
 
880
/** RDTSCP causes a VM-exit. */
 
881
#define VMX_VMCS_CTRL_PROC_EXEC2_RDTSCP_EXIT                    RT_BIT(3)
864
882
/** Virtualize x2APIC mode. */
865
883
#define VMX_VMCS_CTRL_PROC_EXEC2_X2APIC                         RT_BIT(4)
866
884
/** VPID supported/enabled. */
867
885
#define VMX_VMCS_CTRL_PROC_EXEC2_VPID                           RT_BIT(5)
868
886
/** VM Exit when executing the WBINVD instruction. */
869
887
#define VMX_VMCS_CTRL_PROC_EXEC2_WBINVD_EXIT                    RT_BIT(6)
 
888
/** Unrestricted guest execution. */
 
889
#define VMX_VMCS_CTRL_PROC_EXEC2_REAL_MODE                      RT_BIT(7)
 
890
/** A specified nr of pause loops cause a VM-exit. */
 
891
#define VMX_VMCS_CTRL_PROC_EXEC2_PAUSE_LOOP_EXIT                RT_BIT(10)
870
892
/** @} */
871
893
 
872
894