summaryrefslogtreecommitdiff
path: root/src/VBox/VMM/VMMR0/VMMR0.cpp
Commit message (Expand)AuthorAgeFilesLines
* Copyright year updates by scm.vboxsync2023-01-171-1/+1
* VMM: Fixed a logging regression from r146583 that prevent logging while VMMRZ...vboxsync2022-11-161-10/+5
* VMM,RuntimeR0: Flush the log buffer directly to the parent VMM if that's the ...vboxsync2022-09-281-2/+2
* VMM,RuntimeR0: Flush the log buffer directly to the parent VMM if that's the ...vboxsync2022-09-281-11/+37
* scm copyright and license note updatevboxsync2022-08-221-8/+18
* Runtime/log: Allow setting a custom output interface for the file destination...vboxsync2022-04-191-0/+1
* VMM/PGM: Moved the physical handler allocation off the hyper heap and into it...vboxsync2022-02-141-0/+6
* VMM/PGM,*: Split the physical access handler type registration into separate ...vboxsync2022-02-081-18/+30
* VMM/PDMQueue: Rewrote the queue code to not use the hyper heap and be a bit s...vboxsync2022-02-051-0/+8
* VMM: Changed PAGE_SIZE -> GUEST_PAGE_SIZE / HOST_PAGE_SIZE, PAGE_SHIFT -> GUE...vboxsync2022-02-021-2/+2
* scm --update-copyright-yearvboxsync2022-01-011-1/+1
* VMM: Some additional checks, bugref:3409vboxsync2021-12-271-1/+3
* VMM: Nested VMX: bugref:10092 Purge VINF_PGM_CHANGE_MODE, no longer used.vboxsync2021-11-181-3/+0
* VMM: Two more VMMR0 calls that must not valid idCpu as a valid EMT. bugref:10...vboxsync2021-11-131-1/+3
* VMM: Reworked most of the call-ring-3 stuff into setjmp-longjmp-on-assert and...vboxsync2021-11-121-88/+39
* VMM: Removed the callring-3 API and some of the associated stuff. bugref:10093vboxsync2021-11-121-11/+52
* VMM/PGM,GMM: Made pgmR0PhysAllocateHandyPages & GMMR0AllocateHandyPages calla...vboxsync2021-11-121-3/+0
* VMM/PGM,GMM: Baked PGMR3PhysAllocateLargePage into PGMR0PhysAllocateLargePage...vboxsync2021-11-111-2/+2
* VMM/GMM: Removed all the legacy mode code (disabled everywhere since r146982)...vboxsync2021-11-061-6/+0
* VMM/GVMM,VMM: Make it possible for known worker thread to enter critical sect...vboxsync2021-11-031-6/+75
* VMM/Logger: Make sure vmmR0LoggerFlushInner runs on the kernel stack. [build ...vboxsync2021-10-181-3/+1
* VMM/VMMR0EntryEx: Don't switch to custom stack for now - will make dealing wi...vboxsync2021-10-181-1/+2
* VMM/Logger: Make sure vmmR0LoggerFlushInner runs on the kernel stack. bugref:...vboxsync2021-10-181-1/+8
* VMM/VMMR0EntryEx: Don't switch to custom stack for now - will make dealing wi...vboxsync2021-10-181-0/+4
* VMM/NEM-win: Quick and very dirty hack to make the code work on windows 11. ...vboxsync2021-10-111-0/+6
* VMM: bugref:10092 Moved the PAE PDPTEs out of PGM into CPUMCTX.vboxsync2021-09-161-1/+1
* VMM/PGM: Removed VMMCALLRING3_PGM_MAP_CHUNK and PGMR3PhysChunkMap as it's unu...vboxsync2021-09-151-3/+0
* VMM/PGMPool: Call PGMR0PoolGrow directly from ring-0 instead of going via rin...vboxsync2021-09-151-4/+1
* VMM/PGM,++: Kicked out VBOX_WITH_2X_4GB_ADDR_SPACE and the DynMap code used b...vboxsync2021-08-311-39/+22
* VMM,GVMMR0: Removed SMAP obsolete sanity checks. bugref:9627vboxsync2021-08-311-157/+8
* VMM: Made VBOX_WITH_RAM_IN_KERNEL non-optional, removing all the tests for it...vboxsync2021-08-311-42/+3
* VMM: Removed VMMCALLRING3_PGM_LOCK (now unused). bugref:6695vboxsync2021-08-301-3/+0
* VMM,PDM,PGM: Restrict the VMSetError and VMSetRuntimeError APIs to ring-3, th...vboxsync2021-08-301-6/+0
* VMM: Changed pgmLock to pass VINF_SUCCESS to PDMCritSectEnter and removed VMM...vboxsync2021-08-291-3/+0
* VMM: Removed VMMCALLRING3_PDM_CRIT_SECT_ENTER, VMMCALLRING3_PDM_CRIT_SECT_RW_...vboxsync2021-08-291-3/+0
* VMM: Ensure proper log flush order by going to ring-0 to wait for the flusher...vboxsync2021-08-281-4/+2
* VMM: Ensure proper log flush order by going to ring-0 to wait for the flusher...vboxsync2021-08-281-1/+73
* VMM: Correctly update idxBuf so we flush the right buffer when we get to ring...vboxsync2021-08-271-1/+6
* VMM: Reduce the buffer size for the ring-0 release logger so we don't waste t...vboxsync2021-08-271-1/+1
* VMM,SUPDrv: Use 4 buffers for each EMT logger in ring-0, making it very likel...vboxsync2021-08-271-106/+180
* VMM: Log flushing stats. bugref:10086vboxsync2021-08-271-0/+12
* VMM: Preparing for using more than one log buffer per ring-0 EMT logger. bugr...vboxsync2021-08-271-83/+106
* VMM: Don't need the per-logger flushing-disabled flag (VMMR0_LOGGER_FLAGS_FLU...vboxsync2021-08-271-2/+1
* VMM: Organize the logger structures both named member and arrays for easier a...vboxsync2021-08-271-84/+43
* VMM: Use a worker thread for flushing ring-0 log buffers. bugref:10086vboxsync2021-08-271-198/+634
* VMM: Initialize the ring-0 loggers as early as possible, so we can update the...vboxsync2021-08-251-42/+54
* IPRT,SUPDrv,VMM,++: Bumped major support driver version. Added RTLogSetR0Prog...vboxsync2021-08-251-7/+14
* VMMR0,SUPDrv: Need to override RTLogDefaultInstanceEx rather than RTLogGetDef...vboxsync2021-08-241-3/+3
* IPRT,VMM,SUPDrv,++: Reworked the IPRT logger structure and how the VMM ring-0...vboxsync2021-08-241-98/+365
* VMM: VALID_PTR -> RT_VALID_PTR.vboxsync2021-08-231-3/+3