Module Name: src Committed By: yamaguchi Date: Fri Jun 17 06:26:00 UTC 2022
Modified Files: src/sys/dev/pci: if_ixl.c Log Message: ixl(4): fix typo To generate a diff of this commit: cvs rdiff -u -r1.84 -r1.85 src/sys/dev/pci/if_ixl.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_ixl.c diff -u src/sys/dev/pci/if_ixl.c:1.84 src/sys/dev/pci/if_ixl.c:1.85 --- src/sys/dev/pci/if_ixl.c:1.84 Fri Jun 17 06:18:09 2022 +++ src/sys/dev/pci/if_ixl.c Fri Jun 17 06:26:00 2022 @@ -1,4 +1,4 @@ -/* $NetBSD: if_ixl.c,v 1.84 2022/06/17 06:18:09 yamaguchi Exp $ */ +/* $NetBSD: if_ixl.c,v 1.85 2022/06/17 06:26:00 yamaguchi Exp $ */ /* * Copyright (c) 2013-2015, Intel Corporation @@ -74,7 +74,7 @@ */ #include <sys/cdefs.h> -__KERNEL_RCSID(0, "$NetBSD: if_ixl.c,v 1.84 2022/06/17 06:18:09 yamaguchi Exp $"); +__KERNEL_RCSID(0, "$NetBSD: if_ixl.c,v 1.85 2022/06/17 06:26:00 yamaguchi Exp $"); #ifdef _KERNEL_OPT #include "opt_net_mpsafe.h" @@ -6075,7 +6075,7 @@ ixl_setup_stats(struct ixl_softc *sc) evcnt_attach_dynamic(&isc->isc_vsi_rx_bytes, EVCNT_TYPE_MISC, NULL, device_xname(sc->sc_dev), "Rx bytes / vsi"); evcnt_attach_dynamic(&isc->isc_vsi_rx_discards, EVCNT_TYPE_MISC, - NULL, device_xname(sc->sc_dev), "Rx discard / vsi"); + NULL, device_xname(sc->sc_dev), "Rx discards / vsi"); evcnt_attach_dynamic(&isc->isc_vsi_rx_unicast, EVCNT_TYPE_MISC, NULL, device_xname(sc->sc_dev), "Rx unicast / vsi"); evcnt_attach_dynamic(&isc->isc_vsi_rx_multicast, EVCNT_TYPE_MISC,