Lines Matching full:napi

182  * napi_get_defer_hard_irqs - get the NAPI's defer_hard_irqs
183 * @n: napi struct to get the defer_hard_irqs field from
185 * Return: the per-NAPI value of the defar_hard_irqs field.
193 * napi_set_defer_hard_irqs - set the defer_hard_irqs for a napi
212 struct napi_struct *napi; in netdev_set_defer_hard_irqs() local
216 list_for_each_entry(napi, &netdev->napi_list, dev_list) in netdev_set_defer_hard_irqs()
217 napi_set_defer_hard_irqs(napi, defer); in netdev_set_defer_hard_irqs()
225 * @n: napi struct to get the gro_flush_timeout from
227 * Return: the per-NAPI value of the gro_flush_timeout field.
236 * napi_set_gro_flush_timeout - set the gro_flush_timeout for a napi
237 * @n: napi struct to set the gro_flush_timeout
240 * napi_set_gro_flush_timeout sets the per-NAPI gro_flush_timeout
258 struct napi_struct *napi; in netdev_set_gro_flush_timeout() local
262 list_for_each_entry(napi, &netdev->napi_list, dev_list) in netdev_set_gro_flush_timeout()
263 napi_set_gro_flush_timeout(napi, timeout); in netdev_set_gro_flush_timeout()
271 * @n: napi struct to get the irq_suspend_timeout from
273 * Return: the per-NAPI value of the irq_suspend_timeout field.
282 * napi_set_irq_suspend_timeout - set the irq_suspend_timeout for a napi
283 * @n: napi struct to set the irq_suspend_timeout
286 * napi_set_irq_suspend_timeout sets the per-NAPI irq_suspend_timeout
297 void xdp_do_check_flushed(struct napi_struct *napi);
299 static inline void xdp_do_check_flushed(struct napi_struct *napi) { } in xdp_do_check_flushed() argument