VirtualBox

Custom Query (16363 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (1105 - 1107 of 16363)

Ticket Resolution Summary Owner Reporter
#1906 fixed clipboard high cpu utilization Bengt-Arne Fjellner
Description

Using rdesktop 1.6.0 to communicate directly with the guest(windows xp) from the host gives high cpu usage even if idle.

Using -r clipboard:off with rdesktop or turning clipboard integration off (VBoxManage) solves it.

So it may only be on in either vbox or rdesktop. Is this possible to detect ? Or at least a warning in the docs might be in place.

#1907 fixed Incorrect bit adjustment in PCIDevSetBaseAddress Aaron Von Gauss
Description

In trying to do some testing with the serial driver, I noticed that there was an incorrect bit adjustment in the PCIDevSetBaseAddress method in "VBox/pci.h". The second bit adjustment is rotating 16 bits while it should be using 8 bits.

    u32Addr = RT_H2LE_U32(u32Addr);
    pPciDev->config[iReg]     = u32Addr         & 0xff;
    pPciDev->config[iReg + 1] = (u32Addr >> 16) & 0xff; /* - */
    pPciDev->config[iReg + 2] = (u32Addr >> 16) & 0xff;
    pPciDev->config[iReg + 3] = (u32Addr >> 24) & 0xff;

The only device in the standard source tree using this code that I'm aware of is the "Audio/DevIchAc97.cpp".

#1911 fixed FreeBSD 7.0 Guest Creation Fails (Guru meditation, trap 0x0d) David Abrahams
Description

I can't get past the boot menu with the installation of FreeBSD 7 on my AMD64 host.

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