X-Git-Url: http://git.joshuawise.com/netwatch.git/blobdiff_plain/e8351f1a2c735e32d6fb81f180f25d751caf6fe7..172a5ba7dad6e9c7e38e4e5aa2607de3728f0ebf:/aseg/counter.c?ds=inline diff --git a/aseg/counter.c b/aseg/counter.c index 5c88850..f5a2602 100644 --- a/aseg/counter.c +++ b/aseg/counter.c @@ -3,6 +3,8 @@ #include #include #include +#include +#include "../net/net.h" #include "vga-overlay.h" #include "packet.h" @@ -24,7 +26,7 @@ void pci_dump() { { unsigned char b; b = inb(cts & 0xFFFF); - dologf("READ: %08x (%02x)", cts, b); + //dologf("READ: %08x (%02x)", cts, b); if ((cts & 0xFFFF) == 0x64) curdev = (b & 0x20) ? 1 : 0; if ((curdev == 0) && ((cts & 0xFFFF) == 0x60) && (b == 0x01)) @@ -95,13 +97,13 @@ void smi_entry(void) pcisave = inl(0xCF8); vgasave = inb(0x3D4); + pci_unbother_all(); counter++; sprintf(statstr, "15-412! %08x %08x", smi_status(), counter); strblit(statstr, 0, 0); - extern void do_bother(); - do_bother(); + eth_poll(); if (inl(0x840) & 0x1000) { @@ -112,6 +114,7 @@ void smi_entry(void) smi_poll(); + pci_bother_all(); outl(0xCF8, pcisave); outb(0x3D4, vgasave); }