forked from KolibriOS/kolibrios
PCNet driver now keeps track of number of received/sent packets/bytes.
git-svn-id: svn://kolibrios.org@2863 a494cfbc-eb01-0410-851d-a64ba20cac60
This commit is contained in:
parent
5dfb64cfd9
commit
ce6a93da60
@ -996,6 +996,12 @@ transmit:
|
||||
and [device.cur_tx], 3
|
||||
DEBUGF 2," - Packet Sent! "
|
||||
|
||||
; Update stats
|
||||
inc [device.packets_tx]
|
||||
mov eax, [esp+8]
|
||||
add dword [device.bytes_tx], eax
|
||||
adc dword [device.bytes_tx + 4], 0
|
||||
|
||||
.finish:
|
||||
DEBUGF 2," - Done!\n"
|
||||
stdcall KernelFree, [esp+4]
|
||||
@ -1094,6 +1100,11 @@ int_handler:
|
||||
test eax, eax ; Test if we allocated succesfully
|
||||
jz .abort ;
|
||||
|
||||
; Update stats
|
||||
add dword [device.bytes_rx], ecx
|
||||
adc dword [device.bytes_rx + 4], 0
|
||||
inc dword [device.packets_rx]
|
||||
|
||||
push ebx
|
||||
push .receiver_test_loop ;
|
||||
push ecx ; for eth_receiver
|
||||
|
Loading…
Reference in New Issue
Block a user