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

« back to all changes in this revision

Viewing changes to src/VBox/VMM/HWACCMInternal.h

  • Committer: Bazaar Package Importer
  • Author(s): Felix Geyer
  • Date: 2010-03-11 17:16:37 UTC
  • mfrom: (0.3.4 upstream) (0.4.8 sid)
  • Revision ID: james.westby@ubuntu.com-20100311171637-43z64ia3ccpj8vqn
Tags: 3.1.4-dfsg-2ubuntu1
* Merge from Debian unstable (LP: #528561), remaining changes:
  - 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
  - Replace *-source packages with transitional packages for *-dkms
* Fix crash in vboxvideo_drm with kernel 2.6.33 / backported drm code
  (LP: #535297)
* Add a list of linux-headers packages to the apport hook
* Update debian/patches/u02-lp-integration.dpatch with a
  DEP-3 compliant header
* Add ${misc:Depends} to virtualbox-ose-source and virtualbox-ose-guest-source
  Depends

Show diffs side-by-side

added added

removed removed

Lines of Context:
173
173
    /** Configured for VT-x or AMD-V. */
174
174
    bool                fConfigured;
175
175
 
 
176
    /** Set if the VBOX_HWVIRTEX_IGNORE_SVM_IN_USE hack is active. */
 
177
    bool                fIgnoreAMDVInUseError;
 
178
 
176
179
    /** In use by our code. (for power suspend) */
177
180
    volatile bool       fInUse;
178
181
} HWACCM_CPUINFO;
373
376
        /** Host CR4 value (set by ring-0 VMX init) */
374
377
        uint64_t                    hostCR4;
375
378
 
 
379
        /** Host EFER value (set by ring-0 VMX init) */
 
380
        uint64_t                    hostEFER;
 
381
 
376
382
        /** VMX MSR values */
377
383
        struct
378
384
        {
405
411
        bool                        fEnabled;
406
412
        /** Set if erratum 170 affects the AMD cpu. */
407
413
        bool                        fAlwaysFlushTLB;
408
 
        bool                        u8Alignment;
 
414
        /** Set when the hack to ignore VERR_SVM_IN_USE is active. */
 
415
        bool                        fIgnoreInUseError;
409
416
 
410
417
        /** R0 memory object for the IO bitmap (12kb). */
411
418
        RTR0MEMOBJ                  pMemObjIOBitmap;