mib_read
mib_read.work);
schedule_delayed_work(&dev->mib_read, dev->mib_read_interval);
INIT_DELAYED_WORK(&dev->mib_read, ksz_mib_read_work);
schedule_delayed_work(&dev->mib_read, 0);
cancel_delayed_work_sync(&dev->mib_read);
schedule_delayed_work(&dev->mib_read, dev->mib_read_interval);
schedule_delayed_work(&dev->mib_read, 0);
cancel_delayed_work_sync(&dev->mib_read);
struct delayed_work mib_read;
INIT_DELAYED_WORK(&port->mib_read, ar9331_do_stats_poll);
cancel_delayed_work_sync(&port->mib_read);
struct delayed_work mib_read;
cancel_delayed_work_sync(&priv->port[port].mib_read);
schedule_delayed_work(&priv->port[port].mib_read, 0);
mib_read.work);
schedule_delayed_work(&port->mib_read, STATS_INTERVAL_JIFFIES);
cancel_delayed_work(&priv->ports[port].mib_read);
schedule_delayed_work(&priv->ports[port].mib_read, 0);
disable_delayed_work_sync(&pp->mib_read);
INIT_DELAYED_WORK(&pp->mib_read, yt921x_poll_mib);
mib_read.work);
schedule_delayed_work(&pp->mib_read, delay);
struct delayed_work mib_read;
mib_read(mp, i);
p->good_octets_received += mib_read(mp, 0x00);
p->bad_octets_received += mib_read(mp, 0x08);
p->internal_mac_transmit_err += mib_read(mp, 0x0c);
p->good_frames_received += mib_read(mp, 0x10);
p->bad_frames_received += mib_read(mp, 0x14);
p->broadcast_frames_received += mib_read(mp, 0x18);
p->multicast_frames_received += mib_read(mp, 0x1c);
p->frames_64_octets += mib_read(mp, 0x20);
p->frames_65_to_127_octets += mib_read(mp, 0x24);
p->frames_128_to_255_octets += mib_read(mp, 0x28);
p->frames_256_to_511_octets += mib_read(mp, 0x2c);
p->frames_512_to_1023_octets += mib_read(mp, 0x30);
p->frames_1024_to_max_octets += mib_read(mp, 0x34);
p->good_octets_sent += mib_read(mp, 0x38);
p->good_frames_sent += mib_read(mp, 0x40);
p->excessive_collision += mib_read(mp, 0x44);
p->multicast_frames_sent += mib_read(mp, 0x48);
p->broadcast_frames_sent += mib_read(mp, 0x4c);
p->unrec_mac_control_received += mib_read(mp, 0x50);
p->fc_sent += mib_read(mp, 0x54);
p->good_fc_received += mib_read(mp, 0x58);
p->bad_fc_received += mib_read(mp, 0x5c);
p->undersize_received += mib_read(mp, 0x60);
p->fragments_received += mib_read(mp, 0x64);
p->oversize_received += mib_read(mp, 0x68);
p->jabber_received += mib_read(mp, 0x6c);
p->mac_receive_error += mib_read(mp, 0x70);
p->bad_crc_event += mib_read(mp, 0x74);
p->collision += mib_read(mp, 0x78);
p->late_collision += mib_read(mp, 0x7c);
struct work_struct mib_read;
flush_work(&hw_priv->mib_read);
schedule_work(&hw_priv->mib_read);
container_of(work, struct dev_info, mib_read);
mib_read_work(&hw_priv->mib_read);
INIT_WORK(&hw_priv->mib_read, mib_read_work);