Re: [vfio-users] Setting up VFIO Passthrough for LINUX Guests (class room setup)

2015-11-29 Thread Okky Hendriansyah
On November 2, 2015 at 20:50:52, Julian Rendell (juliangrend...@gmail.com) wrote: Hi- Hi Julian, First problem & question: Is the latest OVMF broken? Can you try Gerd Hoffmann's precompiled OMVF package here [1]?. I usually pick from there and currently I’m at 2015-11-26 build so far no issue.

[vfio-users] 1 GB hugepages cause host crash on guest shutdown with some GPUs

2015-11-29 Thread Dan Ziemba
I recently got myself a "new" (used) gpu to replace the one I was previously using for passthrough with vfio, and I discovered a strange bug during this.  With the new GPU being passed through to the guest, the host will "sort of" crash on guest shutdown.  Video output freezes and all usb devices s

[vfio-users] [PATCH] vgaarb: fix signal handling in vga_get()

2015-11-29 Thread Kirill A. Shutemov
There are few defects in vga_get() related to signal hadning: - we shouldn't check for pending signals for TASK_UNINTERRUPTIBLE case; - if we found pending signal we must remove ourself from wait queue and change task state back to running; - -ERESTARTSYS is more appropriate, I gue