* [Qemu-devel] [ANNOUNCE] QEMU 1.0-rc1
@ 2011-11-07 21:58 Anthony Liguori
2011-11-08 17:42 ` Rick Vernam
0 siblings, 1 reply; 9+ messages in thread
From: Anthony Liguori @ 2011-11-07 21:58 UTC (permalink / raw)
To: qemu-devel
Hi,
On behalf of the QEMU Team, I'd like to announce the availability of QEMU 1.0,
release candidate 1. This is the first release candidate for the 1.0 release.
This is not intended for production use but rather for testing.
To participate in the testing effort, please read the Testing Wiki[1] and sign
up to test a subsystem. Any problems should be reported on Launchpad[2] or
qemu-devel.
If you've contributed to the 1.0 release, please take a moment and update the
Changelog[3] so we can have a high quality change log for the release.
The full release schedule[4] is also available on the wiki.
http://wiki.qemu.org/download/qemu-1.0-rc1.tar.gz
Known Issues:
1) There is an issue resetting Linux guests that is still being investigated.
Shutting down QEMU completely and restarting works around the issue.
Changelog since v1.0-rc0
- console: Fix rendering of VGA underline (Markus Armbruster)
- qemu_timedate_diff() shouldn't modify its argument. (Gleb Natapov)
- reenable vm_clock when resuming all vcpus (Wen Congyang)
- qxl: fix vga port initialization. (Gerd Hoffmann)
- ac97: don't override the pci subsystem id (Gerd Hoffmann)
- pc: add 1.0 machine type (Gerd Hoffmann)
- disable automatic loading of sgabios when -nographic (Paolo Bonzini)
- add sgabios blob and submodule (Paolo Bonzini)
- xen-platform: Fix IO port read/write functions (Anthony PERARD)
- readline: Fix buffer overrun on re-add to history (Markus Armbruster)
- cmd: Fix potential memory leak (Pavel Borzenkov)
- cmd: Fix potential NULL pointer dereference (Pavel Borzenkov)
- cmd: Fix coding style in cmd.c (Pavel Borzenkov)
- arm_gic: handle banked enable bits for per-cpu interrupts (Rabin Vincent)
- vvfat: reorganize computation of disk geometry (Paolo Bonzini)
- vvfat: do not hardcode sector counts in error message (Paolo Bonzini)
- vvfat: unify and correct computation of sector count (Paolo Bonzini)
- vvfat: need to use first_sectors_number to distinguish fdd/hdd (Paolo Bonzini)
- vvfat: do not fail if the disk has spare sectors (Paolo Bonzini)
- vvfat: fix out of bounds array_get usage (Paolo Bonzini)
- block/cloop: Use g_free instead of free (Dong Xu Wang)
- block/cloop: Fix coding style (Dong Xu Wang)
- dma: Avoid reentrancy in DMA transfer handlers (Kevin Wolf)
- qemu-io: Fix multiwrite_f error handling (Kevin Wolf)
- qemu-io: Handle create_iovec errors (Kevin Wolf)
- Fix X86 CPU topology in KVM mode (Bharata B Rao)
- intel-hda: fix stream search (Gerd Hoffmann)
- virtio-blk: pass full status to the guest (Paolo Bonzini)
- hw/9pfs: use g_vasprintf() instead of rolling our own (Stefan Hajnoczi)
- xtensa_lx60: fix build date code and change memory region names (Max Filippov)
- xtensa_lx60: pass kernel arguments from -append (Max Filippov)
- xtensa_lx60: add FLASH support (Max Filippov)
- target-xtensa: raise an exception for invalid and reserved opcodes (Max
Filippov)
- target-xtensa: handle cache options in the overlay tool (Max Filippov)
- target-xtensa: mask out undefined bits of WINDOWSTART SR (Max Filippov)
- tcg: Add tcg interpreter to configure / make (Stefan Weil)
- tcg: Add tci disassembler (Stefan Weil)
- tcg: Add interpreter for bytecode (Stefan Weil)
- tcg: Add bytecode generator for tcg interpreter (Stefan Weil)
- tcg: Make ARRAY_SIZE(tcg_op_defs) globally available (Stefan Weil)
- tcg: TCG targets may define tcg_qemu_tb_exec (Stefan Weil)
- memory: use 128-bit integers for sizes and intermediates (Avi Kivity)
- Add support for 128-bit arithmetic (Avi Kivity)
[1] http://wiki.qemu.org/Planning/1.0/Testing
[2] http://wiki.qemu.org/ReportABug
[3] http://wiki.qemu.org/ChangeLog/Next
[4] http://wiki.qemu.org/Planning/1.0
Regards,
Anthony Liguori
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [Qemu-devel] [ANNOUNCE] QEMU 1.0-rc1
2011-11-07 21:58 [Qemu-devel] [ANNOUNCE] QEMU 1.0-rc1 Anthony Liguori
@ 2011-11-08 17:42 ` Rick Vernam
2011-11-08 18:50 ` Stefan Weil
0 siblings, 1 reply; 9+ messages in thread
From: Rick Vernam @ 2011-11-08 17:42 UTC (permalink / raw)
To: qemu-devel; +Cc: Anthony Liguori
On Monday 07 November 2011 15:58:24 Anthony Liguori wrote:
> Hi,
>
> On behalf of the QEMU Team, I'd like to announce the availability of QEMU
> 1.0, release candidate 1. This is the first release candidate for the 1.0
> release. This is not intended for production use but rather for testing.
>
> To participate in the testing effort, please read the Testing Wiki[1] and
> sign up to test a subsystem. Any problems should be reported on
> Launchpad[2] or qemu-devel.
>
> If you've contributed to the 1.0 release, please take a moment and update
> the Changelog[3] so we can have a high quality change log for the release.
>
> The full release schedule[4] is also available on the wiki.
>
> http://wiki.qemu.org/download/qemu-1.0-rc1.tar.gz
>
> Known Issues:
>
> 1) There is an issue resetting Linux guests that is still being
> investigated. Shutting down QEMU completely and restarting works around
> the issue.
>
> Changelog since v1.0-rc0
>
> - console: Fix rendering of VGA underline (Markus Armbruster)
> - qemu_timedate_diff() shouldn't modify its argument. (Gleb Natapov)
> - reenable vm_clock when resuming all vcpus (Wen Congyang)
> - qxl: fix vga port initialization. (Gerd Hoffmann)
> - ac97: don't override the pci subsystem id (Gerd Hoffmann)
> - pc: add 1.0 machine type (Gerd Hoffmann)
> - disable automatic loading of sgabios when -nographic (Paolo Bonzini)
> - add sgabios blob and submodule (Paolo Bonzini)
> - xen-platform: Fix IO port read/write functions (Anthony PERARD)
> - readline: Fix buffer overrun on re-add to history (Markus Armbruster)
> - cmd: Fix potential memory leak (Pavel Borzenkov)
> - cmd: Fix potential NULL pointer dereference (Pavel Borzenkov)
> - cmd: Fix coding style in cmd.c (Pavel Borzenkov)
> - arm_gic: handle banked enable bits for per-cpu interrupts (Rabin
> Vincent) - vvfat: reorganize computation of disk geometry (Paolo Bonzini)
> - vvfat: do not hardcode sector counts in error message (Paolo Bonzini) -
> vvfat: unify and correct computation of sector count (Paolo Bonzini) -
> vvfat: need to use first_sectors_number to distinguish fdd/hdd (Paolo
> Bonzini) - vvfat: do not fail if the disk has spare sectors (Paolo
> Bonzini) - vvfat: fix out of bounds array_get usage (Paolo Bonzini)
> - block/cloop: Use g_free instead of free (Dong Xu Wang)
> - block/cloop: Fix coding style (Dong Xu Wang)
> - dma: Avoid reentrancy in DMA transfer handlers (Kevin Wolf)
> - qemu-io: Fix multiwrite_f error handling (Kevin Wolf)
> - qemu-io: Handle create_iovec errors (Kevin Wolf)
> - Fix X86 CPU topology in KVM mode (Bharata B Rao)
> - intel-hda: fix stream search (Gerd Hoffmann)
> - virtio-blk: pass full status to the guest (Paolo Bonzini)
> - hw/9pfs: use g_vasprintf() instead of rolling our own (Stefan Hajnoczi)
> - xtensa_lx60: fix build date code and change memory region names (Max
> Filippov) - xtensa_lx60: pass kernel arguments from -append (Max Filippov)
> - xtensa_lx60: add FLASH support (Max Filippov)
> - target-xtensa: raise an exception for invalid and reserved opcodes (Max
> Filippov)
> - target-xtensa: handle cache options in the overlay tool (Max Filippov)
> - target-xtensa: mask out undefined bits of WINDOWSTART SR (Max Filippov)
> - tcg: Add tcg interpreter to configure / make (Stefan Weil)
> - tcg: Add tci disassembler (Stefan Weil)
> - tcg: Add interpreter for bytecode (Stefan Weil)
> - tcg: Add bytecode generator for tcg interpreter (Stefan Weil)
> - tcg: Make ARRAY_SIZE(tcg_op_defs) globally available (Stefan Weil)
> - tcg: TCG targets may define tcg_qemu_tb_exec (Stefan Weil)
> - memory: use 128-bit integers for sizes and intermediates (Avi Kivity)
> - Add support for 128-bit arithmetic (Avi Kivity)
>
> [1] http://wiki.qemu.org/Planning/1.0/Testing
> [2] http://wiki.qemu.org/ReportABug
> [3] http://wiki.qemu.org/ChangeLog/Next
> [4] http://wiki.qemu.org/Planning/1.0
>
> Regards,
>
> Anthony Liguori
Thanks.
Are there supporting windows binaries (ie, various virtio drivers and
vdagent)?
Also, I've seen instructions to build the various windows binaries from source
in a number of different places. Is there an "official" site describing the
method?
Thanks,
-Rick
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [Qemu-devel] [ANNOUNCE] QEMU 1.0-rc1
2011-11-08 17:42 ` Rick Vernam
@ 2011-11-08 18:50 ` Stefan Weil
2011-11-08 19:03 ` Rick Vernam
0 siblings, 1 reply; 9+ messages in thread
From: Stefan Weil @ 2011-11-08 18:50 UTC (permalink / raw)
To: rickv; +Cc: Anthony Liguori, qemu-devel
Am 08.11.2011 18:42, schrieb Rick Vernam:
> Are there supporting windows binaries (ie, various virtio drivers and
> vdagent)?
>
> Also, I've seen instructions to build the various windows binaries from source
> in a number of different places. Is there an "official" site describing the
> method?
>
> Thanks,
> -Rick
>
Hi Rick,
there is a page on QEMU's wiki: http://wiki.qemu.org/Hosts/W32.
Please tell me if there is information missing there (or add it yourself
to the wiki).
If anybody has more information on supporting w32 binaries,
this can be added to the wiki, too.
Cheers,
Stefan
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [Qemu-devel] [ANNOUNCE] QEMU 1.0-rc1
2011-11-08 18:50 ` Stefan Weil
@ 2011-11-08 19:03 ` Rick Vernam
2011-11-08 19:19 ` Anthony Liguori
0 siblings, 1 reply; 9+ messages in thread
From: Rick Vernam @ 2011-11-08 19:03 UTC (permalink / raw)
To: Stefan Weil; +Cc: Anthony Liguori, qemu-devel
On Tuesday 08 November 2011 12:50:47 Stefan Weil wrote:
> Am 08.11.2011 18:42, schrieb Rick Vernam:
> > Are there supporting windows binaries (ie, various virtio drivers and
> > vdagent)?
> >
> > Also, I've seen instructions to build the various windows binaries from
> > source in a number of different places. Is there an "official" site
> > describing the method?
> >
> > Thanks,
> > -Rick
>
> Hi Rick,
>
> there is a page on QEMU's wiki: http://wiki.qemu.org/Hosts/W32.
> Please tell me if there is information missing there (or add it yourself
> to the wiki).
>
> If anybody has more information on supporting w32 binaries,
> this can be added to the wiki, too.
>
> Cheers,
> Stefan
Sorry for the confussion. I run Qemu on a Linux host, with WXP as a guest.
I'd like to give 1.0 rc a run, but first I'd like to make sure I have the
correct windows virtio drivers, and correct windows vdagent. There is no
documentation that I can find that specifies what, where or how regarding those
windows guest components.
Thanks,
-Rick
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [Qemu-devel] [ANNOUNCE] QEMU 1.0-rc1
2011-11-08 19:03 ` Rick Vernam
@ 2011-11-08 19:19 ` Anthony Liguori
2011-11-08 20:02 ` Michael Tokarev
0 siblings, 1 reply; 9+ messages in thread
From: Anthony Liguori @ 2011-11-08 19:19 UTC (permalink / raw)
To: rickv; +Cc: Stefan Weil, qemu-devel
On 11/08/2011 01:03 PM, Rick Vernam wrote:
> On Tuesday 08 November 2011 12:50:47 Stefan Weil wrote:
>> Am 08.11.2011 18:42, schrieb Rick Vernam:
>>> Are there supporting windows binaries (ie, various virtio drivers and
>>> vdagent)?
>>>
>>> Also, I've seen instructions to build the various windows binaries from
>>> source in a number of different places. Is there an "official" site
>>> describing the method?
>>>
>>> Thanks,
>>> -Rick
>>
>> Hi Rick,
>>
>> there is a page on QEMU's wiki: http://wiki.qemu.org/Hosts/W32.
>> Please tell me if there is information missing there (or add it yourself
>> to the wiki).
>>
>> If anybody has more information on supporting w32 binaries,
>> this can be added to the wiki, too.
>>
>> Cheers,
>> Stefan
>
> Sorry for the confussion. I run Qemu on a Linux host, with WXP as a guest.
> I'd like to give 1.0 rc a run, but first I'd like to make sure I have the
> correct windows virtio drivers, and correct windows vdagent.
vdagent is for Spice. The Spice windows driver is not based on virtio and
should be available from spice-space.org.
Windows virtio drivers are available in binary form from Fedora Hosted. See
http://alt.fedoraproject.org/pub/alt/virtio-win/latest/images/
Note that the Windows virtio driver binaries aren't signed.
Regards,
Anthony Liguori
There is no
> documentation that I can find that specifies what, where or how regarding those
> windows guest components.
>
> Thanks,
> -Rick
>
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [Qemu-devel] [ANNOUNCE] QEMU 1.0-rc1
2011-11-08 19:19 ` Anthony Liguori
@ 2011-11-08 20:02 ` Michael Tokarev
2011-11-08 20:23 ` Anthony Liguori
2011-11-08 20:32 ` [Qemu-devel] [unclassified] " Jernej Simončič
0 siblings, 2 replies; 9+ messages in thread
From: Michael Tokarev @ 2011-11-08 20:02 UTC (permalink / raw)
To: Anthony Liguori; +Cc: Stefan Weil, qemu-devel
On 08.11.2011 23:19, Anthony Liguori wrote:
[]
> Windows virtio drivers are available in binary form from Fedora Hosted. See http://alt.fedoraproject.org/pub/alt/virtio-win/latest/images/
FWIW, WinXP drivers from the latest .iso there can't be installed
(it fails during driver install phase, saying "No driver for this
hardware found at given location"), while previous version works
just fine, and the driver itself appears to be fine too (one can
replace previously installed driver binary while windows isn't
watching and it continues to work). I added a note to the KVM
wiki page about this, at
http://www.linux-kvm.org/page/WindowsGuestDrivers/Download_Drivers
Thanks,
/mjt
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [Qemu-devel] [ANNOUNCE] QEMU 1.0-rc1
2011-11-08 20:02 ` Michael Tokarev
@ 2011-11-08 20:23 ` Anthony Liguori
2011-11-08 20:32 ` [Qemu-devel] [unclassified] " Jernej Simončič
1 sibling, 0 replies; 9+ messages in thread
From: Anthony Liguori @ 2011-11-08 20:23 UTC (permalink / raw)
To: Michael Tokarev; +Cc: Stefan Weil, qemu-devel, Vadim Rozenfeld
On 11/08/2011 02:02 PM, Michael Tokarev wrote:
> On 08.11.2011 23:19, Anthony Liguori wrote:
> []
>> Windows virtio drivers are available in binary form from Fedora Hosted. See http://alt.fedoraproject.org/pub/alt/virtio-win/latest/images/
>
> FWIW, WinXP drivers from the latest .iso there can't be installed
> (it fails during driver install phase, saying "No driver for this
> hardware found at given location"), while previous version works
> just fine, and the driver itself appears to be fine too (one can
> replace previously installed driver binary while windows isn't
> watching and it continues to work). I added a note to the KVM
> wiki page about this, at
> http://www.linux-kvm.org/page/WindowsGuestDrivers/Download_Drivers
Adding Vadim to the CC.
Regards,
Anthony Liguori
>
> Thanks,
>
> /mjt
>
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [Qemu-devel] [unclassified] QEMU 1.0-rc1
2011-11-08 20:02 ` Michael Tokarev
2011-11-08 20:23 ` Anthony Liguori
@ 2011-11-08 20:32 ` Jernej Simončič
2011-11-08 22:02 ` Michael Tokarev
1 sibling, 1 reply; 9+ messages in thread
From: Jernej Simončič @ 2011-11-08 20:32 UTC (permalink / raw)
To: Michael Tokarev on [qemu-devel]
On Tuesday, November 8, 2011, 21:02:52, Michael Tokarev wrote:
> FWIW, WinXP drivers from the latest .iso there can't be installed
> (it fails during driver install phase, saying "No driver for this
> hardware found at given location"), while previous version works
> just fine, and the driver itself appears to be fine too (one can
> replace previously installed driver binary while windows isn't
> watching and it continues to work). I added a note to the KVM
> wiki page about this, at
> http://www.linux-kvm.org/page/WindowsGuestDrivers/Download_Drivers
I can't confirm this - the drivers work for me both in Qemu and in
qemu-kvm. Note however that the organisation on the ISO is weird - the
virtio-net driver is in \XP\x86, while the rest of the drivers are in
\WXp\x86.
--
< Jernej Simončič ><><><><>< http://eternallybored.org/ >
Anyone who says he isn't going to resign, four times, definitely will.
-- Galbraith's Law of Political Wisdom
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [Qemu-devel] [unclassified] QEMU 1.0-rc1
2011-11-08 20:32 ` [Qemu-devel] [unclassified] " Jernej Simončič
@ 2011-11-08 22:02 ` Michael Tokarev
0 siblings, 0 replies; 9+ messages in thread
From: Michael Tokarev @ 2011-11-08 22:02 UTC (permalink / raw)
To: Jernej Simončič; +Cc: Michael Tokarev on [qemu-devel]
On 09.11.2011 00:32, Jernej Simončič wrote:
> On Tuesday, November 8, 2011, 21:02:52, Michael Tokarev wrote:
>
>> FWIW, WinXP drivers from the latest .iso there can't be installed
>> (it fails during driver install phase, saying "No driver for this
>> hardware found at given location"), while previous version works
>> just fine, and the driver itself appears to be fine too (one can
>> replace previously installed driver binary while windows isn't
>> watching and it continues to work). I added a note to the KVM
>> wiki page about this, at
>> http://www.linux-kvm.org/page/WindowsGuestDrivers/Download_Drivers
>
> I can't confirm this - the drivers work for me both in Qemu and in
> qemu-kvm. Note however that the organisation on the ISO is weird - the
> virtio-net driver is in \XP\x86, while the rest of the drivers are in
> \WXp\x86.
These drivers works if you upgrade from previous version. But on
clean install of winXP - at least virtio-blk (and maybe virtionet
too, I don't remember) - can't be installed. There were several
reports about this problem on IRC too, and the solution has been
to use previous version of the drivers (where the directories are
ok). I mean the drivers from .iso, and installing them _after_
the system has been installed already (install to IDE first, and
add virtio drive as second drive).
I installed fresh winXP just a few days ago and also hit this problem.
/mjt
^ permalink raw reply [flat|nested] 9+ messages in thread
end of thread, other threads:[~2011-11-08 22:02 UTC | newest]
Thread overview: 9+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-11-07 21:58 [Qemu-devel] [ANNOUNCE] QEMU 1.0-rc1 Anthony Liguori
2011-11-08 17:42 ` Rick Vernam
2011-11-08 18:50 ` Stefan Weil
2011-11-08 19:03 ` Rick Vernam
2011-11-08 19:19 ` Anthony Liguori
2011-11-08 20:02 ` Michael Tokarev
2011-11-08 20:23 ` Anthony Liguori
2011-11-08 20:32 ` [Qemu-devel] [unclassified] " Jernej Simončič
2011-11-08 22:02 ` Michael Tokarev
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.