Lines Matching refs:processing
18 NAPI processing usually happens in the software interrupt context,
20 for NAPI processing.
23 of event (packet Rx and Tx) processing.
66 Rx packets. Rx processing is usually much more expensive.
68 In other words for Rx processing the ``budget`` argument limits how many
71 skb Tx processing should happen regardless of the ``budget``, but if
85 If event processing has been completed (all outstanding packets
155 mapped to queues and interrupts. NAPI is primarily a polling/processing
268 processing kthread.
273 It is possible to trigger packet processing directly from calls to
318 want to be interrupted until they finish processing a request or a batch
339 will defer IRQs to allow for better batch processing, but will induce latency
342 attempting to busy poll by device IRQs and softirq processing. This value
344 polling applications may be able to mitigate how much user processing happens
354 triggers NAPI packet processing.
362 This allows users to balance CPU consumption with network processing
370 serves as a safety mechanism to restart IRQ driver interrupt processing if
384 processing.
396 the duration of one userland processing cycle.
408 There are essentially three possible loops for network processing and
412 2) timer -> softirq -> napi poll; deferred irq processing
422 which essentially tilts network processing in favour of Loop 3.
483 threads rather than software IRQ context for NAPI processing.