* Re: [Qemu-devel] Re: [PING 0.14] Missing patches (mostly fixes)
@ 2011-02-09 9:20 Laurent Vivier
2011-02-09 9:52 ` Peter Maydell
2011-02-09 10:25 ` Riku Voipio
0 siblings, 2 replies; 14+ messages in thread
From: Laurent Vivier @ 2011-02-09 9:20 UTC (permalink / raw)
To: laurent, riku.voipio; +Cc: aliguori, qemu-devel
>On Sat, Feb 05, 2011 at 10:49:51PM +0100, Laurent Vivier wrote:
>> >On 02/03/2011 12:16 PM, Laurent Vivier wrote:
>> >> And this one ?
>> >>
>> >> linux-user: correct core dump format
>> >>
>> >> http://patchwork.ozlabs.org/patch/78464/
>
>Actually that patch is not ok. The issues you fix on m68k appear
>on arm/eabi after applying your patch. bswap part appears ok, but
>the padding is needed atleast on arm.
It is strange as we have in gdb, if I remember correctly, an explicit check of the size of prstatus:
gdb/bfd/elf.c:
if defined (HAVE_PRSTATUS_T)
static bfd_boolean
elfcore_grok_prstatus (bfd *abfd, Elf_Internal_Note *note)
...
if (note->descsz == sizeof (prstatus_t))
...
How do you test this patch ? Do you use native gdb on ARM ? Because, for m68k, cross-compiled gdb does not work (it cannot have sizeof(prstatus_t) for m68k).
Regards,
Laurent
--
--------------------- Laurent@vivier.eu ---------------------
"Tout ce qui est impossible reste à accomplir" Jules Verne
"Things are only impossible until they're not" Jean-Luc Picard
^ permalink raw reply [flat|nested] 14+ messages in thread
* Re: [Qemu-devel] Re: [PING 0.14] Missing patches (mostly fixes)
2011-02-09 9:20 [Qemu-devel] Re: [PING 0.14] Missing patches (mostly fixes) Laurent Vivier
@ 2011-02-09 9:52 ` Peter Maydell
2011-02-09 10:25 ` Riku Voipio
1 sibling, 0 replies; 14+ messages in thread
From: Peter Maydell @ 2011-02-09 9:52 UTC (permalink / raw)
To: Laurent Vivier; +Cc: aliguori, riku.voipio, qemu-devel
On 9 February 2011 09:20, Laurent Vivier <Laurent@vivier.eu> wrote:
> It is strange as we have in gdb, if I remember correctly, an explicit check of the size of prstatus:
>
> gdb/bfd/elf.c:
>
> if defined (HAVE_PRSTATUS_T)
>
> static bfd_boolean
> elfcore_grok_prstatus (bfd *abfd, Elf_Internal_Note *note)
> ...
> if (note->descsz == sizeof (prstatus_t))
> ...
>
> How do you test this patch ? Do you use native gdb on ARM ? Because, for m68k, cross-compiled gdb does not work (it cannot have sizeof(prstatus_t) for m68k).
I dunno about m68k, but if ARM gdb behaves differently natively
versus the cross-tools version (ie hosted on x86 to target ARM)
then that sounds like a bug we in Linaro would like to know
about :-)
-- PMM
^ permalink raw reply [flat|nested] 14+ messages in thread
* Re: [Qemu-devel] Re: [PING 0.14] Missing patches (mostly fixes)
2011-02-09 9:20 [Qemu-devel] Re: [PING 0.14] Missing patches (mostly fixes) Laurent Vivier
2011-02-09 9:52 ` Peter Maydell
@ 2011-02-09 10:25 ` Riku Voipio
2011-02-10 23:07 ` [Qemu-devel] [PATCH 0/2] correct core dump format Laurent Vivier
` (2 more replies)
1 sibling, 3 replies; 14+ messages in thread
From: Riku Voipio @ 2011-02-09 10:25 UTC (permalink / raw)
To: Laurent Vivier; +Cc: aliguori, riku.voipio, qemu-devel
> >Actually that patch is not ok. The issues you fix on m68k appear
> >on arm/eabi after applying your patch. bswap part appears ok, but
> >the padding is needed atleast on arm.
> How do you test this patch ? Do you use native gdb on ARM ? Because, for m68k, cross-compiled gdb does not work (it cannot have sizeof(prstatus_t) for m68k).
I tried both native and cross-gdb, version 7.2. Both fail with your patch applied
and work fine without it.
Before your patch, objdump (CodeSourcery cs2009q3 cross) output looks like:
-snip-
Sections:
Idx Name Size VMA LMA File off Algn
0 note0 000001bc 00000000 00000000 000000d4 2**0
CONTENTS, READONLY
1 .reg/23968 00000048 00000000 00000000 00000130 2**2
CONTENTS
2 .reg 00000048 00000000 00000000 00000130 2**2
CONTENTS
3 .auxv 00000070 00000000 00000000 00000220 2**2
CONTENTS
4 load1 00000000 00008000 00000000 00001000 2**12
ALLOC, READONLY, CODE
-snip-
after:
-snip-
Sections:
Idx Name Size VMA LMA File off Algn
0 note0 000001bc 00000000 00000000 000000d4 2**0
CONTENTS, READONLY
1 .auxv 00000070 00000000 00000000 00000220 2**2
CONTENTS
2 load1 00000000 00008000 00000000 00001000 2**12
ALLOC, READONLY, CODE
CONTENTS, ALLOC, LOAD
-snip-
^ permalink raw reply [flat|nested] 14+ messages in thread
* [Qemu-devel] [PATCH 0/2] correct core dump format
2011-02-09 10:25 ` Riku Voipio
@ 2011-02-10 23:07 ` Laurent Vivier
2011-02-10 23:07 ` [Qemu-devel] [PATCH 1/2] Define target alignment size Laurent Vivier
2011-02-10 23:07 ` [Qemu-devel] [PATCH 2/2] linux-user: correct core dump format Laurent Vivier
2 siblings, 0 replies; 14+ messages in thread
From: Laurent Vivier @ 2011-02-10 23:07 UTC (permalink / raw)
To: Riku Voipio; +Cc: qemu-devel
This is the v2 of my patch correcting the core dump format.
It introduces a new parameter of the target: the alignment size.
For the moment, it seems m68k is the only one that doesn't have 32bit
address alignment but 16bit one.
[PATCH 1/2] Define target alignment size
[PATCH 2/2] linux-user: correct core dump format
^ permalink raw reply [flat|nested] 14+ messages in thread
* [Qemu-devel] [PATCH 1/2] Define target alignment size
2011-02-09 10:25 ` Riku Voipio
2011-02-10 23:07 ` [Qemu-devel] [PATCH 0/2] correct core dump format Laurent Vivier
@ 2011-02-10 23:07 ` Laurent Vivier
2011-02-10 23:07 ` [Qemu-devel] [PATCH 2/2] linux-user: correct core dump format Laurent Vivier
2 siblings, 0 replies; 14+ messages in thread
From: Laurent Vivier @ 2011-02-10 23:07 UTC (permalink / raw)
To: Riku Voipio; +Cc: qemu-devel, Laurent Vivier
Signed-off-by: Laurent Vivier <laurent@vivier.eu>
---
configure | 3 +++
1 files changed, 3 insertions(+), 0 deletions(-)
diff --git a/configure b/configure
index 2bf7f34..b71035b 100755
--- a/configure
+++ b/configure
@@ -2902,6 +2902,7 @@ target_nptl="no"
interp_prefix1=`echo "$interp_prefix" | sed "s/%M/$target_arch2/g"`
echo "CONFIG_QEMU_INTERP_PREFIX=\"$interp_prefix1\"" >> $config_target_mak
gdb_xml_files=""
+target_alignment=4
TARGET_ARCH="$target_arch2"
TARGET_BASE_ARCH=""
@@ -2934,6 +2935,7 @@ case "$target_arch2" in
bflt="yes"
gdb_xml_files="cf-core.xml cf-fp.xml"
target_phys_bits=32
+ target_alignment=2
;;
microblaze)
bflt="yes"
@@ -3012,6 +3014,7 @@ case "$target_arch2" in
exit 1
;;
esac
+echo "TARGET_ALIGNMENT=$target_alignment" >> $config_target_mak
echo "TARGET_ARCH=$TARGET_ARCH" >> $config_target_mak
target_arch_name="`echo $TARGET_ARCH | tr '[:lower:]' '[:upper:]'`"
echo "TARGET_$target_arch_name=y" >> $config_target_mak
--
1.7.1
^ permalink raw reply related [flat|nested] 14+ messages in thread
* [Qemu-devel] [PATCH 2/2] linux-user: correct core dump format
2011-02-09 10:25 ` Riku Voipio
2011-02-10 23:07 ` [Qemu-devel] [PATCH 0/2] correct core dump format Laurent Vivier
2011-02-10 23:07 ` [Qemu-devel] [PATCH 1/2] Define target alignment size Laurent Vivier
@ 2011-02-10 23:07 ` Laurent Vivier
2 siblings, 0 replies; 14+ messages in thread
From: Laurent Vivier @ 2011-02-10 23:07 UTC (permalink / raw)
To: Riku Voipio; +Cc: qemu-devel, Laurent Vivier
This patch allows to really use the core dumped by qemu with guest
architecture tools.
- it adds a missing bswap_phdr() for the program headers
of memory regions.
"objdump -x" sample:
BEFORE:
0x1000000 off 0x00200000 vaddr 0x00000400 paddr 0x00000000 align 2**21
filesz 0x00000000 memsz 0x00100000 flags ---
0x1000000 off 0x00200000 vaddr 0x00100400 paddr 0x00000000 align 2**21
filesz 0x00000000 memsz 0x00080000 flags --- 6000000
AFTER:
LOAD off 0x00002000 vaddr 0x00040000 paddr 0x00000000 align 2**13
filesz 0x00000000 memsz 0x00001000 flags ---
LOAD off 0x00002000 vaddr 0x00041000 paddr 0x00000000 align 2**13
filesz 0x00000000 memsz 0x00000800 flags rw-
- it doesn't pad the note size to sizeof(int32_t).
On m68k the NT_PRSTATUS note size is 154 and
must not be rounded up to 156, because this value is checked by
objdump and gdb.
"gdb" symptoms:
"warning: Couldn't find general-purpose registers in core file."
"objdump -x" sample:
BEFORE:
Sections:
Idx Name Size VMA LMA File off Algn
0 note0 000001c4 00000000 00000000 000003b4 2**0
CONTENTS, READONLY
1 .auxv 00000070 00000000 00000000 00000508 2**2
CONTENTS
2 proc1 00100000 00000400 00000000 00200000 2**10
READONLY
AFTER:
Sections:
Idx Name Size VMA LMA File off Algn
0 note0 000001c4 00000000 00000000 000003b4 2**0
CONTENTS, READONLY
1 .reg/19022 00000050 00000000 00000000 0000040e 2**2
CONTENTS
2 .reg 00000050 00000000 00000000 0000040e 2**2
CONTENTS
3 .auxv 00000070 00000000 00000000 00000508 2**2
CONTENTS
4 load1 00000000 00040000 00000000 00002000 2**13
ALLOC, READONLY
Signed-off-by: Laurent Vivier <laurent@vivier.eu>
---
linux-user/elfload.c | 16 +++++++++-------
1 files changed, 9 insertions(+), 7 deletions(-)
diff --git a/linux-user/elfload.c b/linux-user/elfload.c
index 33d776d..61f65d6 100644
--- a/linux-user/elfload.c
+++ b/linux-user/elfload.c
@@ -1688,6 +1688,7 @@ struct memelfnote {
size_t namesz_rounded;
int type;
size_t datasz;
+ size_t datasz_rounded;
void *data;
size_t notesz;
};
@@ -1713,7 +1714,7 @@ struct target_elf_prstatus {
struct target_timeval pr_cstime; /* XXX Cumulative system time */
target_elf_gregset_t pr_reg; /* GP registers */
int pr_fpvalid; /* XXX */
-};
+} __attribute__((__aligned__(TARGET_ALIGNMENT))) __attribute__((packed));
#define ELF_PRARGSZ (80) /* Number of chars for args */
@@ -1963,7 +1964,9 @@ static void fill_note(struct memelfnote *note, const char *name, int type,
note->namesz = namesz;
note->namesz_rounded = roundup(namesz, sizeof (int32_t));
note->type = type;
- note->datasz = roundup(sz, sizeof (int32_t));;
+ note->datasz = sz;
+ note->datasz_rounded = roundup(sz, sizeof (int32_t));
+
note->data = data;
/*
@@ -1971,7 +1974,7 @@ static void fill_note(struct memelfnote *note, const char *name, int type,
* ELF document.
*/
note->notesz = sizeof (struct elf_note) +
- note->namesz_rounded + note->datasz;
+ note->namesz_rounded + note->datasz_rounded;
}
static void fill_elf_header(struct elfhdr *elf, int segs, uint16_t machine,
@@ -2191,7 +2194,7 @@ static int write_note(struct memelfnote *men, int fd)
return (-1);
if (dump_write(fd, men->name, men->namesz_rounded) != 0)
return (-1);
- if (dump_write(fd, men->data, men->datasz) != 0)
+ if (dump_write(fd, men->data, men->datasz_rounded) != 0)
return (-1);
return (0);
@@ -2407,7 +2410,7 @@ static int elf_core_dump(int signr, const CPUState *env)
* ELF specification wants data to start at page boundary so
* we align it here.
*/
- offset = roundup(offset, ELF_EXEC_PAGESIZE);
+ data_offset = offset = roundup(offset, ELF_EXEC_PAGESIZE);
/*
* Write program headers for memory regions mapped in
@@ -2430,6 +2433,7 @@ static int elf_core_dump(int signr, const CPUState *env)
phdr.p_flags |= PF_X;
phdr.p_align = ELF_EXEC_PAGESIZE;
+ bswap_phdr(&phdr, 1);
dump_write(fd, &phdr, sizeof (phdr));
}
@@ -2441,8 +2445,6 @@ static int elf_core_dump(int signr, const CPUState *env)
goto out;
/* align data to page boundary */
- data_offset = lseek(fd, 0, SEEK_CUR);
- data_offset = TARGET_PAGE_ALIGN(data_offset);
if (lseek(fd, data_offset, SEEK_SET) != data_offset)
goto out;
--
1.7.1
^ permalink raw reply related [flat|nested] 14+ messages in thread
* Re: [Qemu-devel] Re: [PING 0.14] Missing patches (mostly fixes)
@ 2011-02-09 10:14 Laurent Vivier
0 siblings, 0 replies; 14+ messages in thread
From: Laurent Vivier @ 2011-02-09 10:14 UTC (permalink / raw)
To: peter.maydell, Laurent; +Cc: aliguori, riku.voipio, qemu-devel
>On 9 February 2011 09:20, Laurent Vivier <Laurent@vivier.eu> wrote:
>> It is strange as we have in gdb, if I remember correctly, an explicit check
>of the size of prstatus:
>>
>> gdb/bfd/elf.c:
>>
>> if defined (HAVE_PRSTATUS_T)
>>
>> static bfd_boolean
>> elfcore_grok_prstatus (bfd *abfd, Elf_Internal_Note *note)
>> ...
>> if (note->descsz == sizeof (prstatus_t))
>> ...
>>
>> How do you test this patch ? Do you use native gdb on ARM ? Because, for
>m68k, cross-compiled gdb does not work (it cannot have sizeof(prstatus_t) for
>m68k).
>
>I dunno about m68k, but if ARM gdb behaves differently natively
>versus the cross-tools version (ie hosted on x86 to target ARM)
>then that sounds like a bug we in Linaro would like to know
>about :-)
What I saw for m68k is it cannot access to the saved registers of the core dump (i.e. you cannot use cross-compiled gdb to debug a core dump ...)
What you can try is to generate a core dump with a "kill -SIGILL" on a qemu-arm process (don't forget to do "ulimit -c unlimited" before) and then load the core with your cross-compiled gdb.
Regards,
Laurent
--
--------------------- Laurent@vivier.eu ---------------------
"Tout ce qui est impossible reste à accomplir" Jules Verne
"Things are only impossible until they're not" Jean-Luc Picard
^ permalink raw reply [flat|nested] 14+ messages in thread
* Re: [Qemu-devel] Re: [PING 0.14] Missing patches (mostly fixes)
@ 2011-02-05 21:49 Laurent Vivier
2011-02-09 7:03 ` Riku Voipio
0 siblings, 1 reply; 14+ messages in thread
From: Laurent Vivier @ 2011-02-05 21:49 UTC (permalink / raw)
To: riku voipio; +Cc: aliguori, qemu-devel
Hi,
I've no need, just put it in your tree where you want...
Regards,
Laurent
riku voipio <riku.voipio@iki.fi> a écrit :
>On 02/03/2011 12:16 PM, Laurent Vivier wrote:
>>> On Wed, Feb 02, 2011 at 08:28:15PM +0100, Stefan Weil wrote:
>>>> [PATCH] linux-user: Fix possible realloc memory leak
>>>> (http://patchwork.ozlabs.org/patch/79217/)
>>> Looks ok for me.
>
>> And this one ?
>>
>> linux-user: correct core dump format
>>
>> http://patchwork.ozlabs.org/patch/78464/
>
>Do you need it for 0.14 ?
>
>I intend to include this and other in a pull request for master soon.
>
>Riku
^ permalink raw reply [flat|nested] 14+ messages in thread
* RE: [Qemu-devel] Re: [PING 0.14] Missing patches (mostly fixes)
@ 2011-02-03 10:16 Laurent Vivier
2011-02-05 19:40 ` riku voipio
0 siblings, 1 reply; 14+ messages in thread
From: Laurent Vivier @ 2011-02-03 10:16 UTC (permalink / raw)
To: weil, riku.voipio
Cc: kwolf, aliguori, mst, armbru, qemu-devel, blauwirbel, kraxel,
pbonzini
>On Wed, Feb 02, 2011 at 08:28:15PM +0100, Stefan Weil wrote:
>> [PATCH] linux-user: Fix possible realloc memory leak
>> (http://patchwork.ozlabs.org/patch/79217/)
>
>Looks ok for me.
And this one ?
linux-user: correct core dump format
http://patchwork.ozlabs.org/patch/78464/
Laurent
--
--------------------- Laurent@vivier.eu ---------------------
"Tout ce qui est impossible reste à accomplir" Jules Verne
"Things are only impossible until they're not" Jean-Luc Picard
^ permalink raw reply [flat|nested] 14+ messages in thread
* Re: [Qemu-devel] Re: [PING 0.14] Missing patches (mostly fixes)
2011-02-03 10:16 Laurent Vivier
@ 2011-02-05 19:40 ` riku voipio
2011-02-07 13:09 ` Anthony Liguori
0 siblings, 1 reply; 14+ messages in thread
From: riku voipio @ 2011-02-05 19:40 UTC (permalink / raw)
To: Laurent Vivier; +Cc: aliguori, qemu-devel
On 02/03/2011 12:16 PM, Laurent Vivier wrote:
>> On Wed, Feb 02, 2011 at 08:28:15PM +0100, Stefan Weil wrote:
>>> [PATCH] linux-user: Fix possible realloc memory leak
>>> (http://patchwork.ozlabs.org/patch/79217/)
>> Looks ok for me.
> And this one ?
>
> linux-user: correct core dump format
>
> http://patchwork.ozlabs.org/patch/78464/
Do you need it for 0.14 ?
I intend to include this and other in a pull request for master soon.
Riku
^ permalink raw reply [flat|nested] 14+ messages in thread
* Re: [Qemu-devel] Re: [PING 0.14] Missing patches (mostly fixes)
2011-02-05 19:40 ` riku voipio
@ 2011-02-07 13:09 ` Anthony Liguori
0 siblings, 0 replies; 14+ messages in thread
From: Anthony Liguori @ 2011-02-07 13:09 UTC (permalink / raw)
To: riku voipio; +Cc: aliguori, Laurent Vivier, qemu-devel
On 02/05/2011 01:40 PM, riku voipio wrote:
> On 02/03/2011 12:16 PM, Laurent Vivier wrote:
>>> On Wed, Feb 02, 2011 at 08:28:15PM +0100, Stefan Weil wrote:
>>>> [PATCH] linux-user: Fix possible realloc memory leak
>>>> (http://patchwork.ozlabs.org/patch/79217/)
>>> Looks ok for me.
>
>> And this one ?
>>
>> linux-user: correct core dump format
>>
>> http://patchwork.ozlabs.org/patch/78464/
>
> Do you need it for 0.14 ?
>
> I intend to include this and other in a pull request for master soon.
This looks reasonably important. Can you just do a pull request for
master for the patches that might be good for 0.14?
If you can do that in the next couple days, it'll make it into -rc2 no
problem.
Regards,
Anthony Liguori
> Riku
>
^ permalink raw reply [flat|nested] 14+ messages in thread
* [Qemu-devel] [0.14] Queue of 0.14 patches/pull?
@ 2011-01-27 8:29 Paolo Bonzini
2011-02-02 19:28 ` [Qemu-devel] [PING 0.14] Missing patches (mostly fixes) Stefan Weil
0 siblings, 1 reply; 14+ messages in thread
From: Paolo Bonzini @ 2011-01-27 8:29 UTC (permalink / raw)
To: qemu-devel
Cc: Kevin Wolf, Markus Armbruster, Gerd Hoffmann, Michael S. Tsirkin
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]" for tree
pulls. Also, I believe all patches meant for stable should also start
having "[PATCH 0.14]", too.
Myself I have only
http://permalink.gmane.org/gmane.comp.emulators.qemu/88490
to ping. :) It is in branch qemu-char-echo of
git://github.com/bonzini/qemu.git as well.
Thanks!
Paolo
^ permalink raw reply [flat|nested] 14+ messages in thread
* [Qemu-devel] [PING 0.14] Missing patches (mostly fixes)
2011-01-27 8:29 [Qemu-devel] [0.14] Queue of 0.14 patches/pull? Paolo Bonzini
@ 2011-02-02 19:28 ` Stefan Weil
2011-02-02 21:25 ` [Qemu-devel] " Michael S. Tsirkin
2011-02-03 7:00 ` Riku Voipio
0 siblings, 2 replies; 14+ messages in thread
From: Stefan Weil @ 2011-02-02 19:28 UTC (permalink / raw)
To: Paolo Bonzini
Cc: Kevin Wolf, Anthony Liguori, Michael S. Tsirkin, Riku Voipio,
qemu-devel, Markus Armbruster, Blue Swirl, Gerd Hoffmann
Hello,
these are some patches which I found on my stack of open patches.
All of them should go into 0.14, and at least some of them could also be
applied to 0.13.
[PATCH] hw/fmopl: Fix buffer access out-of-bounds errors
(http://patchwork.ozlabs.org/patch/79054/)
[PATCH] linux-user: Fix possible realloc memory leak
(http://patchwork.ozlabs.org/patch/79217/)
[PATCH 1/3] tests: Fix two memory leaks
(http://patchwork.ozlabs.org/patch/79945/)
[PATCH 2/3] check-qdict: Fix possible crash
(http://patchwork.ozlabs.org/patch/79946/)
[PATCH 3/3] w64: Fix problem with missing sigset_t
(http://patchwork.ozlabs.org/patch/79947/)
[PATCH 1/3] pci: Fix memory leak (http://patchwork.ozlabs.org/patch/79996/)
[PATCH 2/3] ppc405: Fix memory leak
(http://patchwork.ozlabs.org/patch/79997/)
[PATCH 3/3] s390: Fix memory leak (http://patchwork.ozlabs.org/patch/79998/)
[PATCH] Fix trivial "endianness bugs"
(http://patchwork.ozlabs.org/patch/80223/)
[PATCH] HACKING: Update status of format checking
(http://lists.nongnu.org/archive/html/qemu-devel/2011-01/msg02476.html)
[PATCH] mingw32: Fix definitions for PRId64, PRIx64, PRIu64, PRIo64
(http://patchwork.ozlabs.org/patch/74276/)
Regards,
Stefan Weil
^ permalink raw reply [flat|nested] 14+ messages in thread
* [Qemu-devel] Re: [PING 0.14] Missing patches (mostly fixes)
2011-02-02 19:28 ` [Qemu-devel] [PING 0.14] Missing patches (mostly fixes) Stefan Weil
@ 2011-02-02 21:25 ` Michael S. Tsirkin
2011-02-03 7:00 ` Riku Voipio
1 sibling, 0 replies; 14+ messages in thread
From: Michael S. Tsirkin @ 2011-02-02 21:25 UTC (permalink / raw)
To: Stefan Weil
Cc: Kevin Wolf, Anthony Liguori, Riku Voipio, qemu-devel,
Markus Armbruster, Blue Swirl, Gerd Hoffmann, Paolo Bonzini
On Wed, Feb 02, 2011 at 08:28:15PM +0100, Stefan Weil wrote:
> [PATCH 1/3] pci: Fix memory leak (http://patchwork.ozlabs.org/patch/79996/)
Looks good. Pls cc me on patches next time to make sure I do not miss a
patch.
^ permalink raw reply [flat|nested] 14+ messages in thread
* [Qemu-devel] Re: [PING 0.14] Missing patches (mostly fixes)
2011-02-02 19:28 ` [Qemu-devel] [PING 0.14] Missing patches (mostly fixes) Stefan Weil
2011-02-02 21:25 ` [Qemu-devel] " Michael S. Tsirkin
@ 2011-02-03 7:00 ` Riku Voipio
1 sibling, 0 replies; 14+ messages in thread
From: Riku Voipio @ 2011-02-03 7:00 UTC (permalink / raw)
To: Stefan Weil
Cc: Kevin Wolf, Anthony Liguori, Michael S. Tsirkin, Riku Voipio,
qemu-devel, Markus Armbruster, Blue Swirl, Gerd Hoffmann,
Paolo Bonzini
On Wed, Feb 02, 2011 at 08:28:15PM +0100, Stefan Weil wrote:
> [PATCH] linux-user: Fix possible realloc memory leak
> (http://patchwork.ozlabs.org/patch/79217/)
Looks ok for me.
Riku
^ permalink raw reply [flat|nested] 14+ messages in thread
end of thread, other threads:[~2011-02-10 23:08 UTC | newest]
Thread overview: 14+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-02-09 9:20 [Qemu-devel] Re: [PING 0.14] Missing patches (mostly fixes) Laurent Vivier
2011-02-09 9:52 ` Peter Maydell
2011-02-09 10:25 ` Riku Voipio
2011-02-10 23:07 ` [Qemu-devel] [PATCH 0/2] correct core dump format Laurent Vivier
2011-02-10 23:07 ` [Qemu-devel] [PATCH 1/2] Define target alignment size Laurent Vivier
2011-02-10 23:07 ` [Qemu-devel] [PATCH 2/2] linux-user: correct core dump format Laurent Vivier
-- strict thread matches above, loose matches on Subject: below --
2011-02-09 10:14 [Qemu-devel] Re: [PING 0.14] Missing patches (mostly fixes) Laurent Vivier
2011-02-05 21:49 Laurent Vivier
2011-02-09 7:03 ` Riku Voipio
2011-02-03 10:16 Laurent Vivier
2011-02-05 19:40 ` riku voipio
2011-02-07 13:09 ` Anthony Liguori
2011-01-27 8:29 [Qemu-devel] [0.14] Queue of 0.14 patches/pull? Paolo Bonzini
2011-02-02 19:28 ` [Qemu-devel] [PING 0.14] Missing patches (mostly fixes) Stefan Weil
2011-02-02 21:25 ` [Qemu-devel] " Michael S. Tsirkin
2011-02-03 7:00 ` Riku Voipio
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).