git: 8b4e6c3b57b0 - stable/13 - vge: correct pause_frames sysctl description
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Fri, 29 Sep 2023 12:41:29 UTC
The branch stable/13 has been updated by emaste:
URL: https://cgit.FreeBSD.org/src/commit/?id=8b4e6c3b57b0577a0d33be90829002296dec6c10
commit 8b4e6c3b57b0577a0d33be90829002296dec6c10
Author: Priit Trees <trees@neti.ee>
AuthorDate: 2023-07-28 21:41:22 +0000
Commit: Ed Maste <emaste@FreeBSD.org>
CommitDate: 2023-09-29 12:41:07 +0000
vge: correct pause_frames sysctl description
Reviewed by: emaste
Pull Request: https://github.com/freebsd/freebsd-src/pull/806
(cherry picked from commit 0a5d2802b41fd216d9a345f749af1a6ccbe9f382)
---
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 9c62dafa4364..acb6bbf424c6 100644
--- a/sys/dev/vge/if_vge.c
+++ b/sys/dev/vge/if_vge.c
@@ -2567,7 +2567,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",