Lines Matching refs:local
182 struct simeth_local *local; in simeth_probe1() local
206 local = netdev_priv(dev); in simeth_probe1()
207 local->simfd = fd; /* keep track of underlying file descriptor */ in simeth_probe1()
226 dev->name, simeth_device, local->simfd, dev->dev_addr, dev->irq); in simeth_probe1()
272 struct simeth_local *local; in simeth_device_event() local
315 local = netdev_priv(dev); in simeth_device_event()
318 netdev_attach(local->simfd, dev->irq, ntohl(ifa->ifa_local)): in simeth_device_event()
319 netdev_detach(local->simfd); in simeth_device_event()
370 struct simeth_local *local = netdev_priv(dev); in simeth_tx() local
383 local->stats.tx_bytes += skb->len; in simeth_tx()
384 local->stats.tx_packets++; in simeth_tx()
389 netdev_send(local->simfd, skb->data, length); in simeth_tx()
428 struct simeth_local *local; in simeth_rx() local
433 local = netdev_priv(dev); in simeth_rx()
443 local->stats.rx_dropped++; in simeth_rx()
449 len = netdev_read(local->simfd, skb->data, SIMETH_FRAME_SIZE); in simeth_rx()
471 local->stats.rx_packets++; in simeth_rx()
472 local->stats.rx_bytes += len; in simeth_rx()
497 struct simeth_local *local = netdev_priv(dev); in simeth_get_stats() local
499 return &local->stats; in simeth_get_stats()