Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 02 Aug 2026 04:27:43 +0000
From:      Kevin Bowling <kbowling@FreeBSD.org>
To:        src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-branches@FreeBSD.org
Subject:   git: c60186322fa7 - stable/14 - igc(4): document adaptive interrupt moderation
Message-ID:  <6a6ec73f.395f7.5dfa6700@gitrepo.freebsd.org>

index | next in thread | raw e-mail

The branch stable/14 has been updated by kbowling:

URL: https://cgit.FreeBSD.org/src/commit/?id=c60186322fa77ea119c0d015e343611bfa048dc2

commit c60186322fa77ea119c0d015e343611bfa048dc2
Author:     Kevin Bowling <kbowling@FreeBSD.org>
AuthorDate: 2026-07-26 00:10:38 +0000
Commit:     Kevin Bowling <kbowling@FreeBSD.org>
CommitDate: 2026-08-02 04:27:20 +0000

    igc(4): document adaptive interrupt moderation
    
    Describe the disabled, adaptive, and low-latency settings and their
    interrupt-rate tradeoffs.
    
    (cherry picked from commit 297394e995e5ea1ea9bc85e609ca116255d51e97)
---
 share/man/man4/igc.4 | 14 ++++++++++++++
 1 file changed, 14 insertions(+)

diff --git a/share/man/man4/igc.4 b/share/man/man4/igc.4
index a67ed1c15ee8..e98132d29c7d 100644
--- a/share/man/man4/igc.4
+++ b/share/man/man4/igc.4
@@ -125,6 +125,20 @@ Default 1 (disabled).
 .It Va hw.igc.max_interrupt_rate
 Maximum device interrupts per second.
 The default is 8000.
+This is the rate used when adaptive interrupt moderation is disabled, and
+the fallback when it has no usable measurement.
+.It Va hw.igc.enable_aim
+Adaptive interrupt moderation.
+The interrupt rate is derived from the average size of the packets seen
+since the previous interrupt, so that bulk traffic is coalesced while small
+packet traffic keeps its latency.
+A value of 0 disables it and pins the rate to
+.Va hw.igc.max_interrupt_rate ,
+1 selects the normal range, and 2 selects the low-latency range.
+The default value is 1.
+Setting 2 raises the interrupt rate substantially on small packet workloads
+and is rarely a win; prefer the default unless latency has been measured to
+matter more than the additional interrupt load.
 .El
 .Sh DIAGNOSTICS
 .Bl -diag


home | help

Want to link to this message? Use this
URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?6a6ec73f.395f7.5dfa6700>