VirtualBox

Custom Query (16363 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (736 - 738 of 16363)

Ticket Resolution Summary Owner Reporter
#17769 invalid tsStartNs sets bug gim
Description

pPeriod->Dbg.tsStartNs sets inside hdaR3StreamPeriodBegin only when LOG_ENABLED defined but uses in hdaR3StreamPeriodEnd without LOG_ENABLED define.

int hdaR3StreamPeriodBegin(PHDASTREAMPERIOD pPeriod, uint64_t u64WalClk)
{
    Assert(!(pPeriod->fStatus & HDASTREAMPERIOD_FLAG_ACTIVE)); /* No nested calls. */

    pPeriod->fStatus          |= HDASTREAMPERIOD_FLAG_ACTIVE;
    pPeriod->u64StartWalClk    = u64WalClk;
    pPeriod->u64ElapsedWalClk  = 0;
    pPeriod->framesTransferred = 0;
    pPeriod->cIntPending       = 0;
# ifdef LOG_ENABLED
    pPeriod->Dbg.tsStartNs     = RTTimeNanoTS();
# endif

    Log3Func(("[SD%RU8] Starting @ %RU64 (%RU64 long)\n", pPeriod->u8SD, pPeriod->u64StartWalClk, pPeriod->u64DurationWalClk));
    return VINF_SUCCESS;
}

/**
 * Ends a formerly begun period life span.
 *
 * @param   pPeriod             Stream period to end life span for.
 */
void hdaR3StreamPeriodEnd(PHDASTREAMPERIOD pPeriod)
{
    Log3Func(("[SD%RU8] Took %zuus\n", pPeriod->u8SD, (RTTimeNanoTS() - pPeriod->Dbg.tsStartNs) / 1000));

...
}
#1688 invalid trunk doesn't compile on 64bit. Paul Schulz
Description

Using the following to build..

VBOX_SVN_REV=7749 kmk System:

ubuntu 8.04 amd64 (64bit)

Checkout:

http://virtualbox.org/svn/vbox/trunk@7749 (using git-svn)

I get the attached errors..

#1845 fixed truncated directory listing in shared folders jerome.hode
Description

In some cases, listing a directory through a shared folder doesnt return all files.
Note that explicit access to a non-listed file works howewer, as well as a filteted listing.

Attached is a directory content (with empty files and subdirs.) where the pb occurs.
A full dir will only show files with names greater than (not including) FeatherTexture.bmp.
A dir *.bmp will however correctly return all bmp files.

Tested with host=XP-SP3 guest=XP-SP3,W2K-SP4

Batch Modify
Note: See TracBatchModify for help on using batch modify.
Note: See TracQuery for help on using queries.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy