* [Qemu-devel] [PATCH] hmp: Fix freeing of PciInfoList
@ 2012-01-11 15:51 Stefan Berger
2012-01-12 13:35 ` [Qemu-devel] [Qemu-trivial] " Stefan Hajnoczi
0 siblings, 1 reply; 2+ messages in thread
From: Stefan Berger @ 2012-01-11 15:51 UTC (permalink / raw)
To: qemu-trivial; +Cc: qemu-devel
Remember the original PciInfoList in info_list and use
the info variable to traverse the list.
Signed-off-by: Stefan Berger <stefanb@linux.vnet.ibm.com>
---
hmp.c | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
Index: qemu-git.pt/hmp.c
===================================================================
--- qemu-git.pt.orig/hmp.c
+++ qemu-git.pt/hmp.c
@@ -486,17 +486,17 @@ static void hmp_info_pci_device(Monitor
void hmp_info_pci(Monitor *mon)
{
- PciInfoList *info;
+ PciInfoList *info_list, info;
Error *err = NULL;
- info = qmp_query_pci(&err);
+ info_list = qmp_query_pci(&err);
if (err) {
monitor_printf(mon, "PCI devices not supported\n");
error_free(err);
return;
}
- for (; info; info = info->next) {
+ for (info = info_list; info; info = info->next) {
PciDeviceInfoList *dev;
for (dev = info->value->devices; dev; dev = dev->next) {
@@ -504,7 +504,7 @@ void hmp_info_pci(Monitor *mon)
}
}
- qapi_free_PciInfoList(info);
+ qapi_free_PciInfoList(info_list);
}
void hmp_info_tpm(Monitor *mon)
^ permalink raw reply [flat|nested] 2+ messages in thread
* Re: [Qemu-devel] [Qemu-trivial] [PATCH] hmp: Fix freeing of PciInfoList
2012-01-11 15:51 [Qemu-devel] [PATCH] hmp: Fix freeing of PciInfoList Stefan Berger
@ 2012-01-12 13:35 ` Stefan Hajnoczi
0 siblings, 0 replies; 2+ messages in thread
From: Stefan Hajnoczi @ 2012-01-12 13:35 UTC (permalink / raw)
To: Stefan Berger; +Cc: qemu-trivial, qemu-devel
On Wed, Jan 11, 2012 at 10:51:52AM -0500, Stefan Berger wrote:
> Remember the original PciInfoList in info_list and use
> the info variable to traverse the list.
>
> Signed-off-by: Stefan Berger <stefanb@linux.vnet.ibm.com>
>
> ---
> hmp.c | 8 ++++----
> 1 file changed, 4 insertions(+), 4 deletions(-)
Thanks, applied to the trivial patches tree but see below:
https://github.com/stefanha/qemu/commits/trivial-patches
Your patch seems to use two columns instead of just one column for
'-'/'+'/' '. This confused both git-am(1) and patch(1). Perhaps you
can figure out why your patch was generated like this? It reminds me of
diff3 where there are two columns because it compares file A and B
against a common ancestor file.
> Index: qemu-git.pt/hmp.c
> ===================================================================
> --- qemu-git.pt.orig/hmp.c
> +++ qemu-git.pt/hmp.c
> @@ -486,17 +486,17 @@ static void hmp_info_pci_device(Monitor
>
> void hmp_info_pci(Monitor *mon)
> {
> - PciInfoList *info;
> + PciInfoList *info_list, info;
Missing '*' to make info a pointer too. Fails to build, I fixed this
when merging so don't worry about it.
Stefan
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2012-01-12 13:35 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-01-11 15:51 [Qemu-devel] [PATCH] hmp: Fix freeing of PciInfoList Stefan Berger
2012-01-12 13:35 ` [Qemu-devel] [Qemu-trivial] " Stefan Hajnoczi
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).