FS#45748 - [virtualbox] Multi-monitor support broken
Attached to Project:
Community Packages
Opened by Sven-Hendrik Haase (Svenstaro) - Thursday, 23 July 2015, 04:07 GMT
Last edited by Doug Newgard (Scimmia) - Wednesday, 23 December 2015, 14:55 GMT
Opened by Sven-Hendrik Haase (Svenstaro) - Thursday, 23 July 2015, 04:07 GMT
Last edited by Doug Newgard (Scimmia) - Wednesday, 23 December 2015, 14:55 GMT
|
Details
My 4.3 multi-screen setup stopped working in 5.0 using the
Arch guest modules. Using the official binary modules,
multi-monitor support is working. Therefore, I must be
something in the patches we currently use.
Xorg.0.log seems relevant: http://pastie.org/private/vfdkrkdsziscfhtdrpdjg That log is only reporting a single screen. |
This task depends upon
Closed by Doug Newgard (Scimmia)
Wednesday, 23 December 2015, 14:55 GMT
Reason for closing: Fixed
Additional comments about closing: 5.0.12
Wednesday, 23 December 2015, 14:55 GMT
Reason for closing: Fixed
Additional comments about closing: 5.0.12
Edit: I think I have miss read the ticket. In that case, I, too, have moved from 4.3 to 5.0 and multi monitor support has been broken.
virtualbox-guest-utils
virtualbox-guest-modules
Now I have the issue that the second monitor appears as "disconnected" in xrandr, before the downgrade it did not appear at all.
Sticking with the old guest-modules for now, i hope they don't stop working until we got this fixed.
Also, on top of multi monitor being broken, when selecting USB3.0, USB devices stopped working correctly despite being identified by the host.
I wonder if someone can test USB 3.0 on a windows and linux guest and confirm the issue and source?
i use virtualbox for my work setup, so this is becoming quite urgent for me...
If it's urgent, please provide a fix.
that would be ok for me :>
https://seblu.net/a/archive/packages/v/virtualbox-guest-dkms/
The binary modules do restore multi-monitor support with VB 5, but I get no 3D acceleration.
This doesn't actually bother me, but this being my work machine, I choose not to find out what else might be wrong with it, so I'll stick with 4.3.
tonymilne, seblu, Svenstaru:
It appears you tested the binary modules, did you check if 3D accel worked at all in your setups?
To temporarily fix dual monitor support you can do following steps:
sudo pacman -S virtualbox-guest-iso
sudo pacman -S fuseiso
mkdir /tmp/vb_iso && mkdir /tmp/vb_unp
fuseiso /usr/lib/virtualbox/additions/VBoxGuestAdditions.iso /tmp/vb_iso
cd /tmp/vb_iso
./VBoxLinuxAdditions.run --noexec --target /tmp/vb_unp
cd /tmp/vb_unp
tar -xf VBoxGuestAdditions-amd64.tar.bz2 # or x86 one if using 32-bit
sudo cp lib/VBoxGuestAdditions/vboxvideo_drv_117.so /usr/lib/xorg/modules/drivers/vboxvideo.so # in the future check X11 version by invoking "sudo X -version"
# and restart X11 session, enable second monitor in menu and it should work now
I gave it a try and packages in repository seem ok.
Everything's working on my machine on stable repositories.
I was only using the compiled module unknowingly...
I assumed there was still some problem so I was playing with the iso files, but in the process of trying to understand why my shared folder was not working I installed the packages from the repository.
After installing the packages from the repos, the graphics driver was not overwritten, which I assumed it was (shouldn't it do so? or throw a warning, something?).
Anyway, regreatably, stable repositories still have an issue with multi monitor support.
I can also confirm that dobo's temporary fix still works.
C:\Program Files\Oracle\VirtualBox>VBoxManage.exe controlvm arch setvideomodehint 1920 1080 24 1 yes
VirtualBox on the host: 5.0.8.103449, virtualbox-guest-iso: 5.0.8-1, virtualbox-guest-utils: 5.0.8-1
Also X11 has been updated now so the last command in dobo's fix needs to be vboxvideo_drv_118 for it to work.
The function : VBoxQueryConfHGSMI(..., VBOX_VBVA_CONF32_MONITOR_COUNT, &cDisplays)
Called by VBoxHGSMIGetMonitorCount(&pVBox->guestCtx) return : 4294967295 (all bit to 1)
I did add "usleep(1000)" inside VBoxHGSMIBufferSubmit(), just before line VBoxVideoCmnPortWriteUlong()
I do not have time to investigate further...
And this is working perfectly...
The instruction "*pulValue = p->u32Value;" inside the function VBoxQueryConfHGSMIDef() is not executed.
In fact the compiler do not see that the memory had changed after the call of VBoxVideoCmnPortWriteUlong().
The reason are :
* VBoxVideoCmnPortWriteUlong() is an inline function
* An offset of the pointer is passed to VBoxVideoCmnPortWriteUlong() and not the pointer itself
=> The optimizer (of gcc) has no reason to reload the p->u32Value
The pointer may be declared volatile, or the ASMCompilerBarrier could be added
See https://www.virtualbox.org/ticket/14497
Each person affected by this bug should have a thought for Benjamin for Christmas.
[1] http://www.virtualbox.org/wiki/Changelog
[2] https://www.virtualbox.org/ticket/14497