ice.h (f9867df6d96593fe678a138230379cda78403429) | ice.h (37b6f6469f75070e4fb2e32995eb858e79b8860a) |
---|---|
1/* SPDX-License-Identifier: GPL-2.0 */ 2/* Copyright (c) 2018, Intel Corporation. */ 3 4#ifndef _ICE_H_ 5#define _ICE_H_ 6 7#include <linux/types.h> 8#include <linux/errno.h> --- 20 unchanged lines hidden (view full) --- 29#include <linux/sctp.h> 30#include <linux/ipv6.h> 31#include <linux/if_bridge.h> 32#include <linux/avf/virtchnl.h> 33#include <net/ipv6.h> 34#include "ice_devids.h" 35#include "ice_type.h" 36#include "ice_txrx.h" | 1/* SPDX-License-Identifier: GPL-2.0 */ 2/* Copyright (c) 2018, Intel Corporation. */ 3 4#ifndef _ICE_H_ 5#define _ICE_H_ 6 7#include <linux/types.h> 8#include <linux/errno.h> --- 20 unchanged lines hidden (view full) --- 29#include <linux/sctp.h> 30#include <linux/ipv6.h> 31#include <linux/if_bridge.h> 32#include <linux/avf/virtchnl.h> 33#include <net/ipv6.h> 34#include "ice_devids.h" 35#include "ice_type.h" 36#include "ice_txrx.h" |
37#include "ice_dcb.h" |
|
37#include "ice_switch.h" 38#include "ice_common.h" 39#include "ice_sched.h" 40#include "ice_virtchnl_pf.h" 41#include "ice_sriov.h" 42 43extern const char ice_drv_ver[]; 44#define ICE_BAR0 0 --- 271 unchanged lines hidden (view full) --- 316} ____cacheline_internodealigned_in_smp; 317 318enum ice_pf_flags { 319 ICE_FLAG_MSIX_ENA, 320 ICE_FLAG_FLTR_SYNC, 321 ICE_FLAG_RSS_ENA, 322 ICE_FLAG_SRIOV_ENA, 323 ICE_FLAG_SRIOV_CAPABLE, | 38#include "ice_switch.h" 39#include "ice_common.h" 40#include "ice_sched.h" 41#include "ice_virtchnl_pf.h" 42#include "ice_sriov.h" 43 44extern const char ice_drv_ver[]; 45#define ICE_BAR0 0 --- 271 unchanged lines hidden (view full) --- 317} ____cacheline_internodealigned_in_smp; 318 319enum ice_pf_flags { 320 ICE_FLAG_MSIX_ENA, 321 ICE_FLAG_FLTR_SYNC, 322 ICE_FLAG_RSS_ENA, 323 ICE_FLAG_SRIOV_ENA, 324 ICE_FLAG_SRIOV_CAPABLE, |
325 ICE_FLAG_DCB_CAPABLE, 326 ICE_FLAG_DCB_ENA, |
|
324 ICE_FLAG_LINK_DOWN_ON_CLOSE_ENA, 325 ICE_PF_FLAGS_NBITS /* must be last */ 326}; 327 328struct ice_pf { 329 struct pci_dev *pdev; 330 331 /* OS reserved IRQ details */ --- 98 unchanged lines hidden --- | 327 ICE_FLAG_LINK_DOWN_ON_CLOSE_ENA, 328 ICE_PF_FLAGS_NBITS /* must be last */ 329}; 330 331struct ice_pf { 332 struct pci_dev *pdev; 333 334 /* OS reserved IRQ details */ --- 98 unchanged lines hidden --- |