~ubuntu-branches/ubuntu/vivid/virtualbox-ose/vivid

« 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-10-13 23:06:00 UTC
  • mfrom: (0.3.2 upstream) (0.1.12 sid)
  • Revision ID: james.westby@ubuntu.com-20091013230600-xhu2pwizq0wo63l9
Tags: 3.0.8-dfsg-1ubuntu1
* Merge from debian unstable (LP: #444812), remaining changes:
  - Enable DKMS support on virtualbox host and guest modules (LP: #267097)
    - Drop virtualbox-ose{-guest,}-modules-* package templates
    - Recommend *-source instead of *-modules packages
    - Replace error messages related to missing/mismatched
      kernel module accordingly
  - Autoload kernel module
    - LOAD_VBOXDRV_MODULE=1 in virtualbox-ose.default
  - Disable update action
    - patches/u01-disable-update-action.dpatch
  - Virtualbox should go in Accessories, not in System tools (LP: #288590)
    - virtualbox-ose-qt.files/virtualbox-ose.desktop
  - Add apport hook
    - virtualbox-ose.files/source_virtualbox-ose.py
    - virtualbox-ose.install
  - Add launchpad integration
    - control
    - lpi-bug.xpm
    - patches/u02-lp-integration.dpatch
* Try to remove existing dkms modules before adding the new modules
  (LP: #434503)
  - debian/virtualbox-ose-source.postinst
  - debian/virtualbox-ose-guest-source.postinst
* Don't fail if dkms modules have already been removed
  - debian/virtualbox-ose-source.prerm
  - debian/virtualbox-ose-guest-source.prerm

Show diffs side-by-side

added added

removed removed

Lines of Context:
1091
1091
#define VMX_EXIT_QUALIFICATION_CRX_ACCESS_LMSW         3
1092
1092
/** @} */
1093
1093
 
 
1094
/** @name VMX_EXIT_QUALIFICATION_TASK_SWITCH
 
1095
 * @{
 
1096
 */
 
1097
#define VMX_EXIT_QUALIFICATION_TASK_SWITCH_SELECTOR(a)  (a & 0xffff)
 
1098
#define VMX_EXIT_QUALIFICATION_TASK_SWITCH_TYPE(a)      ((a >> 30)& 0x3)
 
1099
/** Task switch caused by a call instruction. */
 
1100
#define VMX_EXIT_QUALIFICATION_TASK_SWITCH_TYPE_CALL    0
 
1101
/** Task switch caused by an iret instruction. */
 
1102
#define VMX_EXIT_QUALIFICATION_TASK_SWITCH_TYPE_IRET    1
 
1103
/** Task switch caused by a jmp instruction. */
 
1104
#define VMX_EXIT_QUALIFICATION_TASK_SWITCH_TYPE_JMP     2
 
1105
/** Task switch caused by an interrupt gate. */
 
1106
#define VMX_EXIT_QUALIFICATION_TASK_SWITCH_TYPE_IDT     3
 
1107
 
 
1108
/** @} */
 
1109
 
1094
1110
 
1095
1111
/** @name VMX_EXIT_EPT_VIOLATION
1096
1112
 * @{