mirror of
https://git.FreeBSD.org/src.git
synced 2025-01-16 15:11:52 +00:00
Update rge.h for r212758 - stats incremented using xlr_ldaddwu should be
unsigned int.
This commit is contained in:
parent
f0613ab15b
commit
f718138698
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=212759
@ -26,6 +26,7 @@
|
|||||||
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
||||||
* SUCH DAMAGE.
|
* SUCH DAMAGE.
|
||||||
*
|
*
|
||||||
|
* $FreeBSD$
|
||||||
* RMI_BSD */
|
* RMI_BSD */
|
||||||
#ifndef _RMI_RGE_H_
|
#ifndef _RMI_RGE_H_
|
||||||
#define _RMI_RGE_H_
|
#define _RMI_RGE_H_
|
||||||
@ -972,12 +973,12 @@ enum {
|
|||||||
};
|
};
|
||||||
|
|
||||||
struct rge_softc_stats {
|
struct rge_softc_stats {
|
||||||
unsigned long rx_frames;
|
unsigned int rx_frames;
|
||||||
unsigned long tx_frames;
|
unsigned int tx_frames;
|
||||||
unsigned long rx_packets;
|
unsigned int rx_packets;
|
||||||
unsigned long rx_bytes;
|
unsigned int rx_bytes;
|
||||||
unsigned long tx_packets;
|
unsigned int tx_packets;
|
||||||
unsigned long tx_bytes;
|
unsigned int tx_bytes;
|
||||||
};
|
};
|
||||||
|
|
||||||
struct driver_data {
|
struct driver_data {
|
||||||
|
Loading…
Reference in New Issue
Block a user