VirtualBox

Changeset 81756 in vbox


Ignore:
Timestamp:
Nov 10, 2019 7:23:13 PM (5 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
134544
Message:

Devices/Graphics: suppress noisy logging.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Devices/Graphics/DevVGA-SVGA.cpp

    r81755 r81756  
    99 *  - Log3 for hex dump of shader code.
    1010 *  - Log4 for hex dumps of 3D data.
     11 *  - Log5 for info about GMR pages.
    1112 */
    1213
     
    39333934                    break;
    39343935
     3936                /** @todo Move to a separate function vmsvgaGMRRemap() */
     3937
    39353938                /* Calc new total page count so we can use it instead of cMaxPages for allocations below. */
    39363939                uint32_t const cNewTotalPages = RT_MAX(pGMR->cbTotal >> X86_PAGE_SHIFT, pCmd->offsetPages + pCmd->numPages);
     
    40214024                            Assert(paDescs[iDescriptor].numPages);
    40224025                            paDescs[iDescriptor].numPages++;
    4023                             LogFlow(("Page %x GCPhys=%RGp successor\n", i, GCPhys));
     4026                            Log5Func(("Page %x GCPhys=%RGp successor\n", i, GCPhys));
    40244027                        }
    40254028                        else
     
    40284031                            paDescs[iDescriptor].GCPhys   = GCPhys;
    40294032                            paDescs[iDescriptor].numPages = 1;
    4030                             LogFlow(("Page %x GCPhys=%RGp\n", i, paDescs[iDescriptor].GCPhys));
     4033                            Log5Func(("Page %x GCPhys=%RGp\n", i, paDescs[iDescriptor].GCPhys));
    40314034                        }
    40324035                    }
    40334036
    40344037                    pGMR->cbTotal = cNewTotalPages << X86_PAGE_SHIFT;
    4035                     LogFlow(("Nr of descriptors %x; cbTotal=%#x\n", iDescriptor + 1, cNewTotalPages));
     4038                    Log5Func(("Nr of descriptors %x; cbTotal=%#x\n", iDescriptor + 1, cNewTotalPages));
    40364039                    pGMR->numDescriptors = iDescriptor + 1;
    40374040                }
     
    50415044            RTGCPHYS const GCPhys = paDesc[iDesc].GCPhys + offGmrCurrent - offDesc;
    50425045
    5043             LogFlowFunc(("%s phys=%RGp\n", (enmTransferType == SVGA3D_WRITE_HOST_VRAM) ? "READ" : "WRITE", GCPhys));
     5046            Log5Func(("%s phys=%RGp\n", (enmTransferType == SVGA3D_WRITE_HOST_VRAM) ? "READ" : "WRITE", GCPhys));
    50445047
    50455048            if (enmTransferType == SVGA3D_WRITE_HOST_VRAM)
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