Lines Matching defs:pollhz
4413 hn_chan_polling(struct vmbus_channel *chan, u_int pollhz)
4415 if (pollhz == 0)
4418 vmbus_chan_poll_enable(chan, pollhz);
4422 hn_polling(struct hn_softc *sc, u_int pollhz)
4434 hn_chan_polling(subch[i], pollhz);
4437 hn_chan_polling(sc->hn_prichan, pollhz);
4444 int pollhz, error;
4446 pollhz = sc->hn_pollhz;
4447 error = sysctl_handle_int(oidp, &pollhz, 0, req);
4451 if (pollhz != 0 &&
4452 (pollhz < VMBUS_CHAN_POLLHZ_MIN || pollhz > VMBUS_CHAN_POLLHZ_MAX))
4456 if (sc->hn_pollhz != pollhz) {
4457 sc->hn_pollhz = pollhz;