Module Name: src Committed By: msaitoh Date: Thu May 11 07:08:47 UTC 2023
Modified Files: src/sys/dev/pci: if_wm.c Log Message: Don't add "Count" for event counter's description. To generate a diff of this commit: cvs rdiff -u -r1.773 -r1.774 src/sys/dev/pci/if_wm.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
Modified files: Index: src/sys/dev/pci/if_wm.c diff -u src/sys/dev/pci/if_wm.c:1.773 src/sys/dev/pci/if_wm.c:1.774 --- src/sys/dev/pci/if_wm.c:1.773 Thu May 11 07:07:08 2023 +++ src/sys/dev/pci/if_wm.c Thu May 11 07:08:47 2023 @@ -1,4 +1,4 @@ -/* $NetBSD: if_wm.c,v 1.773 2023/05/11 07:07:08 msaitoh Exp $ */ +/* $NetBSD: if_wm.c,v 1.774 2023/05/11 07:08:47 msaitoh Exp $ */ /* * Copyright (c) 2001, 2002, 2003, 2004 Wasabi Systems, Inc. @@ -82,7 +82,7 @@ */ #include <sys/cdefs.h> -__KERNEL_RCSID(0, "$NetBSD: if_wm.c,v 1.773 2023/05/11 07:07:08 msaitoh Exp $"); +__KERNEL_RCSID(0, "$NetBSD: if_wm.c,v 1.774 2023/05/11 07:08:47 msaitoh Exp $"); #ifdef _KERNEL_OPT #include "opt_if_wm.h" @@ -637,7 +637,7 @@ struct wm_softc { struct evcnt sc_ev_ptc1023; /* Packets Tx (512-1023 bytes) */ struct evcnt sc_ev_ptc1522; /* Packets Tx (1024-1522 Bytes) */ struct evcnt sc_ev_mptc; /* Multicast Packets Tx */ - struct evcnt sc_ev_bptc; /* Broadcast Packets Tx Count */ + struct evcnt sc_ev_bptc; /* Broadcast Packets Tx */ struct evcnt sc_ev_tsctc; /* TCP Segmentation Context Tx */ struct evcnt sc_ev_tsctfc; /* TCP Segmentation Context Tx Fail */ struct evcnt sc_ev_iac; /* Interrupt Assertion */ @@ -3316,7 +3316,7 @@ alloc_retry: evcnt_attach_dynamic(&sc->sc_ev_mptc, EVCNT_TYPE_MISC, NULL, xname, "Multicast Packets Tx"); evcnt_attach_dynamic(&sc->sc_ev_bptc, EVCNT_TYPE_MISC, - NULL, xname, "Broadcast Packets Tx Count"); + NULL, xname, "Broadcast Packets Tx"); evcnt_attach_dynamic(&sc->sc_ev_iac, EVCNT_TYPE_MISC, NULL, xname, "Interrupt Assertion"); if (sc->sc_type < WM_T_82575) {