Module Name: src Committed By: msaitoh Date: Mon Jan 24 01:50:20 UTC 2022
Modified Files: src/sys/dev/pci/ixgbe: ixgbe_vf.h Log Message: Use 32bit for 32bit counter. To generate a diff of this commit: cvs rdiff -u -r1.16 -r1.17 src/sys/dev/pci/ixgbe/ixgbe_vf.h 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/ixgbe/ixgbe_vf.h diff -u src/sys/dev/pci/ixgbe/ixgbe_vf.h:1.16 src/sys/dev/pci/ixgbe/ixgbe_vf.h:1.17 --- src/sys/dev/pci/ixgbe/ixgbe_vf.h:1.16 Wed Jan 19 10:30:04 2022 +++ src/sys/dev/pci/ixgbe/ixgbe_vf.h Mon Jan 24 01:50:19 2022 @@ -1,4 +1,4 @@ -/* $NetBSD: ixgbe_vf.h,v 1.16 2022/01/19 10:30:04 msaitoh Exp $ */ +/* $NetBSD: ixgbe_vf.h,v 1.17 2022/01/24 01:50:19 msaitoh Exp $ */ /****************************************************************************** SPDX-License-Identifier: BSD-3-Clause @@ -101,11 +101,11 @@ struct ixgbevf_hw_stats { struct evcnt l4cs; struct evcnt l4cs_bad; - u64 last_vfgprc; - u64 last_vfgptc; + u32 last_vfgprc; + u32 last_vfgptc; u64 last_vfgorc; u64 last_vfgotc; - u64 last_vfmprc; + u32 last_vfmprc; struct evcnt vfgprc; struct evcnt vfgptc;