* [Qemu-devel] virtio-net: network stops responding in Win2k3 server
@ 2013-11-20 16:11 ing. Mario De Chenno
0 siblings, 0 replies; 6+ messages in thread
From: ing. Mario De Chenno @ 2013-11-20 16:11 UTC (permalink / raw)
To: qemu-devel
[-- Attachment #1: Type: text/plain, Size: 1696 bytes --]
Hi all.
We are facing some network issues on some Windows Server 2003 machines.
In short, network seems to lock up and stops responding even to ping
requests. From TCPdump on the tap interface on the server I only see arp
request to the gateway, without replies. Increased tx overruns on the some
interface too. No errors at all on windows side. Most of the time we can
disable the interface from within windows and re-enable it to make things
work again. Rarely we have to shut down the virtual machine (Windows reboot
does not solve the problem).
The issue appears randomly without apparent relation with server activity.
One server makes a lot of small outbond connections and locks up about
every 12-24 hours. It has two nic defined and only one is affected (the
heaviest loaded). Other servers have just one nic and lock less often.
We run Qemu-kvm 1.4.0 and latest virtio-win drivers. On the same host we
did run a Linux web server with no issue in months of activity, with
traffic peaks up to 80Mb/s.
Here's is the startup command:
qemu-system-x86_64 -enable-kvm -machine type=pc,accel=kvm -cpu kvm64
-pidfile /vmstore/vm_pids/solari.pid -rtc base=localtime -drive
file=/vmstore/vm_disks/solari.img,if=virtio -netdev
tap,id=nic01,ifname=tap-solaripub,script=pub102-ifup -device
virtio-net-pci,netdev=nic01,mac=CE:DA:01:00:17:16 -netdev
tap,id=nic02,ifname=tap-solariconsip,script=consip-ifup -device
virtio-net-pci,netdev=nic02,mac=CE:DA:01:00:16:16 -vnc :16 -m 4096 -boot c
-k it -usbdevice tablet -name solari -daemonize
We tried also the following options without result
,vhost=off,vnet_hdr=on
,ioeventfd=on,event_idx=off
How can we troubleshoot the issue?
Thanks
Mario De Chenno
[-- Attachment #2: Type: text/html, Size: 1965 bytes --]
^ permalink raw reply [flat|nested] 6+ messages in thread
* [Qemu-devel] virtio-net: network stops responding in Win2k3 server
@ 2013-11-22 17:28 Mario De Chenno
2013-11-24 13:59 ` Yan Vugenfirer
0 siblings, 1 reply; 6+ messages in thread
From: Mario De Chenno @ 2013-11-22 17:28 UTC (permalink / raw)
To: qemu-devel
[-- Attachment #1: Type: text/plain, Size: 1679 bytes --]
Hi all.
We are facing some network issues on some Windows Server 2003 machines.
In short, network seems to lock up and stops responding even to ping
requests. From TCPdump on the tap interface on the server I only see arp
request to the gateway, without replies. Increased tx overruns on the some
interface too. No errors at all on windows side. Most of the time we can
disable the interface from within windows and re-enable it to make things
work again. Rarely we have to shut down the virtual machine (Windows reboot
does not solve the problem).
The issue appears randomly without apparent relation with server activity.
One server makes a lot of small outbond connections and locks up about
every 12-24 hours. It has two nic defined and only one is affected (the
heaviest loaded). Other servers have just one nic and lock less often.
We run Qemu-kvm 1.4.0 and latest virtio-win drivers. On the same host we
did run a Linux web server with no issue in months of activity, with
traffic peaks up to 80Mb/s.
Here's is the startup command:
qemu-system-x86_64 -enable-kvm -machine type=pc,accel=kvm -cpu kvm64
-pidfile /vmstore/vm_pids/solari.pid -rtc base=localtime -drive
file=/vmstore/vm_disks/solari.img,if=virtio -netdev
tap,id=nic01,ifname=tap-solaripub,script=pub102-ifup -device
virtio-net-pci,netdev=nic01,mac=CE:DA:01:00:17:16 -netdev
tap,id=nic02,ifname=tap-solariconsip,script=consip-ifup -device
virtio-net-pci,netdev=nic02,mac=CE:DA:01:00:16:16 -vnc :16 -m 4096 -boot c
-k it -usbdevice tablet -name solari -daemonize
We tried also the following options without result
,vhost=off,vnet_hdr=on
,ioeventfd=on,event_idx=off
How can we troubleshoot the issue?
Thanks
[-- Attachment #2: Type: text/html, Size: 2073 bytes --]
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [Qemu-devel] virtio-net: network stops responding in Win2k3 server
2013-11-22 17:28 [Qemu-devel] virtio-net: network stops responding in Win2k3 server Mario De Chenno
@ 2013-11-24 13:59 ` Yan Vugenfirer
2013-11-26 13:01 ` ing. Mario De Chenno
0 siblings, 1 reply; 6+ messages in thread
From: Yan Vugenfirer @ 2013-11-24 13:59 UTC (permalink / raw)
To: Mario De Chenno; +Cc: qemu-devel list
[-- Attachment #1: Type: text/plain, Size: 2237 bytes --]
Hi Mario,
Can you check the offload settings of the tap device that is connected to guest?
Run “ethtool -k tap-solaripub”.
On the guest. Raise the log verbosity by going to device manager -> NetKVM device -> Advanced tab -> Logging.Level and changing it to 4. Use DebugView to record the driver tracing (enable kernel trace): http://technet.microsoft.com/en-us/sysinternals/bb896647.aspx
Best regards,
Yan.
On Nov 22, 2013, at 7:28 PM, Mario De Chenno <ceda@dechenno.eu> wrote:
> Hi all.
> We are facing some network issues on some Windows Server 2003 machines.
> In short, network seems to lock up and stops responding even to ping requests. From TCPdump on the tap interface on the server I only see arp request to the gateway, without replies. Increased tx overruns on the some interface too. No errors at all on windows side. Most of the time we can disable the interface from within windows and re-enable it to make things work again. Rarely we have to shut down the virtual machine (Windows reboot does not solve the problem).
> The issue appears randomly without apparent relation with server activity. One server makes a lot of small outbond connections and locks up about every 12-24 hours. It has two nic defined and only one is affected (the heaviest loaded). Other servers have just one nic and lock less often.
> We run Qemu-kvm 1.4.0 and latest virtio-win drivers. On the same host we did run a Linux web server with no issue in months of activity, with traffic peaks up to 80Mb/s.
>
> Here's is the startup command:
>
> qemu-system-x86_64 -enable-kvm -machine type=pc,accel=kvm -cpu kvm64 -pidfile /vmstore/vm_pids/solari.pid -rtc base=localtime -drive file=/vmstore/vm_disks/solari.img,if=virtio -netdev tap,id=nic01,ifname=tap-solaripub,script=pub102-ifup -device virtio-net-pci,netdev=nic01,mac=CE:DA:01:00:17:16 -netdev tap,id=nic02,ifname=tap-solariconsip,script=consip-ifup -device virtio-net-pci,netdev=nic02,mac=CE:DA:01:00:16:16 -vnc :16 -m 4096 -boot c -k it -usbdevice tablet -name solari -daemonize
>
> We tried also the following options without result
> ,vhost=off,vnet_hdr=on
> ,ioeventfd=on,event_idx=off
>
>
> How can we troubleshoot the issue?
> Thanks
>
[-- Attachment #2: Type: text/html, Size: 3148 bytes --]
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [Qemu-devel] virtio-net: network stops responding in Win2k3 server
2013-11-24 13:59 ` Yan Vugenfirer
@ 2013-11-26 13:01 ` ing. Mario De Chenno
2013-12-12 10:36 ` ing. Mario De Chenno
0 siblings, 1 reply; 6+ messages in thread
From: ing. Mario De Chenno @ 2013-11-26 13:01 UTC (permalink / raw)
To: Yan Vugenfirer; +Cc: qemu-devel list
[-- Attachment #1: Type: text/plain, Size: 1573 bytes --]
Since it's a production machine, I had to try a remedy first: I changed one
network card (pub, of course) to e1000 and now it's up from 62 hours (maybe
a record!)
Here is the output for the other card (virtio): I guess parameters should
have been the same for the affected interface too (they are now the same
for the tap interface connected to e1000 driver, and reflect the underlying
physical interface).
Offload parameters for tap-solariconsi:
rx-checksumming: off
tx-checksumming: off
scatter-gather: off
tcp-segmentation-offload: off
udp-fragmentation-offload: off
generic-segmentation-offload: off
generic-receive-offload: on
large-receive-offload: off
I cannot switch back the virtual nic just now. I will try to increase debug
on other machines, but most are 64bit Win2k3 OSs, so the virtio-net driver
is not the same (it's a 64bit version at least...).
Soon or later I will have some debug data to report to the list. In the
meantime if you have some configuration advises, feel free to post them.
Thanks,
Mario
2013/11/24 Yan Vugenfirer <yvugenfi@redhat.com>
> Hi Mario,
>
> Can you check the offload settings of the tap device that is connected to
> guest?
>
> Run “ethtool -k tap-solaripub”.
>
> On the guest. Raise the log verbosity by going to device manager -> NetKVM
> device -> Advanced tab -> Logging.Level and changing it to 4. Use DebugView
> to record the driver tracing (enable kernel trace):
> http://technet.microsoft.com/en-us/sysinternals/bb896647.aspx
>
>
> Best regards,
> Yan.
>
>
>
>
[-- Attachment #2: Type: text/html, Size: 2434 bytes --]
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [Qemu-devel] virtio-net: network stops responding in Win2k3 server
2013-11-26 13:01 ` ing. Mario De Chenno
@ 2013-12-12 10:36 ` ing. Mario De Chenno
0 siblings, 0 replies; 6+ messages in thread
From: ing. Mario De Chenno @ 2013-12-12 10:36 UTC (permalink / raw)
To: Yan Vugenfirer; +Cc: qemu-devel list
[-- Attachment #1.1: Type: text/plain, Size: 5042 bytes --]
Hi all, it happened again, but not on the win32 machine I was talking
before. In that I changed the driver to e1000 and it's up from more than 18
days, never seen that before!
Today the affected machine is a Win2k3 R2 SP2 x64 server, with all updates
(before today's) applied. Virtio-net driver is 52.65.104.6500 19/06/2013,
loglevel is set to 6.
Qemu startup parameters are as before (one nic this time):
qemu-system-x86_64 -enable-kvm -machine type=pc,accel=kvm -cpu kvm64 -rtc
base=localtime -drive file=/vmstore/vm_disks/cineca-service.img,if=virtio
-net nic,model=virtio,macaddr=CE:DA:0C:00:00:55 -net
tap,script=br224-ifup,vhost=on,ifname=tap-cineca-service -vnc :55 -m 6144
-boot c -k it -usbdevice tablet -name cineca-service -daemonize
Offload parameters for tap-cineca-serv:
rx-checksumming: off
tx-checksumming: off
scatter-gather: off
tcp-segmentation-offload: off
udp-fragmentation-offload: off
generic-segmentation-offload: off
generic-receive-offload: on
large-receive-offload: off
rx-vlan-offload: off
tx-vlan-offload: off
ntuple-filters: off
receive-hashing: off
The network interface (IP: 10.224.4.55) has just stopped responding. I now
run ping -t 10.224.4.1 (to the local gateway) from inside the virtual
machine and I get "request timeout".
on the tap interface of the host server:
> tcpdump -n -i tap-cineca-serv
tcpdump: WARNING: tap-cineca-serv: no IPv4 address assigned
tcpdump: verbose output suppressed, use -v or -vv for full protocol decode
listening on tap-cineca-serv, link-type EN10MB (Ethernet), capture size
65535 bytes
10:54:06.986752 ARP, Request who-has 10.224.4.1 tell 10.224.4.55, length 28
10:54:12.312851 ARP, Request who-has 10.224.4.1 tell 10.224.4.55, length 28
10:54:14.736914 ARP, Request who-has 10.224.4.197 tell 10.224.4.55, length
28
10:54:17.781544 ARP, Request who-has 10.224.4.197 tell 10.224.4.55, length
28
10:54:17.812755 ARP, Request who-has 10.224.4.1 tell 10.224.4.55, length 28
10:54:23.312894 ARP, Request who-has 10.224.4.1 tell 10.224.4.55, length 28
10:54:23.797236 ARP, Request who-has 10.224.4.197 tell 10.224.4.55, length
28
10:54:28.812902 ARP, Request who-has 10.224.4.1 tell 10.224.4.55, length 28
10:54:34.312949 ARP, Request who-has 10.224.4.1 tell 10.224.4.55, length 28
10:54:39.812811 ARP, Request who-has 10.224.4.1 tell 10.224.4.55, length 28
10:54:45.312855 ARP, Request who-has 10.224.4.1 tell 10.224.4.55, length 28
10:54:50.813006 ARP, Request who-has 10.224.4.1 tell 10.224.4.55, length 28
Debugview log attached.
You can see, until row 00000214, a lot of "[PrepareSendEntry] Sending
packet of 42 with NO offload" entries, while I was pinging the gateway.
Then, from inside Windows' device manager, I disable and re-enable the
virtio network interface and network return working as usual.
This machine had network working continously for about 10-12 days.
Hope to see news from you. I will make more checks if you ask me what to do.
Regards,
Mario
2013/11/26 ing. Mario De Chenno <mario.dechenno@unina2.it>
> Since it's a production machine, I had to try a remedy first: I changed
> one network card (pub, of course) to e1000 and now it's up from 62 hours
> (maybe a record!)
>
> Here is the output for the other card (virtio): I guess parameters should
> have been the same for the affected interface too (they are now the same
> for the tap interface connected to e1000 driver, and reflect the underlying
> physical interface).
>
> Offload parameters for tap-solariconsi:
> rx-checksumming: off
> tx-checksumming: off
> scatter-gather: off
> tcp-segmentation-offload: off
> udp-fragmentation-offload: off
> generic-segmentation-offload: off
> generic-receive-offload: on
> large-receive-offload: off
>
> I cannot switch back the virtual nic just now. I will try to increase
> debug on other machines, but most are 64bit Win2k3 OSs, so the virtio-net
> driver is not the same (it's a 64bit version at least...).
> Soon or later I will have some debug data to report to the list. In the
> meantime if you have some configuration advises, feel free to post them.
>
> Thanks,
>
> Mario
>
>
> 2013/11/24 Yan Vugenfirer <yvugenfi@redhat.com>
>
>> Hi Mario,
>>
>> Can you check the offload settings of the tap device that is connected to
>> guest?
>>
>> Run “ethtool -k tap-solaripub”.
>>
>> On the guest. Raise the log verbosity by going to device manager ->
>> NetKVM device -> Advanced tab -> Logging.Level and changing it to 4. Use
>> DebugView to record the driver tracing (enable kernel trace):
>> http://technet.microsoft.com/en-us/sysinternals/bb896647.aspx
>>
>>
>> Best regards,
>> Yan.
>>
>>
>>
>>
--
------------------------------
*Ing. Mario De Chenno*
*C*entro *E*laborazione *D*ati *A*mministrativi
*S*econda *U*niversita' degli Studi di *N*apoli
via A. De Gasperi 55, 80133 Napoli
*telefono*: +39 081 5667024
*cell.*: +39 347 1800708
*fax*: +39 081 5667013
*e-mail*: mario.dechenno@unina2.it
[-- Attachment #1.2: Type: text/html, Size: 8269 bytes --]
[-- Attachment #2: debugview-12dic13.log --]
[-- Type: text/x-log, Size: 130468 bytes --]
00000001 10.41.10 [PrepareSendEntry] Sending packet of 42 with NO offload
00000002 10.41.19 [PrepareSendEntry] Sending packet of 42 with NO offload
00000003 10.41.48 [PrepareSendEntry] Sending packet of 42 with NO offload
00000004 10.41.49 [PrepareSendEntry] Sending packet of 42 with NO offload
00000005 10.41.50 [PrepareSendEntry] Sending packet of 42 with NO offload
00000006 10.41.52 [PrepareSendEntry] Sending packet of 42 with NO offload
00000007 10.41.53 [PrepareSendEntry] Sending packet of 42 with NO offload
00000008 10.41.58 [PrepareSendEntry] Sending packet of 42 with NO offload
00000009 10.41.58 [PrepareSendEntry] Sending packet of 42 with NO offload
00000010 10.42.04 [PrepareSendEntry] Sending packet of 42 with NO offload
00000011 10.42.14 [PrepareSendEntry] Sending packet of 42 with NO offload
00000012 10.42.19 [PrepareSendEntry] Sending packet of 42 with NO offload
00000013 10.42.20 [PrepareSendEntry] Sending packet of 42 with NO offload
00000014 10.42.25 [PrepareSendEntry] Sending packet of 42 with NO offload
00000015 10.42.29 [PrepareSendEntry] Sending packet of 42 with NO offload
00000016 10.42.30 [PrepareSendEntry] Sending packet of 42 with NO offload
00000017 10.42.36 [PrepareSendEntry] Sending packet of 42 with NO offload
00000018 10.42.41 [PrepareSendEntry] Sending packet of 42 with NO offload
00000019 10.42.47 [PrepareSendEntry] Sending packet of 42 with NO offload
00000020 10.42.51 [PrepareSendEntry] Sending packet of 42 with NO offload
00000021 10.42.52 [PrepareSendEntry] Sending packet of 42 with NO offload
00000022 10.42.58 [PrepareSendEntry] Sending packet of 42 with NO offload
00000023 10.43.00 [PrepareSendEntry] Sending packet of 42 with NO offload
00000024 10.43.03 [PrepareSendEntry] Sending packet of 42 with NO offload
00000025 10.43.09 [PrepareSendEntry] Sending packet of 42 with NO offload
00000026 10.43.14 [PrepareSendEntry] Sending packet of 42 with NO offload
00000027 10.43.20 [PrepareSendEntry] Sending packet of 42 with NO offload
00000028 10.43.25 [PrepareSendEntry] Sending packet of 42 with NO offload
00000029 10.43.30 [PrepareSendEntry] Sending packet of 42 with NO offload
00000030 10.43.31 [PrepareSendEntry] Sending packet of 42 with NO offload
00000031 10.43.36 [PrepareSendEntry] Sending packet of 42 with NO offload
00000032 10.43.39 [PrepareSendEntry] Sending packet of 42 with NO offload
00000033 10.43.42 [PrepareSendEntry] Sending packet of 42 with NO offload
00000034 10.43.47 [PrepareSendEntry] Sending packet of 42 with NO offload
00000035 10.43.53 [PrepareSendEntry] Sending packet of 42 with NO offload
00000036 10.43.58 [PrepareSendEntry] Sending packet of 42 with NO offload
00000037 10.44.04 [PrepareSendEntry] Sending packet of 42 with NO offload
00000038 10.44.09 [PrepareSendEntry] Sending packet of 42 with NO offload
00000039 10.44.15 [PrepareSendEntry] Sending packet of 42 with NO offload
00000040 10.44.20 [PrepareSendEntry] Sending packet of 42 with NO offload
00000041 10.44.26 [PrepareSendEntry] Sending packet of 42 with NO offload
00000042 10.44.31 [PrepareSendEntry] Sending packet of 42 with NO offload
00000043 10.44.37 [PrepareSendEntry] Sending packet of 42 with NO offload
00000044 10.44.42 [PrepareSendEntry] Sending packet of 42 with NO offload
00000045 10.44.48 [PrepareSendEntry] Sending packet of 42 with NO offload
00000046 10.44.53 [PrepareSendEntry] Sending packet of 42 with NO offload
00000047 10.44.57 [PrepareSendEntry] Sending packet of 243 with NO offload
00000048 10.44.59 [PrepareSendEntry] Sending packet of 42 with NO offload
00000049 10.45.04 [PrepareSendEntry] Sending packet of 42 with NO offload
00000050 10.45.10 [PrepareSendEntry] Sending packet of 42 with NO offload
00000051 10.45.15 [PrepareSendEntry] Sending packet of 42 with NO offload
00000052 10.45.21 [PrepareSendEntry] Sending packet of 42 with NO offload
00000053 10.45.26 [PrepareSendEntry] Sending packet of 42 with NO offload
00000054 10.45.32 [PrepareSendEntry] Sending packet of 42 with NO offload
00000055 10.45.37 [PrepareSendEntry] Sending packet of 42 with NO offload
00000056 10.45.43 [PrepareSendEntry] Sending packet of 42 with NO offload
00000057 10.45.48 [PrepareSendEntry] Sending packet of 42 with NO offload
00000058 10.45.54 [PrepareSendEntry] Sending packet of 42 with NO offload
00000059 10.45.59 [PrepareSendEntry] Sending packet of 42 with NO offload
00000060 10.46.05 [PrepareSendEntry] Sending packet of 42 with NO offload
00000061 10.46.10 [PrepareSendEntry] Sending packet of 42 with NO offload
00000062 10.46.16 [PrepareSendEntry] Sending packet of 42 with NO offload
00000063 10.46.21 [PrepareSendEntry] Sending packet of 42 with NO offload
00000064 10.46.27 [PrepareSendEntry] Sending packet of 42 with NO offload
00000065 10.46.31 [PrepareSendEntry] Sending packet of 42 with NO offload
00000066 10.46.32 [PrepareSendEntry] Sending packet of 42 with NO offload
00000067 10.46.38 [PrepareSendEntry] Sending packet of 42 with NO offload
00000068 10.46.40 [PrepareSendEntry] Sending packet of 42 with NO offload
00000069 10.46.43 [PrepareSendEntry] Sending packet of 42 with NO offload
00000070 10.46.49 [PrepareSendEntry] Sending packet of 42 with NO offload
00000071 10.46.54 [PrepareSendEntry] Sending packet of 42 with NO offload
00000072 10.47.00 [PrepareSendEntry] Sending packet of 42 with NO offload
00000073 10.47.05 [PrepareSendEntry] Sending packet of 42 with NO offload
00000074 10.47.10 [PrepareSendEntry] Sending packet of 42 with NO offload
00000075 10.47.11 [PrepareSendEntry] Sending packet of 42 with NO offload
00000076 10.47.14 [PrepareSendEntry] Sending packet of 42 with NO offload
00000077 10.47.16 [PrepareSendEntry] Sending packet of 42 with NO offload
00000078 10.47.19 [PrepareSendEntry] Sending packet of 42 with NO offload
00000079 10.47.22 [PrepareSendEntry] Sending packet of 42 with NO offload
00000080 10.47.27 [PrepareSendEntry] Sending packet of 42 with NO offload
00000081 10.47.33 [PrepareSendEntry] Sending packet of 42 with NO offload
00000082 10.47.38 [PrepareSendEntry] Sending packet of 42 with NO offload
00000083 10.47.41 [PrepareSendEntry] Sending packet of 42 with NO offload
00000084 10.47.44 [PrepareSendEntry] Sending packet of 42 with NO offload
00000085 10.47.49 [PrepareSendEntry] Sending packet of 42 with NO offload
00000086 10.47.50 [PrepareSendEntry] Sending packet of 42 with NO offload
00000087 10.47.55 [PrepareSendEntry] Sending packet of 42 with NO offload
00000088 10.48.00 [PrepareSendEntry] Sending packet of 42 with NO offload
00000089 10.48.06 [PrepareSendEntry] Sending packet of 42 with NO offload
00000090 10.48.11 [PrepareSendEntry] Sending packet of 42 with NO offload
00000091 10.48.12 [PrepareSendEntry] Sending packet of 42 with NO offload
00000092 10.48.17 [PrepareSendEntry] Sending packet of 42 with NO offload
00000093 10.48.21 [PrepareSendEntry] Sending packet of 42 with NO offload
00000094 10.48.22 [PrepareSendEntry] Sending packet of 42 with NO offload
00000095 10.48.28 [PrepareSendEntry] Sending packet of 42 with NO offload
00000096 10.48.33 [PrepareSendEntry] Sending packet of 42 with NO offload
00000097 10.48.39 [PrepareSendEntry] Sending packet of 42 with NO offload
00000098 10.48.44 [PrepareSendEntry] Sending packet of 42 with NO offload
00000099 10.48.50 [PrepareSendEntry] Sending packet of 42 with NO offload
00000100 10.48.51 [PrepareSendEntry] Sending packet of 42 with NO offload
00000101 10.48.55 [PrepareSendEntry] Sending packet of 42 with NO offload
00000102 10.49.00 [PrepareSendEntry] Sending packet of 42 with NO offload
00000103 10.49.01 [PrepareSendEntry] Sending packet of 42 with NO offload
00000104 10.49.06 [PrepareSendEntry] Sending packet of 42 with NO offload
00000105 10.49.12 [PrepareSendEntry] Sending packet of 42 with NO offload
00000106 10.49.17 [PrepareSendEntry] Sending packet of 42 with NO offload
00000107 10.49.23 [PrepareSendEntry] Sending packet of 42 with NO offload
00000108 10.49.28 [PrepareSendEntry] Sending packet of 42 with NO offload
00000109 10.49.34 [PrepareSendEntry] Sending packet of 42 with NO offload
00000110 10.49.39 [PrepareSendEntry] Sending packet of 42 with NO offload
00000111 10.49.45 [PrepareSendEntry] Sending packet of 42 with NO offload
00000112 10.50.26 [PrepareSendEntry] Sending packet of 42 with NO offload
00000113 10.50.30 [PrepareSendEntry] Sending packet of 42 with NO offload
00000114 10.50.34 [PrepareSendEntry] Sending packet of 42 with NO offload
00000115 10.50.38 [PrepareSendEntry] Sending packet of 42 with NO offload
00000116 10.50.42 [PrepareSendEntry] Sending packet of 42 with NO offload
00000117 10.50.45 [PrepareSendEntry] Sending packet of 257 with NO offload
00000118 10.50.46 [PrepareSendEntry] Sending packet of 42 with NO offload
00000119 10.50.50 [PrepareSendEntry] Sending packet of 92 with NO offload
00000120 10.50.51 [PrepareSendEntry] Sending packet of 92 with NO offload
00000121 10.50.52 [PrepareSendEntry] Sending packet of 92 with NO offload
00000122 10.50.53 [PrepareSendEntry] Sending packet of 42 with NO offload
00000123 10.50.57 [PrepareSendEntry] Sending packet of 42 with NO offload
00000124 10.51.01 [PrepareSendEntry] Sending packet of 42 with NO offload
00000125 10.51.07 [PrepareSendEntry] Sending packet of 42 with NO offload
00000126 10.51.11 [PrepareSendEntry] Sending packet of 42 with NO offload
00000127 10.51.15 [PrepareSendEntry] Sending packet of 42 with NO offload
00000128 10.51.19 [PrepareSendEntry] Sending packet of 42 with NO offload
00000129 10.51.23 [PrepareSendEntry] Sending packet of 42 with NO offload
00000130 10.51.27 [PrepareSendEntry] Sending packet of 42 with NO offload
00000131 10.51.31 [PrepareSendEntry] Sending packet of 92 with NO offload
00000132 10.51.31 [PrepareSendEntry] Sending packet of 92 with NO offload
00000133 10.51.32 [PrepareSendEntry] Sending packet of 92 with NO offload
00000134 10.51.33 [PrepareSendEntry] Sending packet of 42 with NO offload
00000135 10.51.37 [PrepareSendEntry] Sending packet of 42 with NO offload
00000136 10.51.41 [PrepareSendEntry] Sending packet of 42 with NO offload
00000137 10.51.47 [PrepareSendEntry] Sending packet of 42 with NO offload
00000138 10.51.51 [PrepareSendEntry] Sending packet of 42 with NO offload
00000139 10.51.52 [PrepareSendEntry] Sending packet of 42 with NO offload
00000140 10.51.55 [PrepareSendEntry] Sending packet of 42 with NO offload
00000141 10.51.55 [PrepareSendEntry] Sending packet of 42 with NO offload
00000142 10.51.59 [PrepareSendEntry] Sending packet of 42 with NO offload
00000143 10.52.01 [PrepareSendEntry] Sending packet of 42 with NO offload
00000144 10.52.03 [PrepareSendEntry] Sending packet of 42 with NO offload
00000145 10.52.07 [PrepareSendEntry] Sending packet of 42 with NO offload
00000146 10.52.11 [PrepareSendEntry] Sending packet of 92 with NO offload
00000147 10.52.12 [PrepareSendEntry] Sending packet of 92 with NO offload
00000148 10.52.12 [PrepareSendEntry] Sending packet of 92 with NO offload
00000149 10.52.13 [PrepareSendEntry] Sending packet of 42 with NO offload
00000150 10.52.17 [PrepareSendEntry] Sending packet of 42 with NO offload
00000151 10.52.21 [PrepareSendEntry] Sending packet of 42 with NO offload
00000152 10.52.32 [PrepareSendEntry] Sending packet of 42 with NO offload
00000153 10.52.35 [PrepareSendEntry] Sending packet of 42 with NO offload
00000154 10.52.41 [PrepareSendEntry] Sending packet of 42 with NO offload
00000155 10.53.02 [PrepareSendEntry] Sending packet of 42 with NO offload
00000156 10.53.11 [PrepareSendEntry] Sending packet of 42 with NO offload
00000157 10.53.33 [PrepareSendEntry] Sending packet of 42 with NO offload
00000158 10.53.37 [PrepareSendEntry] Sending packet of 42 with NO offload
00000159 10.53.43 [PrepareSendEntry] Sending packet of 42 with NO offload
00000160 10.54.04 [PrepareSendEntry] Sending packet of 42 with NO offload
00000161 10.54.10 [PrepareSendEntry] Sending packet of 42 with NO offload
00000162 10.54.12 [PrepareSendEntry] Sending packet of 42 with NO offload
00000163 10.54.15 [PrepareSendEntry] Sending packet of 42 with NO offload
00000164 10.54.15 [PrepareSendEntry] Sending packet of 42 with NO offload
00000165 10.54.21 [PrepareSendEntry] Sending packet of 42 with NO offload
00000166 10.54.21 [PrepareSendEntry] Sending packet of 42 with NO offload
00000167 10.54.26 [PrepareSendEntry] Sending packet of 42 with NO offload
00000168 10.54.32 [PrepareSendEntry] Sending packet of 42 with NO offload
00000169 10.54.37 [PrepareSendEntry] Sending packet of 42 with NO offload
00000170 10.54.43 [PrepareSendEntry] Sending packet of 42 with NO offload
00000171 10.54.48 [PrepareSendEntry] Sending packet of 42 with NO offload
00000172 10.54.54 [PrepareSendEntry] Sending packet of 42 with NO offload
00000173 10.54.55 [PrepareSendEntry] Sending packet of 42 with NO offload
00000174 10.54.59 [PrepareSendEntry] Sending packet of 42 with NO offload
00000175 10.55.03 [PrepareSendEntry] Sending packet of 42 with NO offload
00000176 10.55.05 [PrepareSendEntry] Sending packet of 42 with NO offload
00000177 10.55.10 [PrepareSendEntry] Sending packet of 42 with NO offload
00000178 10.55.16 [PrepareSendEntry] Sending packet of 42 with NO offload
00000179 10.55.21 [PrepareSendEntry] Sending packet of 42 with NO offload
00000180 10.55.27 [PrepareSendEntry] Sending packet of 42 with NO offload
00000181 10.55.32 [PrepareSendEntry] Sending packet of 42 with NO offload
00000182 10.55.38 [PrepareSendEntry] Sending packet of 42 with NO offload
00000183 10.55.43 [PrepareSendEntry] Sending packet of 42 with NO offload
00000184 10.55.49 [PrepareSendEntry] Sending packet of 42 with NO offload
00000185 10.55.54 [PrepareSendEntry] Sending packet of 42 with NO offload
00000186 10.56.00 [PrepareSendEntry] Sending packet of 42 with NO offload
00000187 10.56.05 [PrepareSendEntry] Sending packet of 42 with NO offload
00000188 10.56.11 [PrepareSendEntry] Sending packet of 42 with NO offload
00000189 10.56.16 [PrepareSendEntry] Sending packet of 42 with NO offload
00000190 10.56.22 [PrepareSendEntry] Sending packet of 42 with NO offload
00000191 10.56.27 [PrepareSendEntry] Sending packet of 42 with NO offload
00000192 10.56.33 [PrepareSendEntry] Sending packet of 42 with NO offload
00000193 10.56.38 [PrepareSendEntry] Sending packet of 42 with NO offload
00000194 10.56.44 [PrepareSendEntry] Sending packet of 42 with NO offload
00000195 10.56.49 [PrepareSendEntry] Sending packet of 42 with NO offload
00000196 10.56.59 [PrepareSendEntry] Sending packet of 243 with NO offload
00000197 10.57.13 [PrepareSendEntry] Sending packet of 42 with NO offload
00000198 10.57.22 [PrepareSendEntry] Sending packet of 42 with NO offload
00000199 10.57.53 [PrepareSendEntry] Sending packet of 42 with NO offload
00000200 10.57.56 [PrepareSendEntry] Sending packet of 42 with NO offload
00000201 10.58.02 [PrepareSendEntry] Sending packet of 42 with NO offload
00000202 10.58.23 [PrepareSendEntry] Sending packet of 42 with NO offload
00000203 10.58.31 [PrepareSendEntry] Sending packet of 42 with NO offload
00000204 10.58.55 [PrepareSendEntry] Sending packet of 42 with NO offload
00000205 10.58.58 [PrepareSendEntry] Sending packet of 42 with NO offload
00000206 10.59.04 [PrepareSendEntry] Sending packet of 42 with NO offload
00000207 10.59.30 [PrepareSendEntry] Sending packet of 42 with NO offload
00000208 10.59.33 [PrepareSendEntry] Sending packet of 42 with NO offload
00000209 10.59.36 [PrepareSendEntry] Sending packet of 42 with NO offload
00000210 10.59.36 [PrepareSendEntry] Sending packet of 42 with NO offload
00000211 10.59.41 [PrepareSendEntry] Sending packet of 42 with NO offload
00000212 10.59.42 [PrepareSendEntry] Sending packet of 42 with NO offload
00000213 10.59.47 [PrepareSendEntry] Sending packet of 42 with NO offload
00000214 10.59.51 [PrepareSendEntry] Sending packet of 42 with NO offload
00000215 10.59.51 [ParaNdis_SetMulticastList] New multicast list of 6 bytes
00000216 10.59.51 [ParaNdis_CheckRxChecksum] TCPv4 packet IPCS not tested, checksum -
00000217 10.59.51 [ParaNdis_CheckRxChecksum] TCPv4 packet IPCS not tested, checksum -
00000218 10.59.51 [ParaNdis_CheckRxChecksum] TCPv4 packet IPCS not tested, checksum -
00000219 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000220 10.59.51 [ParaNdis_CheckRxChecksum] TCPv4 packet IPCS not tested, checksum -
00000221 10.59.51 [ParaNdis_CheckRxChecksum] TCPv4 packet IPCS not tested, checksum -
00000222 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000223 10.59.51 [ParaNdis_CheckRxChecksum] TCPv4 packet IPCS not tested, checksum -
00000224 10.59.51 [ParaNdis_CheckRxChecksum] TCPv4 packet IPCS not tested, checksum -
00000225 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000226 10.59.51 [ParaNdis_CheckRxChecksum] TCPv4 packet IPCS not tested, checksum -
00000227 10.59.51 [ParaNdis_CheckRxChecksum] TCPv4 packet IPCS not tested, checksum -
00000228 10.59.51 [ParaNdis_CheckRxChecksum] TCPv4 packet IPCS not tested, checksum -
00000229 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000230 10.59.51 [ParaNdis_CheckRxChecksum] TCPv4 packet IPCS not tested, checksum -
00000231 10.59.51 [ParaNdis_CheckRxChecksum] TCPv4 packet IPCS not tested, checksum -
00000232 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000233 10.59.51 [ParaNdis_CheckRxChecksum] TCPv4 packet IPCS not tested, checksum -
00000234 10.59.51 [ParaNdis_CheckRxChecksum] TCPv4 packet IPCS not tested, checksum -
00000235 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000236 10.59.51 [ParaNdis_CheckRxChecksum] TCPv4 packet IPCS not tested, checksum -
00000237 10.59.51 [ParaNdis_CheckRxChecksum] TCPv4 packet IPCS not tested, checksum -
00000238 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000239 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000240 10.59.51 [ParaNdis_CheckRxChecksum] TCPv4 packet IPCS not tested, checksum -
00000241 10.59.51 [ParaNdis_CheckRxChecksum] TCPv4 packet IPCS not tested, checksum -
00000242 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000243 10.59.51 [ParaNdis_CheckRxChecksum] TCPv4 packet IPCS not tested, checksum -
00000244 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000245 10.59.51 [ParaNdis_CheckRxChecksum] TCPv4 packet IPCS not tested, checksum -
00000246 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000247 10.59.51 [ParaNdis_CheckRxChecksum] TCPv4 packet IPCS not tested, checksum -
00000248 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000249 10.59.51 [ParaNdis_CheckRxChecksum] TCPv4 packet IPCS not tested, checksum -
00000250 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000251 10.59.51 [ParaNdis_CheckRxChecksum] UDPv4 packet IPCS not tested, checksum -
00000252 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000253 10.59.51 [ParaNdis_CheckRxChecksum] UDPv4 packet IPCS not tested, checksum -
00000254 10.59.51 [ParaNdis_CheckRxChecksum] TCPv4 packet IPCS not tested, checksum -
00000255 10.59.51 [ParaNdis_CheckRxChecksum] UDPv4 packet IPCS not tested, checksum -
00000256 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000257 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000258 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000259 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000260 10.59.51 [ParaNdis_CheckRxChecksum] UDPv4 packet IPCS not tested, checksum -
00000261 10.59.51 [ParaNdis_CheckRxChecksum] TCPv4 packet IPCS not tested, checksum -
00000262 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000263 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000264 10.59.51 [ParaNdis_CheckRxChecksum] TCPv4 packet IPCS not tested, checksum -
00000265 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000266 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000267 10.59.51 [ParaNdis_CheckRxChecksum] TCPv4 packet IPCS not tested, checksum -
00000268 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000269 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000270 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000271 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000272 10.59.51 [ParaNdis_CheckRxChecksum] TCPv4 packet IPCS not tested, checksum -
00000273 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000274 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000275 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000276 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000277 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000278 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000279 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000280 10.59.51 [ParaNdis_CheckRxChecksum] TCPv4 packet IPCS not tested, checksum -
00000281 10.59.51 [ParaNdis_CheckRxChecksum] TCPv4 packet IPCS not tested, checksum -
00000282 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000283 10.59.51 [ParaNdis_CheckRxChecksum] UDPv4 packet IPCS not tested, checksum -
00000284 10.59.51 [ParaNdis_CheckRxChecksum] TCPv4 packet IPCS not tested, checksum -
00000285 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000286 10.59.51 [ParaNdis_CheckRxChecksum] TCPv4 packet IPCS not tested, checksum -
00000287 10.59.51 [ParaNdis_CheckRxChecksum] TCPv4 packet IPCS not tested, checksum -
00000288 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000289 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000290 10.59.51 [ParaNdis_CheckRxChecksum] TCPv4 packet IPCS not tested, checksum -
00000291 10.59.51 [ParaNdis_CheckRxChecksum] TCPv4 packet IPCS not tested, checksum -
00000292 10.59.51 [ParaNdis_CheckRxChecksum] TCPv4 packet IPCS not tested, checksum -
00000293 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000294 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000295 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000296 10.59.51 [ParaNdis_CheckRxChecksum] TCPv4 packet IPCS not tested, checksum -
00000297 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000298 10.59.51 [ParaNdis_CheckRxChecksum] TCPv4 packet IPCS not tested, checksum -
00000299 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000300 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000301 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000302 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000303 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000304 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000305 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000306 10.59.51 [ParaNdis_CheckRxChecksum] TCPv4 packet IPCS not tested, checksum -
00000307 10.59.51 [ParaNdis_CheckRxChecksum] TCPv4 packet IPCS not tested, checksum -
00000308 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000309 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000310 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000311 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000312 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000313 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000314 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000315 10.59.51 [ParaNdis_CheckRxChecksum] TCPv4 packet IPCS not tested, checksum -
00000316 10.59.51 [ParaNdis_CheckRxChecksum] TCPv4 packet IPCS not tested, checksum -
00000317 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000318 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000319 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000320 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000321 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000322 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000323 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000324 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000325 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000326 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000327 10.59.51 [ParaNdis_CheckRxChecksum] TCPv4 packet IPCS not tested, checksum -
00000328 10.59.51 [ParaNdis_CheckRxChecksum] TCPv4 packet IPCS not tested, checksum -
00000329 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000330 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000331 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000332 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000333 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000334 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000335 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000336 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000337 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000338 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000339 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000340 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000341 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000342 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000343 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000344 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000345 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000346 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000347 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000348 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000349 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000350 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000351 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000352 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000353 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000354 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000355 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000356 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000357 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000358 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000359 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000360 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000361 10.59.51 [ParaNdis_CheckRxChecksum] TCPv4 packet IPCS not tested, checksum -
00000362 10.59.51 [ParaNdis_CheckRxChecksum] TCPv4 packet IPCS not tested, checksum -
00000363 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000364 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000365 10.59.51 [ParaNdis_CheckRxChecksum] TCPv4 packet IPCS not tested, checksum -
00000366 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000367 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000368 10.59.51 [ParaNdis_CheckRxChecksum] TCPv4 packet IPCS not tested, checksum -
00000369 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000370 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000371 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000372 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000373 10.59.51 [ParaNdis_CheckRxChecksum] TCPv4 packet IPCS not tested, checksum -
00000374 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000375 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000376 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000377 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000378 10.59.51 [ParaNdis_CheckRxChecksum] TCPv4 packet IPCS not tested, checksum -
00000379 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000380 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000381 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000382 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000383 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000384 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000385 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000386 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000387 10.59.51 [ParaNdis_CheckRxChecksum] TCPv4 packet IPCS not tested, checksum -
00000388 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000389 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000390 10.59.51 [ParaNdis_CheckRxChecksum] UDPv4 packet IPCS not tested, checksum -
00000391 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000392 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000393 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000394 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000395 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000396 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000397 10.59.51 [ParaNdis_CheckRxChecksum] TCPv4 packet IPCS not tested, checksum -
00000398 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000399 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000400 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000401 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000402 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000403 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000404 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000405 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000406 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000407 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000408 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000409 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000410 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000411 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000412 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000413 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000414 10.59.51 [ParaNdis_CheckRxChecksum] UDPv4 packet IPCS not tested, checksum -
00000415 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000416 10.59.51 [ParaNdis_CheckRxChecksum] TCPv4 packet IPCS not tested, checksum -
00000417 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000418 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000419 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000420 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000421 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000422 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000423 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000424 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000425 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000426 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000427 10.59.51 [ParaNdis_ProcessRxPath]0: received 211 buffers of max 1000
00000428 10.59.51 [PrepareSendEntry] Sending packet of 42 with NO offload
00000429 10.59.51 [PrepareSendEntry] Sending packet of 54 with NO offload
00000430 10.59.51 [PrepareSendEntry] Sending packet of 42 with NO offload
00000431 10.59.51 [PrepareSendEntry] Sending packet of 42 with NO offload
00000432 10.59.51 [PrepareSendEntry] Sending packet of 42 with NO offload
00000433 10.59.51 [PrepareSendEntry] Sending packet of 42 with NO offload
00000434 10.59.51 [PrepareSendEntry] Sending packet of 42 with NO offload
00000435 10.59.51 [PrepareSendEntry] Sending packet of 42 with NO offload
00000436 10.59.51 [PrepareSendEntry] Sending packet of 42 with NO offload
00000437 10.59.51 [PrepareSendEntry] Sending packet of 42 with NO offload
00000438 10.59.51 [PrepareSendEntry] Sending packet of 42 with NO offload
00000439 10.59.51 [PrepareSendEntry] Sending packet of 42 with NO offload
00000440 10.59.51 [PrepareSendEntry] Sending packet of 42 with NO offload
00000441 10.59.51 [PrepareSendEntry] Sending packet of 42 with NO offload
00000442 10.59.51 [PrepareSendEntry] Sending packet of 42 with NO offload
00000443 10.59.51 [PrepareSendEntry] Sending packet of 42 with NO offload
00000444 10.59.51 [PrepareSendEntry] Sending packet of 42 with NO offload
00000445 10.59.51 [PrepareSendEntry] Sending packet of 42 with NO offload
00000446 10.59.51 [PrepareSendEntry] Sending packet of 42 with NO offload
00000447 10.59.51 [PrepareSendEntry] Sending packet of 42 with NO offload
00000448 10.59.51 [PrepareSendEntry] Sending packet of 42 with NO offload
00000449 10.59.51 [PrepareSendEntry] Sending packet of 42 with NO offload
00000450 10.59.51 [PrepareSendEntry] Sending packet of 42 with NO offload
00000451 10.59.51 [PrepareSendEntry] Sending packet of 42 with NO offload
00000452 10.59.51 [PrepareSendEntry] Sending packet of 42 with NO offload
00000453 10.59.51 [PrepareSendEntry] Sending packet of 42 with NO offload
00000454 10.59.51 [PrepareSendEntry] Sending packet of 42 with NO offload
00000455 10.59.51 [PrepareSendEntry] Sending packet of 42 with NO offload
00000456 10.59.51 [PrepareSendEntry] Sending packet of 42 with NO offload
00000457 10.59.51 [PrepareSendEntry] Sending packet of 42 with NO offload
00000458 10.59.51 [PrepareSendEntry] Sending packet of 42 with NO offload
00000459 10.59.51 [PrepareSendEntry] Sending packet of 42 with NO offload
00000460 10.59.51 [PrepareSendEntry] Sending packet of 42 with NO offload
00000461 10.59.51 [PrepareSendEntry] Sending packet of 42 with NO offload
00000462 10.59.51 [PrepareSendEntry] Sending packet of 42 with NO offload
00000463 10.59.51 [PrepareSendEntry] Sending packet of 42 with NO offload
00000464 10.59.51 [PrepareSendEntry] Sending packet of 42 with NO offload
00000465 10.59.51 [PrepareSendEntry] Sending packet of 42 with NO offload
00000466 10.59.51 [PrepareSendEntry] Sending packet of 42 with NO offload
00000467 10.59.51 [PrepareSendEntry] Sending packet of 42 with NO offload
00000468 10.59.51 [PrepareSendEntry] Sending packet of 42 with NO offload
00000469 10.59.51 [PrepareSendEntry] Sending packet of 42 with NO offload
00000470 10.59.51 [PrepareSendEntry] Sending packet of 42 with NO offload
00000471 10.59.51 [PrepareSendEntry] Sending packet of 42 with NO offload
00000472 10.59.51 [PrepareSendEntry] Sending packet of 42 with NO offload
00000473 10.59.51 [PrepareSendEntry] Sending packet of 42 with NO offload
00000474 10.59.51 [PrepareSendEntry] Sending packet of 42 with NO offload
00000475 10.59.51 [PrepareSendEntry] Sending packet of 42 with NO offload
00000476 10.59.51 [PrepareSendEntry] Sending packet of 42 with NO offload
00000477 10.59.51 [PrepareSendEntry] Sending packet of 42 with NO offload
00000478 10.59.51 [PrepareSendEntry] Sending packet of 42 with NO offload
00000479 10.59.51 [PrepareSendEntry] Sending packet of 42 with NO offload
00000480 10.59.51 [PrepareSendEntry] Sending packet of 42 with NO offload
00000481 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000482 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000483 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000484 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000485 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000486 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000487 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000488 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000489 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000490 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000491 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000492 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000493 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000494 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000495 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000496 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000497 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000498 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000499 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000500 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000501 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000502 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000503 10.59.51 [ParaNdis_CheckRxChecksum] TCPv4 packet IPCS not tested, checksum -
00000504 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000505 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000506 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000507 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000508 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000509 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000510 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000511 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000512 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000513 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000514 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000515 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000516 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000517 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000518 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000519 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000520 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000521 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000522 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000523 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000524 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000525 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000526 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000527 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000528 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000529 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000530 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000531 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000532 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000533 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000534 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000535 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000536 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000537 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000538 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000539 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000540 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000541 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000542 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000543 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000544 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000545 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000546 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000547 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000548 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000549 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000550 10.59.51 [ParaNdis_CheckRxChecksum] UDPv4 packet IPCS not tested, checksum -
00000551 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000552 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000553 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000554 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000555 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000556 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000557 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000558 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000559 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000560 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000561 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000562 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000563 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000564 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000565 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000566 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000567 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000568 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000569 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000570 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000571 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000572 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000573 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000574 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000575 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000576 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000577 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000578 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000579 10.59.51 [ParaNdis_CheckRxChecksum] UDPv4 packet IPCS not tested, checksum -
00000580 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000581 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000582 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000583 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000584 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000585 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000586 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000587 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000588 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000589 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000590 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000591 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000592 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000593 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000594 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000595 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000596 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000597 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000598 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000599 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000600 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000601 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000602 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000603 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000604 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000605 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000606 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000607 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000608 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000609 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000610 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000611 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000612 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000613 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000614 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000615 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000616 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000617 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000618 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000619 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000620 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000621 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000622 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000623 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000624 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000625 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000626 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000627 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000628 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000629 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000630 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000631 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000632 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000633 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000634 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000635 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000636 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000637 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000638 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000639 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000640 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000641 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000642 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000643 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000644 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000645 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000646 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000647 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000648 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000649 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000650 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000651 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000652 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000653 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000654 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000655 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000656 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000657 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000658 10.59.51 [ParaNdis_CheckRxChecksum] TCPv4 packet IPCS not tested, checksum -
00000659 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000660 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000661 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000662 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000663 10.59.51 [ParaNdis_CheckRxChecksum] IP packet IPCS not tested, checksum -
00000664 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000665 10.59.51 [ParaNdis_CheckRxChecksum] TCPv4 packet IPCS not tested, checksum -
00000666 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000667 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000668 10.59.51 [ParaNdis_CheckRxChecksum] IP packet IPCS not tested, checksum -
00000669 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000670 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000671 10.59.51 [ParaNdis_CheckRxChecksum] IP packet IPCS not tested, checksum -
00000672 10.59.51 [ParaNdis_CheckRxChecksum] TCPv4 packet IPCS not tested, checksum -
00000673 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000674 10.59.51 [ParaNdis_CheckRxChecksum] UDPv4 packet IPCS not tested, checksum -
00000675 10.59.51 [ParaNdis_CheckRxChecksum] UDPv4 packet IPCS not tested, checksum -
00000676 10.59.51 [ParaNdis_CheckRxChecksum] IP packet IPCS not tested, checksum -
00000677 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000678 10.59.51 [ParaNdis_CheckRxChecksum] UDPv4 packet IPCS not tested, checksum -
00000679 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000680 10.59.51 [ParaNdis_CheckRxChecksum] UDPv4 packet IPCS not tested, checksum -
00000681 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000682 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000683 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000684 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000685 10.59.51 [ParaNdis_ProcessRxPath]0: received 204 buffers of max 789
00000686 10.59.51 [PrepareSendEntry] Sending packet of 42 with NO offload
00000687 10.59.51 [PrepareSendEntry] Sending packet of 42 with NO offload
00000688 10.59.51 [PrepareSendEntry] Sending packet of 42 with NO offload
00000689 10.59.51 [PrepareSendEntry] Sending packet of 42 with NO offload
00000690 10.59.51 [PrepareSendEntry] Sending packet of 42 with NO offload
00000691 10.59.51 [PrepareSendEntry] Sending packet of 42 with NO offload
00000692 10.59.51 [PrepareSendEntry] Sending packet of 42 with NO offload
00000693 10.59.51 [PrepareSendEntry] Sending packet of 42 with NO offload
00000694 10.59.51 [PrepareSendEntry] Sending packet of 42 with NO offload
00000695 10.59.51 [PrepareSendEntry] Sending packet of 42 with NO offload
00000696 10.59.51 [PrepareSendEntry] Sending packet of 42 with NO offload
00000697 10.59.51 [PrepareSendEntry] Sending packet of 42 with NO offload
00000698 10.59.51 [PrepareSendEntry] Sending packet of 42 with NO offload
00000699 10.59.51 [PrepareSendEntry] Sending packet of 42 with NO offload
00000700 10.59.51 [PrepareSendEntry] Sending packet of 42 with NO offload
00000701 10.59.51 [PrepareSendEntry] Sending packet of 42 with NO offload
00000702 10.59.51 [PrepareSendEntry] Sending packet of 42 with NO offload
00000703 10.59.51 [PrepareSendEntry] Sending packet of 42 with NO offload
00000704 10.59.51 [PrepareSendEntry] Sending packet of 42 with NO offload
00000705 10.59.51 [PrepareSendEntry] Sending packet of 42 with NO offload
00000706 10.59.51 [PrepareSendEntry] Sending packet of 42 with NO offload
00000707 10.59.51 [PrepareSendEntry] Sending packet of 42 with NO offload
00000708 10.59.51 [PrepareSendEntry] Sending packet of 42 with NO offload
00000709 10.59.51 [PrepareSendEntry] Sending packet of 42 with NO offload
00000710 10.59.51 [PrepareSendEntry] Sending packet of 42 with NO offload
00000711 10.59.51 [PrepareSendEntry] Sending packet of 42 with NO offload
00000712 10.59.51 [PrepareSendEntry] Sending packet of 42 with NO offload
00000713 10.59.51 [PrepareSendEntry] Sending packet of 42 with NO offload
00000714 10.59.51 [PrepareSendEntry] Sending packet of 42 with NO offload
00000715 10.59.51 [PrepareSendEntry] Sending packet of 42 with NO offload
00000716 10.59.51 [PrepareSendEntry] Sending packet of 42 with NO offload
00000717 10.59.51 [PrepareSendEntry] Sending packet of 42 with NO offload
00000718 10.59.51 [PrepareSendEntry] Sending packet of 42 with NO offload
00000719 10.59.51 [PrepareSendEntry] Sending packet of 42 with NO offload
00000720 10.59.51 [PrepareSendEntry] Sending packet of 42 with NO offload
00000721 10.59.51 [PrepareSendEntry] Sending packet of 42 with NO offload
00000722 10.59.51 [PrepareSendEntry] Sending packet of 42 with NO offload
00000723 10.59.51 [PrepareSendEntry] Sending packet of 42 with NO offload
00000724 10.59.51 [PrepareSendEntry] Sending packet of 42 with NO offload
00000725 10.59.51 [PrepareSendEntry] Sending packet of 42 with NO offload
00000726 10.59.51 [PrepareSendEntry] Sending packet of 42 with NO offload
00000727 10.59.51 [PrepareSendEntry] Sending packet of 42 with NO offload
00000728 10.59.51 [PrepareSendEntry] Sending packet of 42 with NO offload
00000729 10.59.51 [PrepareSendEntry] Sending packet of 42 with NO offload
00000730 10.59.51 [PrepareSendEntry] Sending packet of 42 with NO offload
00000731 10.59.51 [PrepareSendEntry] Sending packet of 42 with NO offload
00000732 10.59.51 [PrepareSendEntry] Sending packet of 42 with NO offload
00000733 10.59.51 [PrepareSendEntry] Sending packet of 42 with NO offload
00000734 10.59.51 [PrepareSendEntry] Sending packet of 42 with NO offload
00000735 10.59.51 [PrepareSendEntry] Sending packet of 42 with NO offload
00000736 10.59.51 [PrepareSendEntry] Sending packet of 42 with NO offload
00000737 10.59.51 [PrepareSendEntry] Sending packet of 42 with NO offload
00000738 10.59.51 [PrepareSendEntry] Sending packet of 42 with NO offload
00000739 10.59.51 [PrepareSendEntry] Sending packet of 42 with NO offload
00000740 10.59.51 [PrepareSendEntry] Sending packet of 42 with NO offload
00000741 10.59.51 [PrepareSendEntry] Sending packet of 42 with NO offload
00000742 10.59.51 [PrepareSendEntry] Sending packet of 42 with NO offload
00000743 10.59.51 [PrepareSendEntry] Sending packet of 42 with NO offload
00000744 10.59.51 [PrepareSendEntry] Sending packet of 42 with NO offload
00000745 10.59.51 [PrepareSendEntry] Sending packet of 42 with NO offload
00000746 10.59.51 [PrepareSendEntry] Sending packet of 42 with NO offload
00000747 10.59.51 [PrepareSendEntry] Sending packet of 42 with NO offload
00000748 10.59.51 [PrepareSendEntry] Sending packet of 42 with NO offload
00000749 10.59.51 [PrepareSendEntry] Sending packet of 42 with NO offload
00000750 10.59.51 [PrepareSendEntry] Sending packet of 42 with NO offload
00000751 10.59.51 [PrepareSendEntry] Sending packet of 42 with NO offload
00000752 10.59.51 [PrepareSendEntry] Sending packet of 42 with NO offload
00000753 10.59.51 [PrepareSendEntry] Sending packet of 42 with NO offload
00000754 10.59.51 [PrepareSendEntry] Sending packet of 42 with NO offload
00000755 10.59.51 [PrepareSendEntry] Sending packet of 42 with NO offload
00000756 10.59.51 [PrepareSendEntry] Sending packet of 42 with NO offload
00000757 10.59.51 [PrepareSendEntry] Sending packet of 42 with NO offload
00000758 10.59.51 [PrepareSendEntry] Sending packet of 42 with NO offload
00000759 10.59.51 [PrepareSendEntry] Sending packet of 42 with NO offload
00000760 10.59.51 [PrepareSendEntry] Sending packet of 42 with NO offload
00000761 10.59.51 [PrepareSendEntry] Sending packet of 42 with NO offload
00000762 10.59.51 [PrepareSendEntry] Sending packet of 110 with NO offload
00000763 10.59.51 [PrepareSendEntry] Sending packet of 42 with NO offload
00000764 10.59.51 [PrepareSendEntry] Sending packet of 42 with NO offload
00000765 10.59.51 [PrepareSendEntry] Sending packet of 42 with NO offload
00000766 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000767 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000768 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000769 10.59.51 [ParaNdis_CheckRxChecksum] TCPv4 packet IPCS not tested, checksum -
00000770 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000771 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000772 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000773 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000774 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000775 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000776 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000777 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000778 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000779 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000780 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000781 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000782 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000783 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000784 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000785 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000786 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000787 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000788 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000789 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000790 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000791 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000792 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000793 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000794 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000795 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000796 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000797 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000798 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000799 10.59.51 [ParaNdis_CheckRxChecksum] UDPv4 packet IPCS not tested, checksum -
00000800 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000801 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000802 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000803 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000804 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000805 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000806 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000807 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000808 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000809 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000810 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000811 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000812 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000813 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000814 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000815 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000816 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000817 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000818 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000819 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000820 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000821 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000822 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000823 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000824 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000825 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000826 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000827 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000828 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000829 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000830 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000831 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000832 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000833 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000834 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000835 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000836 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000837 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000838 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000839 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000840 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000841 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000842 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000843 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000844 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000845 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000846 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000847 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000848 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000849 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000850 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000851 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000852 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000853 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000854 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000855 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000856 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000857 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000858 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000859 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000860 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000861 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000862 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000863 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000864 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000865 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000866 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000867 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000868 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000869 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000870 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000871 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000872 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000873 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000874 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000875 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000876 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000877 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000878 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000879 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000880 10.59.51 [ParaNdis_CheckRxChecksum] TCPv4 packet IPCS not tested, checksum -
00000881 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000882 10.59.51 [ParaNdis_CheckRxChecksum] TCPv4 packet IPCS not tested, checksum -
00000883 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000884 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000885 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000886 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000887 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000888 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000889 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000890 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000891 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000892 10.59.51 [ParaNdis_CheckRxChecksum] TCPv4 packet IPCS not tested, checksum -
00000893 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000894 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000895 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000896 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000897 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000898 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000899 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000900 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000901 10.59.51 [ParaNdis_CheckRxChecksum] UDPv4 packet IPCS not tested, checksum -
00000902 10.59.51 [ParaNdis_CheckRxChecksum] UDPv4 packet IPCS not tested, checksum -
00000903 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000904 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000905 10.59.51 [ParaNdis_CheckRxChecksum] UDPv4 packet IPCS not tested, checksum -
00000906 10.59.51 [ParaNdis_CheckRxChecksum] UDPv4 packet IPCS not tested, checksum -
00000907 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000908 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000909 10.59.51 [ParaNdis_CheckRxChecksum] UDPv4 packet IPCS not tested, checksum -
00000910 10.59.51 [ParaNdis_CheckRxChecksum] UDPv4 packet IPCS not tested, checksum -
00000911 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000912 10.59.51 [ParaNdis_CheckRxChecksum] TCPv4 packet IPCS not tested, checksum -
00000913 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000914 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000915 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000916 10.59.51 [ParaNdis_CheckRxChecksum] UDPv4 packet IPCS not tested, checksum -
00000917 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000918 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000919 10.59.51 [ParaNdis_CheckRxChecksum] TCPv4 packet IPCS not tested, checksum -
00000920 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000921 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000922 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000923 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000924 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000925 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000926 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000927 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000928 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000929 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000930 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000931 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000932 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000933 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000934 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000935 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000936 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000937 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000938 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000939 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000940 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000941 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000942 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000943 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000944 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000945 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000946 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000947 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000948 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000949 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000950 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000951 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000952 10.59.51 [ParaNdis_CheckRxChecksum] TCPv4 packet IPCS not tested, checksum -
00000953 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000954 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000955 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000956 10.59.51 [ParaNdis_CheckRxChecksum] TCPv4 packet IPCS not tested, checksum -
00000957 10.59.51 [ParaNdis_CheckRxChecksum] IP packet IPCS not tested, checksum -
00000958 10.59.51 [ParaNdis_CheckRxChecksum] IP packet IPCS not tested, checksum -
00000959 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000960 10.59.51 [ParaNdis_CheckRxChecksum] TCPv4 packet IPCS not tested, checksum -
00000961 10.59.51 [ParaNdis_CheckRxChecksum] IP packet IPCS not tested, checksum -
00000962 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000963 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00000964 10.59.51 [ParaNdis_ProcessRxPath]0: received 198 buffers of max 585
00000965 10.59.51 [PrepareSendEntry] Sending packet of 42 with NO offload
00000966 10.59.51 [PrepareSendEntry] Sending packet of 42 with NO offload
00000967 10.59.51 [PrepareSendEntry] Sending packet of 42 with NO offload
00000968 10.59.51 [PrepareSendEntry] Sending packet of 42 with NO offload
00000969 10.59.51 [PrepareSendEntry] Sending packet of 42 with NO offload
00000970 10.59.51 [PrepareSendEntry] Sending packet of 42 with NO offload
00000971 10.59.51 [PrepareSendEntry] Sending packet of 42 with NO offload
00000972 10.59.51 [PrepareSendEntry] Sending packet of 42 with NO offload
00000973 10.59.51 [PrepareSendEntry] Sending packet of 42 with NO offload
00000974 10.59.51 [PrepareSendEntry] Sending packet of 42 with NO offload
00000975 10.59.51 [PrepareSendEntry] Sending packet of 42 with NO offload
00000976 10.59.51 [PrepareSendEntry] Sending packet of 42 with NO offload
00000977 10.59.51 [PrepareSendEntry] Sending packet of 42 with NO offload
00000978 10.59.51 [PrepareSendEntry] Sending packet of 42 with NO offload
00000979 10.59.51 [PrepareSendEntry] Sending packet of 42 with NO offload
00000980 10.59.51 [PrepareSendEntry] Sending packet of 42 with NO offload
00000981 10.59.51 [PrepareSendEntry] Sending packet of 42 with NO offload
00000982 10.59.51 [PrepareSendEntry] Sending packet of 42 with NO offload
00000983 10.59.51 [PrepareSendEntry] Sending packet of 42 with NO offload
00000984 10.59.51 [PrepareSendEntry] Sending packet of 42 with NO offload
00000985 10.59.51 [PrepareSendEntry] Sending packet of 42 with NO offload
00000986 10.59.51 [PrepareSendEntry] Sending packet of 42 with NO offload
00000987 10.59.51 [PrepareSendEntry] Sending packet of 42 with NO offload
00000988 10.59.51 [PrepareSendEntry] Sending packet of 42 with NO offload
00000989 10.59.51 [PrepareSendEntry] Sending packet of 42 with NO offload
00000990 10.59.51 [PrepareSendEntry] Sending packet of 42 with NO offload
00000991 10.59.51 [PrepareSendEntry] Sending packet of 42 with NO offload
00000992 10.59.51 [PrepareSendEntry] Sending packet of 42 with NO offload
00000993 10.59.51 [PrepareSendEntry] Sending packet of 42 with NO offload
00000994 10.59.51 [PrepareSendEntry] Sending packet of 42 with NO offload
00000995 10.59.51 [PrepareSendEntry] Sending packet of 42 with NO offload
00000996 10.59.51 [PrepareSendEntry] Sending packet of 42 with NO offload
00000997 10.59.51 [PrepareSendEntry] Sending packet of 42 with NO offload
00000998 10.59.51 [PrepareSendEntry] Sending packet of 42 with NO offload
00000999 10.59.51 [PrepareSendEntry] Sending packet of 42 with NO offload
00001000 10.59.51 [PrepareSendEntry] Sending packet of 42 with NO offload
00001001 10.59.51 [PrepareSendEntry] Sending packet of 42 with NO offload
00001002 10.59.51 [PrepareSendEntry] Sending packet of 42 with NO offload
00001003 10.59.51 [PrepareSendEntry] Sending packet of 42 with NO offload
00001004 10.59.51 [PrepareSendEntry] Sending packet of 42 with NO offload
00001005 10.59.51 [PrepareSendEntry] Sending packet of 42 with NO offload
00001006 10.59.51 [PrepareSendEntry] Sending packet of 42 with NO offload
00001007 10.59.51 [PrepareSendEntry] Sending packet of 42 with NO offload
00001008 10.59.51 [PrepareSendEntry] Sending packet of 42 with NO offload
00001009 10.59.51 [PrepareSendEntry] Sending packet of 42 with NO offload
00001010 10.59.51 [PrepareSendEntry] Sending packet of 42 with NO offload
00001011 10.59.51 [PrepareSendEntry] Sending packet of 42 with NO offload
00001012 10.59.51 [PrepareSendEntry] Sending packet of 42 with NO offload
00001013 10.59.51 [PrepareSendEntry] Sending packet of 42 with NO offload
00001014 10.59.51 [PrepareSendEntry] Sending packet of 78 with NO offload
00001015 10.59.51 [PrepareSendEntry] Sending packet of 42 with NO offload
00001016 10.59.51 [PrepareSendEntry] Sending packet of 42 with NO offload
00001017 10.59.51 [PrepareSendEntry] Sending packet of 54 with NO offload
00001018 10.59.51 [PrepareSendEntry] Sending packet of 42 with NO offload
00001019 10.59.51 [PrepareSendEntry] Sending packet of 42 with NO offload
00001020 10.59.51 [PrepareSendEntry] Sending packet of 42 with NO offload
00001021 10.59.51 [PrepareSendEntry] Sending packet of 42 with NO offload
00001022 10.59.51 [PrepareSendEntry] Sending packet of 42 with NO offload
00001023 10.59.51 [PrepareSendEntry] Sending packet of 42 with NO offload
00001024 10.59.51 [PrepareSendEntry] Sending packet of 42 with NO offload
00001025 10.59.51 [PrepareSendEntry] Sending packet of 42 with NO offload
00001026 10.59.51 [PrepareSendEntry] Sending packet of 78 with NO offload
00001027 10.59.51 [PrepareSendEntry] Sending packet of 110 with NO offload
00001028 10.59.51 [PrepareSendEntry] Sending packet of 110 with NO offload
00001029 10.59.51 [PrepareSendEntry] Sending packet of 110 with NO offload
00001030 10.59.51 [PrepareSendEntry] Sending packet of 42 with NO offload
00001031 10.59.51 [ParaNdis_CheckRxChecksum] IP packet IPCS not tested, checksum -
00001032 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00001033 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00001034 10.59.51 [ParaNdis_CheckRxChecksum] TCPv4 packet IPCS not tested, checksum -
00001035 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00001036 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00001037 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00001038 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00001039 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00001040 10.59.51 [ParaNdis_CheckRxChecksum] TCPv4 packet IPCS not tested, checksum -
00001041 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00001042 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00001043 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00001044 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00001045 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00001046 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00001047 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00001048 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00001049 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00001050 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00001051 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00001052 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00001053 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00001054 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00001055 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00001056 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00001057 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00001058 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00001059 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00001060 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00001061 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00001062 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00001063 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00001064 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00001065 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00001066 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00001067 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00001068 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00001069 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00001070 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00001071 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00001072 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00001073 10.59.51 [ParaNdis_CheckRxChecksum] UDPv4 packet IPCS not tested, checksum -
00001074 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00001075 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00001076 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00001077 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00001078 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00001079 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00001080 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00001081 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00001082 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00001083 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00001084 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00001085 10.59.51 [ParaNdis_CheckRxChecksum] UDPv4 packet IPCS not tested, checksum -
00001086 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00001087 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00001088 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00001089 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00001090 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00001091 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00001092 10.59.51 [ParaNdis_CheckRxChecksum] UDPv4 packet IPCS not tested, checksum -
00001093 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00001094 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00001095 10.59.51 [ParaNdis_CheckRxChecksum] TCPv4 packet IPCS not tested, checksum -
00001096 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00001097 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00001098 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00001099 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00001100 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00001101 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00001102 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00001103 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00001104 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00001105 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00001106 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00001107 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00001108 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00001109 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00001110 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00001111 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00001112 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00001113 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00001114 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00001115 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00001116 10.59.51 [ParaNdis_CheckRxChecksum] UDPv4 packet IPCS not tested, checksum -
00001117 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00001118 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00001119 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00001120 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00001121 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00001122 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00001123 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00001124 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00001125 10.59.51 [ParaNdis_CheckRxChecksum] TCPv4 packet IPCS not tested, checksum -
00001126 10.59.51 [ParaNdis_CheckRxChecksum] IP packet IPCS not tested, checksum -
00001127 10.59.51 [ParaNdis_CheckRxChecksum] IP packet IPCS not tested, checksum -
00001128 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00001129 10.59.51 [ParaNdis_CheckRxChecksum] TCPv4 packet IPCS not tested, checksum -
00001130 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00001131 10.59.51 [ParaNdis_CheckRxChecksum] UDPv4 packet IPCS not tested, checksum -
00001132 10.59.51 [ParaNdis_CheckRxChecksum] UDPv4 packet IPCS not tested, checksum -
00001133 10.59.51 [ParaNdis_CheckRxChecksum] UDPv4 packet IPCS not tested, checksum -
00001134 10.59.51 [ParaNdis_CheckRxChecksum] IP packet IPCS not tested, checksum -
00001135 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00001136 10.59.51 [ParaNdis_CheckRxChecksum] UDPv4 packet IPCS not tested, checksum -
00001137 10.59.51 [ParaNdis_CheckRxChecksum] UDPv4 packet IPCS not tested, checksum -
00001138 10.59.51 [ParaNdis_CheckRxChecksum] UDPv4 packet IPCS not tested, checksum -
00001139 10.59.51 [ParaNdis_CheckRxChecksum] IP packet IPCS not tested, checksum -
00001140 10.59.51 [ParaNdis_CheckRxChecksum] UDPv4 packet IPCS not tested, checksum -
00001141 10.59.51 [ParaNdis_CheckRxChecksum] UDPv4 packet IPCS not tested, checksum -
00001142 10.59.51 [ParaNdis_CheckRxChecksum] UDPv4 packet IPCS not tested, checksum -
00001143 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00001144 10.59.51 [ParaNdis_CheckRxChecksum] TCPv4 packet IPCS not tested, checksum -
00001145 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00001146 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00001147 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00001148 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00001149 10.59.51 [ParaNdis_CheckRxChecksum] TCPv4 packet IPCS not tested, checksum -
00001150 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00001151 10.59.51 [ParaNdis_CheckRxChecksum] TCPv4 packet IPCS not tested, checksum -
00001152 10.59.51 [ParaNdis_CheckRxChecksum] UDPv4 packet IPCS not tested, checksum -
00001153 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00001154 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00001155 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00001156 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00001157 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00001158 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00001159 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00001160 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00001161 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00001162 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00001163 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00001164 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00001165 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00001166 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00001167 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00001168 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00001169 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00001170 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00001171 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00001172 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00001173 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00001174 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00001175 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00001176 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00001177 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00001178 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00001179 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00001180 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00001181 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00001182 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00001183 10.59.51 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00001184 10.59.51 [ParaNdis_CheckRxChecksum] TCPv4 packet IPCS not tested, checksum -
00001185 10.59.51 [ParaNdis_ProcessRxPath]0: received 154 buffers of max 387
00001186 10.59.51 [PrepareSendEntry] Sending packet of 110 with NO offload
00001187 10.59.51 [PrepareSendEntry] Sending packet of 42 with NO offload
00001188 10.59.51 [PrepareSendEntry] Sending packet of 42 with NO offload
00001189 10.59.51 [PrepareSendEntry] Sending packet of 42 with NO offload
00001190 10.59.51 [PrepareSendEntry] Sending packet of 42 with NO offload
00001191 10.59.51 [PrepareSendEntry] Sending packet of 42 with NO offload
00001192 10.59.51 [PrepareSendEntry] Sending packet of 42 with NO offload
00001193 10.59.51 [PrepareSendEntry] Sending packet of 42 with NO offload
00001194 10.59.51 [PrepareSendEntry] Sending packet of 42 with NO offload
00001195 10.59.51 [PrepareSendEntry] Sending packet of 42 with NO offload
00001196 10.59.51 [PrepareSendEntry] Sending packet of 42 with NO offload
00001197 10.59.51 [PrepareSendEntry] Sending packet of 42 with NO offload
00001198 10.59.51 [PrepareSendEntry] Sending packet of 42 with NO offload
00001199 10.59.51 [PrepareSendEntry] Sending packet of 42 with NO offload
00001200 10.59.51 [PrepareSendEntry] Sending packet of 78 with NO offload
00001201 10.59.51 [PrepareSendEntry] Sending packet of 110 with NO offload
00001202 10.59.51 [PrepareSendEntry] Sending packet of 110 with NO offload
00001203 10.59.51 [PrepareSendEntry] Sending packet of 110 with NO offload
00001204 10.59.51 [PrepareSendEntry] Sending packet of 110 with NO offload
00001205 10.59.51 [PrepareSendEntry] Sending packet of 42 with NO offload
00001206 10.59.51 [PrepareSendEntry] Sending packet of 54 with NO offload
00001207 10.59.51 [PrepareSendEntry] Sending packet of 42 with NO offload
00001208 10.59.51 [PrepareSendEntry] Sending packet of 42 with NO offload
00001209 10.59.51 [PrepareSendEntry] Sending packet of 42 with NO offload
00001210 10.59.51 [PrepareSendEntry] Sending packet of 42 with NO offload
00001211 10.59.51 [PrepareSendEntry] Sending packet of 42 with NO offload
00001212 10.59.51 [PrepareSendEntry] Sending packet of 42 with NO offload
00001213 10.59.51 [PrepareSendEntry] Sending packet of 42 with NO offload
00001214 10.59.51 [PrepareSendEntry] Sending packet of 42 with NO offload
00001215 10.59.51 [PrepareSendEntry] Sending packet of 42 with NO offload
00001216 10.59.51 [PrepareSendEntry] Sending packet of 42 with NO offload
00001217 10.59.51 [PrepareSendEntry] Sending packet of 42 with NO offload
00001218 10.59.51 [ParaNdis_CheckRxChecksum] TCPv4 packet IPCS not tested, checksum -
00001219 10.59.51 [ParaNdis_ProcessRxPath]0: received 1 buffers of max 233
00001220 10.59.52 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00001221 10.59.52 [ParaNdis_ProcessRxPath]0: received 1 buffers of max 1000
00001222 10.59.52 [ParaNdis_OnSetPacketFilter] PACKET FILTER SET TO 0
00001223 10.59.52 [ParaNdis5_Halt]=>
00001224 10.59.52 [ParaNdis5_StopSend]=>
00001225 10.59.52 [ParaNdis_ResetVirtIONetDevice] Done
00001226 10.59.52 [VirtIONetRelease]=>
00001227 10.59.52 [Diag!55] RX buffers at VIRTIO 256 of 256
00001228 10.59.52 [Diag!] TX desc available 128/128, buf 256/min. 43
00001229 10.59.52 [Diag!] Bytes transmitted 565236619, received 186876003
00001230 10.59.52 [Diag!] Tx frames 616539, CSO 0, LSO 0, indirect 0
00001231 10.59.52 [Diag!] Rx frames 848805, Rx.Pri 0, RxHwCS.OK 0, FiltOut 319588
00001232 10.59.52 [ParaNdis5_Halt]<=0x0
00001233 10.59.52 [ParaVirtualNICUnload]=>
00001234 10.59.55 [ParaNdis_DebugInitialize] Crash callback registered
00001235 10.59.55 [DriverEntry]=>
00001236 10.59.55 [Jun 19 2013 04:43:49]
00001237 10.59.55 [ParaNdis_InitializeContext]=>
00001238 10.59.55 [ParaNdis_OpenNICConfiguration]<=0x0
00001239 10.59.55 Found IO ports at 0000C060(32)
00001240 10.59.55 Found Interrupt vector 10, level 10, affinity FFFFFFFF, flags 0
00001241 10.59.55 [ParaNdis_ResetVirtIONetDevice] Done
00001242 10.59.55 VirtIO Host Feature VIRTIO_NET_F_MAC
00001243 10.59.55 VirtIO Host Feature VIRTIO_NET_F_GSO
00001244 10.59.55 VirtIO Host Feature VIRTIO_NET_F_MRG_RXBUF
00001245 10.59.55 VirtIO Host Feature VIRTIO_NET_F_STATUS
00001246 10.59.55 VirtIO Host Feature VIRTIO_NET_F_CTRL_VQ
00001247 10.59.55 VirtIO Host Feature VIRTIO_NET_F_CTRL_RX
00001248 10.59.55 VirtIO Host Feature VIRTIO_NET_F_CTRL_VLAN
00001249 10.59.55 VirtIO Host Feature VIRTIO_NET_F_CTRL_RX_EXTRA
00001250 10.59.55 VirtIO Host Feature VIRTIO_F_INDIRECT
00001251 10.59.55 VirtIO Host Feature VIRTIO_F_PUBLISH_INDICES
00001252 10.59.55 [ParaNdis_InitializeContext] Link status on driver startup: 1
00001253 10.59.55 Device MAC = ce-da-0c-00-00-55
00001254 10.59.55 [ParaNdis_InitializeContext] Warning: Host does not support TSOv4
00001255 10.59.55 [ParaNdis_InitializeContext] Warning: Host does not support TSOv6
00001256 10.59.55 [ParaNdis_InitializeContext] Using hardware packet filtering
00001257 10.59.55 [ParaNdis_InitializeContext]<=0x0
00001258 10.59.55 [ParaNdis_FinishInitialization]=>
00001259 10.59.55 W.1=TCPCS failed
00001260 10.59.55 W.2=UDPCS failed
00001261 10.59.55 W.4=IPCS failed
00001262 10.59.55 W.8=TCPCS OK
00001263 10.59.55 W.10=UDPCS OK
00001264 10.59.55 W.20=IPCS OK
00001265 10.59.55 C.1=TCPCS failed
00001266 10.59.55 C.2=UDPCS failed
00001267 10.59.55 C.4=IPCS failed
00001268 10.59.55 C.8=TCPCS OK
00001269 10.59.55 C.10=UDPCS OK
00001270 10.59.55 C.20=IPCS OK
00001271 10.59.55 [ParaNdis_VirtIONetInit]=>
00001272 10.59.55 VirtIODeviceQueryQueueAllocation: queue 0 requires 0x4000 for 256 entries
00001273 10.59.55 VirtIODeviceQueryQueueAllocation: queue 1 requires 0x4000 for 256 entries
00001274 10.59.55 VirtIODeviceQueryQueueAllocation: queue 1 requires 0x4000 for 256 entries
00001275 10.59.55 Creating new virtqueue>>> size 256, pages FFFFFADF6A9E7000
00001276 10.59.55 [VirtIODevicePrepareQueue] queue phys.address 00000000:0ebe7000, pfn ebe7
00001277 10.59.55 Creating new virtqueue>>> size 256, pages FFFFFADF69794000
00001278 10.59.55 [VirtIODevicePrepareQueue] queue phys.address 00000000:0d994000, pfn d994
00001279 10.59.55 _VirtIODeviceQueryQueueAllocation: queue 2 is not supported
00001280 10.59.55 [VirtIODevicePrepareQueue] FAILED (num 0x0, size 0x4000, addr 0.E16B000)
00001281 10.59.55 [PrepareTransmitBuffers] available 128 Tx descriptors, 256 hw buffers
00001282 10.59.55 [PrepareReceiveBuffers] MaxReceiveBuffers 256
00001283 10.59.55 [ParaNdis_VirtIONetInit] The Control vQueue does not work!
00001284 10.59.55 [ParaNdis_FinishInitialization]<=0x0
00001285 10.59.55 Indicating disconnect
00001286 10.59.55 Indicating connect
00001287 10.59.55 [ParaNdis5_Initialize]<=0x0
00001288 10.59.55 [ParaNdis_OnPnPEvent]=>
00001289 10.59.55 [ParaNdis_OnPnPEvent] (NdisDevicePnPEventPowerProfileChanged)
00001290 10.59.55 [ParaNdis5_QueryOID], id 0xFC010201(OID_TCP_TASK_OFFLOAD) of 28
00001291 10.59.55 [ParseOffload](query enter), format 2
00001292 10.59.55 [ParseOffload], header version 1, ip header at 14, fixed 1, first at 0
00001293 10.59.55 [ParaNdis5_QueryOID] , id 0xFC010201(OID_TCP_TASK_OFFLOAD) (C0010017), written 0, needed 0
00001294 10.59.55 [ParaNdis5_SetOID], id 0x10118(00010118) of 26
00001295 10.59.55 [ParaNdis5_SetOID] , id 0x10118(00010118) (C00000BB), read 0, needed 0
00001296 10.59.55 [ParaNdis_OnSetPacketFilter] PACKET FILTER SET TO b
00001297 10.59.55 [PrepareSendEntry] Sending packet of 42 with NO offload
00001298 10.59.55 [ParaNdis_SetMulticastList] New multicast list of 6 bytes
00001299 10.59.55 [PrepareSendEntry] Sending packet of 42 with NO offload
00001300 10.59.55 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00001301 10.59.55 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00001302 10.59.55 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00001303 10.59.55 [ParaNdis_CheckRxChecksum] UDPv4 packet IPCS not tested, checksum -
00001304 10.59.55 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00001305 10.59.55 [ParaNdis_ProcessRxPath]0: received 5 buffers of max 1000
00001306 10.59.55 [PrepareSendEntry] Sending packet of 74 with NO offload
00001307 10.59.55 [ParaNdis_CheckRxChecksum] IP packet IPCS not tested, checksum -
00001308 10.59.55 [ParaNdis_ProcessRxPath]0: received 1 buffers of max 1000
00001309 10.59.55 [PrepareSendEntry] Sending packet of 110 with NO offload
00001310 10.59.55 [ParaNdis_SetMulticastList] New multicast list of 12 bytes
00001311 10.59.55 [ParaNdis5_QueryOID], id 0xD010206(0D010206) of 7
00001312 10.59.55 [ParaNdis5_QueryOID] , id 0xD010206(0D010206) (C00000BB), written 0, needed 0
00001313 10.59.55 [ParaNdis5_QueryOID], id 0xD010206(0D010206) of 7
00001314 10.59.55 [ParaNdis5_QueryOID] , id 0xD010206(0D010206) (C00000BB), written 0, needed 0
00001315 10.59.55 [ParaNdis5_QueryOID], id 0xD010102(0D010102) of 39
00001316 10.59.55 [ParaNdis5_QueryOID] , id 0xD010102(0D010102) (C00000BB), written 0, needed 0
00001317 10.59.55 [ParaNdis5_QueryOID], id 0xD010206(0D010206) of 7
00001318 10.59.55 [ParaNdis5_QueryOID] , id 0xD010206(0D010206) (C00000BB), written 0, needed 0
00001319 10.59.55 [ParaNdis5_QueryOID], id 0xD010102(0D010102) of 39
00001320 10.59.55 [ParaNdis5_QueryOID] , id 0xD010102(0D010102) (C00000BB), written 0, needed 0
00001321 10.59.55 [ParaNdis5_QueryOID], id 0xD010102(0D010102) of 39
00001322 10.59.55 [ParaNdis5_QueryOID] , id 0xD010102(0D010102) (C00000BB), written 0, needed 0
00001323 10.59.56 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00001324 10.59.56 [ParaNdis_ProcessRxPath]0: received 1 buffers of max 1000
00001325 10.59.56 [PrepareSendEntry] Sending packet of 89 with NO offload
00001326 10.59.56 [ParaNdis_CheckRxChecksum] UDPv4 packet IPCS not tested, checksum -
00001327 10.59.56 [ParaNdis_ProcessRxPath]0: received 1 buffers of max 1000
00001328 10.59.56 [PrepareSendEntry] Sending packet of 78 with NO offload
00001329 10.59.56 [ParaNdis_CheckRxChecksum] UDPv4 packet IPCS not tested, checksum -
00001330 10.59.56 [ParaNdis_ProcessRxPath]0: received 1 buffers of max 1000
00001331 10.59.56 [PrepareSendEntry] Sending packet of 143 with NO offload
00001332 10.59.56 [ParaNdis_CheckRxChecksum] UDPv4 packet IPCS not tested, checksum -
00001333 10.59.56 [ParaNdis_ProcessRxPath]0: received 1 buffers of max 1000
00001334 10.59.56 [PrepareSendEntry] Sending packet of 110 with NO offload
00001335 10.59.56 [PrepareSendEntry] Sending packet of 42 with NO offload
00001336 10.59.56 [PrepareSendEntry] Sending packet of 74 with NO offload
00001337 10.59.56 [ParaNdis_CheckRxChecksum] IP packet IPCS not tested, checksum -
00001338 10.59.56 [ParaNdis_ProcessRxPath]0: received 1 buffers of max 1000
00001339 10.59.57 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00001340 10.59.57 [ParaNdis_ProcessRxPath]0: received 1 buffers of max 1000
00001341 10.59.57 [PrepareSendEntry] Sending packet of 110 with NO offload
00001342 10.59.57 [PrepareSendEntry] Sending packet of 42 with NO offload
00001343 10.59.57 [PrepareSendEntry] Sending packet of 74 with NO offload
00001344 10.59.57 [ParaNdis_CheckRxChecksum] IP packet IPCS not tested, checksum -
00001345 10.59.57 [ParaNdis_ProcessRxPath]0: received 1 buffers of max 1000
00001346 10.59.57 [PrepareSendEntry] Sending packet of 110 with NO offload
00001347 10.59.58 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00001348 10.59.58 [ParaNdis_ProcessRxPath]0: received 1 buffers of max 1000
00001349 10.59.58 [PrepareSendEntry] Sending packet of 74 with NO offload
00001350 10.59.58 [ParaNdis_CheckRxChecksum] IP packet IPCS not tested, checksum -
00001351 10.59.58 [ParaNdis_ProcessRxPath]0: received 1 buffers of max 1000
00001352 10.59.58 [PrepareSendEntry] Sending packet of 110 with NO offload
00001353 10.59.59 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00001354 10.59.59 [ParaNdis_ProcessRxPath]0: received 1 buffers of max 1000
00001355 10.59.59 [PrepareSendEntry] Sending packet of 110 with NO offload
00001356 10.59.59 [PrepareSendEntry] Sending packet of 74 with NO offload
00001357 10.59.59 [ParaNdis_CheckRxChecksum] IP packet IPCS not tested, checksum -
00001358 10.59.59 [ParaNdis_ProcessRxPath]0: received 1 buffers of max 1000
00001359 11.00.00 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00001360 11.00.00 [ParaNdis_ProcessRxPath]0: received 1 buffers of max 1000
00001361 11.00.00 [PrepareSendEntry] Sending packet of 110 with NO offload
00001362 11.00.00 [PrepareSendEntry] Sending packet of 42 with NO offload
00001363 11.00.00 [PrepareSendEntry] Sending packet of 78 with NO offload
00001364 11.00.00 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00001365 11.00.00 [ParaNdis_ProcessRxPath]0: received 1 buffers of max 1000
00001366 11.00.00 [PrepareSendEntry] Sending packet of 78 with NO offload
00001367 11.00.00 [ParaNdis_CheckRxChecksum] TCPv4 packet IPCS not tested, checksum -
00001368 11.00.00 [ParaNdis_ProcessRxPath]0: received 1 buffers of max 1000
00001369 11.00.00 [PrepareSendEntry] Sending packet of 74 with NO offload
00001370 11.00.00 [ParaNdis_CheckRxChecksum] IP packet IPCS not tested, checksum -
00001371 11.00.00 [ParaNdis_ProcessRxPath]0: received 1 buffers of max 1000
00001372 11.00.00 [PrepareSendEntry] Sending packet of 110 with NO offload
00001373 11.00.01 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00001374 11.00.01 [ParaNdis_ProcessRxPath]0: received 1 buffers of max 1000
00001375 11.00.01 [PrepareSendEntry] Sending packet of 74 with NO offload
00001376 11.00.01 [ParaNdis_CheckRxChecksum] IP packet IPCS not tested, checksum -
00001377 11.00.01 [ParaNdis_ProcessRxPath]0: received 1 buffers of max 1000
00001378 11.00.01 [PrepareSendEntry] Sending packet of 110 with NO offload
00001379 11.00.01 [PrepareSendEntry] Sending packet of 110 with NO offload
00001380 11.00.02 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00001381 11.00.02 [ParaNdis_ProcessRxPath]0: received 1 buffers of max 1000
00001382 11.00.02 [PrepareSendEntry] Sending packet of 110 with NO offload
00001383 11.00.02 [PrepareSendEntry] Sending packet of 110 with NO offload
00001384 11.00.02 [PrepareSendEntry] Sending packet of 74 with NO offload
00001385 11.00.02 [ParaNdis_CheckRxChecksum] IP packet IPCS not tested, checksum -
00001386 11.00.02 [ParaNdis_ProcessRxPath]0: received 1 buffers of max 1000
00001387 11.00.03 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00001388 11.00.03 [ParaNdis_ProcessRxPath]0: received 1 buffers of max 1000
00001389 11.00.03 [PrepareSendEntry] Sending packet of 110 with NO offload
00001390 11.00.03 [PrepareSendEntry] Sending packet of 110 with NO offload
00001391 11.00.03 [PrepareSendEntry] Sending packet of 74 with NO offload
00001392 11.00.03 [ParaNdis_CheckRxChecksum] IP packet IPCS not tested, checksum -
00001393 11.00.03 [ParaNdis_ProcessRxPath]0: received 1 buffers of max 1000
00001394 11.00.03 [PrepareSendEntry] Sending packet of 110 with NO offload
00001395 11.00.03 [PrepareSendEntry] Sending packet of 110 with NO offload
00001396 11.00.03 [ParaNdis_CheckRxChecksum] TCPv4 packet IPCS not tested, checksum -
00001397 11.00.03 [ParaNdis_ProcessRxPath]0: received 1 buffers of max 1000
00001398 11.00.03 [PrepareSendEntry] Sending packet of 78 with NO offload
00001399 11.00.03 [ParaNdis_CheckRxChecksum] TCPv4 packet IPCS not tested, checksum -
00001400 11.00.03 [ParaNdis_ProcessRxPath]0: received 1 buffers of max 1000
00001401 11.00.03 [ParaNdis_CheckRxChecksum] TCPv4 packet IPCS not tested, checksum -
00001402 11.00.03 [ParaNdis_ProcessRxPath]0: received 1 buffers of max 1000
00001403 11.00.03 [PrepareSendEntry] Sending packet of 187 with NO offload
00001404 11.00.03 [ParaNdis_CheckRxChecksum] TCPv4 packet IPCS not tested, checksum -
00001405 11.00.03 [ParaNdis_CheckRxChecksum] TCPv4 packet IPCS not tested, checksum -
00001406 11.00.03 [ParaNdis_ProcessRxPath]0: received 2 buffers of max 1000
00001407 11.00.03 [PrepareSendEntry] Sending packet of 261 with NO offload
00001408 11.00.03 [ParaNdis_CheckRxChecksum] TCPv4 packet IPCS not tested, checksum -
00001409 11.00.03 [ParaNdis_ProcessRxPath]0: received 1 buffers of max 1000
00001410 11.00.03 [PrepareSendEntry] Sending packet of 132 with NO offload
00001411 11.00.03 [ParaNdis_CheckRxChecksum] TCPv4 packet IPCS not tested, checksum -
00001412 11.00.03 [ParaNdis_ProcessRxPath]0: received 1 buffers of max 1000
00001413 11.00.03 [PrepareSendEntry] Sending packet of 134 with NO offload
00001414 11.00.03 [ParaNdis_CheckRxChecksum] TCPv4 packet IPCS not tested, checksum -
00001415 11.00.03 [ParaNdis_ProcessRxPath]0: received 1 buffers of max 1000
00001416 11.00.03 [PrepareSendEntry] Sending packet of 146 with NO offload
00001417 11.00.03 [ParaNdis_CheckRxChecksum] TCPv4 packet IPCS not tested, checksum -
00001418 11.00.03 [ParaNdis_ProcessRxPath]0: received 1 buffers of max 1000
00001419 11.00.03 [PrepareSendEntry] Sending packet of 210 with NO offload
00001420 11.00.03 [ParaNdis_CheckRxChecksum] TCPv4 packet IPCS not tested, checksum -
00001421 11.00.03 [ParaNdis_ProcessRxPath]0: received 1 buffers of max 1000
00001422 11.00.03 [PrepareSendEntry] Sending packet of 210 with NO offload
00001423 11.00.03 [ParaNdis_CheckRxChecksum] TCPv4 packet IPCS not tested, checksum -
00001424 11.00.03 [ParaNdis_ProcessRxPath]0: received 1 buffers of max 1000
00001425 11.00.03 [PrepareSendEntry] Sending packet of 138 with NO offload
00001426 11.00.03 [ParaNdis_CheckRxChecksum] TCPv4 packet IPCS not tested, checksum -
00001427 11.00.03 [ParaNdis_ProcessRxPath]0: received 1 buffers of max 1000
00001428 11.00.04 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00001429 11.00.04 [ParaNdis_ProcessRxPath]0: received 1 buffers of max 1000
00001430 11.00.04 [PrepareSendEntry] Sending packet of 74 with NO offload
00001431 11.00.04 [ParaNdis_CheckRxChecksum] IP packet IPCS not tested, checksum -
00001432 11.00.04 [ParaNdis_ProcessRxPath]0: received 1 buffers of max 1000
00001433 11.00.04 [PrepareSendEntry] Sending packet of 227 with NO offload
00001434 11.00.04 [PrepareSendEntry] Sending packet of 243 with NO offload
00001435 11.00.05 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00001436 11.00.05 [ParaNdis_ProcessRxPath]0: received 1 buffers of max 1000
00001437 11.00.05 [PrepareSendEntry] Sending packet of 74 with NO offload
00001438 11.00.05 [ParaNdis_CheckRxChecksum] IP packet IPCS not tested, checksum -
00001439 11.00.05 [ParaNdis_ProcessRxPath]0: received 1 buffers of max 1000
00001440 11.00.06 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00001441 11.00.06 [ParaNdis_ProcessRxPath]0: received 1 buffers of max 1000
00001442 11.00.06 [PrepareSendEntry] Sending packet of 227 with NO offload
00001443 11.00.06 [PrepareSendEntry] Sending packet of 74 with NO offload
00001444 11.00.06 [ParaNdis_CheckRxChecksum] IP packet IPCS not tested, checksum -
00001445 11.00.06 [ParaNdis_ProcessRxPath]0: received 1 buffers of max 1000
00001446 11.00.07 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00001447 11.00.07 [ParaNdis_ProcessRxPath]0: received 1 buffers of max 1000
00001448 11.00.07 [PrepareSendEntry] Sending packet of 74 with NO offload
00001449 11.00.07 [ParaNdis_CheckRxChecksum] IP packet IPCS not tested, checksum -
00001450 11.00.07 [ParaNdis_ProcessRxPath]0: received 1 buffers of max 1000
00001451 11.00.07 [PrepareSendEntry] Sending packet of 227 with NO offload
00001452 11.00.08 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00001453 11.00.08 [ParaNdis_ProcessRxPath]0: received 1 buffers of max 1000
00001454 11.00.08 [PrepareSendEntry] Sending packet of 74 with NO offload
00001455 11.00.08 [ParaNdis_CheckRxChecksum] IP packet IPCS not tested, checksum -
00001456 11.00.08 [ParaNdis_ProcessRxPath]0: received 1 buffers of max 1000
00001457 11.00.09 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00001458 11.00.09 [ParaNdis_ProcessRxPath]0: received 1 buffers of max 1000
00001459 11.00.09 [PrepareSendEntry] Sending packet of 227 with NO offload
00001460 11.00.09 [PrepareSendEntry] Sending packet of 74 with NO offload
00001461 11.00.09 [ParaNdis_CheckRxChecksum] IP packet IPCS not tested, checksum -
00001462 11.00.09 [ParaNdis_ProcessRxPath]0: received 1 buffers of max 1000
00001463 11.00.10 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00001464 11.00.10 [ParaNdis_ProcessRxPath]0: received 1 buffers of max 1000
00001465 11.00.10 [ParaNdis_CheckRxChecksum] UDPv4 packet IPCS not tested, checksum -
00001466 11.00.10 [ParaNdis_ProcessRxPath]0: received 1 buffers of max 1000
00001467 11.00.10 [PrepareSendEntry] Sending packet of 74 with NO offload
00001468 11.00.10 [ParaNdis_CheckRxChecksum] IP packet IPCS not tested, checksum -
00001469 11.00.10 [ParaNdis_ProcessRxPath]0: received 1 buffers of max 1000
00001470 11.00.10 [PrepareSendEntry] Sending packet of 239 with NO offload
00001471 11.00.11 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00001472 11.00.11 [ParaNdis_ProcessRxPath]0: received 1 buffers of max 1000
00001473 11.00.11 [ParaNdis_CheckRxChecksum] TCPv4 packet IPCS not tested, checksum -
00001474 11.00.11 [ParaNdis_ProcessRxPath]0: received 1 buffers of max 1000
00001475 11.00.11 [PrepareSendEntry] Sending packet of 78 with NO offload
00001476 11.00.11 [ParaNdis_CheckRxChecksum] TCPv4 packet IPCS not tested, checksum -
00001477 11.00.11 [ParaNdis_ProcessRxPath]0: received 1 buffers of max 1000
00001478 11.00.11 [PrepareSendEntry] Sending packet of 74 with NO offload
00001479 11.00.11 [ParaNdis_CheckRxChecksum] IP packet IPCS not tested, checksum -
00001480 11.00.11 [ParaNdis_ProcessRxPath]0: received 1 buffers of max 1000
00001481 11.00.11 [PrepareSendEntry] Sending packet of 239 with NO offload
00001482 11.00.12 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00001483 11.00.12 [ParaNdis_ProcessRxPath]0: received 1 buffers of max 1000
00001484 11.00.12 [PrepareSendEntry] Sending packet of 74 with NO offload
00001485 11.00.12 [ParaNdis_CheckRxChecksum] IP packet IPCS not tested, checksum -
00001486 11.00.12 [ParaNdis_ProcessRxPath]0: received 1 buffers of max 1000
00001487 11.00.12 [PrepareSendEntry] Sending packet of 239 with NO offload
00001488 11.00.13 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00001489 11.00.13 [ParaNdis_ProcessRxPath]0: received 1 buffers of max 1000
00001490 11.00.13 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00001491 11.00.13 [ParaNdis_ProcessRxPath]0: received 1 buffers of max 1000
00001492 11.00.13 [PrepareSendEntry] Sending packet of 74 with NO offload
00001493 11.00.13 [ParaNdis_CheckRxChecksum] IP packet IPCS not tested, checksum -
00001494 11.00.13 [ParaNdis_ProcessRxPath]0: received 1 buffers of max 1000
00001495 11.00.13 [PrepareSendEntry] Sending packet of 239 with NO offload
00001496 11.00.14 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00001497 11.00.14 [ParaNdis_ProcessRxPath]0: received 1 buffers of max 1000
00001498 11.00.14 [PrepareSendEntry] Sending packet of 74 with NO offload
00001499 11.00.14 [ParaNdis_CheckRxChecksum] IP packet IPCS not tested, checksum -
00001500 11.00.14 [ParaNdis_ProcessRxPath]0: received 1 buffers of max 1000
00001501 11.00.14 [PrepareSendEntry] Sending packet of 110 with NO offload
00001502 11.00.15 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00001503 11.00.15 [ParaNdis_ProcessRxPath]0: received 1 buffers of max 1000
00001504 11.00.15 [PrepareSendEntry] Sending packet of 110 with NO offload
00001505 11.00.15 [PrepareSendEntry] Sending packet of 74 with NO offload
00001506 11.00.15 [ParaNdis_CheckRxChecksum] IP packet IPCS not tested, checksum -
00001507 11.00.15 [ParaNdis_ProcessRxPath]0: received 1 buffers of max 1000
00001508 11.00.16 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00001509 11.00.16 [ParaNdis_ProcessRxPath]0: received 1 buffers of max 1000
00001510 11.00.16 [PrepareSendEntry] Sending packet of 110 with NO offload
00001511 11.00.16 [PrepareSendEntry] Sending packet of 74 with NO offload
00001512 11.00.16 [ParaNdis_CheckRxChecksum] IP packet IPCS not tested, checksum -
00001513 11.00.16 [ParaNdis_ProcessRxPath]0: received 1 buffers of max 1000
00001514 11.00.16 [PrepareSendEntry] Sending packet of 110 with NO offload
00001515 11.00.17 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00001516 11.00.17 [ParaNdis_ProcessRxPath]0: received 1 buffers of max 1000
00001517 11.00.17 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00001518 11.00.17 [ParaNdis_ProcessRxPath]0: received 1 buffers of max 1000
00001519 11.00.17 [PrepareSendEntry] Sending packet of 74 with NO offload
00001520 11.00.17 [ParaNdis_CheckRxChecksum] IP packet IPCS not tested, checksum -
00001521 11.00.17 [ParaNdis_ProcessRxPath]0: received 1 buffers of max 1000
00001522 11.00.17 [PrepareSendEntry] Sending packet of 110 with NO offload
00001523 11.00.18 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00001524 11.00.18 [ParaNdis_ProcessRxPath]0: received 1 buffers of max 1000
00001525 11.00.18 [PrepareSendEntry] Sending packet of 110 with NO offload
00001526 11.00.19 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00001527 11.00.19 [ParaNdis_ProcessRxPath]0: received 1 buffers of max 1000
00001528 11.00.19 [PrepareSendEntry] Sending packet of 110 with NO offload
00001529 11.00.19 [PrepareSendEntry] Sending packet of 110 with NO offload
00001530 11.00.20 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00001531 11.00.20 [ParaNdis_ProcessRxPath]0: received 1 buffers of max 1000
00001532 11.00.20 [PrepareSendEntry] Sending packet of 227 with NO offload
00001533 11.00.20 [PrepareSendEntry] Sending packet of 227 with NO offload
00001534 11.00.20 [PrepareSendEntry] Sending packet of 257 with NO offload
00001535 11.00.21 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00001536 11.00.21 [ParaNdis_ProcessRxPath]0: received 1 buffers of max 1000
00001537 11.00.22 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00001538 11.00.22 [ParaNdis_ProcessRxPath]0: received 1 buffers of max 1000
00001539 11.00.23 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00001540 11.00.23 [ParaNdis_ProcessRxPath]0: received 1 buffers of max 1000
00001541 11.00.24 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00001542 11.00.24 [ParaNdis_ProcessRxPath]0: received 1 buffers of max 1000
00001543 11.00.25 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00001544 11.00.25 [ParaNdis_ProcessRxPath]0: received 1 buffers of max 1000
00001545 11.00.25 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00001546 11.00.25 [ParaNdis_ProcessRxPath]0: received 1 buffers of max 1000
00001547 11.00.26 [ParaNdis_CheckRxChecksum] not tested packet IPCS not tested, checksum -
00001548 11.00.26 [ParaNdis_ProcessRxPath]0: received 1 buffers of max 1000
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [Qemu-devel] virtio-net: network stops responding in Win2k3 server
@ 2014-02-06 8:05 ing. Mario De Chenno
0 siblings, 0 replies; 6+ messages in thread
From: ing. Mario De Chenno @ 2014-02-06 8:05 UTC (permalink / raw)
To: Yan Vugenfirer; +Cc: qemu-devel list
[-- Attachment #1.1: Type: text/plain, Size: 5697 bytes --]
Still having problems, even after upgrading to latest virtio-win
driver: DriverVer=11/20/2013,52.65.104.7400
NIC stops responding, and I often need to power off and back on the vm,
since disabling the affected nic within Windows does not always solve the
problem.
tap setting are the same as before.
ethtool -k tap-cineca-serv
Offload parameters for tap-cineca-serv:
rx-checksumming: off
tx-checksumming: off
scatter-gather: off
tcp-segmentation-offload: off
udp-fragmentation-offload: off
generic-segmentation-offload: off
generic-receive-offload: on
large-receive-offload: off
rx-vlan-offload: off
tx-vlan-offload: off
ntuple-filters: off
receive-hashing: off
Debugview logs are attached end are always the same (now with debug level
set to 4)
Please tell me how I can further give information. The issue is very
annoying.
Mario
2013-12-12 ing. Mario De Chenno <mario.dechenno@unina2.it>:
> Hi all, it happened again, but not on the win32 machine I was talking
> before. In that I changed the driver to e1000 and it's up from more than 18
> days, never seen that before!
>
> Today the affected machine is a Win2k3 R2 SP2 x64 server, with all updates
> (before today's) applied. Virtio-net driver is 52.65.104.6500 19/06/2013,
> loglevel is set to 6.
>
> Qemu startup parameters are as before (one nic this time):
> qemu-system-x86_64 -enable-kvm -machine type=pc,accel=kvm -cpu kvm64 -rtc
> base=localtime -drive file=/vmstore/vm_disks/cineca-service.img,if=virtio
> -net nic,model=virtio,macaddr=CE:DA:0C:00:00:55 -net
> tap,script=br224-ifup,vhost=on,ifname=tap-cineca-service -vnc :55 -m 6144
> -boot c -k it -usbdevice tablet -name cineca-service -daemonize
>
> Offload parameters for tap-cineca-serv:
> rx-checksumming: off
> tx-checksumming: off
> scatter-gather: off
> tcp-segmentation-offload: off
> udp-fragmentation-offload: off
> generic-segmentation-offload: off
> generic-receive-offload: on
> large-receive-offload: off
> rx-vlan-offload: off
> tx-vlan-offload: off
> ntuple-filters: off
> receive-hashing: off
>
> The network interface (IP: 10.224.4.55) has just stopped responding. I now
> run ping -t 10.224.4.1 (to the local gateway) from inside the virtual
> machine and I get "request timeout".
>
> on the tap interface of the host server:
>
> > tcpdump -n -i tap-cineca-serv
> tcpdump: WARNING: tap-cineca-serv: no IPv4 address assigned
> tcpdump: verbose output suppressed, use -v or -vv for full protocol decode
> listening on tap-cineca-serv, link-type EN10MB (Ethernet), capture size
> 65535 bytes
> 10:54:06.986752 ARP, Request who-has 10.224.4.1 tell 10.224.4.55, length 28
> 10:54:12.312851 ARP, Request who-has 10.224.4.1 tell 10.224.4.55, length 28
> 10:54:14.736914 ARP, Request who-has 10.224.4.197 tell 10.224.4.55, length
> 28
> 10:54:17.781544 ARP, Request who-has 10.224.4.197 tell 10.224.4.55, length
> 28
> 10:54:17.812755 ARP, Request who-has 10.224.4.1 tell 10.224.4.55, length 28
> 10:54:23.312894 ARP, Request who-has 10.224.4.1 tell 10.224.4.55, length 28
> 10:54:23.797236 ARP, Request who-has 10.224.4.197 tell 10.224.4.55, length
> 28
> 10:54:28.812902 ARP, Request who-has 10.224.4.1 tell 10.224.4.55, length 28
> 10:54:34.312949 ARP, Request who-has 10.224.4.1 tell 10.224.4.55, length 28
> 10:54:39.812811 ARP, Request who-has 10.224.4.1 tell 10.224.4.55, length 28
> 10:54:45.312855 ARP, Request who-has 10.224.4.1 tell 10.224.4.55, length 28
> 10:54:50.813006 ARP, Request who-has 10.224.4.1 tell 10.224.4.55, length 28
>
>
> Debugview log attached.
>
> You can see, until row 00000214, a lot of "[PrepareSendEntry] Sending
> packet of 42 with NO offload" entries, while I was pinging the gateway.
> Then, from inside Windows' device manager, I disable and re-enable the
> virtio network interface and network return working as usual.
> This machine had network working continously for about 10-12 days.
>
> Hope to see news from you. I will make more checks if you ask me what to
> do.
>
> Regards,
> Mario
>
>
>
> 2013/11/26 ing. Mario De Chenno <mario.dechenno@unina2.it>
>
> Since it's a production machine, I had to try a remedy first: I changed
>> one network card (pub, of course) to e1000 and now it's up from 62 hours
>> (maybe a record!)
>>
>> Here is the output for the other card (virtio): I guess parameters should
>> have been the same for the affected interface too (they are now the same
>> for the tap interface connected to e1000 driver, and reflect the underlying
>> physical interface).
>>
>> Offload parameters for tap-solariconsi:
>> rx-checksumming: off
>> tx-checksumming: off
>> scatter-gather: off
>> tcp-segmentation-offload: off
>> udp-fragmentation-offload: off
>> generic-segmentation-offload: off
>> generic-receive-offload: on
>> large-receive-offload: off
>>
>> I cannot switch back the virtual nic just now. I will try to increase
>> debug on other machines, but most are 64bit Win2k3 OSs, so the virtio-net
>> driver is not the same (it's a 64bit version at least...).
>> Soon or later I will have some debug data to report to the list. In the
>> meantime if you have some configuration advises, feel free to post them.
>>
>> Thanks,
>>
>> Mario
>>
>>
>> 2013/11/24 Yan Vugenfirer <yvugenfi@redhat.com>
>>
>>> Hi Mario,
>>>
>>> Can you check the offload settings of the tap device that is connected
>>> to guest?
>>>
>>> Run "ethtool -k tap-solaripub".
>>>
>>> On the guest. Raise the log verbosity by going to device manager ->
>>> NetKVM device -> Advanced tab -> Logging.Level and changing it to 4. Use
>>> DebugView to record the driver tracing (enable kernel trace):
>>> http://technet.microsoft.com/en-us/sysinternals/bb896647.aspx
>>>
>>>
>>> Best regards,
>>> Yan.
>>>
>>>
>>>
>>>
>
>
> --
>
>
[-- Attachment #1.2: Type: text/html, Size: 9086 bytes --]
[-- Attachment #2: log1.log --]
[-- Type: text/x-log, Size: 1277 bytes --]
00000001 8.18.31 [PrepareSendEntry] Sending packet of 257 with NO offload
00000002 8.19.02 [PrepareSendEntry] Sending packet of 42 with NO offload
00000003 8.19.07 [PrepareSendEntry] Sending packet of 42 with NO offload
00000004 8.19.08 [PrepareSendEntry] Sending packet of 42 with NO offload
00000005 8.19.13 [PrepareSendEntry] Sending packet of 42 with NO offload
00000006 8.19.16 [PrepareSendEntry] Sending packet of 42 with NO offload
00000007 8.19.19 [PrepareSendEntry] Sending packet of 42 with NO offload
00000008 8.19.28 [PrepareSendEntry] Sending packet of 42 with NO offload
00000009 8.19.31 [PrepareSendEntry] Sending packet of 257 with NO offload
00000010 8.19.32 [PrepareSendEntry] Sending packet of 42 with NO offload
00000011 8.19.38 [PrepareSendEntry] Sending packet of 42 with NO offload
00000012 8.19.48 [PrepareSendEntry] Sending packet of 42 with NO offload
00000013 8.19.50 [PrepareSendEntry] Sending packet of 42 with NO offload
00000014 8.19.51 [PrepareSendEntry] Sending packet of 42 with NO offload
00000015 8.19.53 [PrepareSendEntry] Sending packet of 42 with NO offload
00000016 8.19.57 [PrepareSendEntry] Sending packet of 42 with NO offload
00000017 8.19.59 [PrepareSendEntry] Sending packet of 42 with NO offload
[-- Attachment #3: log2.log --]
[-- Type: text/x-log, Size: 1953 bytes --]
00000001 8.20.56 [PrepareSendEntry] Sending packet of 257 with NO offload
00000002 8.21.08 [PrepareSendEntry] Sending packet of 42 with NO offload
00000003 8.21.08 [PrepareSendEntry] Sending packet of 92 with NO offload
00000004 8.21.09 [PrepareSendEntry] Sending packet of 92 with NO offload
00000005 8.21.10 [PrepareSendEntry] Sending packet of 92 with NO offload
00000006 8.21.12 [PrepareSendEntry] Sending packet of 42 with NO offload
00000007 8.21.16 [PrepareSendEntry] Sending packet of 42 with NO offload
00000008 8.21.48 [PrepareSendEntry] Sending packet of 42 with NO offload
00000009 8.21.52 [PrepareSendEntry] Sending packet of 42 with NO offload
00000010 8.21.55 [PrepareSendEntry] Sending packet of 42 with NO offload
00000011 8.21.56 [PrepareSendEntry] Sending packet of 257 with NO offload
00000012 8.21.57 [PrepareSendEntry] Sending packet of 42 with NO offload
00000013 8.21.59 [PrepareSendEntry] Sending packet of 42 with NO offload
00000014 8.22.03 [PrepareSendEntry] Sending packet of 42 with NO offload
00000015 8.22.05 [PrepareSendEntry] Sending packet of 42 with NO offload
00000016 8.23.30 [PrepareSendEntry] Sending packet of 42 with NO offload
00000017 8.23.32 [PrepareSendEntry] Sending packet of 42 with NO offload
00000018 8.23.33 [PrepareSendEntry] Sending packet of 42 with NO offload
00000019 8.23.35 [PrepareSendEntry] Sending packet of 42 with NO offload
00000020 8.23.39 [PrepareSendEntry] Sending packet of 42 with NO offload
00000021 8.23.41 [PrepareSendEntry] Sending packet of 42 with NO offload
00000022 8.26.56 [PrepareSendEntry] Sending packet of 257 with NO offload
00000023 8.28.51 [PrepareSendEntry] Sending packet of 42 with NO offload
00000024 8.28.54 [PrepareSendEntry] Sending packet of 42 with NO offload
00000025 8.28.56 [PrepareSendEntry] Sending packet of 42 with NO offload
00000026 8.29.00 [PrepareSendEntry] Sending packet of 42 with NO offload
^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2014-02-06 8:05 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-11-22 17:28 [Qemu-devel] virtio-net: network stops responding in Win2k3 server Mario De Chenno
2013-11-24 13:59 ` Yan Vugenfirer
2013-11-26 13:01 ` ing. Mario De Chenno
2013-12-12 10:36 ` ing. Mario De Chenno
-- strict thread matches above, loose matches on Subject: below --
2014-02-06 8:05 ing. Mario De Chenno
2013-11-20 16:11 ing. Mario De Chenno
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).