The branch main has been updated by emaste:

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

commit 0a5d2802b41fd216d9a345f749af1a6ccbe9f382
Author:     Priit Trees <[email protected]>
AuthorDate: 2023-07-28 21:41:22 +0000
Commit:     Ed Maste <[email protected]>
CommitDate: 2023-09-24 17:34:36 +0000

    vge: correct pause_frames sysctl description
    
    Reviewed by:    emaste
    Pull Request:   https://github.com/freebsd/freebsd-src/pull/806
---
 sys/dev/vge/if_vge.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys/dev/vge/if_vge.c b/sys/dev/vge/if_vge.c
index 04c1c764cdd5..fcc47598454e 100644
--- a/sys/dev/vge/if_vge.c
+++ b/sys/dev/vge/if_vge.c
@@ -2564,7 +2564,7 @@ vge_sysctl_node(struct vge_softc *sc)
        VGE_SYSCTL_STAT_ADD32(ctx, child, "crcerrs",
            &stats->rx_crcerrs, "CRC errors");
        VGE_SYSCTL_STAT_ADD32(ctx, child, "pause_frames",
-           &stats->rx_pause_frames, "CRC errors");
+           &stats->rx_pause_frames, "Pause frames");
        VGE_SYSCTL_STAT_ADD32(ctx, child, "align_errs",
            &stats->rx_alignerrs, "Alignment errors");
        VGE_SYSCTL_STAT_ADD32(ctx, child, "nobufs",

Reply via email to