Luiz Capitulino writes:
> On Mon, 18 Jan 2010 18:16:21 +0100
> Markus Armbruster wrote:
[...]
>> > +/**
>> > + * do_pci_info(): PCI buses and devices information
>> > + *
>> > + * The returned QObject is a QList of all buses. Each bus is
>> > + * represented by a QDict, which has a key with a QL
Jamie Lokier writes:
> Michael S. Tsirkin wrote:
>> On Mon, Jan 18, 2010 at 11:34:59AM +0100, Markus Armbruster wrote:
>> > BDRV_O_RDWR is a flag, just like BDRV_SNAPSHOT. We don't have
>> > BDRV_DONT_SNAPSHOT, either.
>>
>> Well, this just mirros the file access macros: we have RDONLY, WRONLY
On Wed, Jan 20, 2010 at 1:56 AM, Juan Quintela wrote:
> From: Kirill A. Shutemov
>
> CC block/vvfat.o
> cc1: warnings being treated as errors
> block/vvfat.c: In function 'commit_one_file':
> block/vvfat.c:2259: error: ignoring return value of 'ftruncate', declared
> with attribute warn_unuse
Hi:
Does anybody here have read the network simulation code in qemu and have a
knowledge of how it works and connected to the host network? And how network
tap works in qemu?
Naphtali Sprei wrote:
> }
> (void)bdrv_set_read_only(dinfo->bdrv, 1);
> }
> +/*
> + * cdrom is read-only. Set it now, after above interface checking
> + * since readonly attribute not explicitly required, so no error.
> + */
> +if (media == MEDIA_CDROM) {
Michael S. Tsirkin wrote:
> On Mon, Jan 18, 2010 at 11:34:59AM +0100, Markus Armbruster wrote:
> > BDRV_O_RDWR is a flag, just like BDRV_SNAPSHOT. We don't have
> > BDRV_DONT_SNAPSHOT, either.
>
> Well, this just mirros the file access macros: we have RDONLY, WRONLY
> and RDRW. I assume this simi
Anthony Liguori wrote:
> On 01/19/2010 02:03 PM, Chris Wright wrote:
> >* Anthony Liguori (anth...@codemonkey.ws) wrote:
> >
> >>I'm very much against having -cpu Nehalem. The whole point of this is
> >>to make things easier for a user and for most of the users I've
> >>encountered, -cpu Nehale
Anthony Liguori wrote:
> >-write(posix_aio_state->wfd,&byte, sizeof(byte));
> >+ret = write(posix_aio_state->wfd,&byte, sizeof(byte));
> >+if (ret< 0&& errno != EAGAIN)
> >+die("write()");
> > }
> >
> >if write() fails in a pipe in the signal handler, I am
On 01/19/2010 06:04 PM, Juan Quintela wrote:
Anthony Liguori wrote:
On 01/19/2010 06:17 AM, Kirill A. Shutemov wrote:
On Tue, Jan 19, 2010 at 2:11 PM, Juan Quintela wrote:
"Kirill A. Shutemov" wrote:
A variant of write(2) which handles partial write.
Signed
On Wed, 20 Jan 2010, Juan Quintela wrote:
> From: Kirill A. Shutemov
>
> A variant of write(2) which handles partial write.
>
> Signed-off-by: Kirill A. Shutemov
> Signed-off-by: Juan Quintela
> ---
> osdep.c | 27 +++
> qemu-common.h |1 +
> 2 files chang
* Anthony Liguori (anth...@codemonkey.ws) wrote:
> On 01/19/2010 02:03 PM, Chris Wright wrote:
>> * Anthony Liguori (anth...@codemonkey.ws) wrote:
>>
>>> I'm very much against having -cpu Nehalem. The whole point of this is
>>> to make things easier for a user and for most of the users I've
>>
Anthony Liguori wrote:
> On 01/19/2010 06:17 AM, Kirill A. Shutemov wrote:
>> On Tue, Jan 19, 2010 at 2:11 PM, Juan Quintela wrote:
>>
>>> "Kirill A. Shutemov" wrote:
>>>
A variant of write(2) which handles partial write.
Signed-off-by: Kirill A. Shutemov
>>
Signed-off-by: Juan Quintela
---
linux-user/mmap.c |2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/linux-user/mmap.c b/linux-user/mmap.c
index c1c7e48..25fc0b2 100644
--- a/linux-user/mmap.c
+++ b/linux-user/mmap.c
@@ -243,7 +243,7 @@ static int mmap_frag(abi_ulong real_
Signed-off-by: Juan Quintela
---
configure |2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/configure b/configure
index 5556b9d..d8af978 100755
--- a/configure
+++ b/configure
@@ -101,7 +101,7 @@ QEMU_CFLAGS="-D_FORTIFY_SOURCE=2 $QEMU_CFLAGS"
QEMU_CFLAGS="-I. -I\$(SRC_PA
From: Kirill A. Shutemov
_FORTIFY_SOURCE is a Glibc feature which adds memory and string function
protection.
Signed-off-by: Kirill A. Shutemov
Signed-off-by: Juan Quintela
---
configure |2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/configure b/configure
index 5631
Signed-off-by: Juan Quintela
---
hw/xen_domainbuild.c | 13 +
1 files changed, 9 insertions(+), 4 deletions(-)
diff --git a/hw/xen_domainbuild.c b/hw/xen_domainbuild.c
index 20d731d..2f59856 100644
--- a/hw/xen_domainbuild.c
+++ b/hw/xen_domainbuild.c
@@ -156,15 +156,18 @@ quit:
From: Kirill A. Shutemov
CCi386-linux-user/mmap.o
cc1: warnings being treated as errors
/usr/src/RPM/BUILD/qemu-0.11.92/linux-user/mmap.c: In function 'mmap_frag':
/usr/src/RPM/BUILD/qemu-0.11.92/linux-user/mmap.c:253: error: ignoring return
value of 'pread', declared with attribute warn_unu
From: Kirill A. Shutemov
CCi386-softmmu/monitor.o
cc1: warnings being treated as errors
/usr/src/RPM/BUILD/qemu-0.11.92/monitor.c: In function 'do_memory_save':
/usr/src/RPM/BUILD/qemu-0.11.92/monitor.c:1318: error: ignoring return value of
'fwrite', declared with attribute warn_unused_resul
From: Kirill A. Shutemov
CCusb-linux.o
cc1: warnings being treated as errors
usb-linux.c: In function 'usb_host_read_file':
usb-linux.c:1204: error: ignoring return value of 'fgets', declared with
attribute warn_unused_result
make: *** [usb-linux.o] Error 1
Signed-off-by: Kirill A. Shutemov
From: Kirill A. Shutemov
CCi386-softmmu/vl.o
cc1: warnings being treated as errors
/usr/src/RPM/BUILD/qemu-0.11.92/vl.c: In function 'qemu_event_increment':
/usr/src/RPM/BUILD/qemu-0.11.92/vl.c:3404: error: ignoring return value of
'write', declared with attribute warn_unused_result
/usr/src
From: Kirill A. Shutemov
CCblock/qcow2.o
cc1: warnings being treated as errors
block/qcow2.c: In function 'qcow_create2':
block/qcow2.c:829: error: ignoring return value of 'write', declared with
attribute warn_unused_result
block/qcow2.c:838: error: ignoring return value of 'write', declare
From: Kirill A. Shutemov
CCnet/slirp.o
cc1: warnings being treated as errors
net/slirp.c: In function 'slirp_smb_cleanup':
net/slirp.c:470: error: ignoring return value of 'system', declared with
attribute warn_unused_result
make: *** [net/slirp.o] Error 1
Signed-off-by: Kirill A. Shutemov
From: Kirill A. Shutemov
CCblock/vvfat.o
cc1: warnings being treated as errors
block/vvfat.c: In function 'commit_one_file':
block/vvfat.c:2259: error: ignoring return value of 'ftruncate', declared with
attribute warn_unused_result
make: *** [block/vvfat.o] Error 1
CCblock/vvfat.o
In
From: Kirill A. Shutemov
CCblock/vmdk.o
cc1: warnings being treated as errors
block/vmdk.c: In function 'vmdk_snapshot_create':
block/vmdk.c:236: error: ignoring return value of 'ftruncate', declared with
attribute warn_unused_result
block/vmdk.c: In function 'vmdk_create':
block/vmdk.c:775:
From: Kirill A. Shutemov
CCblock/qcow.o
cc1: warnings being treated as errors
block/qcow.c: In function 'qcow_create':
block/qcow.c:804: error: ignoring return value of 'write', declared with
attribute warn_unused_result
block/qcow.c:806: error: ignoring return value of 'write', declared wit
From: Kirill A. Shutemov
CCblock/cow.o
cc1: warnings being treated as errors
block/cow.c: In function 'cow_create':
block/cow.c:251: error: ignoring return value of 'write', declared with
attribute warn_unused_result
block/cow.c:253: error: ignoring return value of 'ftruncate', declared with
From: Kirill A. Shutemov
CCposix-aio-compat.o
cc1: warnings being treated as errors
posix-aio-compat.c: In function 'aio_signal_handler':
posix-aio-compat.c:505: error: ignoring return value of 'write', declared with
attribute warn_unused_result
make: *** [posix-aio-compat.o] Error 1
Signed
Signed-off-by: Juan Quintela
---
qemu-common.h |3 ++-
1 files changed, 2 insertions(+), 1 deletions(-)
diff --git a/qemu-common.h b/qemu-common.h
index a8144cb..f009796 100644
--- a/qemu-common.h
+++ b/qemu-common.h
@@ -160,7 +160,8 @@ void qemu_mutex_lock_iothread(void);
void qemu_mutex_
From: Kirill A. Shutemov
A variant of write(2) which handles partial write.
Signed-off-by: Kirill A. Shutemov
Signed-off-by: Juan Quintela
---
osdep.c | 27 +++
qemu-common.h |1 +
2 files changed, 28 insertions(+), 0 deletions(-)
diff --git a/osdep.c b/os
Hi
This series is a work on top of Kirill previous patches.
Changes are:
- I addressed all reviewers comments
- Improved some error messages
- Check that it is valid to return -errno (switched lots of places to just
return -1).
- check correctly system() result for errors.
- -fstack-protector-al
On 01/15/2010 08:34 AM, Adam Litke wrote:
When using a control/QMP monitor in tandem with a regular monitor, asynchronous
messages can get lost depending on the order of the QEMU program arguments.
QEMU events issued by monitor_protocol_event() always go to cur_mon. If the
user monitor was speci
On 01/15/2010 05:56 AM, Kevin Wolf wrote:
Since commit 747bbdf7 QEMU_WARN_UNUSED_RESULT is never defined as it is
conditional on a define from config-host.h which is included only later.
Include that file earlier to get the warnings back.
Reactivating it unfortunately leads to some warnings abou
On 01/15/2010 02:42 AM, Paolo Bonzini wrote:
There are three paths from the innermost while loop of cpu_exec
to the top of the outermost for loop. Two do not reset
env->current_tb. Fix this.
Signed-off-by: Paolo Bonzini
Applied. Thanks.
Regards,
Anthony Liguori
---
cpu-exec.c |
On 01/15/2010 02:41 AM, Paolo Bonzini wrote:
Signed-off-by: Paolo Bonzini
Applied. Thanks.
Regards,
Anthony Liguori
---
cpu-exec.c |2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/cpu-exec.c b/cpu-exec.c
index 44d45fc..d974141 100644
--- a/cpu-exec.c
+++ b/cp
On 01/15/2010 01:56 AM, Paolo Bonzini wrote:
These are unused since edea5f0 (no need to define global registers in
cpu-exec.c, 2008-05-10).
Signed-off-by: Paolo Bonzini
Applied. Thanks.
Regards,
Anthony Liguori
---
target-i386/exec.h | 48 ---
On 01/14/2010 10:50 AM, Luiz Capitulino wrote:
Currently the 'status' key is a string whose value can be
"disabled" or "enabled", change it to the QMP's standard
'enabled' key, which is a bool.
Note that 'status' in being dropped and this wouldn't be
allowed if QMP were stable.
Signed-off-by: L
On 01/14/2010 10:19 AM, Cole Robinson wrote:
Current legacy floppy detection is hardcoded based on source file
name. Make this smarter on linux by attempting a floppy specific
ioctl.
v2:
Give ioctl check higher priority than filename check
s/IDE/legacy/
v3:
Actually initialize 'p
On 01/14/2010 10:19 AM, Cole Robinson wrote:
Current CDROM detection is hardcoded based on source file name.
Make this smarter on linux by attempting a CDROM specific ioctl.
This makes '-cdrom /dev/sr0' succeed with no media present.
v2:
Give ioctl check higher priority than filename check
On 01/14/2010 09:46 AM, Kusanagi Kouichi wrote:
qemu_chr_open_fd() calls qemu_chr_generic_open(),
so qemu_chr_open_tty() doesn't need to call it.
Signed-off-by: Kusanagi Kouichi
Applied. Thanks.
Regards,
Anthony Liguori
---
qemu-char.c |1 -
1 files changed, 0 insertions(+), 1 d
On 01/13/2010 04:53 PM, Igor V. Kovalenko wrote:
From: Igor V. Kovalenko
Currently we do not implement VLAN tagging for rtl8139(C+),
still data is read from ring buffer headers.
- augment unused assignment with TODO item
- cast txdw1 to void for now
Signed-off-by: Igor V. Kovalenko
Appli
On 01/19/2010 11:42 AM, Michael S. Tsirkin wrote:
The following changes since commit 1c39457adf220f9011cc6e08c05b272073ec3126:
Blue Swirl (1):
Sparc32: Update OpenBIOS image to r666
are available in the git repository at:
git://git.kernel.org/pub/scm/linux/kernel/git/mst/qemu.git
From: Igor V. Kovalenko
sparc64 timer has tick counter which can be set and read,
and tick compare value used as deadline to fire timer interrupt.
The timer is not used as periodic timer, instead deadline
is set each time new timer interrupt is needed.
v2 -> v3:
- added missing timer debug outpu
On 01/19/2010 02:03 PM, Chris Wright wrote:
* Anthony Liguori (anth...@codemonkey.ws) wrote:
I'm very much against having -cpu Nehalem. The whole point of this is
to make things easier for a user and for most of the users I've
encountered, -cpu Nehalem is just as obscure as -cpu
qemu64,-sse
On Tue, Jan 19, 2010 at 9:44 PM, Blue Swirl wrote:
> On Mon, Jan 18, 2010 at 10:28 PM, Igor V. Kovalenko
> wrote:
>> From: Igor V. Kovalenko
>>
>> sparc64 timer has tick counter which can be set and read,
>> and tick compare value used as deadline to fire timer interrupt.
>> The timer is not use
* Jamie Lokier (ja...@shareable.org) wrote:
> Chris Wright wrote:
> > * Anthony Liguori (anth...@codemonkey.ws) wrote:
> > > I'm very much against having -cpu Nehalem. The whole point of this is
> > > to make things easier for a user and for most of the users I've
> > > encountered, -cpu Nehal
john cooper wrote:
> As before a cpu feature 'check' option is added which warns when
> feature flags (either implicit in a cpu model or explicit on the
> command line) would have otherwise been quietly unavailable to a
> guest:
>
> # qemu-system-x86_64 ... -cpu Nehalem,check
> warning: ho
Chris Wright wrote:
> * Anthony Liguori (anth...@codemonkey.ws) wrote:
> > I'm very much against having -cpu Nehalem. The whole point of this is
> > to make things easier for a user and for most of the users I've
> > encountered, -cpu Nehalem is just as obscure as -cpu
> > qemu64,-sse3,+vmx,.
Anthony Liguori wrote:
> On 01/18/2010 10:45 AM, john cooper wrote:
> > x86 Conroe Intel Celeron_4x0 (Conroe/Merom Class Core 2)
> > x86 Penryn Intel Core 2 Duo P9xxx (Penryn Class Core 2)
> > x86 Nehalem Intel Core i7 9xx (Nehalem Class Core i7)
> >
2010/1/19 Blue Swirl :
> On Tue, Jan 19, 2010 at 5:30 PM, Artyom Tarasenko
> wrote:
>> 2010/1/15 Artyom Tarasenko :
>>> 2010/1/15 Blue Swirl :
On Fri, Jan 15, 2010 at 9:11 PM, Artyom Tarasenko
wrote:
> 2010/1/15 Blue Swirl :
>> On Fri, Jan 15, 2010 at 6:46 PM, Artyom Tarasenko
>
identifier scorpio schrieb:
> Hello.
>
> I ported TCG to alpha platform, the patch is currently based on stable-0.10
> branch, and now it can run linux-0.2.img testing image on my alpha XP1000
> workstation. but it still can't run MS-windows, and I hope someone,
> especially those guys that are
On Tue, 19 Jan 2010, Richard Henderson wrote:
> On 01/19/2010 12:47 AM, identifier scorpio wrote:
> > I ported TCG to alpha platform, the patch is currently based on stable-0.10
> > branch,
> > and now it can run linux-0.2.img testing image on my alpha XP1000
> > workstation.
> > but it still can'
On Tue, 19 Jan 2010, Anthony Liguori wrote:
> On 01/17/2010 11:23 AM, Juergen Lock wrote:
> > As suggested by Andreas F?rber, here is a cumulative patch that syncs
> > OSS_GETVERSION handling with head by merging the following commits:
> >
> > 1. oss: issue OSS_GETVERSION ioctl only when needed
>
If we go over the maximum number of iovecs support by syscall we get
back EINVAL from the kernel which translate to I/O errors for the guest.
Signed-off-by: Christoph Hellwig
Index: qemu/block.c
===
--- qemu.orig/block.c 2010-01-1
On Wed, Jan 20, 2010 at 6:31 AM, Chris Wright wrote:
> how is stable branch working (both qemu and kvm)?
> - qemu 0.12 cherry picking pretty aggressively
> - could use more community involvement
> - any distro patches for qemu/kvm packages?
> - doesn't sound like it
I'm currently testing a m
The BDRV_O_CREAT option is unused inside qemu and partially duplicates
the bdrv_create method. Remove it, and the -C option to qemu-io which
isn't used in qemu-iotests anyway.
Signed-off-by: Christoph Hellwig
Index: qemu/block.c
=
On Mon, 18 Jan 2010 18:16:21 +0100
Markus Armbruster wrote:
> > +static QObject *pci_get_dev_class(const PCIDevice *dev)
> > +{
> > +int class;
> > +const char *str = "";
> > +const pci_class_desc *desc;
> > +
> > +class = pci_get_word(dev->config + PCI_CLASS_DEVICE);
> > des
On 01/19/2010 12:47 AM, identifier scorpio wrote:
I ported TCG to alpha platform, the patch is currently based on stable-0.10
branch,
and now it can run linux-0.2.img testing image on my alpha XP1000 workstation.
but it still can't run MS-windows, and I hope someone, especially those guys
that
On Mon, 18 Jan 2010 18:14:32 +0100
Markus Armbruster wrote:
> Luiz Capitulino writes:
>
> > This commit adds the "pci_bridge" key to the PCI device QDict,
> > it also adds support for printing it in the user protocol.
> >
> > IMPORTANT: This code is being added separately because I could
> > NO
* Anthony Liguori (anth...@codemonkey.ws) wrote:
> I'm very much against having -cpu Nehalem. The whole point of this is
> to make things easier for a user and for most of the users I've
> encountered, -cpu Nehalem is just as obscure as -cpu
> qemu64,-sse3,+vmx,...
What name will these users
On 01/19/2010 06:17 AM, Kirill A. Shutemov wrote:
On Tue, Jan 19, 2010 at 2:11 PM, Juan Quintela wrote:
"Kirill A. Shutemov" wrote:
A variant of write(2) which handles partial write.
Signed-off-by: Kirill A. Shutemov
Hi
Have you updated this series? Is there any reason t
On 01/18/2010 10:45 AM, john cooper wrote:
This is a rework of the prior version which adds definitions
for contemporary processors selected via -cpu, as an
alternative to the existing use of "-cpu qemu64" augmented
with a series of feature flags.
The primary motivation was determination of a le
On 01/17/2010 11:23 AM, Juergen Lock wrote:
As suggested by Andreas Färber, here is a cumulative patch that syncs
OSS_GETVERSION handling with head by merging the following commits:
1. oss: issue OSS_GETVERSION ioctl only when needed
6d246526ce3c145b2831285def6983f5de6190d3
2. oss: fix frag
On Tue, Jan 19, 2010 at 5:30 PM, Artyom Tarasenko
wrote:
> 2010/1/15 Artyom Tarasenko :
>> 2010/1/15 Blue Swirl :
>>> On Fri, Jan 15, 2010 at 9:11 PM, Artyom Tarasenko
>>> wrote:
2010/1/15 Blue Swirl :
> On Fri, Jan 15, 2010 at 6:46 PM, Artyom Tarasenko
> wrote:
>> According to
This commit enables the use of MSI interrupts for virtqueue
notifications for ports. We use nr_ports + 1 (for control channel) msi
entries for the ports, as only the in_vq operations need an interrupt on
the guest.
Signed-off-by: Amit Shah
---
hw/virtio-pci.c |4
1 files changed, 4 inse
There's nothing target-dependent in the virtio-serial code so allow it
to be compiled just once for all the targets.
Signed-off-by: Amit Shah
---
Makefile.objs |2 +-
Makefile.target |2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/Makefile.objs b/Makefile.objs
ind
This commit adds a simple chardev-based serial port. Any data the guest
sends is forwarded to the chardev and vice-versa.
Sample uses for such a device can be obtaining info from the guest like
the file systems used, apps installed, etc. for offline usage and
logged-in users, clipboard copy-paste,
Signed-off-by: Amit Shah
---
hw/virtio-serial-bus.c |2 ++
hw/virtio-serial.h |1 +
2 files changed, 3 insertions(+), 0 deletions(-)
diff --git a/hw/virtio-serial-bus.c b/hw/virtio-serial-bus.c
index 7e100d0..403268f 100644
--- a/hw/virtio-serial-bus.c
+++ b/hw/virtio-serial-bus.c
@@
The port 'id' or number is internal state between the guest kernel and
our bus implementation. This is invocation-dependent and isn't part of
the guest-host ABI.
To correcly enumerate and map ports between the host and the guest, the
'name' property is used.
Example:
-device virtserialport,n
Via control channel messages, the guest can tell us whether a port got
opened or closed. Similarly, we can also indicate to the guest of host
port open/close events.
Signed-off-by: Amit Shah
---
hw/virtio-serial-bus.c | 94
hw/virtio-serial.h
This commit converts the virtio-console device to create a new
virtio-serial bus that can host console and generic serial ports. The
file hosting this code is now called virtio-serial-bus.c.
The virtio console is now a very simple qdev device that sits on the
virtio-serial-bus and communicates bet
VIRTIO_PCI_QUEUE_MAX is redefined in hw/virtio.c. Let's just keep it in
hw/virtio.h.
Also, bump up the value of the maximum allowed virtqueues to 64. This is
in preparation to allow multiple ports per virtio-console device.
Signed-off-by: Amit Shah
---
hw/virtio.c |2 --
hw/virtio.h |2
Hello all,
In this series I've removed the buffering that happened in the host
and ack the amount of data that ports actually consume. This basically
removes the older patch 5/8 that introduced buffering and throttling.
Other changes include addition of patch 8: MSI support and ensuring we
don't
On (Tue) Jan 19 2010 [17:59:33], Jamie Lokier wrote:
>
> What happens if the guest crashes, kexecs or whatever when it's half
> way through sending a cut buffer? A stream protocol will not have a
> nice way to recover from that unless there is an additional "out of
> band" way to say "I'm startin
On Mon, Jan 18, 2010 at 01:11:36PM +0100, Kevin Wolf wrote:
> @@ -55,6 +55,9 @@ int qcow2_grow_l1_table(BlockDriverState *bs, int min_size)
>
> /* write new table (align to cluster) */
> new_l1_table_offset = qcow2_alloc_clusters(bs, new_l1_size2);
> +if (new_l1_table_offset < 0) {
Looks good,
Reviewed-by: Christoph Hellwig
> #endif
> -if (length <= 0)
> +if (length < 0) {
> return -EINVAL;
> +}
> +
> start = offset & ~(s->cluster_size - 1);
> last = (offset + length - 1) & ~(s->cluster_size - 1);
> for(cluster_offset = start; cluster_offset <= last;
So for legnth = 0, last will e
On Mon, Jan 18, 2010 at 01:11:33PM +0100, Kevin Wolf wrote:
> If update_refcount fails, try to undo any changes made so far to avoid
> inconsistencies in the image file.
>
> Signed-off-by: Kevin Wolf
> ---
> block/qcow2-refcount.c | 32 +---
> 1 files changed, 25 in
On Tue, Jan 19, 2010 at 12:17 PM, Kirill A. Shutemov
wrote:
> On Tue, Jan 19, 2010 at 2:11 PM, Juan Quintela wrote:
>> "Kirill A. Shutemov" wrote:
>>> A variant of write(2) which handles partial write.
>>>
>>> Signed-off-by: Kirill A. Shutemov
>>
>> Hi
>>
>> Have you updated this series? Is th
On Mon, Jan 18, 2010 at 10:28 PM, Igor V. Kovalenko
wrote:
> From: Igor V. Kovalenko
>
> sparc64 timer has tick counter which can be set and read,
> and tick compare value used as deadline to fire timer interrupt.
> The timer is not used as periodic timer, instead deadline
> is set each time new
Loïc Minier writes:
> On Tue, Jan 19, 2010, Loïc Minier wrote:
>> Following the thread on the sdl-config patch, please find attached a
>> patch to add a couple of portable shell functions which allow testing
>> whehter a command/builtin is available and to find the full pathname of
>> an exec
Laurent Vivier writes:
>>Hi
>>
>> Following the thread on the sdl-config patch, please find attached a
>> patch to add a couple of portable shell functions which allow testing
>> whehter a command/builtin is available and to find the full pathname of
>> an executable in the PATH. This al
Anthony Liguori wrote:
> I think this is a pretty fundamental issue to work out since it
> determines the very nature of the transport (stream vs. datagram).
For the record, I don't think there's anything _wrong_ with a datagram
transport. It would be quite useful sometimes. But if there is
dat
The following changes since commit 1c39457adf220f9011cc6e08c05b272073ec3126:
Blue Swirl (1):
Sparc32: Update OpenBIOS image to r666
are available in the git repository at:
git://git.kernel.org/pub/scm/linux/kernel/git/mst/qemu.git for_anthony
Stefan Weil (2):
eepro100: Restruct
Loïc Minier schrieb:
> On Tue, Jan 19, 2010, Loïc Minier wrote:
>
>> Following the thread on the sdl-config patch, please find attached a
>> patch to add a couple of portable shell functions which allow testing
>> whehter a command/builtin is available and to find the full pathname of
>> an
The QEMU team is pleased to announce the availability of the 0.12.2
release. This is a stable release of the 0.12 series and only contains
bug fixes since 0.12.1.
It can be downloaded from Savannah at:
http://download.savannah.gnu.org/releases/qemu/qemu-0.12.2.tar.gz
On behalf of the QEMU te
Minutes (please reply w/ corrections or follow-ups):
how is stable branch working (both qemu and kvm)?
- qemu 0.12 cherry picking pretty aggressively
- could use more community involvement
- any distro patches for qemu/kvm packages?
- doesn't sound like it
vhost-net command line syntax
-
2010/1/15 Artyom Tarasenko :
> 2010/1/15 Blue Swirl :
>> On Fri, Jan 15, 2010 at 9:11 PM, Artyom Tarasenko
>> wrote:
>>> 2010/1/15 Blue Swirl :
On Fri, Jan 15, 2010 at 6:46 PM, Artyom Tarasenko
wrote:
> According to pages 9-31 - 9-34 of "SuperSPARC & MultiCache Controller
> User
HI, Blue Swirl
Can you give me a help about the issues below?
Thanks ahead.
Cheers,
Zhiyong Wu
-- Forwarded message --
From: Zhiyong Wu
Date: Tue, Jan 19, 2010 at 6:27 PM
Subject: Some encountered issues when compiling openbios on a ppc64 host
To: openb...@openbios.org
Cc: Al
On 01/14/2010 09:34 AM, Amit Shah wrote:
On (Thu) Jan 14 2010 [08:34:42], Anthony Liguori wrote:
On 01/14/2010 07:17 AM, Amit Shah wrote:
Hello people,
This iteration of the series removes the START and END flags (and
hence the header associated with each buffer). That's the major ch
Hello Laurent,
Good or bad "type -P" skips the aliases.
Thanks
Chris
> -Original Message-
> From:
> qemu-devel-bounces+chris.krumme=windriver@nongnu.org
> [mailto:qemu-devel-bounces+chris.krumme=windriver@nongnu.o
> rg] On Behalf Of Laurent Vivier
> Sent: Tuesday, January 19,
On Sun, Jan 17, 2010, Loïc Minier wrote:
> Static builds of qemu on x86-64 (and probably i386) fail
After actually checking in an i386 Ubuntu lucid chroot, I found out
that ld uses .rel.plt and .rel.iplt instead of .rela.plt and
.rela.iplt. I've applied the same fixes to the two .ld scripts a
On Mon, Jan 18, 2010 at 08:32:25PM +0100, Stefan Weil wrote:
> Markus Armbruster schrieb:
> > Stefan Weil writes:
> >
> >> The command line options -device, -nodefaults, -readconfig,
> >> -writeconfig had entries for command line help, but
> >> documentation for texi and derived formats (man, html
> @@ -715,6 +721,7 @@ uint64_t qcow2_alloc_cluster_offset(BlockDriverState *bs,
>
> cluster_offset &= ~QCOW_OFLAG_COPIED;
> m->nb_clusters = 0;
> +m->depends_on = NULL;
What does this have to do with the rest?
Otherwise looks good,
Reviewed-by: Christoph Hellwig
On Tue, Jan 19, 2010 at 2:11 PM, Juan Quintela wrote:
> "Kirill A. Shutemov" wrote:
>> A variant of write(2) which handles partial write.
>>
>> Signed-off-by: Kirill A. Shutemov
>
> Hi
>
> Have you updated this series? Is there any reason that you know when
> they haven't been picked?
I don't
"Kirill A. Shutemov" wrote:
> A variant of write(2) which handles partial write.
>
> Signed-off-by: Kirill A. Shutemov
Hi
Have you updated this series? Is there any reason that you know when
they haven't been picked?
I am also interested in getting _FORTIFY_SOURCE=2 wo compile cleanly.
Thank
On Tue, Jan 19, 2010 at 12:57:35PM +0100, Kevin Wolf wrote:
> It's needed to be able to distinguish between the case where the
> clusters are already allocated (0/NULL) and the case where the request
> depends on another one (0/non-NULL). This check previously used the
> return value (cluster_offse
Am 19.01.2010 12:35, schrieb Christoph Hellwig:
>> @@ -715,6 +721,7 @@ uint64_t qcow2_alloc_cluster_offset(BlockDriverState *bs,
>>
>> cluster_offset &= ~QCOW_OFLAG_COPIED;
>> m->nb_clusters = 0;
>> +m->depends_on = NULL;
>
> What does this have to do with the rest?
It
On Tue, Jan 19, 2010, Loïc Minier wrote:
> Following the thread on the sdl-config patch, please find attached a
> patch to add a couple of portable shell functions which allow testing
> whehter a command/builtin is available and to find the full pathname of
> an executable in the PATH. This al
On Tue, Jan 19, 2010, Laurent Vivier wrote:
> Why don't you use "type -P" for "path_of" ?"
I don't think that's portable enough:
$ sh -c 'type -P ls'
-P: not found
ls is /bin/ls
--
Loïc Minier
On Mon, Jan 18, 2010 at 01:11:32PM +0100, Kevin Wolf wrote:
> Return the appropriate error code instead of -EIO.
>
> Signed-off-by: Kevin Wolf
Looks good,
Reviewed-by: Christoph Hellwig
1 - 100 of 109 matches
Mail list logo