[SerialICE] New patch to review for serialice: 1304c8d Solve logging all read registers.

Idwer Vollering (vidwer@gmail.com) gerrit at coreboot.org
Mon Aug 27 21:57:14 CEST 2012


Idwer Vollering (vidwer at gmail.com) just uploaded a new patch set to gerrit, which you can find at http://review.coreboot.org/1490

-gerrit

commit 1304c8d8495f06ea04c891a8e2b45323bba540ab
Author: Idwer Vollering <vidwer at gmail.com>
Date:   Mon Aug 27 21:55:29 2012 +0200

    Solve logging all read registers.
    
    Change serialice_io_read() so that it logs the reading of
    PCI and IO registers (lines with '=>') again.
    
    The following change resulted in the creation of an
    incomplete view/logfile: http://review.coreboot.org/#/c/1062/
    
    Change-Id: I9c4cd45b6b7eddd9b3c3a49b6e77862c46a7ef71
    Signed-off-by: Idwer Vollering <vidwer at gmail.com>
---
 qemu-0.15.x/serialice.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/qemu-0.15.x/serialice.c b/qemu-0.15.x/serialice.c
index 69568f0..80c7cca 100644
--- a/qemu-0.15.x/serialice.c
+++ b/qemu-0.15.x/serialice.c
@@ -184,7 +184,7 @@ uint32_t serialice_io_read(uint16_t port, unsigned int size)
 
     filtered = serialice_io_read_filter(&data, port, size);
     if (!filtered) {
-        return target->io_read(port, size);
+        data = target->io_read(port, size);
     }
 
     data = mask_data(data, size);



More information about the SerialICE mailing list