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
240 It is possible to trigger packet processing directly from calls to
285 want to be interrupted until they finish processing a request or a batch
306 will defer IRQs to allow for better batch processing, but will induce latency
309 attempting to busy poll by device IRQs and softirq processing. This value
311 polling applications may be able to mitigate how much user processing happens
321 triggers NAPI packet processing.
329 This allows users to balance CPU consumption with network processing
337 serves as a safety mechanism to restart IRQ driver interrupt processing if
351 processing.
363 the duration of one userland processing cycle.
375 There are essentially three possible loops for network processing and
379 2) timer -> softirq -> napi poll; deferred irq processing
389 which essentially tilts network processing in favour of Loop 3.
404 threads rather than software IRQ context for NAPI processing.