Home | History | Annotate | Download | only in net

Lines Matching refs:pktoff

276 	unsigned short pktoff;
292 pktoff = next << 8;
294 eth_pio_read(pktoff, (unsigned char *)&pkthdr, 4);
296 memcpy(&pkthdr, bus_to_virt(eth_rmem + pktoff), 4);
297 pktoff += sizeof(pkthdr);
308 frag = (eth_memsize << 8) - pktoff;
312 eth_pio_read(pktoff, p, frag);
314 memcpy(p, bus_to_virt(eth_rmem + pktoff), frag);
315 pktoff = eth_rx_start << 8;
321 eth_pio_read(pktoff, p, len);
323 memcpy(p, bus_to_virt(eth_rmem + pktoff), len);