Lines Matching full: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
271 It is possible to trigger packet processing directly from calls to
316 want to be interrupted until they finish processing a request or a batch
337 will defer IRQs to allow for better batch processing, but will induce latency
340 attempting to busy poll by device IRQs and softirq processing. This value
342 polling applications may be able to mitigate how much user processing happens
352 triggers NAPI packet processing.
360 This allows users to balance CPU consumption with network processing
368 serves as a safety mechanism to restart IRQ driver interrupt processing if
382 processing.
394 the duration of one userland processing cycle.
406 There are essentially three possible loops for network processing and
410 2) timer -> softirq -> napi poll; deferred irq processing
420 which essentially tilts network processing in favour of Loop 3.
435 threads rather than software IRQ context for NAPI processing.