public inbox for kvm@vger.kernel.org
 help / color / mirror / Atom feed
* [ANNOUNCE] qemu-kvm-1.1-rc3
@ 2012-05-23  9:07 Avi Kivity
  2012-05-25  8:36 ` Veruca Salt
  0 siblings, 1 reply; 4+ messages in thread
From: Avi Kivity @ 2012-05-23  9:07 UTC (permalink / raw)
  To: kvm

qemu-kvm-1.1-rc3 is now available. This release is based on the upstream
qemu 1.1-rc3, plus kvm-specific enhancements. Please see the
original QEMU 1.1-rc3 release announcement [1] for details.

This release can be used with the kvm kernel modules provided by your
distribution kernel, or by the modules in the kvm-kmod package, such
as kvm-kmod-3.4.

Please help by testing it out!

http://www.linux-kvm.org

[1] http://comments.gmane.org/gmane.comp.emulators.qemu/151906

--
To unsubscribe from this list: send the line "unsubscribe kvm" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

^ permalink raw reply	[flat|nested] 4+ messages in thread

* RE: [ANNOUNCE] qemu-kvm-1.1-rc3
  2012-05-23  9:07 [ANNOUNCE] qemu-kvm-1.1-rc3 Avi Kivity
@ 2012-05-25  8:36 ` Veruca Salt
  2012-05-28  9:30   ` Avi Kivity
  0 siblings, 1 reply; 4+ messages in thread
From: Veruca Salt @ 2012-05-25  8:36 UTC (permalink / raw)
  To: avi, QEMU-KVM Mailing List




----------------------------------------
> Date: Wed, 23 May 2012 12:07:58 +0300
> From: avi@redhat.com
> To: kvm@vger.kernel.org
> Subject: [ANNOUNCE] qemu-kvm-1.1-rc3
>
> qemu-kvm-1.1-rc3 is now available. This release is based on the upstream
> qemu 1.1-rc3, plus kvm-specific enhancements. Please see the
> original QEMU 1.1-rc3 release announcement [1] for details.
>
> This release can be used with the kvm kernel modules provided by your
> distribution kernel, or by the modules in the kvm-kmod package, such
> as kvm-kmod-3.4.
>
> Please help by testing it out!
>
> http://www.linux-kvm.org
>
> [1] http://comments.gmane.org/gmane.comp.emulators.qemu/151906
>
> --
> To unsubscribe from this list: send the line "unsubscribe kvm" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at http://vger.kernel.org/majordomo-info.html
> --
> To unsubscribe from this list: send the line "unsubscribe kvm" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at http://vger.kernel.org/majordomo-info.html

Avi- would love to test out 1.1, as we are currently using the ehci method
 which has been frozen at 'experimental' for so long.

Is there any user documentation on the xhci methods?
Simon
 		 	   		  

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [ANNOUNCE] qemu-kvm-1.1-rc3
  2012-05-25  8:36 ` Veruca Salt
@ 2012-05-28  9:30   ` Avi Kivity
  2012-05-29  8:32     ` qemu & xhci mini howto (was: Re: [Qemu-devel] [ANNOUNCE] qemu-kvm-1.1-rc3) Gerd Hoffmann
  0 siblings, 1 reply; 4+ messages in thread
From: Avi Kivity @ 2012-05-28  9:30 UTC (permalink / raw)
  To: Veruca Salt; +Cc: QEMU-KVM Mailing List, qemu-devel

On 05/25/2012 11:36 AM, Veruca Salt wrote:
> 
> Avi- would love to test out 1.1, as we are currently using the ehci method
>  which has been frozen at 'experimental' for so long.
> 
> Is there any user documentation on the xhci methods?

Copying qemu-devel, where someone may know the answer.

-- 
error compiling committee.c: too many arguments to function

^ permalink raw reply	[flat|nested] 4+ messages in thread

* qemu & xhci mini howto (was: Re: [Qemu-devel] [ANNOUNCE] qemu-kvm-1.1-rc3)
  2012-05-28  9:30   ` Avi Kivity
@ 2012-05-29  8:32     ` Gerd Hoffmann
  0 siblings, 0 replies; 4+ messages in thread
From: Gerd Hoffmann @ 2012-05-29  8:32 UTC (permalink / raw)
  To: Avi Kivity; +Cc: Veruca Salt, qemu-devel, QEMU-KVM Mailing List

On 05/28/12 11:30, Avi Kivity wrote:
> On 05/25/2012 11:36 AM, Veruca Salt wrote:
>>
>> Avi- would love to test out 1.1, as we are currently using the ehci method
>>  which has been frozen at 'experimental' for so long.
>>
>> Is there any user documentation on the xhci methods?
> 
> Copying qemu-devel, where someone may know the answer.

There are no docs.  But xhci can handle all devices by itself, no need
to do all this companion controller stuff you have to do with ehci for
usb 1.1 compatibility.  Thus it's pretty simple actually:


(1) You add the xhci host adapter:

    qemu $args -device nec-usb-xhci,id=xhci

(2) You add usb devices devices as usual:

    qemu $args -device usb-tablet,bus=xhci.0

(3) There is no third step ;)


Advantages of xhci:
 * higher performance, less cpu overhead (thanks to the
   virtualization/emulation friendly hardware design).

Known issues (for qemu 1.1, list hopefully becomes shorter for 1.2):
 * Got less testing than ehci.
 * No usb-hub support yet (i.e. you are limited to the 4 root ports,
   but as the qemu-emulated usb hub supports usb 1.1 only you probably
   want avoid it anyway ...).
 * No usb 3.0 ports yet.
 * No isochronous transfer support yet.
 * No seabios support yet (i.e. you can't boot from xhci-connected
   usbsticks).

cheers,
  Gerd

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2012-05-29  8:32 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-05-23  9:07 [ANNOUNCE] qemu-kvm-1.1-rc3 Avi Kivity
2012-05-25  8:36 ` Veruca Salt
2012-05-28  9:30   ` Avi Kivity
2012-05-29  8:32     ` qemu & xhci mini howto (was: Re: [Qemu-devel] [ANNOUNCE] qemu-kvm-1.1-rc3) Gerd Hoffmann

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox