Lines Matching defs:packets
43 unsigned long packets;
109 /* Some packets can be still in per-cpu cache, but not more than
112 packets = netcnt.packets;
115 if (percpu_netcnt[cpu].packets > MAX_PERCPU_PACKETS) {
117 percpu_netcnt[cpu].packets);
121 packets += percpu_netcnt[cpu].packets;
125 /* No packets should be lost */
126 if (packets != 10000) {
127 printf("Unexpected packet count: %lu\n", packets);
131 /* Let's check that bytes counter matches the number of packets
134 if (bytes != packets * 104) {