|
|
0a122b |
From bd6746591d0d325933ef99cf67eff755974136d7 Mon Sep 17 00:00:00 2001
|
|
|
0a122b |
Message-Id: <bd6746591d0d325933ef99cf67eff755974136d7.1387276076.git.minovotn@redhat.com>
|
|
|
0a122b |
In-Reply-To: <e610718166120379517e80d1a7aa12d60294209b.1387276076.git.minovotn@redhat.com>
|
|
|
0a122b |
References: <e610718166120379517e80d1a7aa12d60294209b.1387276076.git.minovotn@redhat.com>
|
|
|
0a122b |
From: Markus Armbruster <armbru@redhat.com>
|
|
|
0a122b |
Date: Tue, 10 Dec 2013 15:12:51 +0100
|
|
|
0a122b |
Subject: [PATCH 10/16] slavio_misc: Fix slavio_led_mem_readw/_writew
|
|
|
0a122b |
tracepoints
|
|
|
0a122b |
|
|
|
0a122b |
RH-Author: Markus Armbruster <armbru@redhat.com>
|
|
|
0a122b |
Message-id: <1386688376-29521-3-git-send-email-armbru@redhat.com>
|
|
|
0a122b |
Patchwork-id: 56113
|
|
|
0a122b |
O-Subject: [PATCH 7.0 qemu-kvm 2/7] slavio_misc: Fix slavio_led_mem_readw/_writew tracepoints
|
|
|
0a122b |
Bugzilla: 997832
|
|
|
0a122b |
RH-Acked-by: Stefan Hajnoczi <stefanha@redhat.com>
|
|
|
0a122b |
RH-Acked-by: Eduardo Habkost <ehabkost@redhat.com>
|
|
|
0a122b |
RH-Acked-by: Laszlo Ersek <lersek@redhat.com>
|
|
|
0a122b |
|
|
|
0a122b |
From: Markus Armbruster <armbru@redhat.com>
|
|
|
0a122b |
|
|
|
0a122b |
Broken since they got added in commit 97bf485.
|
|
|
0a122b |
|
|
|
0a122b |
Signed-off-by: Markus Armbruster <armbru@redhat.com>
|
|
|
0a122b |
Signed-off-by: Stefan Hajnoczi <stefanha@redhat.com>
|
|
|
0a122b |
(cherry picked from commit f3a64b8c89ac9b5111f97e2653d249e4668764b3)
|
|
|
0a122b |
---
|
|
|
0a122b |
hw/misc/slavio_misc.c | 2 +-
|
|
|
0a122b |
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
0a122b |
|
|
|
0a122b |
Signed-off-by: Michal Novotny <minovotn@redhat.com>
|
|
|
0a122b |
---
|
|
|
0a122b |
hw/misc/slavio_misc.c | 2 +-
|
|
|
0a122b |
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
0a122b |
|
|
|
0a122b |
diff --git a/hw/misc/slavio_misc.c b/hw/misc/slavio_misc.c
|
|
|
0a122b |
index a7a9368..3571850 100644
|
|
|
0a122b |
--- a/hw/misc/slavio_misc.c
|
|
|
0a122b |
+++ b/hw/misc/slavio_misc.c
|
|
|
0a122b |
@@ -368,7 +368,7 @@ static void slavio_led_mem_writew(void *opaque, hwaddr addr,
|
|
|
0a122b |
{
|
|
|
0a122b |
MiscState *s = opaque;
|
|
|
0a122b |
|
|
|
0a122b |
- trace_slavio_led_mem_readw(val & 0xffff);
|
|
|
0a122b |
+ trace_slavio_led_mem_writew(val & 0xffff);
|
|
|
0a122b |
switch (addr) {
|
|
|
0a122b |
case 0:
|
|
|
0a122b |
s->leds = val;
|
|
|
0a122b |
--
|
|
|
0a122b |
1.7.11.7
|
|
|
0a122b |
|