Home | History | Annotate | Download | only in ofwboot

Lines Matching refs:pkt

133 netif_put(struct iodesc *desc, void *pkt, size_t len)
145 printf("netif_put: desc=0x%x pkt=0x%x len=%d\n",
146 (u_int)desc, (u_int)pkt, len);
147 eh = pkt;
163 memcpy(op->dmabuf, pkt, sendlen);
164 pkt = op->dmabuf;
166 rv = OF_write(op->handle, pkt, sendlen);
180 netif_get(struct iodesc *desc, void *pkt, size_t maxlen, saseconds_t timo)
189 printf("netif_get: pkt=0x%x, maxlen=%d, tmo=%d\n",
190 (u_int)pkt, maxlen, timo);
197 len = OF_read(op->handle, pkt, maxlen);
210 struct ether_header *eh = pkt;