Lines Matching defs:ixgbe_adapter
599 struct ixgbe_adapter { struct
600 unsigned long active_vlans[BITS_TO_LONGS(VLAN_N_VID)];
602 struct net_device *netdev;
603 struct bpf_prog *xdp_prog;
604 struct pci_dev *pdev;
605 struct mii_bus *mii_bus;
607 unsigned long state;
612 u32 flags;
638 u32 flags2;
659 int num_tx_queues;
660 u16 tx_itr_setting;
661 u16 tx_work_limit;
662 u64 tx_ipsec;
665 int num_rx_queues;
666 u16 rx_itr_setting;
667 u64 rx_ipsec;
670 __be16 vxlan_port;
671 __be16 geneve_port;
674 int num_xdp_queues;
675 struct ixgbe_ring *xdp_ring[IXGBE_MAX_XDP_QS];
676 unsigned long *af_xdp_zc_qps; /* tracks AF_XDP ZC enabled rings */
679 struct ixgbe_ring *tx_ring[MAX_TX_QUEUES] ____cacheline_aligned_in_smp;
681 u64 restart_queue;
682 u64 lsc_int;
683 u32 tx_timeout_count;
686 struct ixgbe_ring *rx_ring[MAX_RX_QUEUES];
687 int num_rx_pools; /* == num_rx_queues in 82598 */
688 int num_rx_queues_per_pool; /* 1 if 82598, can be many if 82599 */
689 u64 hw_csum_rx_error;
690 u64 hw_rx_no_dma_resources;
691 u64 rsc_total_count;
692 u64 rsc_total_flush;
693 u64 non_eop_descs;
694 u32 alloc_rx_page;
695 u32 alloc_rx_page_failed;
696 u32 alloc_rx_buff_failed;
698 struct ixgbe_q_vector *q_vector[MAX_Q_VECTORS];
701 struct ieee_pfc *ixgbe_ieee_pfc;
702 struct ieee_ets *ixgbe_ieee_ets;
703 struct ixgbe_dcb_config dcb_cfg;
704 struct ixgbe_dcb_config temp_dcb_cfg;
705 u8 hw_tcs;
706 u8 dcb_set_bitmap;
707 u8 dcbx_cap;
708 enum ixgbe_fc_mode last_lfc_mode;
710 int num_q_vectors; /* current number of q_vectors for device */
711 int max_q_vectors; /* true count of q_vectors for device */
712 struct ixgbe_ring_feature ring_feature[RING_F_ARRAY_SIZE];
713 struct msix_entry *msix_entries;
715 u32 test_icr;
716 struct ixgbe_ring test_tx_ring;
717 struct ixgbe_ring test_rx_ring;
720 struct ixgbe_hw hw;
721 u16 msg_enable;
722 struct ixgbe_hw_stats stats;
724 u64 tx_busy;
725 unsigned int tx_ring_count;
726 unsigned int xdp_ring_count;
727 unsigned int rx_ring_count;
729 u32 link_speed;
730 bool link_up;
731 unsigned long sfp_poll_time;
732 unsigned long link_check_timeout;
734 struct timer_list service_timer;
735 struct work_struct service_task;
737 struct hlist_head fdir_filter_list;
738 unsigned long fdir_overflow; /* number of times ATR was backed off */
739 union ixgbe_atr_input fdir_mask;
740 int fdir_filter_count;
741 u32 fdir_pballoc;
742 u32 atr_sample_rate;
743 spinlock_t fdir_perfect_lock;
746 struct ixgbe_fcoe fcoe;
748 u8 __iomem *io_addr; /* Mainly for iounmap use */
749 u32 wol;
751 u16 bridge_mode;
775 void (*ptp_setup_sdp)(struct ixgbe_adapter *); argument
779 unsigned int num_vfs;
780 struct vf_data_storage *vfinfo;
781 int vf_rate_link_speed;
782 struct vf_macvlans vf_mvs;
783 struct vf_macvlans *mv_list;
785 u32 timer_event_accumulator;
786 u32 vferr_refcount;
787 struct ixgbe_mac_addr *mac_table;
788 struct kobject *info_kobj;
790 struct hwmon_buff *ixgbe_hwmon_buff;
793 struct dentry *ixgbe_dbg_adapter;
796 u8 default_up;
801 struct ixgbe_jump_table *jump_tables[IXGBE_MAX_LINK_HANDLE];
802 unsigned long tables;
828 struct ixgbe_ring *ixgbe_determine_xdp_ring(struct ixgbe_adapter *adapter) in ixgbe_determine_xdp_ring() argument