diff options
author | Blue Swirl | 2009-06-17 19:01:03 +0200 |
---|---|---|
committer | Blue Swirl | 2009-06-17 19:01:03 +0200 |
commit | bc26e55a6615dc594be425d293db40d5cdcdb84b (patch) | |
tree | b8368f1f8e2d131cf265b414f554b0dce2d6f568 /hw/rtl8139.c | |
parent | Allow user to specify CPU model (diff) | |
download | qemu-bc26e55a6615dc594be425d293db40d5cdcdb84b.tar.gz qemu-bc26e55a6615dc594be425d293db40d5cdcdb84b.tar.xz qemu-bc26e55a6615dc594be425d293db40d5cdcdb84b.zip |
Revert "Update irqs on reset and device load"
This reverts commit 3dcd219f09d6c1817bf9a132899e6b925f7a0914.
It is incorrect to call qemu_irq functions (or any other functions that
access other device state) during savevm/loadvm.
Signed-off-by: Blue Swirl <blauwirbel@gmail.com>
Diffstat (limited to 'hw/rtl8139.c')
-rw-r--r-- | hw/rtl8139.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/hw/rtl8139.c b/hw/rtl8139.c index 13646062d7..0a66026633 100644 --- a/hw/rtl8139.c +++ b/hw/rtl8139.c @@ -3317,8 +3317,6 @@ static int rtl8139_load(QEMUFile* f,void* opaque,int version_id) s->cplus_enabled = s->CpCmd != 0; } - rtl8139_update_irq(s); - return 0; } |