VirtualBox

Ignore:
Timestamp:
Jun 29, 2018 8:02:35 PM (7 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
123320
Message:

VMM,SUPDrv,IPRT: Redirect ring-0 release logging on EMTs to VBox.log.

  • VMM: Added release ring-0 logging on EMTs that writes to VBox.log.
  • IPRT: Made 'msprog' and 'timeprog' work for ring-0 logging on EMTs.
  • IPRT: Removed RTLogSetCustomPrefixCallbackForR0.
  • VMM: Removed vmmR0LoggerPrefix that was assoicated with the above API.
  • IPRT Fixed missing log prefix on the first log line.
  • SUPDrv: Turns out we require actual code for SUPR0GetDefaultLogRelInstanceEx and SUPR0GetDefaultLogInstanceEx.

Note! Requires updating the support driver.

Location:
trunk/src/VBox/HostDrivers/Support
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/HostDrivers/Support/SUPDrv.cpp

    r72693 r72778  
    277277    { "RTLogGetDefaultInstance",                (void *)(uintptr_t)RTLogGetDefaultInstance },
    278278    { "RTLogGetDefaultInstanceEx",              (void *)(uintptr_t)RTLogGetDefaultInstanceEx },
    279     { "SUPR0GetDefaultLogInstanceEx",           (void *)(uintptr_t)RTLogGetDefaultInstanceEx },
     279    { "SUPR0GetDefaultLogInstanceEx",           (void *)(uintptr_t)SUPR0GetDefaultLogInstanceEx },
    280280    { "RTLogLoggerExV",                         (void *)(uintptr_t)RTLogLoggerExV },
    281281    { "RTLogPrintfV",                           (void *)(uintptr_t)RTLogPrintfV },
    282282    { "RTLogRelGetDefaultInstance",             (void *)(uintptr_t)RTLogRelGetDefaultInstance },
    283283    { "RTLogRelGetDefaultInstanceEx",           (void *)(uintptr_t)RTLogRelGetDefaultInstanceEx },
    284     { "SUPR0GetDefaultLogRelInstanceEx",        (void *)(uintptr_t)RTLogRelGetDefaultInstanceEx },
     284    { "SUPR0GetDefaultLogRelInstanceEx",        (void *)(uintptr_t)SUPR0GetDefaultLogRelInstanceEx },
    285285    { "RTLogSetDefaultInstanceThread",          (void *)(uintptr_t)RTLogSetDefaultInstanceThread },
    286286    { "RTMemAllocExTag",                        (void *)(uintptr_t)RTMemAllocExTag },
     
    31773177
    31783178
     3179/** @copydoc RTLogGetDefaultInstanceEx
     3180 * @remarks To allow overriding RTLogGetDefaultInstanceEx locally. */
     3181SUPR0DECL(struct RTLOGGER *) SUPR0GetDefaultLogInstanceEx(uint32_t fFlagsAndGroup)
     3182{
     3183    return RTLogGetDefaultInstanceEx(fFlagsAndGroup);
     3184}
     3185
     3186
     3187/** @copydoc RTLogRelGetDefaultInstanceEx
     3188 * @remarks To allow overriding RTLogRelGetDefaultInstanceEx locally. */
     3189SUPR0DECL(struct RTLOGGER *) SUPR0GetDefaultLogRelInstanceEx(uint32_t fFlagsAndGroup)
     3190{
     3191    return RTLogRelGetDefaultInstanceEx(fFlagsAndGroup);
     3192}
     3193
     3194
    31793195/**
    31803196 * Lock pages.
  • trunk/src/VBox/HostDrivers/Support/SUPDrvIOC.h

    r72693 r72778  
    224224 * @remarks 0x002a0000 is used by 5.1. The next version number must be 0x002b0000.
    225225 */
    226 #define SUPDRV_IOC_VERSION                              0x00290005
     226#define SUPDRV_IOC_VERSION                              0x00290006
    227227
    228228/** SUP_IOCTL_COOKIE. */
  • trunk/src/VBox/HostDrivers/Support/SUPLib.cpp

    r72693 r72778  
    277277        CookieReq.u.In.u32ReqVersion = SUPDRV_IOC_VERSION;
    278278        const uint32_t uMinVersion = (SUPDRV_IOC_VERSION & 0xffff0000) == 0x00290000
    279                                    ? 0x00290005
     279                                   ? 0x00290006
    280280                                   : SUPDRV_IOC_VERSION & 0xffff0000;
    281281        CookieReq.u.In.u32MinVersion = uMinVersion;
Note: See TracChangeset for help on using the changeset viewer.

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