For regular migration inuse == 0 always as requests are flushed before
save. However, event-tap log when enabled introduces an extra queue
for requests which is not being flushed, thus the last inuse requests
are left in the event-tap queue. Move the last_avail_idx value sent
to the remote back to
When -k option is set to migrate command, it will turn on ft_mode to
start FT migration mode (Kemari).
Signed-off-by: Yoshiaki Tamura
---
hmp-commands.hx |7 ---
migration.c |4
qmp-commands.hx |7 ---
3 files changed, 12 insertions(+), 6 deletions(-)
diff --git a/h
Hi,
This patch series is a revised version of Kemari for KVM, which
applied comments for the previous post. The current code is based on
qemu.git 0bfe006c5380c5f8a485a55ded3329fbbc224396.
The changes from v0.2.7 -> v0.2.8 are:
- fixed calling wrong cb in event-tap
- add missing qemu_aio_release
event-tap controls when to start FT transaction, and provides proxy
functions to called from net/block devices. While FT transaction, it
queues up net/block requests, and flush them when the transaction gets
completed.
Signed-off-by: Yoshiaki Tamura
Signed-off-by: OHMURA Kei
---
Makefile.targe
Record ioport event to replay it upon failover.
Signed-off-by: Yoshiaki Tamura
---
ioport.c |2 ++
1 files changed, 2 insertions(+), 0 deletions(-)
diff --git a/ioport.c b/ioport.c
index aa4188a..74aebf5 100644
--- a/ioport.c
+++ b/ioport.c
@@ -27,6 +27,7 @@
#include "ioport.h"
#include
On 01/27/2011 02:09 PM, Jan Kiszka wrote:
Block SIG_IPI, unblock it during KVM_RUN, just like in io-thread mode.
It's unused so far, but this infrastructure will be required for
self-IPIs and to process SIGBUS plus, in KVM mode, SIGIO and SIGALRM. As
Windows doesn't support signal services, we ne
This code implements VM transaction protocol. Like buffered_file, it
sits between savevm and migration layer. With this architecture, VM
transaction protocol is implemented mostly independent from other
existing code.
Signed-off-by: Yoshiaki Tamura
Signed-off-by: OHMURA Kei
---
Makefile.objs
Signed-off-by: Yoshiaki Tamura
---
qemu-char.c |2 +-
qemu_socket.h |1 +
2 files changed, 2 insertions(+), 1 deletions(-)
diff --git a/qemu-char.c b/qemu-char.c
index edc9ad6..737d347 100644
--- a/qemu-char.c
+++ b/qemu-char.c
@@ -2116,7 +2116,7 @@ static void tcp_chr_telnet_init(int
Record mmio write event to replay it upon failover.
Signed-off-by: Yoshiaki Tamura
---
exec.c |4
1 files changed, 4 insertions(+), 0 deletions(-)
diff --git a/exec.c b/exec.c
index e950df2..c81fd09 100644
--- a/exec.c
+++ b/exec.c
@@ -33,6 +33,7 @@
#include "osdep.h"
#include "kvm.h
To utilize ft_trans_file function, savevm needs interfaces to be
exported.
Signed-off-by: Yoshiaki Tamura
---
hw/hw.h |5 ++
savevm.c | 149 ++
2 files changed, 154 insertions(+), 0 deletions(-)
diff --git a/hw/hw.h b/hw/hw.h
ind
Introduce qemu_savevm_state_{begin,commit} to send the memory and
device info together, while avoiding cancelling memory state tracking.
Signed-off-by: Yoshiaki Tamura
---
savevm.c | 93 ++
sysemu.h |2 +
2 files changed, 95 inser
On 01/27/2011 02:09 PM, Jan Kiszka wrote:
Move qemu_kvm_eat_signals around and call it also when the IO-thread is
not used. Do not yet process SIGBUS, will be armed in a separate step.
Signed-off-by: Jan Kiszka
---
cpus.c | 88 ---
On (Thu) Jan 27 2011 [09:29:36], Paolo Bonzini wrote:
> Before creating rc1 we need to make sure that all patches for 0.14 have
> been reviewed and applied.
>
> Please reply to this message with a subject starting with "[PING 0.14]"
> and a link to patchwork, gmane, or whatnot; or "[PULL 0.14]"
On Thu, Jan 27, 2011 at 10:30:46AM -0600, Anthony Liguori wrote:
> On 01/27/2011 02:29 AM, Paolo Bonzini wrote:
> >Before creating rc1 we need to make sure that all patches for 0.14 have
> >been reviewed and applied.
> >
> >Please reply to this message with a subject starting with "[PING 0.14]"
> >
2011/1/28 Michael S. Tsirkin :
> On Thu, Jan 27, 2011 at 09:29:36AM +0100, Paolo Bonzini wrote:
>> Before creating rc1 we need to make sure that all patches for 0.14 have
>> been reviewed and applied.
>>
>> Please reply to this message with a subject starting with "[PING 0.14]"
>> and a link to pat
Host: Win7
Guest: WinXP
Reproduce:
qemu-img create -f qcow2 winxp.qcow2 80G
qemu -L pc-bios -m 256 -hda winxp.qcow2 -cdrom WXPVOL_EN.iso -boot d
Error:
An unexpected error (3073) occurred at
line 5137 in d:\xp\client\base\boot\setup\setup.c
I tried adding "-snapshot" into the command line, it wo
Am 27.01.2011 18:50, schrieb Anthony Liguori:
> On 01/27/2011 09:58 AM, Daniel P. Berrange wrote:
>> On Thu, Jan 27, 2011 at 04:52:14PM +0100, Kevin Wolf wrote:
>>
>>> This adds a preallocation=full mode to qcow2 image creation, which does not
>>> only allocate metadata for the whole image, but
On 01/27/2011 03:13 PM, Alon Levy wrote:
This is not ipv6 friendly. Two strings would be a better choice.
A string for host makes sense, why for port? isn't a 32 bit port enough?
For an protocol, an integer is probably fine. For an API, a string is
nice to allow service names too.
Am 27.01.2011 16:58, schrieb Daniel P. Berrange:
> On Thu, Jan 27, 2011 at 04:52:14PM +0100, Kevin Wolf wrote:
>> This adds a preallocation=full mode to qcow2 image creation, which does not
>> only allocate metadata for the whole image, but also writes zeros to it,
>> creating a non-sparse image fi
On Thu, Jan 27, 2011 at 5:14 PM, Anthony Liguori wrote:
> On 01/27/2011 10:44 AM, Rick Vernam wrote:
Please reply to this message with a subject starting with "[PING 0.14]"
and a link to patchwork, gmane, or whatnot; or "[PULL 0.14]" for tree
pulls. Also, I believe all patches
On 01/27/2011 02:09 PM, Jan Kiszka wrote:
Will be required for SIGBUS handling. For obvious reasons, this will
remain a nop on Windows hosts.
Signed-off-by: Jan Kiszka
---
Makefile.objs |2 +-
cpus.c| 117 +++--
2 files changed
Am 28.01.2011 08:21, schrieb Yoshiaki Tamura:
> event-tap function is called only when it is on, and requests were
> sent from device emulators.
>
> Signed-off-by: Yoshiaki Tamura
Acked-by: Kevin Wolf
Let's plan testing for the upcoming 0.14 release here:
http://wiki.qemu.org/Planning/0.14/Testing
It's easy. Add yourself for the testing you are willing to do on the
release candidates.
The aim is to give maintainers a picture of what has been tested and
avoid duplicating efforts between teste
Just checked the Ubuntu update repo. The latest kernel version there
2.6.35-25.44 has included the fix. Thanks!
--
You received this bug notification because you are a member of qemu-
devel-ml, which is subscribed to QEMU.
https://bugs.launchpad.net/bugs/688085
Title:
Guest kernel hang during
"Red Hat driver" means driver from rhel virtio-win.prm?
--
You received this bug notification because you are a member of qemu-
devel-ml, which is subscribed to QEMU.
https://bugs.launchpad.net/bugs/697510
Title:
Machine shut off after tons of lsi_scsi: error: MSG IN data too long
Status in Q
On Thu, Jan 27, 2011 at 01:36:12PM +0100, Kevin Wolf wrote:
> qemu-io passed bytes where it's supposed to pass sectors, so discard requests
> were off.
>
> Signed-off-by: Kevin Wolf
> ---
> qemu-io.c |2 +-
> 1 files changed, 1 insertions(+), 1 deletions(-)
>
> diff --git a/qemu-io.c b/qemu
On Thu, Jan 27, 2011 at 01:40:21PM +0100, Kevin Wolf wrote:
> +/*
> + * This discards as many clusters of nb_clusters as possible at once (i.e.
> + * all clusters in the same L2 table) and returns the number of discarded
> + * clusters.
> + */
> +static int discard_single_l2(BlockDriverState *bs, u
On Fri, Jan 21, 2011 at 05:19:13PM -0500, Chunqiang Tang wrote:
> This patch adds the 'update' command to qemu-img. FVD stores various
> image-specific configurable parameters in the image header. A user can use
> 'qemu-img update' to modify those parameters and accordingly controls FVD's
> runtime
28.01.2011 11:06, Yoshiaki Tamura wrote:
[]
> I would like Kemari to be included for 0.14. Thanks to many
> valuable comments from various reviewers, it got better than
> ever, I believe. For those who may object, it wouldn't affect
> any functions including live migration unless one turns it on.
On Fri, Jan 28, 2011 at 9:57 AM, Stefan Hajnoczi wrote:
> On Thu, Jan 27, 2011 at 01:40:21PM +0100, Kevin Wolf wrote:
>> +/*
>> + * This discards as many clusters of nb_clusters as possible at once (i.e.
>> + * all clusters in the same L2 table) and returns the number of discarded
>> + * clusters.
Signed-off-by: Markus Armbruster
---
blockdev.h|6 ++
qemu-common.h |6 --
2 files changed, 6 insertions(+), 6 deletions(-)
diff --git a/blockdev.h b/blockdev.h
index 5c2144c..f616855 100644
--- a/blockdev.h
+++ b/blockdev.h
@@ -18,6 +18,12 @@ void blockdev_auto_del(BlockDri
drive_init() picks the first free bus and unit number, unless the user
specifies them.
This isn't a good fit for the drive_add monitor command, because there
we specify the controller by PCI address instead of using bus number
set by drive_init().
scsi_hot_add() takes care to replace the unit num
Signed-off-by: Markus Armbruster
---
blockdev.c | 22 ++
1 files changed, 14 insertions(+), 8 deletions(-)
diff --git a/blockdev.c b/blockdev.c
index a5e56ee..f0bed2e 100644
--- a/blockdev.c
+++ b/blockdev.c
@@ -75,6 +75,18 @@ void blockdev_auto_del(BlockDriverState *bs)
Signed-off-by: Markus Armbruster
---
blockdev.c |7 +++
blockdev.h |1 +
2 files changed, 8 insertions(+), 0 deletions(-)
diff --git a/blockdev.c b/blockdev.c
index f0bed2e..2aea768 100644
--- a/blockdev.c
+++ b/blockdev.c
@@ -130,6 +130,13 @@ DriveInfo *drive_get(BlockInterfaceType
Kevin found a bug in my recent "[PATCH 3+5/5] -drive/drive_add fixes".
This is a rework of those two patches, plus a fix for the -drive
if=scsi,index=N regression, plus the odd bonus fix found on the way.
v2: fix for the -drive if=scsi,index=N regression. PATCH 4 fixed up
slightly, PATCH 5 insert
Let the callers build the optstr. Only one wants to. All the others
become simpler, because they don't have to worry about escaping '%'.
Signed-off-by: Markus Armbruster
---
blockdev.c |8 +---
blockdev.h |5 +
vl.c | 13 +++--
3 files changed, 9 insertions(+),
Watch this:
(qemu) drive_add 0 if=none
(qemu) info block
none0: type=hd removable=0 [not inserted]
(qemu) drive_del none0
Segmentation fault (core dumped)
add_init_drive() is confused about drive_init()'s failure modes, and
cleans up when it shouldn't. This leaves the DriveIn
qdev_init_bdrv() doesn't belong into qdev.c; it's about drives, not
qdevs. Rename to drive_get_next, move to blockdev.c, drop the bogus
DeviceState argument, and return DriveInfo instead of
BlockDriverState.
Signed-off-by: Markus Armbruster
---
blockdev.c | 10 ++
blockdev.h |1
Some new informations, the IDE bus works for a while then the PC slows
down and finally backup fails and freeze most of the I/Os.
The underlying device is a Iomega REV 120 USB appearing as a CD-ROM, /dev/sr0
and using FAT32 with 32k clusters.
The backup program is Symantec Backup Exec 11d
I work
We silently ignore multiple definitions for the same drive:
$ qemu-system-x86_64 -nodefaults -vnc :1 -S -monitor stdio -drive
if=ide,index=1,file=tmp.qcow2 -drive if=ide,index=1,file=nonexistant
QEMU 0.13.50 monitor - type 'help' for more information
(qemu) info block
ide0-hd1: ty
Before commit 622b520f, index=12 meant bus=1,unit=5.
Since the commit, it means bus=0,unit=12. The drive is created, but
not the guest device. That's because the controllers we use with
if=scsi drives (lsi53c895a and esp) support only 7 units, and
scsi_bus_legacy_handle_cmdline() ignores drives
Turns drive_init()'s lengthy conditional into a concise loop, and
makes the data available elsewhere.
Signed-off-by: Markus Armbruster
---
blockdev.c | 51 +--
1 files changed, 21 insertions(+), 30 deletions(-)
diff --git a/blockdev.c b/blockdev
On Fri, Jan 28, 2011 at 09:22:47AM +0100, Kevin Wolf wrote:
> Am 27.01.2011 16:58, schrieb Daniel P. Berrange:
> > On Thu, Jan 27, 2011 at 04:52:14PM +0100, Kevin Wolf wrote:
> >> This adds a preallocation=full mode to qcow2 image creation, which does not
> >> only allocate metadata for the whole i
Am 27.01.2011 07:24, schrieb Mulyadi Santosa:
On Thu, Jan 27, 2011 at 02:18, Stefan Weil wrote:
Since some time, I urgently wanted to have an icon for QEMU.
As I did not find one, I tried to design one, and here is the
current result: http://qemu.weilnetz.de/qemu-icon.svg.
Nice job Stefan! :)
Before, type & index were hidden in printf-like fmt, ... parameters,
which get expanded into an option string. Rather inconvenient for
uses later in this series.
New IF_DEFAULT to ask for the machine's default interface. Before,
that was done by having no option "if" in the option string.
Signe
This adds a bdrv_discard function to qcow2 that frees the discarded clusters.
It does not yet pass the discard on to the underlying file system driver, but
the space can be reused by future writes to the image.
Signed-off-by: Kevin Wolf
---
v2:
- Added offset > end_offset check
block/qcow2-clu
Andreas Färber writes:
> From: Hervé Poussineau
>
> v1:
> * Rebased.
Patch versioning goes below the --- line, so it doesn't end up in git.
>
> Signed-off-by: Hervé Poussineau
> Signed-off-by: Andreas Färber
> ---
> This patch allows to adapt the floppy device for the PReP Super I/O.
Have
On Fri, Jan 28, 2011 at 11:41 AM, Kevin Wolf wrote:
> This adds a bdrv_discard function to qcow2 that frees the discarded clusters.
> It does not yet pass the discard on to the underlying file system driver, but
> the space can be reused by future writes to the image.
>
> Signed-off-by: Kevin Wolf
On 01/28/2011 08:21 AM, Yoshiaki Tamura wrote:
+/* check ft_mode option */
+p = strstr(uri, "ft_mode");
+if (p&& !strcmp(p, "ft_mode")) {
+ft_mode = FT_INIT;
+}
+
This works for TCP mode, but:
1) I am not sure what would happen with -incoming exec;
2) it is tricky!
Paolo Bonzini writes:
> This patch series is a rewritten version of the patch to disable
> raw mode on the terminal when "-qmp stdio" is given on the command-line.
>
> The rewritten series has several advantages, including working for
> text consoles ("-qmp vc2") and especially working with -char
Am 27.01.2011 17:33, schrieb MORITA Kazutaka:
> This patch parses the input filename in sd_create(), and enables us
> specifying a target server to create sheepdog images.
>
> Signed-off-by: MORITA Kazutaka
Thanks, applied to the block branch.
Kevin
Hi,
I just cloned qemu-kvm, built and installed it. But the qemu-img fails
to create any disk image above 1G. The problem as I see is use of
ssize_t for image size. When size is >2G, the check "if (sval < 0)"
succeeds and I get the error:
qemu-img: Invalid image size specified! You may use k, M,
Gleb Natapov writes:
> Signed-off-by: Gleb Natapov
> ---
> docs/bootindex.txt | 42 ++
> 1 files changed, 42 insertions(+), 0 deletions(-)
> create mode 100644 docs/bootindex.txt
Good stuff. Just a bit short on commas and articles ;)
>
> diff --git
On 01/28/2011 08:21 AM, Yoshiaki Tamura wrote:
+int qemu_savevm_trans_begin(Monitor *mon, QEMUFile *f, int init)
+{
+SaveStateEntry *se;
+int skipped = 0;
+
+QTAILQ_FOREACH(se,&savevm_handlers, entry) {
+int len, stage, ret;
+
+if (se->save_live_state == NULL) {
+
Gleb Natapov writes:
> If bootindex is specified on command line a string that describes device
> in firmware readable way is added into sorted list. Later this list will
> be passed into firmware to control boot order.
>
> Signed-off-by: Gleb Natapov
Out of curiosity: what about qdev "scsi-gen
On 01/28/2011 11:00 AM, Michael Tokarev wrote:
28.01.2011 11:06, Yoshiaki Tamura wrote:
[]
I would like Kemari to be included for 0.14. Thanks to many
valuable comments from various reviewers, it got better than
ever, I believe. For those who may object, it wouldn't affect
any functions includ
Gleb Natapov writes:
> Signed-off-by: Gleb Natapov
> ---
> hw/usb-msd.c |2 ++
> 1 files changed, 2 insertions(+), 0 deletions(-)
>
> diff --git a/hw/usb-msd.c b/hw/usb-msd.c
> index 0a95d8d..46642a8 100644
> --- a/hw/usb-msd.c
> +++ b/hw/usb-msd.c
> @@ -560,6 +560,7 @@ static int usb_msd_i
On 01/24/2011 05:30 PM, Gerd Hoffmann wrote:
This patch makes the numlock+capslock tracking logic only look at
keydown events. Without this patch the vnc server will insert
bogous capslock keypress in case it sees the following key sequence:
shift down --- 'A' down --- shift up --- 'A' up
On 01/24/2011 05:20 PM, Gerd Hoffmann wrote:
From: Jiri Denemark
Non-existent $pkgconfig instead of $pkg_config was used when configure
probes for spice availability.
Signed-off-by: Jiri Denemark
Signed-off-by: Gerd Hoffmann
---
configure |6 +++---
1 files changed, 3 insertions(+), 3 de
2011/1/28 Paolo Bonzini :
> On 01/28/2011 08:21 AM, Yoshiaki Tamura wrote:
>>
>> + /* check ft_mode option */
>> + p = strstr(uri, "ft_mode");
>> + if (p&& !strcmp(p, "ft_mode")) {
>> + ft_mode = FT_INIT;
>> + }
>> +
>
> This works for TCP mode, but:
>
> 1) I am not sure what w
On 01/27/2011 10:24 AM, Fabien Chouteau wrote:
This backend sends trace events to standard error output during the emulation.
Also add a "--list-backends" option to tracetool, so configure script can
display the list of available backends.
Signed-off-by: Fabien Chouteau
---
configure
On 01/27/2011 11:40 AM, Fabien Chouteau wrote:
The "leon3_cache_control_int" (op_helper.c) function is called within leon3.c
which leads to segfault error with the global "env".
Now cache control is a CPU feature and everything is handled in op_helper.c.
Signed-off-by: Fabien Chouteau
---
hw/
2011/1/28 Paolo Bonzini :
> On 01/28/2011 11:00 AM, Michael Tokarev wrote:
>>
>> 28.01.2011 11:06, Yoshiaki Tamura wrote:
>> []
>>>
>>> I would like Kemari to be included for 0.14. Thanks to many
>>> valuable comments from various reviewers, it got better than
>>> ever, I believe. For those who m
2011/1/28 Paolo Bonzini :
> On 01/28/2011 08:21 AM, Yoshiaki Tamura wrote:
>>
>> +int qemu_savevm_trans_begin(Monitor *mon, QEMUFile *f, int init)
>> +{
>> + SaveStateEntry *se;
>> + int skipped = 0;
>> +
>> + QTAILQ_FOREACH(se,&savevm_handlers, entry) {
>> + int len, stage, ret;
>>
On 01/28/2011 02:53 PM, Yoshiaki Tamura wrote:
> 1) I am not sure what would happen with -incoming exec;
Nothing happens if used with other protocols, but I assume you're
mentioning that it's not clear from the code, which makes sense.
I assume nothing just because the code for other protoco
> On Fri, Jan 21, 2011 at 05:19:13PM -0500, Chunqiang Tang wrote:
> > This patch adds the 'update' command to qemu-img. FVD stores various
> > image-specific configurable parameters in the image header. A user can
use
> > 'qemu-img update' to modify those parameters and accordingly controls
FVD's
Reported-by: TeLeMan
Signed-off-by: Kevin Wolf
---
Hi TeLeMan,
this seems to be the bug that was exposed by the recent qcow2 cache changes.
Can you give it a try on a real Windows setup? I have tested it only on Wine so
far.
Kevin
block/raw-win32.c |2 +-
1 files changed, 1 insertions(+
2011/1/28 Paolo Bonzini :
> On 01/28/2011 02:53 PM, Yoshiaki Tamura wrote:
>>>
>>> > 1) I am not sure what would happen with -incoming exec;
>>
>> Nothing happens if used with other protocols, but I assume you're
>> mentioning that it's not clear from the code, which makes sense.
>
> I assume noth
On Wed, Jan 26, 2011 at 22:49, Anthony Liguori wrote:
> On 01/25/2011 08:29 AM, anthony.per...@citrix.com wrote:
>>
>> From: Alexander Graf
>>
>> This patch adds a generic layer for xc calls, allowing us to choose
>> between the
>> xenner and xen implementations at runtime.
>>
>> Signed-off-by: Al
** Also affects: qemu
Importance: Undecided
Status: New
--
You received this bug notification because you are a member of qemu-
devel-ml, which is subscribed to QEMU.
https://bugs.launchpad.net/bugs/697197
Title:
Empty password allows access to VNC in libvirt
Status in libvirt virtu
On 28.01.2011, at 16:09, Anthony PERARD wrote:
> On Wed, Jan 26, 2011 at 22:49, Anthony Liguori wrote:
>> On 01/25/2011 08:29 AM, anthony.per...@citrix.com wrote:
>>>
>>> From: Alexander Graf
>>>
>>> This patch adds a generic layer for xc calls, allowing us to choose
>>> between the
>>> xenne
2011/1/29 Paolo Bonzini :
> On 01/28/2011 04:05 PM, Yoshiaki Tamura wrote:
>>
>> Having a scheme like "kemari:tcp:host:port" looks quite
>> challenging to me. We can of course add some quick hacks for it,
>> but adding a nice layered architecture should be more
>> appropriate. Similar to protocol
The solution to this problem is to reverse the commit
52c18be9e99dabe295321153fda7fce9f76647ac in the main Qemu archive.
--
You received this bug notification because you are a member of qemu-
devel-ml, which is subscribed to QEMU.
https://bugs.launchpad.net/bugs/697197
Title:
Empty password a
On 01/28/2011 04:31 PM, Yoshiaki Tamura wrote:
That's the hack I was imaging:)
So your original patch is also a hack? :)
Maybe this is just an issue of preference, but I'm not sure
adding "kemari:" to be intuitive. If there were similar
extensions having the same problem, I would have agreed
On 01/28/2011 04:05 PM, Yoshiaki Tamura wrote:
Having a scheme like "kemari:tcp:host:port" looks quite
challenging to me. We can of course add some quick hacks for it,
but adding a nice layered architecture should be more
appropriate. Similar to protocols and formats in block layer?
At the same
On Fri, Jan 28, 2011 at 02:34:19PM +0100, Markus Armbruster wrote:
> Gleb Natapov writes:
>
> > Signed-off-by: Gleb Natapov
> > ---
> > hw/usb-msd.c |2 ++
> > 1 files changed, 2 insertions(+), 0 deletions(-)
> >
> > diff --git a/hw/usb-msd.c b/hw/usb-msd.c
> > index 0a95d8d..46642a8 100644
From: Christophe Lyon
This patchset combines fixes from the Meego tree (Peter Maydell, Juha
Riihimäki) and my own fixes such that ARM Neon instructions VQMOVUN
VQRSHL VQRSHRN VQRSHRUN VQSHRN VQSHRUN VSLI VSRI now pass all my
tests.
Christophe Lyon (3):
Fixes for several shift instructions: VRS
From: Christophe Lyon
Signed-off-by: Peter Maydell
Signed-off-by: Christophe Lyon
---
target-arm/translate.c | 11 ++-
1 files changed, 10 insertions(+), 1 deletions(-)
diff --git a/target-arm/translate.c b/target-arm/translate.c
index 3b14b8f..984df08 100644
--- a/target-arm/transl
From: Christophe Lyon
Handle corner cases where the addition of the rounding constant could
cause overflows.
Signed-off-by: Christophe Lyon
---
target-arm/neon_helper.c | 61 ++---
target-arm/translate.c | 17 ++--
2 files changed, 65 inser
From: Christophe Lyon
Tweak decoding of the shift-by-imm and narrow 64 bit insns
(VSHRN, VRSHRN, VQSHRN, VQSHRUN, VQRSHRN, VQRSHRUN).
Signed-off-by: Peter Maydell
Signed-off-by: Christophe Lyon
---
target-arm/translate.c | 28 ++--
1 files changed, 18 insertions(+),
From: Christophe Lyon
Handle unsigned variant of VQ(R)SHRN instructions.
Signed-off-by: Christophe Lyon
---
target-arm/translate.c |8 ++--
1 files changed, 6 insertions(+), 2 deletions(-)
diff --git a/target-arm/translate.c b/target-arm/translate.c
index 452cb71..3b14b8f 100644
--- a
From: Christophe Lyon
Signed-off-by: Juha Riihimäki
Signed-off-by: Christophe Lyon
---
target-arm/neon_helper.c | 21 ++---
1 files changed, 18 insertions(+), 3 deletions(-)
diff --git a/target-arm/neon_helper.c b/target-arm/neon_helper.c
index 71e3c74..3337c52 100644
--- a/
From: Christophe Lyon
More fixes for VQSHRN and VQSHRUN.
Signed-off-by: Peter Maydell
Signed-off-by: Christophe Lyon
---
target-arm/translate.c |4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/target-arm/translate.c b/target-arm/translate.c
index cda5a73..3537698 10
From: Christophe Lyon
Fix VQMOVUN, improve VQSHRUN and VQRSHRUN.
Signed-off-by: Peter Maydell
Signed-off-by: Christophe Lyon
---
target-arm/helpers.h |3 ++
target-arm/neon_helper.c | 63 ++
target-arm/translate.c | 43
Hi there,
obviously qemu-system-$ARCH, qemu-kvm and libvirt disagree about the most
suitable name for the PCI-bus. qemu-kvm and libvirt work nicely together by
using "pci.0" as name. Unfortunately libvirt seems to assume that also for
qemu-system-$ARCH the name "pci.0" should be passed on the comm
From: Christophe Lyon
The addition of the rounding constant could cause overflows.
Signed-off-by: Christophe Lyon
---
target-arm/neon_helper.c | 50 ++---
1 files changed, 46 insertions(+), 4 deletions(-)
diff --git a/target-arm/neon_helper.c b/target
On Fri, Jan 28, 2011 at 02:29:50PM +0100, Markus Armbruster wrote:
> Gleb Natapov writes:
>
> > If bootindex is specified on command line a string that describes device
> > in firmware readable way is added into sorted list. Later this list will
> > be passed into firmware to control boot order.
On 28 January 2011 15:50, wrote:
> Peter Maydell (4):
> Create and use neon_unarrow_sat* helpers
> VQRSHRN related changes
> fiddle decoding of 64 bit shift by imm and narrow
> implement vsli.64, vsri.64
These aren't actually by me, you're just importing the
patches from that tree where I in
From: Niels de Vos
This should fix issues with qemu-system-{arm,ppc} and possibly others
where libvirt passes bus=pci.0 in the -device options.
Reference:
- https://bugzilla.redhat.com/show_bug.cgi?id=667345
Signed-off-by: Niels de Vos
---
hw/apb_pci.c |2 +-
hw/bonito.c|
** Branch linked: lp:~brightbox/ubuntu/maverick/qemu-kvm/qemu-
kvm.fix-697197
--
You received this bug notification because you are a member of qemu-
devel-ml, which is subscribed to QEMU.
https://bugs.launchpad.net/bugs/697197
Title:
Empty password allows access to VNC in libvirt
Status in l
On Fri, Jan 28, 2011 at 1:13 PM, Himanshu Chauhan
wrote:
> I just cloned qemu-kvm, built and installed it. But the qemu-img fails
> to create any disk image above 1G. The problem as I see is use of
> ssize_t for image size. When size is >2G, the check "if (sval < 0)"
> succeeds and I get the error
On Fri, Jan 28, 2011 at 03:54:01PM +, Niels de Vos wrote:
> Hi there,
>
> obviously qemu-system-$ARCH, qemu-kvm and libvirt disagree about the most
> suitable name for the PCI-bus. qemu-kvm and libvirt work nicely together by
> using "pci.0" as name. Unfortunately libvirt seems to assume that
On Fri, Jan 28, 2011 at 2:51 PM, Chunqiang Tang wrote:
>> On Fri, Jan 21, 2011 at 05:19:13PM -0500, Chunqiang Tang wrote:
>> > This patch adds the 'update' command to qemu-img. FVD stores various
>> > image-specific configurable parameters in the image header. A user can
> use
>> > 'qemu-img updat
On Fri, Jan 28, 2011 at 1:55 PM, Fabien Chouteau wrote:
> On 01/27/2011 10:24 AM, Fabien Chouteau wrote:
>>
>> This backend sends trace events to standard error output during the
>> emulation.
>>
>> Also add a "--list-backends" option to tracetool, so configure script can
>> display the list of av
On 01/28/2011 07:33 AM, Paolo Bonzini wrote:
On 01/28/2011 11:00 AM, Michael Tokarev wrote:
28.01.2011 11:06, Yoshiaki Tamura wrote:
[]
I would like Kemari to be included for 0.14. Thanks to many
valuable comments from various reviewers, it got better than
ever, I believe. For those who may o
Hi,
I want to boot a embedded linux environment in qemu, namely xxsvideo [1]. It is
for an arm based fujitsu development board [2]. The toolchain provideds finally
3 files to flash the target device:
-
comicinker@hardy:~/workspace/jade_rootfs_build-0.8.5/images$ ls -lh
insgesamt 5,4M
-rw-r-
The consistency check on open is necessary in order to fix inconsistent
table offsets left as a result of a crash mid-operation. Images with a
backing file actually flush before updating table offsets and are
therefore guaranteed to be consistent. Do not mark these images dirty.
Signed-off-by: S
Gleb Natapov writes:
> On Fri, Jan 28, 2011 at 02:29:50PM +0100, Markus Armbruster wrote:
>> Gleb Natapov writes:
>>
>> > If bootindex is specified on command line a string that describes device
>> > in firmware readable way is added into sorted list. Later this list will
>> > be passed into fi
** Patch added: "qemu-kvm_0.12.5+noroms-0ubuntu7.2.debdiff"
https://bugs.launchpad.net/ubuntu/+source/libvirt/+bug/697197/+attachment/1812796/+files/qemu-kvm_0.12.5%2Bnoroms-0ubuntu7.2.debdiff
** Tags added: patch
--
You received this bug notification because you are a member of qemu-
devel
Please sponsor for upload
--
You received this bug notification because you are a member of qemu-
devel-ml, which is subscribed to QEMU.
https://bugs.launchpad.net/bugs/697197
Title:
Empty password allows access to VNC in libvirt
Status in libvirt virtualization API:
Unknown
Status in QEMU:
1 - 100 of 120 matches
Mail list logo