Custom Query (16363 matches)
Results (1105 - 1107 of 16363)
| Ticket | Resolution | Summary | Owner | Reporter |
|---|---|---|---|---|
| #1906 | fixed | clipboard high cpu utilization | ||
| 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 | ||
| 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) | ||
| Description |
I can't get past the boot menu with the installation of FreeBSD 7 on my AMD64 host. |
|||

