diff options
Diffstat (limited to 'drivers/net/vxge/vxge-main.h')
| -rw-r--r-- | drivers/net/vxge/vxge-main.h | 53 | 
1 files changed, 21 insertions, 32 deletions
| diff --git a/drivers/net/vxge/vxge-main.h b/drivers/net/vxge/vxge-main.h index ed120aba443d..f52a42d1dbb7 100644 --- a/drivers/net/vxge/vxge-main.h +++ b/drivers/net/vxge/vxge-main.h @@ -18,6 +18,8 @@  #include "vxge-config.h"  #include "vxge-version.h"  #include <linux/list.h> +#include <linux/bitops.h> +#include <linux/if_vlan.h>  #define VXGE_DRIVER_NAME		"vxge"  #define VXGE_DRIVER_VENDOR		"Neterion, Inc" @@ -201,30 +203,14 @@ struct vxge_msix_entry {  /* Software Statistics */  struct vxge_sw_stats { -	/* Network Stats (interface stats) */ - -	/* Tx */ -	u64 tx_frms; -	u64 tx_errors; -	u64 tx_bytes; -	u64 txd_not_free; -	u64 txd_out_of_desc;  	/* Virtual Path */ -	u64 vpaths_open; -	u64 vpath_open_fail; - -	/* Rx */ -	u64 rx_frms; -	u64 rx_errors; -	u64 rx_bytes; -	u64 rx_mcast; +	unsigned long vpaths_open; +	unsigned long vpath_open_fail;  	/* Misc. */ -	u64 link_up; -	u64 link_down; -	u64 pci_map_fail; -	u64 skb_alloc_fail; +	unsigned long link_up; +	unsigned long link_down;  };  struct vxge_mac_addrs { @@ -237,12 +223,14 @@ struct vxge_mac_addrs {  struct vxgedev;  struct vxge_fifo_stats { +	struct u64_stats_sync	syncp;  	u64 tx_frms; -	u64 tx_errors;  	u64 tx_bytes; -	u64 txd_not_free; -	u64 txd_out_of_desc; -	u64 pci_map_fail; + +	unsigned long tx_errors; +	unsigned long txd_not_free; +	unsigned long txd_out_of_desc; +	unsigned long pci_map_fail;  };  struct vxge_fifo { @@ -264,14 +252,16 @@ struct vxge_fifo {  } ____cacheline_aligned;  struct vxge_ring_stats { -	u64 prev_rx_frms; +	struct u64_stats_sync syncp;  	u64 rx_frms; -	u64 rx_errors; -	u64 rx_dropped; -	u64 rx_bytes;  	u64 rx_mcast; -	u64 pci_map_fail; -	u64 skb_alloc_fail; +	u64 rx_bytes; + +	unsigned long rx_errors; +	unsigned long rx_dropped; +	unsigned long prev_rx_frms; +	unsigned long pci_map_fail; +	unsigned long skb_alloc_fail;  };  struct vxge_ring { @@ -299,7 +289,6 @@ struct vxge_ring {  #define VXGE_MAX_MAC_ADDR_COUNT		30  	int vlan_tag_strip; -	struct vlan_group *vlgrp;  	u32 rx_vector_no;  	enum vxge_hw_status last_status; @@ -344,7 +333,7 @@ struct vxgedev {  	struct net_device	*ndev;  	struct pci_dev		*pdev;  	struct __vxge_hw_device *devh; -	struct vlan_group	*vlgrp; +	unsigned long active_vlans[BITS_TO_LONGS(VLAN_N_VID)];  	int vlan_tag_strip;  	struct vxge_config	config;  	unsigned long	state; | 
