Lines Matching defs:ixgbe_adapter

600 struct ixgbe_adapter {  struct
601 unsigned long active_vlans[BITS_TO_LONGS(VLAN_N_VID)];
603 struct net_device *netdev;
604 struct pci_dev *pdev;
606 unsigned long state;
611 u32 flags;
634 u32 flags2;
648 int num_tx_queues;
649 u16 tx_itr_setting;
650 u16 tx_work_limit;
653 int num_rx_queues;
654 u16 rx_itr_setting;
657 struct ixgbe_ring *tx_ring[MAX_TX_QUEUES] ____cacheline_aligned_in_smp;
659 u64 restart_queue;
660 u64 lsc_int;
661 u32 tx_timeout_count;
664 struct ixgbe_ring *rx_ring[MAX_RX_QUEUES];
665 int num_rx_pools; /* == num_rx_queues in 82598 */
666 int num_rx_queues_per_pool; /* 1 if 82598, can be many if 82599 */
667 u64 hw_csum_rx_error;
668 u64 hw_rx_no_dma_resources;
669 u64 rsc_total_count;
670 u64 rsc_total_flush;
671 u64 non_eop_descs;
672 u32 alloc_rx_page_failed;
673 u32 alloc_rx_buff_failed;
675 struct ixgbe_q_vector *q_vector[MAX_Q_VECTORS];
678 struct ieee_pfc *ixgbe_ieee_pfc;
679 struct ieee_ets *ixgbe_ieee_ets;
680 struct ixgbe_dcb_config dcb_cfg;
681 struct ixgbe_dcb_config temp_dcb_cfg;
682 u8 dcb_set_bitmap;
683 u8 dcbx_cap;
684 enum ixgbe_fc_mode last_lfc_mode;
686 int num_q_vectors; /* current number of q_vectors for device */
687 int max_q_vectors; /* true count of q_vectors for device */
688 struct ixgbe_ring_feature ring_feature[RING_F_ARRAY_SIZE];
689 struct msix_entry *msix_entries;
691 u32 test_icr;
692 struct ixgbe_ring test_tx_ring;
693 struct ixgbe_ring test_rx_ring;
696 struct ixgbe_hw hw;
697 u16 msg_enable;
698 struct ixgbe_hw_stats stats;
700 u64 tx_busy;
701 unsigned int tx_ring_count;
702 unsigned int rx_ring_count;
704 u32 link_speed;
705 bool link_up;
706 unsigned long link_check_timeout;
708 struct timer_list service_timer;
709 struct work_struct service_task;
711 struct hlist_head fdir_filter_list;
712 unsigned long fdir_overflow; /* number of times ATR was backed off */
713 union ixgbe_atr_input fdir_mask;
714 int fdir_filter_count;
715 u32 fdir_pballoc;
716 u32 atr_sample_rate;
717 spinlock_t fdir_perfect_lock;
720 struct ixgbe_fcoe fcoe;
722 u8 __iomem *io_addr; /* Mainly for iounmap use */
723 u32 wol;
725 u16 bridge_mode;
727 u16 eeprom_verh;
728 u16 eeprom_verl;
729 u16 eeprom_cap;
731 u32 interrupt_event;
732 u32 led_reg;
734 struct ptp_clock *ptp_clock;
735 struct ptp_clock_info ptp_caps;
736 struct work_struct ptp_tx_work;
737 struct sk_buff *ptp_tx_skb;
738 struct hwtstamp_config tstamp_config;
739 unsigned long ptp_tx_start;
740 unsigned long last_overflow_check;
741 unsigned long last_rx_ptp_check;
742 unsigned long last_rx_timestamp;
743 spinlock_t tmreg_lock;
744 struct cyclecounter cc;
745 struct timecounter tc;
746 u32 base_incval;
750 unsigned int num_vfs;
751 struct vf_data_storage *vfinfo;
752 int vf_rate_link_speed;
753 struct vf_macvlans vf_mvs;
754 struct vf_macvlans *mv_list;
756 u32 timer_event_accumulator;
757 u32 vferr_refcount;
781 static inline u8 ixgbe_max_rss_indices(struct ixgbe_adapter *adapter) in ixgbe_max_rss_indices() argument