1 /* SPDX-License-Identifier: GPL-2.0-or-later */
3 * INET An implementation of the TCP/IP protocol suite for the LINUX
4 * operating system. INET is implemented using the BSD Socket
5 * interface as the means of communication with the user level.
7 * Definitions for the Interfaces handler.
9 * Version: @(#)dev.h 1.0.10 08/12/93
12 * Fred N. van Kempen, <waltje@uWalt.NL.Mugnet.ORG>
13 * Corey Minyard <wf-rch!minyard@relay.EU.net>
14 * Donald J. Becker, <becker@cesdis.gsfc.nasa.gov>
15 * Alan Cox, <alan@lxorguk.ukuu.org.uk>
16 * Bjorn Ekwall. <bj0rn@blox.se>
17 * Pekka Riikonen <priikone@poseidon.pspt.fi>
19 * Moved to /usr/include/linux for NET3
21 #ifndef _LINUX_NETDEVICE_H
22 #define _LINUX_NETDEVICE_H
24 #include <linux/timer.h>
25 #include <linux/bug.h>
26 #include <linux/delay.h>
27 #include <linux/atomic.h>
28 #include <linux/prefetch.h>
29 #include <asm/cache.h>
30 #include <asm/byteorder.h>
32 #include <linux/percpu.h>
33 #include <linux/rculist.h>
34 #include <linux/workqueue.h>
35 #include <linux/dynamic_queue_limits.h>
37 #include <linux/ethtool.h>
38 #include <net/net_namespace.h>
40 #include <net/dcbnl.h>
42 #include <net/netprio_cgroup.h>
45 #include <linux/netdev_features.h>
46 #include <linux/neighbour.h>
47 #include <uapi/linux/netdevice.h>
48 #include <uapi/linux/if_bonding.h>
49 #include <uapi/linux/pkt_cls.h>
50 #include <linux/hashtable.h>
56 struct macsec_context;
62 /* 802.15.4 specific */
65 /* UDP Tunnel offloads */
66 struct udp_tunnel_info;
70 void netdev_set_default_ethtool_ops(struct net_device *dev,
71 const struct ethtool_ops *ops);
73 /* Backlog congestion levels */
74 #define NET_RX_SUCCESS 0 /* keep 'em coming, baby */
75 #define NET_RX_DROP 1 /* packet dropped */
77 #define MAX_NEST_DEV 8
80 * Transmit return codes: transmit return codes originate from three different
83 * - qdisc return codes
84 * - driver transmit return codes
87 * Drivers are allowed to return any one of those in their hard_start_xmit()
88 * function. Real network devices commonly used with qdiscs should only return
89 * the driver transmit return codes though - when qdiscs are used, the actual
90 * transmission happens asynchronously, so the value is not propagated to
91 * higher layers. Virtual network devices transmit synchronously; in this case
92 * the driver transmit return codes are consumed by dev_queue_xmit(), and all
93 * others are propagated to higher layers.
96 /* qdisc ->enqueue() return codes. */
97 #define NET_XMIT_SUCCESS 0x00
98 #define NET_XMIT_DROP 0x01 /* skb dropped */
99 #define NET_XMIT_CN 0x02 /* congestion notification */
100 #define NET_XMIT_MASK 0x0f /* qdisc flags in net/sch_generic.h */
102 /* NET_XMIT_CN is special. It does not guarantee that this packet is lost. It
103 * indicates that the device will soon be dropping packets, or already drops
104 * some packets of the same priority; prompting us to send less aggressively. */
105 #define net_xmit_eval(e) ((e) == NET_XMIT_CN ? 0 : (e))
106 #define net_xmit_errno(e) ((e) != NET_XMIT_CN ? -ENOBUFS : 0)
108 /* Driver transmit return codes */
109 #define NETDEV_TX_MASK 0xf0
112 __NETDEV_TX_MIN = INT_MIN, /* make sure enum is signed */
113 NETDEV_TX_OK = 0x00, /* driver took care of packet */
114 NETDEV_TX_BUSY = 0x10, /* driver tx path was busy*/
116 typedef enum netdev_tx netdev_tx_t;
119 * Current order: NETDEV_TX_MASK > NET_XMIT_MASK >= 0 is significant;
120 * hard_start_xmit() return < NET_XMIT_MASK means skb was consumed.
122 static inline bool dev_xmit_complete(int rc)
125 * Positive cases with an skb consumed by a driver:
126 * - successful transmission (rc == NETDEV_TX_OK)
127 * - error while transmitting (rc < 0)
128 * - error while queueing to a different device (rc & NET_XMIT_MASK)
130 if (likely(rc < NET_XMIT_MASK))
137 * Compute the worst-case header length according to the protocols
141 #if defined(CONFIG_HYPERV_NET)
142 # define LL_MAX_HEADER 128
143 #elif defined(CONFIG_WLAN) || IS_ENABLED(CONFIG_AX25)
144 # if defined(CONFIG_MAC80211_MESH)
145 # define LL_MAX_HEADER 128
147 # define LL_MAX_HEADER 96
150 # define LL_MAX_HEADER 32
153 #if !IS_ENABLED(CONFIG_NET_IPIP) && !IS_ENABLED(CONFIG_NET_IPGRE) && \
154 !IS_ENABLED(CONFIG_IPV6_SIT) && !IS_ENABLED(CONFIG_IPV6_TUNNEL)
155 #define MAX_HEADER LL_MAX_HEADER
157 #define MAX_HEADER (LL_MAX_HEADER + 48)
161 * Old network device statistics. Fields are native words
162 * (unsigned long) so they can be read and written atomically.
165 struct net_device_stats {
166 unsigned long rx_packets;
167 unsigned long tx_packets;
168 unsigned long rx_bytes;
169 unsigned long tx_bytes;
170 unsigned long rx_errors;
171 unsigned long tx_errors;
172 unsigned long rx_dropped;
173 unsigned long tx_dropped;
174 unsigned long multicast;
175 unsigned long collisions;
176 unsigned long rx_length_errors;
177 unsigned long rx_over_errors;
178 unsigned long rx_crc_errors;
179 unsigned long rx_frame_errors;
180 unsigned long rx_fifo_errors;
181 unsigned long rx_missed_errors;
182 unsigned long tx_aborted_errors;
183 unsigned long tx_carrier_errors;
184 unsigned long tx_fifo_errors;
185 unsigned long tx_heartbeat_errors;
186 unsigned long tx_window_errors;
187 unsigned long rx_compressed;
188 unsigned long tx_compressed;
192 #include <linux/cache.h>
193 #include <linux/skbuff.h>
196 #include <linux/static_key.h>
197 extern struct static_key_false rps_needed;
198 extern struct static_key_false rfs_needed;
205 struct netdev_hw_addr {
206 struct list_head list;
207 unsigned char addr[MAX_ADDR_LEN];
209 #define NETDEV_HW_ADDR_T_LAN 1
210 #define NETDEV_HW_ADDR_T_SAN 2
211 #define NETDEV_HW_ADDR_T_SLAVE 3
212 #define NETDEV_HW_ADDR_T_UNICAST 4
213 #define NETDEV_HW_ADDR_T_MULTICAST 5
218 struct rcu_head rcu_head;
221 struct netdev_hw_addr_list {
222 struct list_head list;
226 #define netdev_hw_addr_list_count(l) ((l)->count)
227 #define netdev_hw_addr_list_empty(l) (netdev_hw_addr_list_count(l) == 0)
228 #define netdev_hw_addr_list_for_each(ha, l) \
229 list_for_each_entry(ha, &(l)->list, list)
231 #define netdev_uc_count(dev) netdev_hw_addr_list_count(&(dev)->uc)
232 #define netdev_uc_empty(dev) netdev_hw_addr_list_empty(&(dev)->uc)
233 #define netdev_for_each_uc_addr(ha, dev) \
234 netdev_hw_addr_list_for_each(ha, &(dev)->uc)
236 #define netdev_mc_count(dev) netdev_hw_addr_list_count(&(dev)->mc)
237 #define netdev_mc_empty(dev) netdev_hw_addr_list_empty(&(dev)->mc)
238 #define netdev_for_each_mc_addr(ha, dev) \
239 netdev_hw_addr_list_for_each(ha, &(dev)->mc)
245 /* cached hardware header; allow for machine alignment needs. */
246 #define HH_DATA_MOD 16
247 #define HH_DATA_OFF(__len) \
248 (HH_DATA_MOD - (((__len - 1) & (HH_DATA_MOD - 1)) + 1))
249 #define HH_DATA_ALIGN(__len) \
250 (((__len)+(HH_DATA_MOD-1))&~(HH_DATA_MOD - 1))
251 unsigned long hh_data[HH_DATA_ALIGN(LL_MAX_HEADER) / sizeof(long)];
254 /* Reserve HH_DATA_MOD byte-aligned hard_header_len, but at least that much.
256 * dev->hard_header_len ? (dev->hard_header_len +
257 * (HH_DATA_MOD - 1)) & ~(HH_DATA_MOD - 1) : 0
259 * We could use other alignment values, but we must maintain the
260 * relationship HH alignment <= LL alignment.
262 #define LL_RESERVED_SPACE(dev) \
263 ((((dev)->hard_header_len+(dev)->needed_headroom)&~(HH_DATA_MOD - 1)) + HH_DATA_MOD)
264 #define LL_RESERVED_SPACE_EXTRA(dev,extra) \
265 ((((dev)->hard_header_len+(dev)->needed_headroom+(extra))&~(HH_DATA_MOD - 1)) + HH_DATA_MOD)
268 int (*create) (struct sk_buff *skb, struct net_device *dev,
269 unsigned short type, const void *daddr,
270 const void *saddr, unsigned int len);
271 int (*parse)(const struct sk_buff *skb, unsigned char *haddr);
272 int (*cache)(const struct neighbour *neigh, struct hh_cache *hh, __be16 type);
273 void (*cache_update)(struct hh_cache *hh,
274 const struct net_device *dev,
275 const unsigned char *haddr);
276 bool (*validate)(const char *ll_header, unsigned int len);
277 __be16 (*parse_protocol)(const struct sk_buff *skb);
280 /* These flag bits are private to the generic network queueing
281 * layer; they may not be explicitly referenced by any other
285 enum netdev_state_t {
287 __LINK_STATE_PRESENT,
288 __LINK_STATE_NOCARRIER,
289 __LINK_STATE_LINKWATCH_PENDING,
290 __LINK_STATE_DORMANT,
291 __LINK_STATE_TESTING,
296 * This structure holds boot-time configured netdevice settings. They
297 * are then used in the device probing.
299 struct netdev_boot_setup {
303 #define NETDEV_BOOT_SETUP_MAX 8
305 int __init netdev_boot_setup(char *str);
308 struct list_head list;
313 * size of gro hash buckets, must less than bit number of
314 * napi_struct::gro_bitmask
316 #define GRO_HASH_BUCKETS 8
319 * Structure for NAPI scheduling similar to tasklet but with weighting
322 /* The poll_list must only be managed by the entity which
323 * changes the state of the NAPI_STATE_SCHED bit. This means
324 * whoever atomically sets that bit can add this napi_struct
325 * to the per-CPU poll_list, and whoever clears that bit
326 * can remove from the list right before clearing the bit.
328 struct list_head poll_list;
332 unsigned long gro_bitmask;
333 int (*poll)(struct napi_struct *, int);
334 #ifdef CONFIG_NETPOLL
337 struct net_device *dev;
338 struct gro_list gro_hash[GRO_HASH_BUCKETS];
340 struct list_head rx_list; /* Pending GRO_NORMAL skbs */
341 int rx_count; /* length of rx_list */
342 struct hrtimer timer;
343 struct list_head dev_list;
344 struct hlist_node napi_hash_node;
345 unsigned int napi_id;
349 NAPI_STATE_SCHED, /* Poll is scheduled */
350 NAPI_STATE_MISSED, /* reschedule a napi */
351 NAPI_STATE_DISABLE, /* Disable pending */
352 NAPI_STATE_NPSVC, /* Netpoll - don't dequeue from poll_list */
353 NAPI_STATE_HASHED, /* In NAPI hash (busy polling possible) */
354 NAPI_STATE_NO_BUSY_POLL,/* Do not add in napi_hash, no busy polling */
355 NAPI_STATE_IN_BUSY_POLL,/* sk_busy_loop() owns this NAPI */
359 NAPIF_STATE_SCHED = BIT(NAPI_STATE_SCHED),
360 NAPIF_STATE_MISSED = BIT(NAPI_STATE_MISSED),
361 NAPIF_STATE_DISABLE = BIT(NAPI_STATE_DISABLE),
362 NAPIF_STATE_NPSVC = BIT(NAPI_STATE_NPSVC),
363 NAPIF_STATE_HASHED = BIT(NAPI_STATE_HASHED),
364 NAPIF_STATE_NO_BUSY_POLL = BIT(NAPI_STATE_NO_BUSY_POLL),
365 NAPIF_STATE_IN_BUSY_POLL = BIT(NAPI_STATE_IN_BUSY_POLL),
376 typedef enum gro_result gro_result_t;
379 * enum rx_handler_result - Possible return values for rx_handlers.
380 * @RX_HANDLER_CONSUMED: skb was consumed by rx_handler, do not process it
382 * @RX_HANDLER_ANOTHER: Do another round in receive path. This is indicated in
383 * case skb->dev was changed by rx_handler.
384 * @RX_HANDLER_EXACT: Force exact delivery, no wildcard.
385 * @RX_HANDLER_PASS: Do nothing, pass the skb as if no rx_handler was called.
387 * rx_handlers are functions called from inside __netif_receive_skb(), to do
388 * special processing of the skb, prior to delivery to protocol handlers.
390 * Currently, a net_device can only have a single rx_handler registered. Trying
391 * to register a second rx_handler will return -EBUSY.
393 * To register a rx_handler on a net_device, use netdev_rx_handler_register().
394 * To unregister a rx_handler on a net_device, use
395 * netdev_rx_handler_unregister().
397 * Upon return, rx_handler is expected to tell __netif_receive_skb() what to
400 * If the rx_handler consumed the skb in some way, it should return
401 * RX_HANDLER_CONSUMED. This is appropriate when the rx_handler arranged for
402 * the skb to be delivered in some other way.
404 * If the rx_handler changed skb->dev, to divert the skb to another
405 * net_device, it should return RX_HANDLER_ANOTHER. The rx_handler for the
406 * new device will be called if it exists.
408 * If the rx_handler decides the skb should be ignored, it should return
409 * RX_HANDLER_EXACT. The skb will only be delivered to protocol handlers that
410 * are registered on exact device (ptype->dev == skb->dev).
412 * If the rx_handler didn't change skb->dev, but wants the skb to be normally
413 * delivered, it should return RX_HANDLER_PASS.
415 * A device without a registered rx_handler will behave as if rx_handler
416 * returned RX_HANDLER_PASS.
419 enum rx_handler_result {
425 typedef enum rx_handler_result rx_handler_result_t;
426 typedef rx_handler_result_t rx_handler_func_t(struct sk_buff **pskb);
428 void __napi_schedule(struct napi_struct *n);
429 void __napi_schedule_irqoff(struct napi_struct *n);
431 static inline bool napi_disable_pending(struct napi_struct *n)
433 return test_bit(NAPI_STATE_DISABLE, &n->state);
436 bool napi_schedule_prep(struct napi_struct *n);
439 * napi_schedule - schedule NAPI poll
442 * Schedule NAPI poll routine to be called if it is not already
445 static inline void napi_schedule(struct napi_struct *n)
447 if (napi_schedule_prep(n))
452 * napi_schedule_irqoff - schedule NAPI poll
455 * Variant of napi_schedule(), assuming hard irqs are masked.
457 static inline void napi_schedule_irqoff(struct napi_struct *n)
459 if (napi_schedule_prep(n))
460 __napi_schedule_irqoff(n);
463 /* Try to reschedule poll. Called by dev->poll() after napi_complete(). */
464 static inline bool napi_reschedule(struct napi_struct *napi)
466 if (napi_schedule_prep(napi)) {
467 __napi_schedule(napi);
473 bool napi_complete_done(struct napi_struct *n, int work_done);
475 * napi_complete - NAPI processing complete
478 * Mark NAPI processing as complete.
479 * Consider using napi_complete_done() instead.
480 * Return false if device should avoid rearming interrupts.
482 static inline bool napi_complete(struct napi_struct *n)
484 return napi_complete_done(n, 0);
488 * napi_hash_del - remove a NAPI from global table
489 * @napi: NAPI context
491 * Warning: caller must observe RCU grace period
492 * before freeing memory containing @napi, if
493 * this function returns true.
494 * Note: core networking stack automatically calls it
495 * from netif_napi_del().
496 * Drivers might want to call this helper to combine all
497 * the needed RCU grace periods into a single one.
499 bool napi_hash_del(struct napi_struct *napi);
502 * napi_disable - prevent NAPI from scheduling
505 * Stop NAPI from being scheduled on this context.
506 * Waits till any outstanding processing completes.
508 void napi_disable(struct napi_struct *n);
511 * napi_enable - enable NAPI scheduling
514 * Resume NAPI from being scheduled on this context.
515 * Must be paired with napi_disable.
517 static inline void napi_enable(struct napi_struct *n)
519 BUG_ON(!test_bit(NAPI_STATE_SCHED, &n->state));
520 smp_mb__before_atomic();
521 clear_bit(NAPI_STATE_SCHED, &n->state);
522 clear_bit(NAPI_STATE_NPSVC, &n->state);
526 * napi_synchronize - wait until NAPI is not running
529 * Wait until NAPI is done being scheduled on this context.
530 * Waits till any outstanding processing completes but
531 * does not disable future activations.
533 static inline void napi_synchronize(const struct napi_struct *n)
535 if (IS_ENABLED(CONFIG_SMP))
536 while (test_bit(NAPI_STATE_SCHED, &n->state))
543 * napi_if_scheduled_mark_missed - if napi is running, set the
547 * If napi is running, set the NAPIF_STATE_MISSED, and return true if
550 static inline bool napi_if_scheduled_mark_missed(struct napi_struct *n)
552 unsigned long val, new;
555 val = READ_ONCE(n->state);
556 if (val & NAPIF_STATE_DISABLE)
559 if (!(val & NAPIF_STATE_SCHED))
562 new = val | NAPIF_STATE_MISSED;
563 } while (cmpxchg(&n->state, val, new) != val);
568 enum netdev_queue_state_t {
569 __QUEUE_STATE_DRV_XOFF,
570 __QUEUE_STATE_STACK_XOFF,
571 __QUEUE_STATE_FROZEN,
574 #define QUEUE_STATE_DRV_XOFF (1 << __QUEUE_STATE_DRV_XOFF)
575 #define QUEUE_STATE_STACK_XOFF (1 << __QUEUE_STATE_STACK_XOFF)
576 #define QUEUE_STATE_FROZEN (1 << __QUEUE_STATE_FROZEN)
578 #define QUEUE_STATE_ANY_XOFF (QUEUE_STATE_DRV_XOFF | QUEUE_STATE_STACK_XOFF)
579 #define QUEUE_STATE_ANY_XOFF_OR_FROZEN (QUEUE_STATE_ANY_XOFF | \
581 #define QUEUE_STATE_DRV_XOFF_OR_FROZEN (QUEUE_STATE_DRV_XOFF | \
585 * __QUEUE_STATE_DRV_XOFF is used by drivers to stop the transmit queue. The
586 * netif_tx_* functions below are used to manipulate this flag. The
587 * __QUEUE_STATE_STACK_XOFF flag is used by the stack to stop the transmit
588 * queue independently. The netif_xmit_*stopped functions below are called
589 * to check if the queue has been stopped by the driver or stack (either
590 * of the XOFF bits are set in the state). Drivers should not need to call
591 * netif_xmit*stopped functions, they should only be using netif_tx_*.
594 struct netdev_queue {
598 struct net_device *dev;
599 struct Qdisc __rcu *qdisc;
600 struct Qdisc *qdisc_sleeping;
604 #if defined(CONFIG_XPS) && defined(CONFIG_NUMA)
607 unsigned long tx_maxrate;
609 * Number of TX timeouts for this queue
610 * (/sys/class/net/DEV/Q/trans_timeout)
612 unsigned long trans_timeout;
614 /* Subordinate device that the queue has been assigned to */
615 struct net_device *sb_dev;
616 #ifdef CONFIG_XDP_SOCKETS
617 struct xdp_umem *umem;
622 spinlock_t _xmit_lock ____cacheline_aligned_in_smp;
625 * Time (in jiffies) of last Tx
627 unsigned long trans_start;
634 } ____cacheline_aligned_in_smp;
636 extern int sysctl_fb_tunnels_only_for_init_net;
637 extern int sysctl_devconf_inherit_init_net;
639 static inline bool net_has_fallback_tunnels(const struct net *net)
641 return net == &init_net ||
642 !IS_ENABLED(CONFIG_SYSCTL) ||
643 !sysctl_fb_tunnels_only_for_init_net;
646 static inline int netdev_queue_numa_node_read(const struct netdev_queue *q)
648 #if defined(CONFIG_XPS) && defined(CONFIG_NUMA)
655 static inline void netdev_queue_numa_node_write(struct netdev_queue *q, int node)
657 #if defined(CONFIG_XPS) && defined(CONFIG_NUMA)
664 * This structure holds an RPS map which can be of variable length. The
665 * map is an array of CPUs.
672 #define RPS_MAP_SIZE(_num) (sizeof(struct rps_map) + ((_num) * sizeof(u16)))
675 * The rps_dev_flow structure contains the mapping of a flow to a CPU, the
676 * tail pointer for that CPU's input queue at the time of last enqueue, and
677 * a hardware filter index.
679 struct rps_dev_flow {
682 unsigned int last_qtail;
684 #define RPS_NO_FILTER 0xffff
687 * The rps_dev_flow_table structure contains a table of flow mappings.
689 struct rps_dev_flow_table {
692 struct rps_dev_flow flows[];
694 #define RPS_DEV_FLOW_TABLE_SIZE(_num) (sizeof(struct rps_dev_flow_table) + \
695 ((_num) * sizeof(struct rps_dev_flow)))
698 * The rps_sock_flow_table contains mappings of flows to the last CPU
699 * on which they were processed by the application (set in recvmsg).
700 * Each entry is a 32bit value. Upper part is the high-order bits
701 * of flow hash, lower part is CPU number.
702 * rps_cpu_mask is used to partition the space, depending on number of
703 * possible CPUs : rps_cpu_mask = roundup_pow_of_two(nr_cpu_ids) - 1
704 * For example, if 64 CPUs are possible, rps_cpu_mask = 0x3f,
705 * meaning we use 32-6=26 bits for the hash.
707 struct rps_sock_flow_table {
710 u32 ents[] ____cacheline_aligned_in_smp;
712 #define RPS_SOCK_FLOW_TABLE_SIZE(_num) (offsetof(struct rps_sock_flow_table, ents[_num]))
714 #define RPS_NO_CPU 0xffff
716 extern u32 rps_cpu_mask;
717 extern struct rps_sock_flow_table __rcu *rps_sock_flow_table;
719 static inline void rps_record_sock_flow(struct rps_sock_flow_table *table,
723 unsigned int index = hash & table->mask;
724 u32 val = hash & ~rps_cpu_mask;
726 /* We only give a hint, preemption can change CPU under us */
727 val |= raw_smp_processor_id();
729 if (table->ents[index] != val)
730 table->ents[index] = val;
734 #ifdef CONFIG_RFS_ACCEL
735 bool rps_may_expire_flow(struct net_device *dev, u16 rxq_index, u32 flow_id,
738 #endif /* CONFIG_RPS */
740 /* This structure contains an instance of an RX queue. */
741 struct netdev_rx_queue {
743 struct rps_map __rcu *rps_map;
744 struct rps_dev_flow_table __rcu *rps_flow_table;
747 struct net_device *dev;
748 struct xdp_rxq_info xdp_rxq;
749 #ifdef CONFIG_XDP_SOCKETS
750 struct xdp_umem *umem;
752 } ____cacheline_aligned_in_smp;
755 * RX queue sysfs structures and functions.
757 struct rx_queue_attribute {
758 struct attribute attr;
759 ssize_t (*show)(struct netdev_rx_queue *queue, char *buf);
760 ssize_t (*store)(struct netdev_rx_queue *queue,
761 const char *buf, size_t len);
766 * This structure holds an XPS map which can be of variable length. The
767 * map is an array of queues.
771 unsigned int alloc_len;
775 #define XPS_MAP_SIZE(_num) (sizeof(struct xps_map) + ((_num) * sizeof(u16)))
776 #define XPS_MIN_MAP_ALLOC ((L1_CACHE_ALIGN(offsetof(struct xps_map, queues[1])) \
777 - sizeof(struct xps_map)) / sizeof(u16))
780 * This structure holds all XPS maps for device. Maps are indexed by CPU.
782 struct xps_dev_maps {
784 struct xps_map __rcu *attr_map[]; /* Either CPUs map or RXQs map */
787 #define XPS_CPU_DEV_MAPS_SIZE(_tcs) (sizeof(struct xps_dev_maps) + \
788 (nr_cpu_ids * (_tcs) * sizeof(struct xps_map *)))
790 #define XPS_RXQ_DEV_MAPS_SIZE(_tcs, _rxqs) (sizeof(struct xps_dev_maps) +\
791 (_rxqs * (_tcs) * sizeof(struct xps_map *)))
793 #endif /* CONFIG_XPS */
795 #define TC_MAX_QUEUE 16
796 #define TC_BITMASK 15
797 /* HW offloaded queuing disciplines txq count and offset maps */
798 struct netdev_tc_txq {
803 #if defined(CONFIG_FCOE) || defined(CONFIG_FCOE_MODULE)
805 * This structure is to hold information about the device
806 * configured to run FCoE protocol stack.
808 struct netdev_fcoe_hbainfo {
809 char manufacturer[64];
810 char serial_number[64];
811 char hardware_version[64];
812 char driver_version[64];
813 char optionrom_version[64];
814 char firmware_version[64];
816 char model_description[256];
820 #define MAX_PHYS_ITEM_ID_LEN 32
822 /* This structure holds a unique identifier to identify some
823 * physical item (port for example) used by a netdevice.
825 struct netdev_phys_item_id {
826 unsigned char id[MAX_PHYS_ITEM_ID_LEN];
827 unsigned char id_len;
830 static inline bool netdev_phys_item_id_same(struct netdev_phys_item_id *a,
831 struct netdev_phys_item_id *b)
833 return a->id_len == b->id_len &&
834 memcmp(a->id, b->id, a->id_len) == 0;
837 typedef u16 (*select_queue_fallback_t)(struct net_device *dev,
839 struct net_device *sb_dev);
842 TC_SETUP_QDISC_MQPRIO,
845 TC_SETUP_CLSMATCHALL,
855 TC_SETUP_QDISC_TAPRIO,
862 /* These structures hold the attributes of bpf state that are being passed
863 * to the netdevice through the bpf op.
865 enum bpf_netdev_command {
866 /* Set or clear a bpf program used in the earliest stages of packet
867 * rx. The prog will have been loaded as BPF_PROG_TYPE_XDP. The callee
868 * is responsible for calling bpf_prog_put on any old progs that are
869 * stored. In case of error, the callee need not release the new prog
870 * reference, but on success it takes ownership and must bpf_prog_put
871 * when it is no longer used.
877 /* BPF program for offload callbacks, invoked at program load time. */
878 BPF_OFFLOAD_MAP_ALLOC,
879 BPF_OFFLOAD_MAP_FREE,
883 struct bpf_prog_offload_ops;
884 struct netlink_ext_ack;
886 struct xdp_dev_bulk_queue;
889 enum bpf_netdev_command command;
894 struct bpf_prog *prog;
895 struct netlink_ext_ack *extack;
897 /* XDP_QUERY_PROG, XDP_QUERY_PROG_HW */
900 /* flags with which program was installed */
903 /* BPF_OFFLOAD_MAP_ALLOC, BPF_OFFLOAD_MAP_FREE */
905 struct bpf_offloaded_map *offmap;
907 /* XDP_SETUP_XSK_UMEM */
909 struct xdp_umem *umem;
915 /* Flags for ndo_xsk_wakeup. */
916 #define XDP_WAKEUP_RX (1 << 0)
917 #define XDP_WAKEUP_TX (1 << 1)
919 #ifdef CONFIG_XFRM_OFFLOAD
921 int (*xdo_dev_state_add) (struct xfrm_state *x);
922 void (*xdo_dev_state_delete) (struct xfrm_state *x);
923 void (*xdo_dev_state_free) (struct xfrm_state *x);
924 bool (*xdo_dev_offload_ok) (struct sk_buff *skb,
925 struct xfrm_state *x);
926 void (*xdo_dev_state_advance_esn) (struct xfrm_state *x);
931 struct rcu_head rcuhead;
938 struct netdev_name_node {
939 struct hlist_node hlist;
940 struct list_head list;
941 struct net_device *dev;
945 int netdev_name_node_alt_create(struct net_device *dev, const char *name);
946 int netdev_name_node_alt_destroy(struct net_device *dev, const char *name);
948 struct netdev_net_notifier {
949 struct list_head list;
950 struct notifier_block *nb;
954 * This structure defines the management hooks for network devices.
955 * The following hooks can be defined; unless noted otherwise, they are
956 * optional and can be filled with a null pointer.
958 * int (*ndo_init)(struct net_device *dev);
959 * This function is called once when a network device is registered.
960 * The network device can use this for any late stage initialization
961 * or semantic validation. It can fail with an error code which will
962 * be propagated back to register_netdev.
964 * void (*ndo_uninit)(struct net_device *dev);
965 * This function is called when device is unregistered or when registration
966 * fails. It is not called if init fails.
968 * int (*ndo_open)(struct net_device *dev);
969 * This function is called when a network device transitions to the up
972 * int (*ndo_stop)(struct net_device *dev);
973 * This function is called when a network device transitions to the down
976 * netdev_tx_t (*ndo_start_xmit)(struct sk_buff *skb,
977 * struct net_device *dev);
978 * Called when a packet needs to be transmitted.
979 * Returns NETDEV_TX_OK. Can return NETDEV_TX_BUSY, but you should stop
980 * the queue before that can happen; it's for obsolete devices and weird
981 * corner cases, but the stack really does a non-trivial amount
982 * of useless work if you return NETDEV_TX_BUSY.
983 * Required; cannot be NULL.
985 * netdev_features_t (*ndo_features_check)(struct sk_buff *skb,
986 * struct net_device *dev
987 * netdev_features_t features);
988 * Called by core transmit path to determine if device is capable of
989 * performing offload operations on a given packet. This is to give
990 * the device an opportunity to implement any restrictions that cannot
991 * be otherwise expressed by feature flags. The check is called with
992 * the set of features that the stack has calculated and it returns
993 * those the driver believes to be appropriate.
995 * u16 (*ndo_select_queue)(struct net_device *dev, struct sk_buff *skb,
996 * struct net_device *sb_dev);
997 * Called to decide which queue to use when device supports multiple
1000 * void (*ndo_change_rx_flags)(struct net_device *dev, int flags);
1001 * This function is called to allow device receiver to make
1002 * changes to configuration when multicast or promiscuous is enabled.
1004 * void (*ndo_set_rx_mode)(struct net_device *dev);
1005 * This function is called device changes address list filtering.
1006 * If driver handles unicast address filtering, it should set
1007 * IFF_UNICAST_FLT in its priv_flags.
1009 * int (*ndo_set_mac_address)(struct net_device *dev, void *addr);
1010 * This function is called when the Media Access Control address
1011 * needs to be changed. If this interface is not defined, the
1012 * MAC address can not be changed.
1014 * int (*ndo_validate_addr)(struct net_device *dev);
1015 * Test if Media Access Control address is valid for the device.
1017 * int (*ndo_do_ioctl)(struct net_device *dev, struct ifreq *ifr, int cmd);
1018 * Called when a user requests an ioctl which can't be handled by
1019 * the generic interface code. If not defined ioctls return
1020 * not supported error code.
1022 * int (*ndo_set_config)(struct net_device *dev, struct ifmap *map);
1023 * Used to set network devices bus interface parameters. This interface
1024 * is retained for legacy reasons; new devices should use the bus
1025 * interface (PCI) for low level management.
1027 * int (*ndo_change_mtu)(struct net_device *dev, int new_mtu);
1028 * Called when a user wants to change the Maximum Transfer Unit
1031 * void (*ndo_tx_timeout)(struct net_device *dev, unsigned int txqueue);
1032 * Callback used when the transmitter has not made any progress
1033 * for dev->watchdog ticks.
1035 * void (*ndo_get_stats64)(struct net_device *dev,
1036 * struct rtnl_link_stats64 *storage);
1037 * struct net_device_stats* (*ndo_get_stats)(struct net_device *dev);
1038 * Called when a user wants to get the network device usage
1039 * statistics. Drivers must do one of the following:
1040 * 1. Define @ndo_get_stats64 to fill in a zero-initialised
1041 * rtnl_link_stats64 structure passed by the caller.
1042 * 2. Define @ndo_get_stats to update a net_device_stats structure
1043 * (which should normally be dev->stats) and return a pointer to
1044 * it. The structure may be changed asynchronously only if each
1045 * field is written atomically.
1046 * 3. Update dev->stats asynchronously and atomically, and define
1047 * neither operation.
1049 * bool (*ndo_has_offload_stats)(const struct net_device *dev, int attr_id)
1050 * Return true if this device supports offload stats of this attr_id.
1052 * int (*ndo_get_offload_stats)(int attr_id, const struct net_device *dev,
1054 * Get statistics for offload operations by attr_id. Write it into the
1055 * attr_data pointer.
1057 * int (*ndo_vlan_rx_add_vid)(struct net_device *dev, __be16 proto, u16 vid);
1058 * If device supports VLAN filtering this function is called when a
1059 * VLAN id is registered.
1061 * int (*ndo_vlan_rx_kill_vid)(struct net_device *dev, __be16 proto, u16 vid);
1062 * If device supports VLAN filtering this function is called when a
1063 * VLAN id is unregistered.
1065 * void (*ndo_poll_controller)(struct net_device *dev);
1067 * SR-IOV management functions.
1068 * int (*ndo_set_vf_mac)(struct net_device *dev, int vf, u8* mac);
1069 * int (*ndo_set_vf_vlan)(struct net_device *dev, int vf, u16 vlan,
1070 * u8 qos, __be16 proto);
1071 * int (*ndo_set_vf_rate)(struct net_device *dev, int vf, int min_tx_rate,
1073 * int (*ndo_set_vf_spoofchk)(struct net_device *dev, int vf, bool setting);
1074 * int (*ndo_set_vf_trust)(struct net_device *dev, int vf, bool setting);
1075 * int (*ndo_get_vf_config)(struct net_device *dev,
1076 * int vf, struct ifla_vf_info *ivf);
1077 * int (*ndo_set_vf_link_state)(struct net_device *dev, int vf, int link_state);
1078 * int (*ndo_set_vf_port)(struct net_device *dev, int vf,
1079 * struct nlattr *port[]);
1081 * Enable or disable the VF ability to query its RSS Redirection Table and
1082 * Hash Key. This is needed since on some devices VF share this information
1083 * with PF and querying it may introduce a theoretical security risk.
1084 * int (*ndo_set_vf_rss_query_en)(struct net_device *dev, int vf, bool setting);
1085 * int (*ndo_get_vf_port)(struct net_device *dev, int vf, struct sk_buff *skb);
1086 * int (*ndo_setup_tc)(struct net_device *dev, enum tc_setup_type type,
1088 * Called to setup any 'tc' scheduler, classifier or action on @dev.
1089 * This is always called from the stack with the rtnl lock held and netif
1090 * tx queues stopped. This allows the netdevice to perform queue
1091 * management safely.
1093 * Fiber Channel over Ethernet (FCoE) offload functions.
1094 * int (*ndo_fcoe_enable)(struct net_device *dev);
1095 * Called when the FCoE protocol stack wants to start using LLD for FCoE
1096 * so the underlying device can perform whatever needed configuration or
1097 * initialization to support acceleration of FCoE traffic.
1099 * int (*ndo_fcoe_disable)(struct net_device *dev);
1100 * Called when the FCoE protocol stack wants to stop using LLD for FCoE
1101 * so the underlying device can perform whatever needed clean-ups to
1102 * stop supporting acceleration of FCoE traffic.
1104 * int (*ndo_fcoe_ddp_setup)(struct net_device *dev, u16 xid,
1105 * struct scatterlist *sgl, unsigned int sgc);
1106 * Called when the FCoE Initiator wants to initialize an I/O that
1107 * is a possible candidate for Direct Data Placement (DDP). The LLD can
1108 * perform necessary setup and returns 1 to indicate the device is set up
1109 * successfully to perform DDP on this I/O, otherwise this returns 0.
1111 * int (*ndo_fcoe_ddp_done)(struct net_device *dev, u16 xid);
1112 * Called when the FCoE Initiator/Target is done with the DDPed I/O as
1113 * indicated by the FC exchange id 'xid', so the underlying device can
1114 * clean up and reuse resources for later DDP requests.
1116 * int (*ndo_fcoe_ddp_target)(struct net_device *dev, u16 xid,
1117 * struct scatterlist *sgl, unsigned int sgc);
1118 * Called when the FCoE Target wants to initialize an I/O that
1119 * is a possible candidate for Direct Data Placement (DDP). The LLD can
1120 * perform necessary setup and returns 1 to indicate the device is set up
1121 * successfully to perform DDP on this I/O, otherwise this returns 0.
1123 * int (*ndo_fcoe_get_hbainfo)(struct net_device *dev,
1124 * struct netdev_fcoe_hbainfo *hbainfo);
1125 * Called when the FCoE Protocol stack wants information on the underlying
1126 * device. This information is utilized by the FCoE protocol stack to
1127 * register attributes with Fiber Channel management service as per the
1128 * FC-GS Fabric Device Management Information(FDMI) specification.
1130 * int (*ndo_fcoe_get_wwn)(struct net_device *dev, u64 *wwn, int type);
1131 * Called when the underlying device wants to override default World Wide
1132 * Name (WWN) generation mechanism in FCoE protocol stack to pass its own
1133 * World Wide Port Name (WWPN) or World Wide Node Name (WWNN) to the FCoE
1134 * protocol stack to use.
1137 * int (*ndo_rx_flow_steer)(struct net_device *dev, const struct sk_buff *skb,
1138 * u16 rxq_index, u32 flow_id);
1139 * Set hardware filter for RFS. rxq_index is the target queue index;
1140 * flow_id is a flow ID to be passed to rps_may_expire_flow() later.
1141 * Return the filter ID on success, or a negative error code.
1143 * Slave management functions (for bridge, bonding, etc).
1144 * int (*ndo_add_slave)(struct net_device *dev, struct net_device *slave_dev);
1145 * Called to make another netdev an underling.
1147 * int (*ndo_del_slave)(struct net_device *dev, struct net_device *slave_dev);
1148 * Called to release previously enslaved netdev.
1150 * Feature/offload setting functions.
1151 * netdev_features_t (*ndo_fix_features)(struct net_device *dev,
1152 * netdev_features_t features);
1153 * Adjusts the requested feature flags according to device-specific
1154 * constraints, and returns the resulting flags. Must not modify
1157 * int (*ndo_set_features)(struct net_device *dev, netdev_features_t features);
1158 * Called to update device configuration to new features. Passed
1159 * feature set might be less than what was returned by ndo_fix_features()).
1160 * Must return >0 or -errno if it changed dev->features itself.
1162 * int (*ndo_fdb_add)(struct ndmsg *ndm, struct nlattr *tb[],
1163 * struct net_device *dev,
1164 * const unsigned char *addr, u16 vid, u16 flags,
1165 * struct netlink_ext_ack *extack);
1166 * Adds an FDB entry to dev for addr.
1167 * int (*ndo_fdb_del)(struct ndmsg *ndm, struct nlattr *tb[],
1168 * struct net_device *dev,
1169 * const unsigned char *addr, u16 vid)
1170 * Deletes the FDB entry from dev coresponding to addr.
1171 * int (*ndo_fdb_dump)(struct sk_buff *skb, struct netlink_callback *cb,
1172 * struct net_device *dev, struct net_device *filter_dev,
1174 * Used to add FDB entries to dump requests. Implementers should add
1175 * entries to skb and update idx with the number of entries.
1177 * int (*ndo_bridge_setlink)(struct net_device *dev, struct nlmsghdr *nlh,
1178 * u16 flags, struct netlink_ext_ack *extack)
1179 * int (*ndo_bridge_getlink)(struct sk_buff *skb, u32 pid, u32 seq,
1180 * struct net_device *dev, u32 filter_mask,
1182 * int (*ndo_bridge_dellink)(struct net_device *dev, struct nlmsghdr *nlh,
1185 * int (*ndo_change_carrier)(struct net_device *dev, bool new_carrier);
1186 * Called to change device carrier. Soft-devices (like dummy, team, etc)
1187 * which do not represent real hardware may define this to allow their
1188 * userspace components to manage their virtual carrier state. Devices
1189 * that determine carrier state from physical hardware properties (eg
1190 * network cables) or protocol-dependent mechanisms (eg
1191 * USB_CDC_NOTIFY_NETWORK_CONNECTION) should NOT implement this function.
1193 * int (*ndo_get_phys_port_id)(struct net_device *dev,
1194 * struct netdev_phys_item_id *ppid);
1195 * Called to get ID of physical port of this device. If driver does
1196 * not implement this, it is assumed that the hw is not able to have
1197 * multiple net devices on single physical port.
1199 * int (*ndo_get_port_parent_id)(struct net_device *dev,
1200 * struct netdev_phys_item_id *ppid)
1201 * Called to get the parent ID of the physical port of this device.
1203 * void (*ndo_udp_tunnel_add)(struct net_device *dev,
1204 * struct udp_tunnel_info *ti);
1205 * Called by UDP tunnel to notify a driver about the UDP port and socket
1206 * address family that a UDP tunnel is listnening to. It is called only
1207 * when a new port starts listening. The operation is protected by the
1210 * void (*ndo_udp_tunnel_del)(struct net_device *dev,
1211 * struct udp_tunnel_info *ti);
1212 * Called by UDP tunnel to notify the driver about a UDP port and socket
1213 * address family that the UDP tunnel is not listening to anymore. The
1214 * operation is protected by the RTNL.
1216 * void* (*ndo_dfwd_add_station)(struct net_device *pdev,
1217 * struct net_device *dev)
1218 * Called by upper layer devices to accelerate switching or other
1219 * station functionality into hardware. 'pdev is the lowerdev
1220 * to use for the offload and 'dev' is the net device that will
1221 * back the offload. Returns a pointer to the private structure
1222 * the upper layer will maintain.
1223 * void (*ndo_dfwd_del_station)(struct net_device *pdev, void *priv)
1224 * Called by upper layer device to delete the station created
1225 * by 'ndo_dfwd_add_station'. 'pdev' is the net device backing
1226 * the station and priv is the structure returned by the add
1228 * int (*ndo_set_tx_maxrate)(struct net_device *dev,
1229 * int queue_index, u32 maxrate);
1230 * Called when a user wants to set a max-rate limitation of specific
1232 * int (*ndo_get_iflink)(const struct net_device *dev);
1233 * Called to get the iflink value of this device.
1234 * void (*ndo_change_proto_down)(struct net_device *dev,
1236 * This function is used to pass protocol port error state information
1237 * to the switch driver. The switch driver can react to the proto_down
1238 * by doing a phys down on the associated switch port.
1239 * int (*ndo_fill_metadata_dst)(struct net_device *dev, struct sk_buff *skb);
1240 * This function is used to get egress tunnel information for given skb.
1241 * This is useful for retrieving outer tunnel header parameters while
1243 * void (*ndo_set_rx_headroom)(struct net_device *dev, int needed_headroom);
1244 * This function is used to specify the headroom that the skb must
1245 * consider when allocation skb during packet reception. Setting
1246 * appropriate rx headroom value allows avoiding skb head copy on
1247 * forward. Setting a negative value resets the rx headroom to the
1249 * int (*ndo_bpf)(struct net_device *dev, struct netdev_bpf *bpf);
1250 * This function is used to set or query state related to XDP on the
1251 * netdevice and manage BPF offload. See definition of
1252 * enum bpf_netdev_command for details.
1253 * int (*ndo_xdp_xmit)(struct net_device *dev, int n, struct xdp_frame **xdp,
1255 * This function is used to submit @n XDP packets for transmit on a
1256 * netdevice. Returns number of frames successfully transmitted, frames
1257 * that got dropped are freed/returned via xdp_return_frame().
1258 * Returns negative number, means general error invoking ndo, meaning
1259 * no frames were xmit'ed and core-caller will free all frames.
1260 * int (*ndo_xsk_wakeup)(struct net_device *dev, u32 queue_id, u32 flags);
1261 * This function is used to wake up the softirq, ksoftirqd or kthread
1262 * responsible for sending and/or receiving packets on a specific
1263 * queue id bound to an AF_XDP socket. The flags field specifies if
1264 * only RX, only Tx, or both should be woken up using the flags
1265 * XDP_WAKEUP_RX and XDP_WAKEUP_TX.
1266 * struct devlink_port *(*ndo_get_devlink_port)(struct net_device *dev);
1267 * Get devlink port instance associated with a given netdev.
1268 * Called with a reference on the netdevice and devlink locks only,
1269 * rtnl_lock is not held.
1271 struct net_device_ops {
1272 int (*ndo_init)(struct net_device *dev);
1273 void (*ndo_uninit)(struct net_device *dev);
1274 int (*ndo_open)(struct net_device *dev);
1275 int (*ndo_stop)(struct net_device *dev);
1276 netdev_tx_t (*ndo_start_xmit)(struct sk_buff *skb,
1277 struct net_device *dev);
1278 netdev_features_t (*ndo_features_check)(struct sk_buff *skb,
1279 struct net_device *dev,
1280 netdev_features_t features);
1281 u16 (*ndo_select_queue)(struct net_device *dev,
1282 struct sk_buff *skb,
1283 struct net_device *sb_dev);
1284 void (*ndo_change_rx_flags)(struct net_device *dev,
1286 void (*ndo_set_rx_mode)(struct net_device *dev);
1287 int (*ndo_set_mac_address)(struct net_device *dev,
1289 int (*ndo_validate_addr)(struct net_device *dev);
1290 int (*ndo_do_ioctl)(struct net_device *dev,
1291 struct ifreq *ifr, int cmd);
1292 int (*ndo_set_config)(struct net_device *dev,
1294 int (*ndo_change_mtu)(struct net_device *dev,
1296 int (*ndo_neigh_setup)(struct net_device *dev,
1297 struct neigh_parms *);
1298 void (*ndo_tx_timeout) (struct net_device *dev,
1299 unsigned int txqueue);
1301 void (*ndo_get_stats64)(struct net_device *dev,
1302 struct rtnl_link_stats64 *storage);
1303 bool (*ndo_has_offload_stats)(const struct net_device *dev, int attr_id);
1304 int (*ndo_get_offload_stats)(int attr_id,
1305 const struct net_device *dev,
1307 struct net_device_stats* (*ndo_get_stats)(struct net_device *dev);
1309 int (*ndo_vlan_rx_add_vid)(struct net_device *dev,
1310 __be16 proto, u16 vid);
1311 int (*ndo_vlan_rx_kill_vid)(struct net_device *dev,
1312 __be16 proto, u16 vid);
1313 #ifdef CONFIG_NET_POLL_CONTROLLER
1314 void (*ndo_poll_controller)(struct net_device *dev);
1315 int (*ndo_netpoll_setup)(struct net_device *dev,
1316 struct netpoll_info *info);
1317 void (*ndo_netpoll_cleanup)(struct net_device *dev);
1319 int (*ndo_set_vf_mac)(struct net_device *dev,
1320 int queue, u8 *mac);
1321 int (*ndo_set_vf_vlan)(struct net_device *dev,
1322 int queue, u16 vlan,
1323 u8 qos, __be16 proto);
1324 int (*ndo_set_vf_rate)(struct net_device *dev,
1325 int vf, int min_tx_rate,
1327 int (*ndo_set_vf_spoofchk)(struct net_device *dev,
1328 int vf, bool setting);
1329 int (*ndo_set_vf_trust)(struct net_device *dev,
1330 int vf, bool setting);
1331 int (*ndo_get_vf_config)(struct net_device *dev,
1333 struct ifla_vf_info *ivf);
1334 int (*ndo_set_vf_link_state)(struct net_device *dev,
1335 int vf, int link_state);
1336 int (*ndo_get_vf_stats)(struct net_device *dev,
1338 struct ifla_vf_stats
1340 int (*ndo_set_vf_port)(struct net_device *dev,
1342 struct nlattr *port[]);
1343 int (*ndo_get_vf_port)(struct net_device *dev,
1344 int vf, struct sk_buff *skb);
1345 int (*ndo_get_vf_guid)(struct net_device *dev,
1347 struct ifla_vf_guid *node_guid,
1348 struct ifla_vf_guid *port_guid);
1349 int (*ndo_set_vf_guid)(struct net_device *dev,
1352 int (*ndo_set_vf_rss_query_en)(
1353 struct net_device *dev,
1354 int vf, bool setting);
1355 int (*ndo_setup_tc)(struct net_device *dev,
1356 enum tc_setup_type type,
1358 #if IS_ENABLED(CONFIG_FCOE)
1359 int (*ndo_fcoe_enable)(struct net_device *dev);
1360 int (*ndo_fcoe_disable)(struct net_device *dev);
1361 int (*ndo_fcoe_ddp_setup)(struct net_device *dev,
1363 struct scatterlist *sgl,
1365 int (*ndo_fcoe_ddp_done)(struct net_device *dev,
1367 int (*ndo_fcoe_ddp_target)(struct net_device *dev,
1369 struct scatterlist *sgl,
1371 int (*ndo_fcoe_get_hbainfo)(struct net_device *dev,
1372 struct netdev_fcoe_hbainfo *hbainfo);
1375 #if IS_ENABLED(CONFIG_LIBFCOE)
1376 #define NETDEV_FCOE_WWNN 0
1377 #define NETDEV_FCOE_WWPN 1
1378 int (*ndo_fcoe_get_wwn)(struct net_device *dev,
1379 u64 *wwn, int type);
1382 #ifdef CONFIG_RFS_ACCEL
1383 int (*ndo_rx_flow_steer)(struct net_device *dev,
1384 const struct sk_buff *skb,
1388 int (*ndo_add_slave)(struct net_device *dev,
1389 struct net_device *slave_dev,
1390 struct netlink_ext_ack *extack);
1391 int (*ndo_del_slave)(struct net_device *dev,
1392 struct net_device *slave_dev);
1393 netdev_features_t (*ndo_fix_features)(struct net_device *dev,
1394 netdev_features_t features);
1395 int (*ndo_set_features)(struct net_device *dev,
1396 netdev_features_t features);
1397 int (*ndo_neigh_construct)(struct net_device *dev,
1398 struct neighbour *n);
1399 void (*ndo_neigh_destroy)(struct net_device *dev,
1400 struct neighbour *n);
1402 int (*ndo_fdb_add)(struct ndmsg *ndm,
1403 struct nlattr *tb[],
1404 struct net_device *dev,
1405 const unsigned char *addr,
1408 struct netlink_ext_ack *extack);
1409 int (*ndo_fdb_del)(struct ndmsg *ndm,
1410 struct nlattr *tb[],
1411 struct net_device *dev,
1412 const unsigned char *addr,
1414 int (*ndo_fdb_dump)(struct sk_buff *skb,
1415 struct netlink_callback *cb,
1416 struct net_device *dev,
1417 struct net_device *filter_dev,
1419 int (*ndo_fdb_get)(struct sk_buff *skb,
1420 struct nlattr *tb[],
1421 struct net_device *dev,
1422 const unsigned char *addr,
1423 u16 vid, u32 portid, u32 seq,
1424 struct netlink_ext_ack *extack);
1425 int (*ndo_bridge_setlink)(struct net_device *dev,
1426 struct nlmsghdr *nlh,
1428 struct netlink_ext_ack *extack);
1429 int (*ndo_bridge_getlink)(struct sk_buff *skb,
1431 struct net_device *dev,
1434 int (*ndo_bridge_dellink)(struct net_device *dev,
1435 struct nlmsghdr *nlh,
1437 int (*ndo_change_carrier)(struct net_device *dev,
1439 int (*ndo_get_phys_port_id)(struct net_device *dev,
1440 struct netdev_phys_item_id *ppid);
1441 int (*ndo_get_port_parent_id)(struct net_device *dev,
1442 struct netdev_phys_item_id *ppid);
1443 int (*ndo_get_phys_port_name)(struct net_device *dev,
1444 char *name, size_t len);
1445 void (*ndo_udp_tunnel_add)(struct net_device *dev,
1446 struct udp_tunnel_info *ti);
1447 void (*ndo_udp_tunnel_del)(struct net_device *dev,
1448 struct udp_tunnel_info *ti);
1449 void* (*ndo_dfwd_add_station)(struct net_device *pdev,
1450 struct net_device *dev);
1451 void (*ndo_dfwd_del_station)(struct net_device *pdev,
1454 int (*ndo_set_tx_maxrate)(struct net_device *dev,
1457 int (*ndo_get_iflink)(const struct net_device *dev);
1458 int (*ndo_change_proto_down)(struct net_device *dev,
1460 int (*ndo_fill_metadata_dst)(struct net_device *dev,
1461 struct sk_buff *skb);
1462 void (*ndo_set_rx_headroom)(struct net_device *dev,
1463 int needed_headroom);
1464 int (*ndo_bpf)(struct net_device *dev,
1465 struct netdev_bpf *bpf);
1466 int (*ndo_xdp_xmit)(struct net_device *dev, int n,
1467 struct xdp_frame **xdp,
1469 int (*ndo_xsk_wakeup)(struct net_device *dev,
1470 u32 queue_id, u32 flags);
1471 struct devlink_port * (*ndo_get_devlink_port)(struct net_device *dev);
1475 * enum net_device_priv_flags - &struct net_device priv_flags
1477 * These are the &struct net_device, they are only set internally
1478 * by drivers and used in the kernel. These flags are invisible to
1479 * userspace; this means that the order of these flags can change
1480 * during any kernel release.
1482 * You should have a pretty good reason to be extending these flags.
1484 * @IFF_802_1Q_VLAN: 802.1Q VLAN device
1485 * @IFF_EBRIDGE: Ethernet bridging device
1486 * @IFF_BONDING: bonding master or slave
1487 * @IFF_ISATAP: ISATAP interface (RFC4214)
1488 * @IFF_WAN_HDLC: WAN HDLC device
1489 * @IFF_XMIT_DST_RELEASE: dev_hard_start_xmit() is allowed to
1491 * @IFF_DONT_BRIDGE: disallow bridging this ether dev
1492 * @IFF_DISABLE_NETPOLL: disable netpoll at run-time
1493 * @IFF_MACVLAN_PORT: device used as macvlan port
1494 * @IFF_BRIDGE_PORT: device used as bridge port
1495 * @IFF_OVS_DATAPATH: device used as Open vSwitch datapath port
1496 * @IFF_TX_SKB_SHARING: The interface supports sharing skbs on transmit
1497 * @IFF_UNICAST_FLT: Supports unicast filtering
1498 * @IFF_TEAM_PORT: device used as team port
1499 * @IFF_SUPP_NOFCS: device supports sending custom FCS
1500 * @IFF_LIVE_ADDR_CHANGE: device supports hardware address
1501 * change when it's running
1502 * @IFF_MACVLAN: Macvlan device
1503 * @IFF_XMIT_DST_RELEASE_PERM: IFF_XMIT_DST_RELEASE not taking into account
1504 * underlying stacked devices
1505 * @IFF_L3MDEV_MASTER: device is an L3 master device
1506 * @IFF_NO_QUEUE: device can run without qdisc attached
1507 * @IFF_OPENVSWITCH: device is a Open vSwitch master
1508 * @IFF_L3MDEV_SLAVE: device is enslaved to an L3 master device
1509 * @IFF_TEAM: device is a team device
1510 * @IFF_RXFH_CONFIGURED: device has had Rx Flow indirection table configured
1511 * @IFF_PHONY_HEADROOM: the headroom value is controlled by an external
1512 * entity (i.e. the master device for bridged veth)
1513 * @IFF_MACSEC: device is a MACsec device
1514 * @IFF_NO_RX_HANDLER: device doesn't support the rx_handler hook
1515 * @IFF_FAILOVER: device is a failover master device
1516 * @IFF_FAILOVER_SLAVE: device is lower dev of a failover master device
1517 * @IFF_L3MDEV_RX_HANDLER: only invoke the rx handler of L3 master device
1518 * @IFF_LIVE_RENAME_OK: rename is allowed while device is up and running
1520 enum netdev_priv_flags {
1521 IFF_802_1Q_VLAN = 1<<0,
1525 IFF_WAN_HDLC = 1<<4,
1526 IFF_XMIT_DST_RELEASE = 1<<5,
1527 IFF_DONT_BRIDGE = 1<<6,
1528 IFF_DISABLE_NETPOLL = 1<<7,
1529 IFF_MACVLAN_PORT = 1<<8,
1530 IFF_BRIDGE_PORT = 1<<9,
1531 IFF_OVS_DATAPATH = 1<<10,
1532 IFF_TX_SKB_SHARING = 1<<11,
1533 IFF_UNICAST_FLT = 1<<12,
1534 IFF_TEAM_PORT = 1<<13,
1535 IFF_SUPP_NOFCS = 1<<14,
1536 IFF_LIVE_ADDR_CHANGE = 1<<15,
1537 IFF_MACVLAN = 1<<16,
1538 IFF_XMIT_DST_RELEASE_PERM = 1<<17,
1539 IFF_L3MDEV_MASTER = 1<<18,
1540 IFF_NO_QUEUE = 1<<19,
1541 IFF_OPENVSWITCH = 1<<20,
1542 IFF_L3MDEV_SLAVE = 1<<21,
1544 IFF_RXFH_CONFIGURED = 1<<23,
1545 IFF_PHONY_HEADROOM = 1<<24,
1547 IFF_NO_RX_HANDLER = 1<<26,
1548 IFF_FAILOVER = 1<<27,
1549 IFF_FAILOVER_SLAVE = 1<<28,
1550 IFF_L3MDEV_RX_HANDLER = 1<<29,
1551 IFF_LIVE_RENAME_OK = 1<<30,
1554 #define IFF_802_1Q_VLAN IFF_802_1Q_VLAN
1555 #define IFF_EBRIDGE IFF_EBRIDGE
1556 #define IFF_BONDING IFF_BONDING
1557 #define IFF_ISATAP IFF_ISATAP
1558 #define IFF_WAN_HDLC IFF_WAN_HDLC
1559 #define IFF_XMIT_DST_RELEASE IFF_XMIT_DST_RELEASE
1560 #define IFF_DONT_BRIDGE IFF_DONT_BRIDGE
1561 #define IFF_DISABLE_NETPOLL IFF_DISABLE_NETPOLL
1562 #define IFF_MACVLAN_PORT IFF_MACVLAN_PORT
1563 #define IFF_BRIDGE_PORT IFF_BRIDGE_PORT
1564 #define IFF_OVS_DATAPATH IFF_OVS_DATAPATH
1565 #define IFF_TX_SKB_SHARING IFF_TX_SKB_SHARING
1566 #define IFF_UNICAST_FLT IFF_UNICAST_FLT
1567 #define IFF_TEAM_PORT IFF_TEAM_PORT
1568 #define IFF_SUPP_NOFCS IFF_SUPP_NOFCS
1569 #define IFF_LIVE_ADDR_CHANGE IFF_LIVE_ADDR_CHANGE
1570 #define IFF_MACVLAN IFF_MACVLAN
1571 #define IFF_XMIT_DST_RELEASE_PERM IFF_XMIT_DST_RELEASE_PERM
1572 #define IFF_L3MDEV_MASTER IFF_L3MDEV_MASTER
1573 #define IFF_NO_QUEUE IFF_NO_QUEUE
1574 #define IFF_OPENVSWITCH IFF_OPENVSWITCH
1575 #define IFF_L3MDEV_SLAVE IFF_L3MDEV_SLAVE
1576 #define IFF_TEAM IFF_TEAM
1577 #define IFF_RXFH_CONFIGURED IFF_RXFH_CONFIGURED
1578 #define IFF_MACSEC IFF_MACSEC
1579 #define IFF_NO_RX_HANDLER IFF_NO_RX_HANDLER
1580 #define IFF_FAILOVER IFF_FAILOVER
1581 #define IFF_FAILOVER_SLAVE IFF_FAILOVER_SLAVE
1582 #define IFF_L3MDEV_RX_HANDLER IFF_L3MDEV_RX_HANDLER
1583 #define IFF_LIVE_RENAME_OK IFF_LIVE_RENAME_OK
1586 * struct net_device - The DEVICE structure.
1588 * Actually, this whole structure is a big mistake. It mixes I/O
1589 * data with strictly "high-level" data, and it has to know about
1590 * almost every data structure used in the INET module.
1592 * @name: This is the first field of the "visible" part of this structure
1593 * (i.e. as seen by users in the "Space.c" file). It is the name
1596 * @name_node: Name hashlist node
1597 * @ifalias: SNMP alias
1598 * @mem_end: Shared memory end
1599 * @mem_start: Shared memory start
1600 * @base_addr: Device I/O address
1601 * @irq: Device IRQ number
1603 * @state: Generic network queuing layer state, see netdev_state_t
1604 * @dev_list: The global list of network devices
1605 * @napi_list: List entry used for polling NAPI devices
1606 * @unreg_list: List entry when we are unregistering the
1607 * device; see the function unregister_netdev
1608 * @close_list: List entry used when we are closing the device
1609 * @ptype_all: Device-specific packet handlers for all protocols
1610 * @ptype_specific: Device-specific, protocol-specific packet handlers
1612 * @adj_list: Directly linked devices, like slaves for bonding
1613 * @features: Currently active device features
1614 * @hw_features: User-changeable features
1616 * @wanted_features: User-requested features
1617 * @vlan_features: Mask of features inheritable by VLAN devices
1619 * @hw_enc_features: Mask of features inherited by encapsulating devices
1620 * This field indicates what encapsulation
1621 * offloads the hardware is capable of doing,
1622 * and drivers will need to set them appropriately.
1624 * @mpls_features: Mask of features inheritable by MPLS
1625 * @gso_partial_features: value(s) from NETIF_F_GSO\*
1627 * @ifindex: interface index
1628 * @group: The group the device belongs to
1630 * @stats: Statistics struct, which was left as a legacy, use
1631 * rtnl_link_stats64 instead
1633 * @rx_dropped: Dropped packets by core network,
1634 * do not use this in drivers
1635 * @tx_dropped: Dropped packets by core network,
1636 * do not use this in drivers
1637 * @rx_nohandler: nohandler dropped packets by core network on
1638 * inactive devices, do not use this in drivers
1639 * @carrier_up_count: Number of times the carrier has been up
1640 * @carrier_down_count: Number of times the carrier has been down
1642 * @wireless_handlers: List of functions to handle Wireless Extensions,
1644 * see <net/iw_handler.h> for details.
1645 * @wireless_data: Instance data managed by the core of wireless extensions
1647 * @netdev_ops: Includes several pointers to callbacks,
1648 * if one wants to override the ndo_*() functions
1649 * @ethtool_ops: Management operations
1650 * @l3mdev_ops: Layer 3 master device operations
1651 * @ndisc_ops: Includes callbacks for different IPv6 neighbour
1652 * discovery handling. Necessary for e.g. 6LoWPAN.
1653 * @xfrmdev_ops: Transformation offload operations
1654 * @tlsdev_ops: Transport Layer Security offload operations
1655 * @header_ops: Includes callbacks for creating,parsing,caching,etc
1656 * of Layer 2 headers.
1658 * @flags: Interface flags (a la BSD)
1659 * @priv_flags: Like 'flags' but invisible to userspace,
1660 * see if.h for the definitions
1661 * @gflags: Global flags ( kept as legacy )
1662 * @padded: How much padding added by alloc_netdev()
1663 * @operstate: RFC2863 operstate
1664 * @link_mode: Mapping policy to operstate
1665 * @if_port: Selectable AUI, TP, ...
1667 * @mtu: Interface MTU value
1668 * @min_mtu: Interface Minimum MTU value
1669 * @max_mtu: Interface Maximum MTU value
1670 * @type: Interface hardware type
1671 * @hard_header_len: Maximum hardware header length.
1672 * @min_header_len: Minimum hardware header length
1674 * @needed_headroom: Extra headroom the hardware may need, but not in all
1675 * cases can this be guaranteed
1676 * @needed_tailroom: Extra tailroom the hardware may need, but not in all
1677 * cases can this be guaranteed. Some cases also use
1678 * LL_MAX_HEADER instead to allocate the skb
1680 * interface address info:
1682 * @perm_addr: Permanent hw address
1683 * @addr_assign_type: Hw address assignment type
1684 * @addr_len: Hardware address length
1685 * @upper_level: Maximum depth level of upper devices.
1686 * @lower_level: Maximum depth level of lower devices.
1687 * @neigh_priv_len: Used in neigh_alloc()
1688 * @dev_id: Used to differentiate devices that share
1689 * the same link layer address
1690 * @dev_port: Used to differentiate devices that share
1692 * @addr_list_lock: XXX: need comments on this one
1693 * @name_assign_type: network interface name assignment type
1694 * @uc_promisc: Counter that indicates promiscuous mode
1695 * has been enabled due to the need to listen to
1696 * additional unicast addresses in a device that
1697 * does not implement ndo_set_rx_mode()
1698 * @uc: unicast mac addresses
1699 * @mc: multicast mac addresses
1700 * @dev_addrs: list of device hw addresses
1701 * @queues_kset: Group of all Kobjects in the Tx and RX queues
1702 * @promiscuity: Number of times the NIC is told to work in
1703 * promiscuous mode; if it becomes 0 the NIC will
1704 * exit promiscuous mode
1705 * @allmulti: Counter, enables or disables allmulticast mode
1707 * @vlan_info: VLAN info
1708 * @dsa_ptr: dsa specific data
1709 * @tipc_ptr: TIPC specific data
1710 * @atalk_ptr: AppleTalk link
1711 * @ip_ptr: IPv4 specific data
1712 * @dn_ptr: DECnet specific data
1713 * @ip6_ptr: IPv6 specific data
1714 * @ax25_ptr: AX.25 specific data
1715 * @ieee80211_ptr: IEEE 802.11 specific data, assign before registering
1716 * @ieee802154_ptr: IEEE 802.15.4 low-rate Wireless Personal Area Network
1718 * @mpls_ptr: mpls_dev struct pointer
1720 * @dev_addr: Hw address (before bcast,
1721 * because most packets are unicast)
1723 * @_rx: Array of RX queues
1724 * @num_rx_queues: Number of RX queues
1725 * allocated at register_netdev() time
1726 * @real_num_rx_queues: Number of RX queues currently active in device
1727 * @xdp_prog: XDP sockets filter program pointer
1728 * @gro_flush_timeout: timeout for GRO layer in NAPI
1730 * @rx_handler: handler for received packets
1731 * @rx_handler_data: XXX: need comments on this one
1732 * @miniq_ingress: ingress/clsact qdisc specific data for
1733 * ingress processing
1734 * @ingress_queue: XXX: need comments on this one
1735 * @nf_hooks_ingress: netfilter hooks executed for ingress packets
1736 * @broadcast: hw bcast address
1738 * @rx_cpu_rmap: CPU reverse-mapping for RX completion interrupts,
1739 * indexed by RX queue number. Assigned by driver.
1740 * This must only be set if the ndo_rx_flow_steer
1741 * operation is defined
1742 * @index_hlist: Device index hash chain
1744 * @_tx: Array of TX queues
1745 * @num_tx_queues: Number of TX queues allocated at alloc_netdev_mq() time
1746 * @real_num_tx_queues: Number of TX queues currently active in device
1747 * @qdisc: Root qdisc from userspace point of view
1748 * @tx_queue_len: Max frames per queue allowed
1749 * @tx_global_lock: XXX: need comments on this one
1750 * @xdp_bulkq: XDP device bulk queue
1751 * @xps_cpus_map: all CPUs map for XPS device
1752 * @xps_rxqs_map: all RXQs map for XPS device
1754 * @xps_maps: XXX: need comments on this one
1755 * @miniq_egress: clsact qdisc specific data for
1757 * @qdisc_hash: qdisc hash table
1758 * @watchdog_timeo: Represents the timeout that is used by
1759 * the watchdog (see dev_watchdog())
1760 * @watchdog_timer: List of timers
1762 * @pcpu_refcnt: Number of references to this device
1763 * @todo_list: Delayed register/unregister
1764 * @link_watch_list: XXX: need comments on this one
1766 * @reg_state: Register/unregister state machine
1767 * @dismantle: Device is going to be freed
1768 * @rtnl_link_state: This enum represents the phases of creating
1771 * @needs_free_netdev: Should unregister perform free_netdev?
1772 * @priv_destructor: Called from unregister
1773 * @npinfo: XXX: need comments on this one
1774 * @nd_net: Network namespace this network device is inside
1776 * @ml_priv: Mid-layer private
1777 * @lstats: Loopback statistics
1778 * @tstats: Tunnel statistics
1779 * @dstats: Dummy statistics
1780 * @vstats: Virtual ethernet statistics
1785 * @dev: Class/net/name entry
1786 * @sysfs_groups: Space for optional device, statistics and wireless
1789 * @sysfs_rx_queue_group: Space for optional per-rx queue attributes
1790 * @rtnl_link_ops: Rtnl_link_ops
1792 * @gso_max_size: Maximum size of generic segmentation offload
1793 * @gso_max_segs: Maximum number of segments that can be passed to the
1796 * @dcbnl_ops: Data Center Bridging netlink ops
1797 * @num_tc: Number of traffic classes in the net device
1798 * @tc_to_txq: XXX: need comments on this one
1799 * @prio_tc_map: XXX: need comments on this one
1801 * @fcoe_ddp_xid: Max exchange id for FCoE LRO by ddp
1803 * @priomap: XXX: need comments on this one
1804 * @phydev: Physical device may attach itself
1805 * for hardware timestamping
1806 * @sfp_bus: attached &struct sfp_bus structure.
1807 * @qdisc_tx_busylock_key: lockdep class annotating Qdisc->busylock
1809 * @qdisc_running_key: lockdep class annotating Qdisc->running seqcount
1810 * @qdisc_xmit_lock_key: lockdep class annotating
1811 * netdev_queue->_xmit_lock spinlock
1812 * @addr_list_lock_key: lockdep class annotating
1813 * net_device->addr_list_lock spinlock
1815 * @proto_down: protocol port state information can be sent to the
1816 * switch driver and used to set the phys state of the
1819 * @wol_enabled: Wake-on-LAN is enabled
1821 * @net_notifier_list: List of per-net netdev notifier block
1822 * that follow this device when it is moved
1823 * to another network namespace.
1825 * @macsec_ops: MACsec offloading ops
1827 * FIXME: cleanup struct net_device such that network protocol info
1832 char name[IFNAMSIZ];
1833 struct netdev_name_node *name_node;
1834 struct dev_ifalias __rcu *ifalias;
1836 * I/O specific fields
1837 * FIXME: Merge these and struct ifmap into one
1839 unsigned long mem_end;
1840 unsigned long mem_start;
1841 unsigned long base_addr;
1845 * Some hardware also needs these fields (state,dev_list,
1846 * napi_list,unreg_list,close_list) but they are not
1847 * part of the usual set specified in Space.c.
1850 unsigned long state;
1852 struct list_head dev_list;
1853 struct list_head napi_list;
1854 struct list_head unreg_list;
1855 struct list_head close_list;
1856 struct list_head ptype_all;
1857 struct list_head ptype_specific;
1860 struct list_head upper;
1861 struct list_head lower;
1864 netdev_features_t features;
1865 netdev_features_t hw_features;
1866 netdev_features_t wanted_features;
1867 netdev_features_t vlan_features;
1868 netdev_features_t hw_enc_features;
1869 netdev_features_t mpls_features;
1870 netdev_features_t gso_partial_features;
1875 struct net_device_stats stats;
1877 atomic_long_t rx_dropped;
1878 atomic_long_t tx_dropped;
1879 atomic_long_t rx_nohandler;
1881 /* Stats to monitor link on/off, flapping */
1882 atomic_t carrier_up_count;
1883 atomic_t carrier_down_count;
1885 #ifdef CONFIG_WIRELESS_EXT
1886 const struct iw_handler_def *wireless_handlers;
1887 struct iw_public_data *wireless_data;
1889 const struct net_device_ops *netdev_ops;
1890 const struct ethtool_ops *ethtool_ops;
1891 #ifdef CONFIG_NET_L3_MASTER_DEV
1892 const struct l3mdev_ops *l3mdev_ops;
1894 #if IS_ENABLED(CONFIG_IPV6)
1895 const struct ndisc_ops *ndisc_ops;
1898 #ifdef CONFIG_XFRM_OFFLOAD
1899 const struct xfrmdev_ops *xfrmdev_ops;
1902 #if IS_ENABLED(CONFIG_TLS_DEVICE)
1903 const struct tlsdev_ops *tlsdev_ops;
1906 const struct header_ops *header_ops;
1909 unsigned int priv_flags;
1911 unsigned short gflags;
1912 unsigned short padded;
1914 unsigned char operstate;
1915 unsigned char link_mode;
1917 unsigned char if_port;
1920 /* Note : dev->mtu is often read without holding a lock.
1921 * Writers usually hold RTNL.
1922 * It is recommended to use READ_ONCE() to annotate the reads,
1923 * and to use WRITE_ONCE() to annotate the writes.
1926 unsigned int min_mtu;
1927 unsigned int max_mtu;
1928 unsigned short type;
1929 unsigned short hard_header_len;
1930 unsigned char min_header_len;
1932 unsigned short needed_headroom;
1933 unsigned short needed_tailroom;
1935 /* Interface address info. */
1936 unsigned char perm_addr[MAX_ADDR_LEN];
1937 unsigned char addr_assign_type;
1938 unsigned char addr_len;
1939 unsigned char upper_level;
1940 unsigned char lower_level;
1941 unsigned short neigh_priv_len;
1942 unsigned short dev_id;
1943 unsigned short dev_port;
1944 spinlock_t addr_list_lock;
1945 unsigned char name_assign_type;
1947 struct netdev_hw_addr_list uc;
1948 struct netdev_hw_addr_list mc;
1949 struct netdev_hw_addr_list dev_addrs;
1952 struct kset *queues_kset;
1954 unsigned int promiscuity;
1955 unsigned int allmulti;
1958 /* Protocol-specific pointers */
1960 #if IS_ENABLED(CONFIG_VLAN_8021Q)
1961 struct vlan_info __rcu *vlan_info;
1963 #if IS_ENABLED(CONFIG_NET_DSA)
1964 struct dsa_port *dsa_ptr;
1966 #if IS_ENABLED(CONFIG_TIPC)
1967 struct tipc_bearer __rcu *tipc_ptr;
1969 #if IS_ENABLED(CONFIG_IRDA) || IS_ENABLED(CONFIG_ATALK)
1972 struct in_device __rcu *ip_ptr;
1973 #if IS_ENABLED(CONFIG_DECNET)
1974 struct dn_dev __rcu *dn_ptr;
1976 struct inet6_dev __rcu *ip6_ptr;
1977 #if IS_ENABLED(CONFIG_AX25)
1980 struct wireless_dev *ieee80211_ptr;
1981 struct wpan_dev *ieee802154_ptr;
1982 #if IS_ENABLED(CONFIG_MPLS_ROUTING)
1983 struct mpls_dev __rcu *mpls_ptr;
1987 * Cache lines mostly used on receive path (including eth_type_trans())
1989 /* Interface address info used in eth_type_trans() */
1990 unsigned char *dev_addr;
1992 struct netdev_rx_queue *_rx;
1993 unsigned int num_rx_queues;
1994 unsigned int real_num_rx_queues;
1996 struct bpf_prog __rcu *xdp_prog;
1997 unsigned long gro_flush_timeout;
1998 rx_handler_func_t __rcu *rx_handler;
1999 void __rcu *rx_handler_data;
2001 #ifdef CONFIG_NET_CLS_ACT
2002 struct mini_Qdisc __rcu *miniq_ingress;
2004 struct netdev_queue __rcu *ingress_queue;
2005 #ifdef CONFIG_NETFILTER_INGRESS
2006 struct nf_hook_entries __rcu *nf_hooks_ingress;
2009 unsigned char broadcast[MAX_ADDR_LEN];
2010 #ifdef CONFIG_RFS_ACCEL
2011 struct cpu_rmap *rx_cpu_rmap;
2013 struct hlist_node index_hlist;
2016 * Cache lines mostly used on transmit path
2018 struct netdev_queue *_tx ____cacheline_aligned_in_smp;
2019 unsigned int num_tx_queues;
2020 unsigned int real_num_tx_queues;
2021 struct Qdisc *qdisc;
2022 unsigned int tx_queue_len;
2023 spinlock_t tx_global_lock;
2025 struct xdp_dev_bulk_queue __percpu *xdp_bulkq;
2028 struct xps_dev_maps __rcu *xps_cpus_map;
2029 struct xps_dev_maps __rcu *xps_rxqs_map;
2031 #ifdef CONFIG_NET_CLS_ACT
2032 struct mini_Qdisc __rcu *miniq_egress;
2035 #ifdef CONFIG_NET_SCHED
2036 DECLARE_HASHTABLE (qdisc_hash, 4);
2038 /* These may be needed for future network-power-down code. */
2039 struct timer_list watchdog_timer;
2042 struct list_head todo_list;
2043 int __percpu *pcpu_refcnt;
2045 struct list_head link_watch_list;
2047 enum { NETREG_UNINITIALIZED=0,
2048 NETREG_REGISTERED, /* completed register_netdevice */
2049 NETREG_UNREGISTERING, /* called unregister_netdevice */
2050 NETREG_UNREGISTERED, /* completed unregister todo */
2051 NETREG_RELEASED, /* called free_netdev */
2052 NETREG_DUMMY, /* dummy device for NAPI poll */
2058 RTNL_LINK_INITIALIZED,
2059 RTNL_LINK_INITIALIZING,
2060 } rtnl_link_state:16;
2062 bool needs_free_netdev;
2063 void (*priv_destructor)(struct net_device *dev);
2065 #ifdef CONFIG_NETPOLL
2066 struct netpoll_info __rcu *npinfo;
2069 possible_net_t nd_net;
2071 /* mid-layer private */
2074 struct pcpu_lstats __percpu *lstats;
2075 struct pcpu_sw_netstats __percpu *tstats;
2076 struct pcpu_dstats __percpu *dstats;
2079 #if IS_ENABLED(CONFIG_GARP)
2080 struct garp_port __rcu *garp_port;
2082 #if IS_ENABLED(CONFIG_MRP)
2083 struct mrp_port __rcu *mrp_port;
2087 const struct attribute_group *sysfs_groups[4];
2088 const struct attribute_group *sysfs_rx_queue_group;
2090 const struct rtnl_link_ops *rtnl_link_ops;
2092 /* for setting kernel sock attribute on TCP connection setup */
2093 #define GSO_MAX_SIZE 65536
2094 unsigned int gso_max_size;
2095 #define GSO_MAX_SEGS 65535
2099 const struct dcbnl_rtnl_ops *dcbnl_ops;
2102 struct netdev_tc_txq tc_to_txq[TC_MAX_QUEUE];
2103 u8 prio_tc_map[TC_BITMASK + 1];
2105 #if IS_ENABLED(CONFIG_FCOE)
2106 unsigned int fcoe_ddp_xid;
2108 #if IS_ENABLED(CONFIG_CGROUP_NET_PRIO)
2109 struct netprio_map __rcu *priomap;
2111 struct phy_device *phydev;
2112 struct sfp_bus *sfp_bus;
2113 struct lock_class_key qdisc_tx_busylock_key;
2114 struct lock_class_key qdisc_running_key;
2115 struct lock_class_key qdisc_xmit_lock_key;
2116 struct lock_class_key addr_list_lock_key;
2118 unsigned wol_enabled:1;
2120 struct list_head net_notifier_list;
2122 #if IS_ENABLED(CONFIG_MACSEC)
2123 /* MACsec management functions */
2124 const struct macsec_ops *macsec_ops;
2127 #define to_net_dev(d) container_of(d, struct net_device, dev)
2129 static inline bool netif_elide_gro(const struct net_device *dev)
2131 if (!(dev->features & NETIF_F_GRO) || dev->xdp_prog)
2136 #define NETDEV_ALIGN 32
2139 int netdev_get_prio_tc_map(const struct net_device *dev, u32 prio)
2141 return dev->prio_tc_map[prio & TC_BITMASK];
2145 int netdev_set_prio_tc_map(struct net_device *dev, u8 prio, u8 tc)
2147 if (tc >= dev->num_tc)
2150 dev->prio_tc_map[prio & TC_BITMASK] = tc & TC_BITMASK;
2154 int netdev_txq_to_tc(struct net_device *dev, unsigned int txq);
2155 void netdev_reset_tc(struct net_device *dev);
2156 int netdev_set_tc_queue(struct net_device *dev, u8 tc, u16 count, u16 offset);
2157 int netdev_set_num_tc(struct net_device *dev, u8 num_tc);
2160 int netdev_get_num_tc(struct net_device *dev)
2165 void netdev_unbind_sb_channel(struct net_device *dev,
2166 struct net_device *sb_dev);
2167 int netdev_bind_sb_channel_queue(struct net_device *dev,
2168 struct net_device *sb_dev,
2169 u8 tc, u16 count, u16 offset);
2170 int netdev_set_sb_channel(struct net_device *dev, u16 channel);
2171 static inline int netdev_get_sb_channel(struct net_device *dev)
2173 return max_t(int, -dev->num_tc, 0);
2177 struct netdev_queue *netdev_get_tx_queue(const struct net_device *dev,
2180 return &dev->_tx[index];
2183 static inline struct netdev_queue *skb_get_tx_queue(const struct net_device *dev,
2184 const struct sk_buff *skb)
2186 return netdev_get_tx_queue(dev, skb_get_queue_mapping(skb));
2189 static inline void netdev_for_each_tx_queue(struct net_device *dev,
2190 void (*f)(struct net_device *,
2191 struct netdev_queue *,
2197 for (i = 0; i < dev->num_tx_queues; i++)
2198 f(dev, &dev->_tx[i], arg);
2201 u16 netdev_pick_tx(struct net_device *dev, struct sk_buff *skb,
2202 struct net_device *sb_dev);
2203 struct netdev_queue *netdev_core_pick_tx(struct net_device *dev,
2204 struct sk_buff *skb,
2205 struct net_device *sb_dev);
2207 /* returns the headroom that the master device needs to take in account
2208 * when forwarding to this dev
2210 static inline unsigned netdev_get_fwd_headroom(struct net_device *dev)
2212 return dev->priv_flags & IFF_PHONY_HEADROOM ? 0 : dev->needed_headroom;
2215 static inline void netdev_set_rx_headroom(struct net_device *dev, int new_hr)
2217 if (dev->netdev_ops->ndo_set_rx_headroom)
2218 dev->netdev_ops->ndo_set_rx_headroom(dev, new_hr);
2221 /* set the device rx headroom to the dev's default */
2222 static inline void netdev_reset_rx_headroom(struct net_device *dev)
2224 netdev_set_rx_headroom(dev, -1);
2228 * Net namespace inlines
2231 struct net *dev_net(const struct net_device *dev)
2233 return read_pnet(&dev->nd_net);
2237 void dev_net_set(struct net_device *dev, struct net *net)
2239 write_pnet(&dev->nd_net, net);
2243 * netdev_priv - access network device private data
2244 * @dev: network device
2246 * Get network device private data
2248 static inline void *netdev_priv(const struct net_device *dev)
2250 return (char *)dev + ALIGN(sizeof(struct net_device), NETDEV_ALIGN);
2253 /* Set the sysfs physical device reference for the network logical device
2254 * if set prior to registration will cause a symlink during initialization.
2256 #define SET_NETDEV_DEV(net, pdev) ((net)->dev.parent = (pdev))
2258 /* Set the sysfs device type for the network logical device to allow
2259 * fine-grained identification of different network device types. For
2260 * example Ethernet, Wireless LAN, Bluetooth, WiMAX etc.
2262 #define SET_NETDEV_DEVTYPE(net, devtype) ((net)->dev.type = (devtype))
2264 /* Default NAPI poll() weight
2265 * Device drivers are strongly advised to not use bigger value
2267 #define NAPI_POLL_WEIGHT 64
2270 * netif_napi_add - initialize a NAPI context
2271 * @dev: network device
2272 * @napi: NAPI context
2273 * @poll: polling function
2274 * @weight: default weight
2276 * netif_napi_add() must be used to initialize a NAPI context prior to calling
2277 * *any* of the other NAPI-related functions.
2279 void netif_napi_add(struct net_device *dev, struct napi_struct *napi,
2280 int (*poll)(struct napi_struct *, int), int weight);
2283 * netif_tx_napi_add - initialize a NAPI context
2284 * @dev: network device
2285 * @napi: NAPI context
2286 * @poll: polling function
2287 * @weight: default weight
2289 * This variant of netif_napi_add() should be used from drivers using NAPI
2290 * to exclusively poll a TX queue.
2291 * This will avoid we add it into napi_hash[], thus polluting this hash table.
2293 static inline void netif_tx_napi_add(struct net_device *dev,
2294 struct napi_struct *napi,
2295 int (*poll)(struct napi_struct *, int),
2298 set_bit(NAPI_STATE_NO_BUSY_POLL, &napi->state);
2299 netif_napi_add(dev, napi, poll, weight);
2303 * netif_napi_del - remove a NAPI context
2304 * @napi: NAPI context
2306 * netif_napi_del() removes a NAPI context from the network device NAPI list
2308 void netif_napi_del(struct napi_struct *napi);
2310 struct napi_gro_cb {
2311 /* Virtual address of skb_shinfo(skb)->frags[0].page + offset. */
2314 /* Length of frag0. */
2315 unsigned int frag0_len;
2317 /* This indicates where we are processing relative to skb->data. */
2320 /* This is non-zero if the packet cannot be merged with the new skb. */
2323 /* Save the IP ID here and check when we get to the transport layer */
2326 /* Number of segments aggregated. */
2329 /* Start offset for remote checksum offload */
2330 u16 gro_remcsum_start;
2332 /* jiffies when first packet was created/queued */
2335 /* Used in ipv6_gro_receive() and foo-over-udp */
2338 /* This is non-zero if the packet may be of the same flow. */
2341 /* Used in tunnel GRO receive */
2344 /* GRO checksum is valid */
2347 /* Number of checksums via CHECKSUM_UNNECESSARY */
2352 #define NAPI_GRO_FREE 1
2353 #define NAPI_GRO_FREE_STOLEN_HEAD 2
2355 /* Used in foo-over-udp, set in udp[46]_gro_receive */
2358 /* Used in GRE, set in fou/gue_gro_receive */
2361 /* Used to determine if flush_id can be ignored */
2364 /* Number of gro_receive callbacks this packet already went through */
2365 u8 recursion_counter:4;
2367 /* GRO is done by frag_list pointer chaining. */
2370 /* used to support CHECKSUM_COMPLETE for tunneling protocols */
2373 /* used in skb_gro_receive() slow path */
2374 struct sk_buff *last;
2377 #define NAPI_GRO_CB(skb) ((struct napi_gro_cb *)(skb)->cb)
2379 #define GRO_RECURSION_LIMIT 15
2380 static inline int gro_recursion_inc_test(struct sk_buff *skb)
2382 return ++NAPI_GRO_CB(skb)->recursion_counter == GRO_RECURSION_LIMIT;
2385 typedef struct sk_buff *(*gro_receive_t)(struct list_head *, struct sk_buff *);
2386 static inline struct sk_buff *call_gro_receive(gro_receive_t cb,
2387 struct list_head *head,
2388 struct sk_buff *skb)
2390 if (unlikely(gro_recursion_inc_test(skb))) {
2391 NAPI_GRO_CB(skb)->flush |= 1;
2395 return cb(head, skb);
2398 typedef struct sk_buff *(*gro_receive_sk_t)(struct sock *, struct list_head *,
2400 static inline struct sk_buff *call_gro_receive_sk(gro_receive_sk_t cb,
2402 struct list_head *head,
2403 struct sk_buff *skb)
2405 if (unlikely(gro_recursion_inc_test(skb))) {
2406 NAPI_GRO_CB(skb)->flush |= 1;
2410 return cb(sk, head, skb);
2413 struct packet_type {
2414 __be16 type; /* This is really htons(ether_type). */
2415 bool ignore_outgoing;
2416 struct net_device *dev; /* NULL is wildcarded here */
2417 int (*func) (struct sk_buff *,
2418 struct net_device *,
2419 struct packet_type *,
2420 struct net_device *);
2421 void (*list_func) (struct list_head *,
2422 struct packet_type *,
2423 struct net_device *);
2424 bool (*id_match)(struct packet_type *ptype,
2426 void *af_packet_priv;
2427 struct list_head list;
2430 struct offload_callbacks {
2431 struct sk_buff *(*gso_segment)(struct sk_buff *skb,
2432 netdev_features_t features);
2433 struct sk_buff *(*gro_receive)(struct list_head *head,
2434 struct sk_buff *skb);
2435 int (*gro_complete)(struct sk_buff *skb, int nhoff);
2438 struct packet_offload {
2439 __be16 type; /* This is really htons(ether_type). */
2441 struct offload_callbacks callbacks;
2442 struct list_head list;
2445 /* often modified stats are per-CPU, other are shared (netdev->stats) */
2446 struct pcpu_sw_netstats {
2451 struct u64_stats_sync syncp;
2452 } __aligned(4 * sizeof(u64));
2454 struct pcpu_lstats {
2455 u64_stats_t packets;
2457 struct u64_stats_sync syncp;
2458 } __aligned(2 * sizeof(u64));
2460 void dev_lstats_read(struct net_device *dev, u64 *packets, u64 *bytes);
2462 static inline void dev_lstats_add(struct net_device *dev, unsigned int len)
2464 struct pcpu_lstats *lstats = this_cpu_ptr(dev->lstats);
2466 u64_stats_update_begin(&lstats->syncp);
2467 u64_stats_add(&lstats->bytes, len);
2468 u64_stats_inc(&lstats->packets);
2469 u64_stats_update_end(&lstats->syncp);
2472 #define __netdev_alloc_pcpu_stats(type, gfp) \
2474 typeof(type) __percpu *pcpu_stats = alloc_percpu_gfp(type, gfp);\
2477 for_each_possible_cpu(__cpu) { \
2478 typeof(type) *stat; \
2479 stat = per_cpu_ptr(pcpu_stats, __cpu); \
2480 u64_stats_init(&stat->syncp); \
2486 #define netdev_alloc_pcpu_stats(type) \
2487 __netdev_alloc_pcpu_stats(type, GFP_KERNEL)
2489 enum netdev_lag_tx_type {
2490 NETDEV_LAG_TX_TYPE_UNKNOWN,
2491 NETDEV_LAG_TX_TYPE_RANDOM,
2492 NETDEV_LAG_TX_TYPE_BROADCAST,
2493 NETDEV_LAG_TX_TYPE_ROUNDROBIN,
2494 NETDEV_LAG_TX_TYPE_ACTIVEBACKUP,
2495 NETDEV_LAG_TX_TYPE_HASH,
2498 enum netdev_lag_hash {
2499 NETDEV_LAG_HASH_NONE,
2501 NETDEV_LAG_HASH_L34,
2502 NETDEV_LAG_HASH_L23,
2503 NETDEV_LAG_HASH_E23,
2504 NETDEV_LAG_HASH_E34,
2505 NETDEV_LAG_HASH_UNKNOWN,
2508 struct netdev_lag_upper_info {
2509 enum netdev_lag_tx_type tx_type;
2510 enum netdev_lag_hash hash_type;
2513 struct netdev_lag_lower_state_info {
2518 #include <linux/notifier.h>
2520 /* netdevice notifier chain. Please remember to update netdev_cmd_to_name()
2521 * and the rtnetlink notification exclusion list in rtnetlink_event() when
2525 NETDEV_UP = 1, /* For now you can't veto a device up/down */
2527 NETDEV_REBOOT, /* Tell a protocol stack a network interface
2528 detected a hardware crash and restarted
2529 - we can use this eg to kick tcp sessions
2531 NETDEV_CHANGE, /* Notify device state change */
2534 NETDEV_CHANGEMTU, /* notify after mtu change happened */
2535 NETDEV_CHANGEADDR, /* notify after the address change */
2536 NETDEV_PRE_CHANGEADDR, /* notify before the address change */
2540 NETDEV_BONDING_FAILOVER,
2542 NETDEV_PRE_TYPE_CHANGE,
2543 NETDEV_POST_TYPE_CHANGE,
2546 NETDEV_NOTIFY_PEERS,
2550 NETDEV_PRECHANGEMTU, /* notify before mtu change happened */
2551 NETDEV_CHANGEINFODATA,
2552 NETDEV_BONDING_INFO,
2553 NETDEV_PRECHANGEUPPER,
2554 NETDEV_CHANGELOWERSTATE,
2555 NETDEV_UDP_TUNNEL_PUSH_INFO,
2556 NETDEV_UDP_TUNNEL_DROP_INFO,
2557 NETDEV_CHANGE_TX_QUEUE_LEN,
2558 NETDEV_CVLAN_FILTER_PUSH_INFO,
2559 NETDEV_CVLAN_FILTER_DROP_INFO,
2560 NETDEV_SVLAN_FILTER_PUSH_INFO,
2561 NETDEV_SVLAN_FILTER_DROP_INFO,
2563 const char *netdev_cmd_to_name(enum netdev_cmd cmd);
2565 int register_netdevice_notifier(struct notifier_block *nb);
2566 int unregister_netdevice_notifier(struct notifier_block *nb);
2567 int register_netdevice_notifier_net(struct net *net, struct notifier_block *nb);
2568 int unregister_netdevice_notifier_net(struct net *net,
2569 struct notifier_block *nb);
2570 int register_netdevice_notifier_dev_net(struct net_device *dev,
2571 struct notifier_block *nb,
2572 struct netdev_net_notifier *nn);
2573 int unregister_netdevice_notifier_dev_net(struct net_device *dev,
2574 struct notifier_block *nb,
2575 struct netdev_net_notifier *nn);
2577 struct netdev_notifier_info {
2578 struct net_device *dev;
2579 struct netlink_ext_ack *extack;
2582 struct netdev_notifier_info_ext {
2583 struct netdev_notifier_info info; /* must be first */
2589 struct netdev_notifier_change_info {
2590 struct netdev_notifier_info info; /* must be first */
2591 unsigned int flags_changed;
2594 struct netdev_notifier_changeupper_info {
2595 struct netdev_notifier_info info; /* must be first */
2596 struct net_device *upper_dev; /* new upper dev */
2597 bool master; /* is upper dev master */
2598 bool linking; /* is the notification for link or unlink */
2599 void *upper_info; /* upper dev info */
2602 struct netdev_notifier_changelowerstate_info {
2603 struct netdev_notifier_info info; /* must be first */
2604 void *lower_state_info; /* is lower dev state */
2607 struct netdev_notifier_pre_changeaddr_info {
2608 struct netdev_notifier_info info; /* must be first */
2609 const unsigned char *dev_addr;
2612 static inline void netdev_notifier_info_init(struct netdev_notifier_info *info,
2613 struct net_device *dev)
2616 info->extack = NULL;
2619 static inline struct net_device *
2620 netdev_notifier_info_to_dev(const struct netdev_notifier_info *info)
2625 static inline struct netlink_ext_ack *
2626 netdev_notifier_info_to_extack(const struct netdev_notifier_info *info)
2628 return info->extack;
2631 int call_netdevice_notifiers(unsigned long val, struct net_device *dev);
2634 extern rwlock_t dev_base_lock; /* Device list lock */
2636 #define for_each_netdev(net, d) \
2637 list_for_each_entry(d, &(net)->dev_base_head, dev_list)
2638 #define for_each_netdev_reverse(net, d) \
2639 list_for_each_entry_reverse(d, &(net)->dev_base_head, dev_list)
2640 #define for_each_netdev_rcu(net, d) \
2641 list_for_each_entry_rcu(d, &(net)->dev_base_head, dev_list)
2642 #define for_each_netdev_safe(net, d, n) \
2643 list_for_each_entry_safe(d, n, &(net)->dev_base_head, dev_list)
2644 #define for_each_netdev_continue(net, d) \
2645 list_for_each_entry_continue(d, &(net)->dev_base_head, dev_list)
2646 #define for_each_netdev_continue_reverse(net, d) \
2647 list_for_each_entry_continue_reverse(d, &(net)->dev_base_head, \
2649 #define for_each_netdev_continue_rcu(net, d) \
2650 list_for_each_entry_continue_rcu(d, &(net)->dev_base_head, dev_list)
2651 #define for_each_netdev_in_bond_rcu(bond, slave) \
2652 for_each_netdev_rcu(&init_net, slave) \
2653 if (netdev_master_upper_dev_get_rcu(slave) == (bond))
2654 #define net_device_entry(lh) list_entry(lh, struct net_device, dev_list)
2656 static inline struct net_device *next_net_device(struct net_device *dev)
2658 struct list_head *lh;
2662 lh = dev->dev_list.next;
2663 return lh == &net->dev_base_head ? NULL : net_device_entry(lh);
2666 static inline struct net_device *next_net_device_rcu(struct net_device *dev)
2668 struct list_head *lh;
2672 lh = rcu_dereference(list_next_rcu(&dev->dev_list));
2673 return lh == &net->dev_base_head ? NULL : net_device_entry(lh);
2676 static inline struct net_device *first_net_device(struct net *net)
2678 return list_empty(&net->dev_base_head) ? NULL :
2679 net_device_entry(net->dev_base_head.next);
2682 static inline struct net_device *first_net_device_rcu(struct net *net)
2684 struct list_head *lh = rcu_dereference(list_next_rcu(&net->dev_base_head));
2686 return lh == &net->dev_base_head ? NULL : net_device_entry(lh);
2689 int netdev_boot_setup_check(struct net_device *dev);
2690 unsigned long netdev_boot_base(const char *prefix, int unit);
2691 struct net_device *dev_getbyhwaddr_rcu(struct net *net, unsigned short type,
2692 const char *hwaddr);
2693 struct net_device *dev_getfirstbyhwtype(struct net *net, unsigned short type);
2694 struct net_device *__dev_getfirstbyhwtype(struct net *net, unsigned short type);
2695 void dev_add_pack(struct packet_type *pt);
2696 void dev_remove_pack(struct packet_type *pt);
2697 void __dev_remove_pack(struct packet_type *pt);
2698 void dev_add_offload(struct packet_offload *po);
2699 void dev_remove_offload(struct packet_offload *po);
2701 int dev_get_iflink(const struct net_device *dev);
2702 int dev_fill_metadata_dst(struct net_device *dev, struct sk_buff *skb);
2703 struct net_device *__dev_get_by_flags(struct net *net, unsigned short flags,
2704 unsigned short mask);
2705 struct net_device *dev_get_by_name(struct net *net, const char *name);
2706 struct net_device *dev_get_by_name_rcu(struct net *net, const char *name);
2707 struct net_device *__dev_get_by_name(struct net *net, const char *name);
2708 int dev_alloc_name(struct net_device *dev, const char *name);
2709 int dev_open(struct net_device *dev, struct netlink_ext_ack *extack);
2710 void dev_close(struct net_device *dev);
2711 void dev_close_many(struct list_head *head, bool unlink);
2712 void dev_disable_lro(struct net_device *dev);
2713 int dev_loopback_xmit(struct net *net, struct sock *sk, struct sk_buff *newskb);
2714 u16 dev_pick_tx_zero(struct net_device *dev, struct sk_buff *skb,
2715 struct net_device *sb_dev);
2716 u16 dev_pick_tx_cpu_id(struct net_device *dev, struct sk_buff *skb,
2717 struct net_device *sb_dev);
2718 int dev_queue_xmit(struct sk_buff *skb);
2719 int dev_queue_xmit_accel(struct sk_buff *skb, struct net_device *sb_dev);
2720 int dev_direct_xmit(struct sk_buff *skb, u16 queue_id);
2721 int register_netdevice(struct net_device *dev);
2722 void unregister_netdevice_queue(struct net_device *dev, struct list_head *head);
2723 void unregister_netdevice_many(struct list_head *head);
2724 static inline void unregister_netdevice(struct net_device *dev)
2726 unregister_netdevice_queue(dev, NULL);
2729 int netdev_refcnt_read(const struct net_device *dev);
2730 void free_netdev(struct net_device *dev);
2731 void netdev_freemem(struct net_device *dev);
2732 void synchronize_net(void);
2733 int init_dummy_netdev(struct net_device *dev);
2735 struct net_device *dev_get_by_index(struct net *net, int ifindex);
2736 struct net_device *__dev_get_by_index(struct net *net, int ifindex);
2737 struct net_device *dev_get_by_index_rcu(struct net *net, int ifindex);
2738 struct net_device *dev_get_by_napi_id(unsigned int napi_id);
2739 int netdev_get_name(struct net *net, char *name, int ifindex);
2740 int dev_restart(struct net_device *dev);
2741 int skb_gro_receive(struct sk_buff *p, struct sk_buff *skb);
2742 int skb_gro_receive_list(struct sk_buff *p, struct sk_buff *skb);
2744 static inline unsigned int skb_gro_offset(const struct sk_buff *skb)
2746 return NAPI_GRO_CB(skb)->data_offset;
2749 static inline unsigned int skb_gro_len(const struct sk_buff *skb)
2751 return skb->len - NAPI_GRO_CB(skb)->data_offset;
2754 static inline void skb_gro_pull(struct sk_buff *skb, unsigned int len)
2756 NAPI_GRO_CB(skb)->data_offset += len;
2759 static inline void *skb_gro_header_fast(struct sk_buff *skb,
2760 unsigned int offset)
2762 return NAPI_GRO_CB(skb)->frag0 + offset;
2765 static inline int skb_gro_header_hard(struct sk_buff *skb, unsigned int hlen)
2767 return NAPI_GRO_CB(skb)->frag0_len < hlen;
2770 static inline void skb_gro_frag0_invalidate(struct sk_buff *skb)
2772 NAPI_GRO_CB(skb)->frag0 = NULL;
2773 NAPI_GRO_CB(skb)->frag0_len = 0;
2776 static inline void *skb_gro_header_slow(struct sk_buff *skb, unsigned int hlen,
2777 unsigned int offset)
2779 if (!pskb_may_pull(skb, hlen))
2782 skb_gro_frag0_invalidate(skb);
2783 return skb->data + offset;
2786 static inline void *skb_gro_network_header(struct sk_buff *skb)
2788 return (NAPI_GRO_CB(skb)->frag0 ?: skb->data) +
2789 skb_network_offset(skb);
2792 static inline void skb_gro_postpull_rcsum(struct sk_buff *skb,
2793 const void *start, unsigned int len)
2795 if (NAPI_GRO_CB(skb)->csum_valid)
2796 NAPI_GRO_CB(skb)->csum = csum_sub(NAPI_GRO_CB(skb)->csum,
2797 csum_partial(start, len, 0));
2800 /* GRO checksum functions. These are logical equivalents of the normal
2801 * checksum functions (in skbuff.h) except that they operate on the GRO
2802 * offsets and fields in sk_buff.
2805 __sum16 __skb_gro_checksum_complete(struct sk_buff *skb);
2807 static inline bool skb_at_gro_remcsum_start(struct sk_buff *skb)
2809 return (NAPI_GRO_CB(skb)->gro_remcsum_start == skb_gro_offset(skb));
2812 static inline bool __skb_gro_checksum_validate_needed(struct sk_buff *skb,
2816 return ((skb->ip_summed != CHECKSUM_PARTIAL ||
2817 skb_checksum_start_offset(skb) <
2818 skb_gro_offset(skb)) &&
2819 !skb_at_gro_remcsum_start(skb) &&
2820 NAPI_GRO_CB(skb)->csum_cnt == 0 &&
2821 (!zero_okay || check));
2824 static inline __sum16 __skb_gro_checksum_validate_complete(struct sk_buff *skb,
2827 if (NAPI_GRO_CB(skb)->csum_valid &&
2828 !csum_fold(csum_add(psum, NAPI_GRO_CB(skb)->csum)))
2831 NAPI_GRO_CB(skb)->csum = psum;
2833 return __skb_gro_checksum_complete(skb);
2836 static inline void skb_gro_incr_csum_unnecessary(struct sk_buff *skb)
2838 if (NAPI_GRO_CB(skb)->csum_cnt > 0) {
2839 /* Consume a checksum from CHECKSUM_UNNECESSARY */
2840 NAPI_GRO_CB(skb)->csum_cnt--;
2842 /* Update skb for CHECKSUM_UNNECESSARY and csum_level when we
2843 * verified a new top level checksum or an encapsulated one
2844 * during GRO. This saves work if we fallback to normal path.
2846 __skb_incr_checksum_unnecessary(skb);
2850 #define __skb_gro_checksum_validate(skb, proto, zero_okay, check, \
2853 __sum16 __ret = 0; \
2854 if (__skb_gro_checksum_validate_needed(skb, zero_okay, check)) \
2855 __ret = __skb_gro_checksum_validate_complete(skb, \
2856 compute_pseudo(skb, proto)); \
2858 skb_gro_incr_csum_unnecessary(skb); \
2862 #define skb_gro_checksum_validate(skb, proto, compute_pseudo) \
2863 __skb_gro_checksum_validate(skb, proto, false, 0, compute_pseudo)
2865 #define skb_gro_checksum_validate_zero_check(skb, proto, check, \
2867 __skb_gro_checksum_validate(skb, proto, true, check, compute_pseudo)
2869 #define skb_gro_checksum_simple_validate(skb) \
2870 __skb_gro_checksum_validate(skb, 0, false, 0, null_compute_pseudo)
2872 static inline bool __skb_gro_checksum_convert_check(struct sk_buff *skb)
2874 return (NAPI_GRO_CB(skb)->csum_cnt == 0 &&
2875 !NAPI_GRO_CB(skb)->csum_valid);
2878 static inline void __skb_gro_checksum_convert(struct sk_buff *skb,
2881 NAPI_GRO_CB(skb)->csum = ~pseudo;
2882 NAPI_GRO_CB(skb)->csum_valid = 1;
2885 #define skb_gro_checksum_try_convert(skb, proto, compute_pseudo) \
2887 if (__skb_gro_checksum_convert_check(skb)) \
2888 __skb_gro_checksum_convert(skb, \
2889 compute_pseudo(skb, proto)); \
2892 struct gro_remcsum {
2897 static inline void skb_gro_remcsum_init(struct gro_remcsum *grc)
2903 static inline void *skb_gro_remcsum_process(struct sk_buff *skb, void *ptr,
2904 unsigned int off, size_t hdrlen,
2905 int start, int offset,
2906 struct gro_remcsum *grc,
2910 size_t plen = hdrlen + max_t(size_t, offset + sizeof(u16), start);
2912 BUG_ON(!NAPI_GRO_CB(skb)->csum_valid);
2915 NAPI_GRO_CB(skb)->gro_remcsum_start = off + hdrlen + start;
2919 ptr = skb_gro_header_fast(skb, off);
2920 if (skb_gro_header_hard(skb, off + plen)) {
2921 ptr = skb_gro_header_slow(skb, off + plen, off);
2926 delta = remcsum_adjust(ptr + hdrlen, NAPI_GRO_CB(skb)->csum,
2929 /* Adjust skb->csum since we changed the packet */
2930 NAPI_GRO_CB(skb)->csum = csum_add(NAPI_GRO_CB(skb)->csum, delta);
2932 grc->offset = off + hdrlen + offset;
2938 static inline void skb_gro_remcsum_cleanup(struct sk_buff *skb,
2939 struct gro_remcsum *grc)
2942 size_t plen = grc->offset + sizeof(u16);
2947 ptr = skb_gro_header_fast(skb, grc->offset);
2948 if (skb_gro_header_hard(skb, grc->offset + sizeof(u16))) {
2949 ptr = skb_gro_header_slow(skb, plen, grc->offset);
2954 remcsum_unadjust((__sum16 *)ptr, grc->delta);
2957 #ifdef CONFIG_XFRM_OFFLOAD
2958 static inline void skb_gro_flush_final(struct sk_buff *skb, struct sk_buff *pp, int flush)
2960 if (PTR_ERR(pp) != -EINPROGRESS)
2961 NAPI_GRO_CB(skb)->flush |= flush;
2963 static inline void skb_gro_flush_final_remcsum(struct sk_buff *skb,
2966 struct gro_remcsum *grc)
2968 if (PTR_ERR(pp) != -EINPROGRESS) {
2969 NAPI_GRO_CB(skb)->flush |= flush;
2970 skb_gro_remcsum_cleanup(skb, grc);
2971 skb->remcsum_offload = 0;
2975 static inline void skb_gro_flush_final(struct sk_buff *skb, struct sk_buff *pp, int flush)
2977 NAPI_GRO_CB(skb)->flush |= flush;
2979 static inline void skb_gro_flush_final_remcsum(struct sk_buff *skb,
2982 struct gro_remcsum *grc)
2984 NAPI_GRO_CB(skb)->flush |= flush;
2985 skb_gro_remcsum_cleanup(skb, grc);
2986 skb->remcsum_offload = 0;
2990 static inline int dev_hard_header(struct sk_buff *skb, struct net_device *dev,
2991 unsigned short type,
2992 const void *daddr, const void *saddr,
2995 if (!dev->header_ops || !dev->header_ops->create)
2998 return dev->header_ops->create(skb, dev, type, daddr, saddr, len);
3001 static inline int dev_parse_header(const struct sk_buff *skb,
3002 unsigned char *haddr)
3004 const struct net_device *dev = skb->dev;
3006 if (!dev->header_ops || !dev->header_ops->parse)
3008 return dev->header_ops->parse(skb, haddr);
3011 static inline __be16 dev_parse_header_protocol(const struct sk_buff *skb)
3013 const struct net_device *dev = skb->dev;
3015 if (!dev->header_ops || !dev->header_ops->parse_protocol)
3017 return dev->header_ops->parse_protocol(skb);
3020 /* ll_header must have at least hard_header_len allocated */
3021 static inline bool dev_validate_header(const struct net_device *dev,
3022 char *ll_header, int len)
3024 if (likely(len >= dev->hard_header_len))
3026 if (len < dev->min_header_len)
3029 if (capable(CAP_SYS_RAWIO)) {
3030 memset(ll_header + len, 0, dev->hard_header_len - len);
3034 if (dev->header_ops && dev->header_ops->validate)
3035 return dev->header_ops->validate(ll_header, len);
3040 typedef int gifconf_func_t(struct net_device * dev, char __user * bufptr,
3042 int register_gifconf(unsigned int family, gifconf_func_t *gifconf);
3043 static inline int unregister_gifconf(unsigned int family)
3045 return register_gifconf(family, NULL);
3048 #ifdef CONFIG_NET_FLOW_LIMIT
3049 #define FLOW_LIMIT_HISTORY (1 << 7) /* must be ^2 and !overflow buckets */
3050 struct sd_flow_limit {
3052 unsigned int num_buckets;
3053 unsigned int history_head;
3054 u16 history[FLOW_LIMIT_HISTORY];
3058 extern int netdev_flow_limit_table_len;
3059 #endif /* CONFIG_NET_FLOW_LIMIT */
3062 * Incoming packets are placed on per-CPU queues
3064 struct softnet_data {
3065 struct list_head poll_list;
3066 struct sk_buff_head process_queue;
3069 unsigned int processed;
3070 unsigned int time_squeeze;
3071 unsigned int received_rps;
3073 struct softnet_data *rps_ipi_list;
3075 #ifdef CONFIG_NET_FLOW_LIMIT
3076 struct sd_flow_limit __rcu *flow_limit;
3078 struct Qdisc *output_queue;
3079 struct Qdisc **output_queue_tailp;
3080 struct sk_buff *completion_queue;
3081 #ifdef CONFIG_XFRM_OFFLOAD
3082 struct sk_buff_head xfrm_backlog;
3084 /* written and read only by owning cpu: */
3090 /* input_queue_head should be written by cpu owning this struct,
3091 * and only read by other cpus. Worth using a cache line.
3093 unsigned int input_queue_head ____cacheline_aligned_in_smp;
3095 /* Elements below can be accessed between CPUs for RPS/RFS */
3096 call_single_data_t csd ____cacheline_aligned_in_smp;
3097 struct softnet_data *rps_ipi_next;
3099 unsigned int input_queue_tail;
3101 unsigned int dropped;
3102 struct sk_buff_head input_pkt_queue;
3103 struct napi_struct backlog;
3107 static inline void input_queue_head_incr(struct softnet_data *sd)
3110 sd->input_queue_head++;
3114 static inline void input_queue_tail_incr_save(struct softnet_data *sd,
3115 unsigned int *qtail)
3118 *qtail = ++sd->input_queue_tail;
3122 DECLARE_PER_CPU_ALIGNED(struct softnet_data, softnet_data);
3124 static inline int dev_recursion_level(void)
3126 return this_cpu_read(softnet_data.xmit.recursion);
3129 #define XMIT_RECURSION_LIMIT 10
3130 static inline bool dev_xmit_recursion(void)
3132 return unlikely(__this_cpu_read(softnet_data.xmit.recursion) >
3133 XMIT_RECURSION_LIMIT);
3136 static inline void dev_xmit_recursion_inc(void)
3138 __this_cpu_inc(softnet_data.xmit.recursion);
3141 static inline void dev_xmit_recursion_dec(void)
3143 __this_cpu_dec(softnet_data.xmit.recursion);
3146 void __netif_schedule(struct Qdisc *q);
3147 void netif_schedule_queue(struct netdev_queue *txq);
3149 static inline void netif_tx_schedule_all(struct net_device *dev)
3153 for (i = 0; i < dev->num_tx_queues; i++)
3154 netif_schedule_queue(netdev_get_tx_queue(dev, i));
3157 static __always_inline void netif_tx_start_queue(struct netdev_queue *dev_queue)
3159 clear_bit(__QUEUE_STATE_DRV_XOFF, &dev_queue->state);
3163 * netif_start_queue - allow transmit
3164 * @dev: network device
3166 * Allow upper layers to call the device hard_start_xmit routine.
3168 static inline void netif_start_queue(struct net_device *dev)
3170 netif_tx_start_queue(netdev_get_tx_queue(dev, 0));
3173 static inline void netif_tx_start_all_queues(struct net_device *dev)
3177 for (i = 0; i < dev->num_tx_queues; i++) {
3178 struct netdev_queue *txq = netdev_get_tx_queue(dev, i);
3179 netif_tx_start_queue(txq);
3183 void netif_tx_wake_queue(struct netdev_queue *dev_queue);
3186 * netif_wake_queue - restart transmit
3187 * @dev: network device
3189 * Allow upper layers to call the device hard_start_xmit routine.
3190 * Used for flow control when transmit resources are available.
3192 static inline void netif_wake_queue(struct net_device *dev)
3194 netif_tx_wake_queue(netdev_get_tx_queue(dev, 0));
3197 static inline void netif_tx_wake_all_queues(struct net_device *dev)
3201 for (i = 0; i < dev->num_tx_queues; i++) {
3202 struct netdev_queue *txq = netdev_get_tx_queue(dev, i);
3203 netif_tx_wake_queue(txq);
3207 static __always_inline void netif_tx_stop_queue(struct netdev_queue *dev_queue)
3209 set_bit(__QUEUE_STATE_DRV_XOFF, &dev_queue->state);
3213 * netif_stop_queue - stop transmitted packets
3214 * @dev: network device
3216 * Stop upper layers calling the device hard_start_xmit routine.
3217 * Used for flow control when transmit resources are unavailable.
3219 static inline void netif_stop_queue(struct net_device *dev)
3221 netif_tx_stop_queue(netdev_get_tx_queue(dev, 0));
3224 void netif_tx_stop_all_queues(struct net_device *dev);
3225 void netdev_update_lockdep_key(struct net_device *dev);
3227 static inline bool netif_tx_queue_stopped(const struct netdev_queue *dev_queue)
3229 return test_bit(__QUEUE_STATE_DRV_XOFF, &dev_queue->state);
3233 * netif_queue_stopped - test if transmit queue is flowblocked
3234 * @dev: network device
3236 * Test if transmit queue on device is currently unable to send.
3238 static inline bool netif_queue_stopped(const struct net_device *dev)
3240 return netif_tx_queue_stopped(netdev_get_tx_queue(dev, 0));
3243 static inline bool netif_xmit_stopped(const struct netdev_queue *dev_queue)
3245 return dev_queue->state & QUEUE_STATE_ANY_XOFF;
3249 netif_xmit_frozen_or_stopped(const struct netdev_queue *dev_queue)
3251 return dev_queue->state & QUEUE_STATE_ANY_XOFF_OR_FROZEN;
3255 netif_xmit_frozen_or_drv_stopped(const struct netdev_queue *dev_queue)
3257 return dev_queue->state & QUEUE_STATE_DRV_XOFF_OR_FROZEN;
3261 * netdev_txq_bql_enqueue_prefetchw - prefetch bql data for write
3262 * @dev_queue: pointer to transmit queue
3264 * BQL enabled drivers might use this helper in their ndo_start_xmit(),
3265 * to give appropriate hint to the CPU.
3267 static inline void netdev_txq_bql_enqueue_prefetchw(struct netdev_queue *dev_queue)
3270 prefetchw(&dev_queue->dql.num_queued);
3275 * netdev_txq_bql_complete_prefetchw - prefetch bql data for write
3276 * @dev_queue: pointer to transmit queue
3278 * BQL enabled drivers might use this helper in their TX completion path,
3279 * to give appropriate hint to the CPU.
3281 static inline void netdev_txq_bql_complete_prefetchw(struct netdev_queue *dev_queue)
3284 prefetchw(&dev_queue->dql.limit);
3288 static inline void netdev_tx_sent_queue(struct netdev_queue *dev_queue,
3292 dql_queued(&dev_queue->dql, bytes);
3294 if (likely(dql_avail(&dev_queue->dql) >= 0))
3297 set_bit(__QUEUE_STATE_STACK_XOFF, &dev_queue->state);
3300 * The XOFF flag must be set before checking the dql_avail below,
3301 * because in netdev_tx_completed_queue we update the dql_completed
3302 * before checking the XOFF flag.
3306 /* check again in case another CPU has just made room avail */
3307 if (unlikely(dql_avail(&dev_queue->dql) >= 0))
3308 clear_bit(__QUEUE_STATE_STACK_XOFF, &dev_queue->state);
3312 /* Variant of netdev_tx_sent_queue() for drivers that are aware
3313 * that they should not test BQL status themselves.
3314 * We do want to change __QUEUE_STATE_STACK_XOFF only for the last
3316 * Returns true if the doorbell must be used to kick the NIC.
3318 static inline bool __netdev_tx_sent_queue(struct netdev_queue *dev_queue,
3324 dql_queued(&dev_queue->dql, bytes);
3326 return netif_tx_queue_stopped(dev_queue);
3328 netdev_tx_sent_queue(dev_queue, bytes);
3333 * netdev_sent_queue - report the number of bytes queued to hardware
3334 * @dev: network device
3335 * @bytes: number of bytes queued to the hardware device queue
3337 * Report the number of bytes queued for sending/completion to the network
3338 * device hardware queue. @bytes should be a good approximation and should
3339 * exactly match netdev_completed_queue() @bytes
3341 static inline void netdev_sent_queue(struct net_device *dev, unsigned int bytes)
3343 netdev_tx_sent_queue(netdev_get_tx_queue(dev, 0), bytes);
3346 static inline bool __netdev_sent_queue(struct net_device *dev,
3350 return __netdev_tx_sent_queue(netdev_get_tx_queue(dev, 0), bytes,
3354 static inline void netdev_tx_completed_queue(struct netdev_queue *dev_queue,
3355 unsigned int pkts, unsigned int bytes)
3358 if (unlikely(!bytes))
3361 dql_completed(&dev_queue->dql, bytes);
3364 * Without the memory barrier there is a small possiblity that
3365 * netdev_tx_sent_queue will miss the update and cause the queue to
3366 * be stopped forever
3370 if (unlikely(dql_avail(&dev_queue->dql) < 0))
3373 if (test_and_clear_bit(__QUEUE_STATE_STACK_XOFF, &dev_queue->state))
3374 netif_schedule_queue(dev_queue);
3379 * netdev_completed_queue - report bytes and packets completed by device
3380 * @dev: network device
3381 * @pkts: actual number of packets sent over the medium
3382 * @bytes: actual number of bytes sent over the medium
3384 * Report the number of bytes and packets transmitted by the network device
3385 * hardware queue over the physical medium, @bytes must exactly match the
3386 * @bytes amount passed to netdev_sent_queue()
3388 static inline void netdev_completed_queue(struct net_device *dev,
3389 unsigned int pkts, unsigned int bytes)
3391 netdev_tx_completed_queue(netdev_get_tx_queue(dev, 0), pkts, bytes);
3394 static inline void netdev_tx_reset_queue(struct netdev_queue *q)
3397 clear_bit(__QUEUE_STATE_STACK_XOFF, &q->state);
3403 * netdev_reset_queue - reset the packets and bytes count of a network device
3404 * @dev_queue: network device
3406 * Reset the bytes and packet count of a network device and clear the
3407 * software flow control OFF bit for this network device
3409 static inline void netdev_reset_queue(struct net_device *dev_queue)
3411 netdev_tx_reset_queue(netdev_get_tx_queue(dev_queue, 0));
3415 * netdev_cap_txqueue - check if selected tx queue exceeds device queues
3416 * @dev: network device
3417 * @queue_index: given tx queue index
3419 * Returns 0 if given tx queue index >= number of device tx queues,
3420 * otherwise returns the originally passed tx queue index.
3422 static inline u16 netdev_cap_txqueue(struct net_device *dev, u16 queue_index)
3424 if (unlikely(queue_index >= dev->real_num_tx_queues)) {
3425 net_warn_ratelimited("%s selects TX queue %d, but real number of TX queues is %d\n",
3426 dev->name, queue_index,
3427 dev->real_num_tx_queues);
3435 * netif_running - test if up
3436 * @dev: network device
3438 * Test if the device has been brought up.
3440 static inline bool netif_running(const struct net_device *dev)
3442 return test_bit(__LINK_STATE_START, &dev->state);
3446 * Routines to manage the subqueues on a device. We only need start,
3447 * stop, and a check if it's stopped. All other device management is
3448 * done at the overall netdevice level.
3449 * Also test the device if we're multiqueue.
3453 * netif_start_subqueue - allow sending packets on subqueue
3454 * @dev: network device
3455 * @queue_index: sub queue index
3457 * Start individual transmit queue of a device with multiple transmit queues.
3459 static inline void netif_start_subqueue(struct net_device *dev, u16 queue_index)
3461 struct netdev_queue *txq = netdev_get_tx_queue(dev, queue_index);
3463 netif_tx_start_queue(txq);
3467 * netif_stop_subqueue - stop sending packets on subqueue
3468 * @dev: network device
3469 * @queue_index: sub queue index
3471 * Stop individual transmit queue of a device with multiple transmit queues.
3473 static inline void netif_stop_subqueue(struct net_device *dev, u16 queue_index)
3475 struct netdev_queue *txq = netdev_get_tx_queue(dev, queue_index);
3476 netif_tx_stop_queue(txq);
3480 * netif_subqueue_stopped - test status of subqueue
3481 * @dev: network device
3482 * @queue_index: sub queue index
3484 * Check individual transmit queue of a device with multiple transmit queues.
3486 static inline bool __netif_subqueue_stopped(const struct net_device *dev,
3489 struct netdev_queue *txq = netdev_get_tx_queue(dev, queue_index);
3491 return netif_tx_queue_stopped(txq);
3494 static inline bool netif_subqueue_stopped(const struct net_device *dev,
3495 struct sk_buff *skb)
3497 return __netif_subqueue_stopped(dev, skb_get_queue_mapping(skb));
3501 * netif_wake_subqueue - allow sending packets on subqueue
3502 * @dev: network device
3503 * @queue_index: sub queue index
3505 * Resume individual transmit queue of a device with multiple transmit queues.
3507 static inline void netif_wake_subqueue(struct net_device *dev, u16 queue_index)
3509 struct netdev_queue *txq = netdev_get_tx_queue(dev, queue_index);
3511 netif_tx_wake_queue(txq);
3515 int netif_set_xps_queue(struct net_device *dev, const struct cpumask *mask,
3517 int __netif_set_xps_queue(struct net_device *dev, const unsigned long *mask,
3518 u16 index, bool is_rxqs_map);
3521 * netif_attr_test_mask - Test a CPU or Rx queue set in a mask
3522 * @j: CPU/Rx queue index
3523 * @mask: bitmask of all cpus/rx queues
3524 * @nr_bits: number of bits in the bitmask
3526 * Test if a CPU or Rx queue index is set in a mask of all CPU/Rx queues.
3528 static inline bool netif_attr_test_mask(unsigned long j,
3529 const unsigned long *mask,
3530 unsigned int nr_bits)
3532 cpu_max_bits_warn(j, nr_bits);
3533 return test_bit(j, mask);
3537 * netif_attr_test_online - Test for online CPU/Rx queue
3538 * @j: CPU/Rx queue index
3539 * @online_mask: bitmask for CPUs/Rx queues that are online
3540 * @nr_bits: number of bits in the bitmask
3542 * Returns true if a CPU/Rx queue is online.
3544 static inline bool netif_attr_test_online(unsigned long j,
3545 const unsigned long *online_mask,
3546 unsigned int nr_bits)
3548 cpu_max_bits_warn(j, nr_bits);
3551 return test_bit(j, online_mask);
3553 return (j < nr_bits);
3557 * netif_attrmask_next - get the next CPU/Rx queue in a cpu/Rx queues mask
3558 * @n: CPU/Rx queue index
3559 * @srcp: the cpumask/Rx queue mask pointer
3560 * @nr_bits: number of bits in the bitmask
3562 * Returns >= nr_bits if no further CPUs/Rx queues set.
3564 static inline unsigned int netif_attrmask_next(int n, const unsigned long *srcp,
3565 unsigned int nr_bits)
3567 /* -1 is a legal arg here. */
3569 cpu_max_bits_warn(n, nr_bits);
3572 return find_next_bit(srcp, nr_bits, n + 1);
3578 * netif_attrmask_next_and - get the next CPU/Rx queue in \*src1p & \*src2p
3579 * @n: CPU/Rx queue index
3580 * @src1p: the first CPUs/Rx queues mask pointer
3581 * @src2p: the second CPUs/Rx queues mask pointer
3582 * @nr_bits: number of bits in the bitmask
3584 * Returns >= nr_bits if no further CPUs/Rx queues set in both.
3586 static inline int netif_attrmask_next_and(int n, const unsigned long *src1p,
3587 const unsigned long *src2p,
3588 unsigned int nr_bits)
3590 /* -1 is a legal arg here. */
3592 cpu_max_bits_warn(n, nr_bits);
3595 return find_next_and_bit(src1p, src2p, nr_bits, n + 1);
3597 return find_next_bit(src1p, nr_bits, n + 1);
3599 return find_next_bit(src2p, nr_bits, n + 1);
3604 static inline int netif_set_xps_queue(struct net_device *dev,
3605 const struct cpumask *mask,
3611 static inline int __netif_set_xps_queue(struct net_device *dev,
3612 const unsigned long *mask,
3613 u16 index, bool is_rxqs_map)
3620 * netif_is_multiqueue - test if device has multiple transmit queues
3621 * @dev: network device
3623 * Check if device has multiple transmit queues
3625 static inline bool netif_is_multiqueue(const struct net_device *dev)
3627 return dev->num_tx_queues > 1;
3630 int netif_set_real_num_tx_queues(struct net_device *dev, unsigned int txq);
3633 int netif_set_real_num_rx_queues(struct net_device *dev, unsigned int rxq);
3635 static inline int netif_set_real_num_rx_queues(struct net_device *dev,
3638 dev->real_num_rx_queues = rxqs;
3643 static inline struct netdev_rx_queue *
3644 __netif_get_rx_queue(struct net_device *dev, unsigned int rxq)
3646 return dev->_rx + rxq;
3650 static inline unsigned int get_netdev_rx_queue_index(
3651 struct netdev_rx_queue *queue)
3653 struct net_device *dev = queue->dev;
3654 int index = queue - dev->_rx;
3656 BUG_ON(index >= dev->num_rx_queues);
3661 #define DEFAULT_MAX_NUM_RSS_QUEUES (8)
3662 int netif_get_num_default_rss_queues(void);
3664 enum skb_free_reason {
3665 SKB_REASON_CONSUMED,
3669 void __dev_kfree_skb_irq(struct sk_buff *skb, enum skb_free_reason reason);
3670 void __dev_kfree_skb_any(struct sk_buff *skb, enum skb_free_reason reason);
3673 * It is not allowed to call kfree_skb() or consume_skb() from hardware
3674 * interrupt context or with hardware interrupts being disabled.
3675 * (in_irq() || irqs_disabled())
3677 * We provide four helpers that can be used in following contexts :
3679 * dev_kfree_skb_irq(skb) when caller drops a packet from irq context,
3680 * replacing kfree_skb(skb)
3682 * dev_consume_skb_irq(skb) when caller consumes a packet from irq context.
3683 * Typically used in place of consume_skb(skb) in TX completion path
3685 * dev_kfree_skb_any(skb) when caller doesn't know its current irq context,
3686 * replacing kfree_skb(skb)
3688 * dev_consume_skb_any(skb) when caller doesn't know its current irq context,
3689 * and consumed a packet. Used in place of consume_skb(skb)
3691 static inline void dev_kfree_skb_irq(struct sk_buff *skb)
3693 __dev_kfree_skb_irq(skb, SKB_REASON_DROPPED);
3696 static inline void dev_consume_skb_irq(struct sk_buff *skb)
3698 __dev_kfree_skb_irq(skb, SKB_REASON_CONSUMED);
3701 static inline void dev_kfree_skb_any(struct sk_buff *skb)
3703 __dev_kfree_skb_any(skb, SKB_REASON_DROPPED);
3706 static inline void dev_consume_skb_any(struct sk_buff *skb)
3708 __dev_kfree_skb_any(skb, SKB_REASON_CONSUMED);
3711 void generic_xdp_tx(struct sk_buff *skb, struct bpf_prog *xdp_prog);
3712 int do_xdp_generic(struct bpf_prog *xdp_prog, struct sk_buff *skb);
3713 int netif_rx(struct sk_buff *skb);
3714 int netif_rx_ni(struct sk_buff *skb);
3715 int netif_receive_skb(struct sk_buff *skb);
3716 int netif_receive_skb_core(struct sk_buff *skb);
3717 void netif_receive_skb_list(struct list_head *head);
3718 gro_result_t napi_gro_receive(struct napi_struct *napi, struct sk_buff *skb);
3719 void napi_gro_flush(struct napi_struct *napi, bool flush_old);
3720 struct sk_buff *napi_get_frags(struct napi_struct *napi);
3721 gro_result_t napi_gro_frags(struct napi_struct *napi);
3722 struct packet_offload *gro_find_receive_by_type(__be16 type);
3723 struct packet_offload *gro_find_complete_by_type(__be16 type);
3725 static inline void napi_free_frags(struct napi_struct *napi)
3727 kfree_skb(napi->skb);
3731 bool netdev_is_rx_handler_busy(struct net_device *dev);
3732 int netdev_rx_handler_register(struct net_device *dev,
3733 rx_handler_func_t *rx_handler,
3734 void *rx_handler_data);
3735 void netdev_rx_handler_unregister(struct net_device *dev);
3737 bool dev_valid_name(const char *name);
3738 int dev_ioctl(struct net *net, unsigned int cmd, struct ifreq *ifr,
3739 bool *need_copyout);
3740 int dev_ifconf(struct net *net, struct ifconf *, int);
3741 int dev_ethtool(struct net *net, struct ifreq *);
3742 unsigned int dev_get_flags(const struct net_device *);
3743 int __dev_change_flags(struct net_device *dev, unsigned int flags,
3744 struct netlink_ext_ack *extack);
3745 int dev_change_flags(struct net_device *dev, unsigned int flags,
3746 struct netlink_ext_ack *extack);
3747 void __dev_notify_flags(struct net_device *, unsigned int old_flags,
3748 unsigned int gchanges);
3749 int dev_change_name(struct net_device *, const char *);
3750 int dev_set_alias(struct net_device *, const char *, size_t);
3751 int dev_get_alias(const struct net_device *, char *, size_t);
3752 int dev_change_net_namespace(struct net_device *, struct net *, const char *);
3753 int __dev_set_mtu(struct net_device *, int);
3754 int dev_validate_mtu(struct net_device *dev, int mtu,
3755 struct netlink_ext_ack *extack);
3756 int dev_set_mtu_ext(struct net_device *dev, int mtu,
3757 struct netlink_ext_ack *extack);
3758 int dev_set_mtu(struct net_device *, int);
3759 int dev_change_tx_queue_len(struct net_device *, unsigned long);
3760 void dev_set_group(struct net_device *, int);
3761 int dev_pre_changeaddr_notify(struct net_device *dev, const char *addr,
3762 struct netlink_ext_ack *extack);
3763 int dev_set_mac_address(struct net_device *dev, struct sockaddr *sa,
3764 struct netlink_ext_ack *extack);
3765 int dev_change_carrier(struct net_device *, bool new_carrier);
3766 int dev_get_phys_port_id(struct net_device *dev,
3767 struct netdev_phys_item_id *ppid);
3768 int dev_get_phys_port_name(struct net_device *dev,
3769 char *name, size_t len);
3770 int dev_get_port_parent_id(struct net_device *dev,
3771 struct netdev_phys_item_id *ppid, bool recurse);
3772 bool netdev_port_same_parent_id(struct net_device *a, struct net_device *b);
3773 int dev_change_proto_down(struct net_device *dev, bool proto_down);
3774 int dev_change_proto_down_generic(struct net_device *dev, bool proto_down);
3775 struct sk_buff *validate_xmit_skb_list(struct sk_buff *skb, struct net_device *dev, bool *again);
3776 struct sk_buff *dev_hard_start_xmit(struct sk_buff *skb, struct net_device *dev,
3777 struct netdev_queue *txq, int *ret);
3779 typedef int (*bpf_op_t)(struct net_device *dev, struct netdev_bpf *bpf);
3780 int dev_change_xdp_fd(struct net_device *dev, struct netlink_ext_ack *extack,
3781 int fd, int expected_fd, u32 flags);
3782 u32 __dev_xdp_query(struct net_device *dev, bpf_op_t xdp_op,
3783 enum bpf_netdev_command cmd);
3784 int xdp_umem_query(struct net_device *dev, u16 queue_id);
3786 int __dev_forward_skb(struct net_device *dev, struct sk_buff *skb);
3787 int dev_forward_skb(struct net_device *dev, struct sk_buff *skb);
3788 bool is_skb_forwardable(const struct net_device *dev,
3789 const struct sk_buff *skb);
3791 static __always_inline int ____dev_forward_skb(struct net_device *dev,
3792 struct sk_buff *skb)
3794 if (skb_orphan_frags(skb, GFP_ATOMIC) ||
3795 unlikely(!is_skb_forwardable(dev, skb))) {
3796 atomic_long_inc(&dev->rx_dropped);
3801 skb_scrub_packet(skb, true);
3806 bool dev_nit_active(struct net_device *dev);
3807 void dev_queue_xmit_nit(struct sk_buff *skb, struct net_device *dev);
3809 extern int netdev_budget;
3810 extern unsigned int netdev_budget_usecs;
3812 /* Called by rtnetlink.c:rtnl_unlock() */
3813 void netdev_run_todo(void);
3816 * dev_put - release reference to device
3817 * @dev: network device
3819 * Release reference to device to allow it to be freed.
3821 static inline void dev_put(struct net_device *dev)
3823 this_cpu_dec(*dev->pcpu_refcnt);
3827 * dev_hold - get reference to device
3828 * @dev: network device
3830 * Hold reference to device to keep it from being freed.
3832 static inline void dev_hold(struct net_device *dev)
3834 this_cpu_inc(*dev->pcpu_refcnt);
3837 /* Carrier loss detection, dial on demand. The functions netif_carrier_on
3838 * and _off may be called from IRQ context, but it is caller
3839 * who is responsible for serialization of these calls.
3841 * The name carrier is inappropriate, these functions should really be
3842 * called netif_lowerlayer_*() because they represent the state of any
3843 * kind of lower layer not just hardware media.
3846 void linkwatch_init_dev(struct net_device *dev);
3847 void linkwatch_fire_event(struct net_device *dev);
3848 void linkwatch_forget_dev(struct net_device *dev);
3851 * netif_carrier_ok - test if carrier present
3852 * @dev: network device
3854 * Check if carrier is present on device
3856 static inline bool netif_carrier_ok(const struct net_device *dev)
3858 return !test_bit(__LINK_STATE_NOCARRIER, &dev->state);
3861 unsigned long dev_trans_start(struct net_device *dev);
3863 void __netdev_watchdog_up(struct net_device *dev);
3865 void netif_carrier_on(struct net_device *dev);
3867 void netif_carrier_off(struct net_device *dev);
3870 * netif_dormant_on - mark device as dormant.
3871 * @dev: network device
3873 * Mark device as dormant (as per RFC2863).
3875 * The dormant state indicates that the relevant interface is not
3876 * actually in a condition to pass packets (i.e., it is not 'up') but is
3877 * in a "pending" state, waiting for some external event. For "on-
3878 * demand" interfaces, this new state identifies the situation where the
3879 * interface is waiting for events to place it in the up state.
3881 static inline void netif_dormant_on(struct net_device *dev)
3883 if (!test_and_set_bit(__LINK_STATE_DORMANT, &dev->state))
3884 linkwatch_fire_event(dev);
3888 * netif_dormant_off - set device as not dormant.
3889 * @dev: network device
3891 * Device is not in dormant state.
3893 static inline void netif_dormant_off(struct net_device *dev)
3895 if (test_and_clear_bit(__LINK_STATE_DORMANT, &dev->state))
3896 linkwatch_fire_event(dev);
3900 * netif_dormant - test if device is dormant
3901 * @dev: network device
3903 * Check if device is dormant.
3905 static inline bool netif_dormant(const struct net_device *dev)
3907 return test_bit(__LINK_STATE_DORMANT, &dev->state);
3912 * netif_testing_on - mark device as under test.
3913 * @dev: network device
3915 * Mark device as under test (as per RFC2863).
3917 * The testing state indicates that some test(s) must be performed on
3918 * the interface. After completion, of the test, the interface state
3919 * will change to up, dormant, or down, as appropriate.
3921 static inline void netif_testing_on(struct net_device *dev)
3923 if (!test_and_set_bit(__LINK_STATE_TESTING, &dev->state))
3924 linkwatch_fire_event(dev);
3928 * netif_testing_off - set device as not under test.
3929 * @dev: network device
3931 * Device is not in testing state.
3933 static inline void netif_testing_off(struct net_device *dev)
3935 if (test_and_clear_bit(__LINK_STATE_TESTING, &dev->state))
3936 linkwatch_fire_event(dev);
3940 * netif_testing - test if device is under test
3941 * @dev: network device
3943 * Check if device is under test
3945 static inline bool netif_testing(const struct net_device *dev)
3947 return test_bit(__LINK_STATE_TESTING, &dev->state);
3952 * netif_oper_up - test if device is operational
3953 * @dev: network device
3955 * Check if carrier is operational
3957 static inline bool netif_oper_up(const struct net_device *dev)
3959 return (dev->operstate == IF_OPER_UP ||
3960 dev->operstate == IF_OPER_UNKNOWN /* backward compat */);
3964 * netif_device_present - is device available or removed
3965 * @dev: network device
3967 * Check if device has not been removed from system.
3969 static inline bool netif_device_present(struct net_device *dev)
3971 return test_bit(__LINK_STATE_PRESENT, &dev->state);
3974 void netif_device_detach(struct net_device *dev);
3976 void netif_device_attach(struct net_device *dev);
3979 * Network interface message level settings
3984 NETIF_MSG_PROBE_BIT,
3986 NETIF_MSG_TIMER_BIT,
3987 NETIF_MSG_IFDOWN_BIT,
3989 NETIF_MSG_RX_ERR_BIT,
3990 NETIF_MSG_TX_ERR_BIT,
3991 NETIF_MSG_TX_QUEUED_BIT,
3993 NETIF_MSG_TX_DONE_BIT,
3994 NETIF_MSG_RX_STATUS_BIT,
3995 NETIF_MSG_PKTDATA_BIT,
3999 /* When you add a new bit above, update netif_msg_class_names array
4000 * in net/ethtool/common.c
4002 NETIF_MSG_CLASS_COUNT,
4004 /* Both ethtool_ops interface and internal driver implementation use u32 */
4005 static_assert(NETIF_MSG_CLASS_COUNT <= 32);
4007 #define __NETIF_MSG_BIT(bit) ((u32)1 << (bit))
4008 #define __NETIF_MSG(name) __NETIF_MSG_BIT(NETIF_MSG_ ## name ## _BIT)
4010 #define NETIF_MSG_DRV __NETIF_MSG(DRV)
4011 #define NETIF_MSG_PROBE __NETIF_MSG(PROBE)
4012 #define NETIF_MSG_LINK __NETIF_MSG(LINK)
4013 #define NETIF_MSG_TIMER __NETIF_MSG(TIMER)
4014 #define NETIF_MSG_IFDOWN __NETIF_MSG(IFDOWN)
4015 #define NETIF_MSG_IFUP __NETIF_MSG(IFUP)
4016 #define NETIF_MSG_RX_ERR __NETIF_MSG(RX_ERR)
4017 #define NETIF_MSG_TX_ERR __NETIF_MSG(TX_ERR)
4018 #define NETIF_MSG_TX_QUEUED __NETIF_MSG(TX_QUEUED)
4019 #define NETIF_MSG_INTR __NETIF_MSG(INTR)
4020 #define NETIF_MSG_TX_DONE __NETIF_MSG(TX_DONE)
4021 #define NETIF_MSG_RX_STATUS __NETIF_MSG(RX_STATUS)
4022 #define NETIF_MSG_PKTDATA __NETIF_MSG(PKTDATA)
4023 #define NETIF_MSG_HW __NETIF_MSG(HW)
4024 #define NETIF_MSG_WOL __NETIF_MSG(WOL)
4026 #define netif_msg_drv(p) ((p)->msg_enable & NETIF_MSG_DRV)
4027 #define netif_msg_probe(p) ((p)->msg_enable & NETIF_MSG_PROBE)
4028 #define netif_msg_link(p) ((p)->msg_enable & NETIF_MSG_LINK)
4029 #define netif_msg_timer(p) ((p)->msg_enable & NETIF_MSG_TIMER)
4030 #define netif_msg_ifdown(p) ((p)->msg_enable & NETIF_MSG_IFDOWN)
4031 #define netif_msg_ifup(p) ((p)->msg_enable & NETIF_MSG_IFUP)
4032 #define netif_msg_rx_err(p) ((p)->msg_enable & NETIF_MSG_RX_ERR)
4033 #define netif_msg_tx_err(p) ((p)->msg_enable & NETIF_MSG_TX_ERR)
4034 #define netif_msg_tx_queued(p) ((p)->msg_enable & NETIF_MSG_TX_QUEUED)
4035 #define netif_msg_intr(p) ((p)->msg_enable & NETIF_MSG_INTR)
4036 #define netif_msg_tx_done(p) ((p)->msg_enable & NETIF_MSG_TX_DONE)
4037 #define netif_msg_rx_status(p) ((p)->msg_enable & NETIF_MSG_RX_STATUS)
4038 #define netif_msg_pktdata(p) ((p)->msg_enable & NETIF_MSG_PKTDATA)
4039 #define netif_msg_hw(p) ((p)->msg_enable & NETIF_MSG_HW)
4040 #define netif_msg_wol(p) ((p)->msg_enable & NETIF_MSG_WOL)
4042 static inline u32 netif_msg_init(int debug_value, int default_msg_enable_bits)
4045 if (debug_value < 0 || debug_value >= (sizeof(u32) * 8))
4046 return default_msg_enable_bits;
4047 if (debug_value == 0) /* no output */
4049 /* set low N bits */
4050 return (1U << debug_value) - 1;
4053 static inline void __netif_tx_lock(struct netdev_queue *txq, int cpu)
4055 spin_lock(&txq->_xmit_lock);
4056 txq->xmit_lock_owner = cpu;
4059 static inline bool __netif_tx_acquire(struct netdev_queue *txq)
4061 __acquire(&txq->_xmit_lock);
4065 static inline void __netif_tx_release(struct netdev_queue *txq)
4067 __release(&txq->_xmit_lock);
4070 static inline void __netif_tx_lock_bh(struct netdev_queue *txq)
4072 spin_lock_bh(&txq->_xmit_lock);
4073 txq->xmit_lock_owner = smp_processor_id();
4076 static inline bool __netif_tx_trylock(struct netdev_queue *txq)
4078 bool ok = spin_trylock(&txq->_xmit_lock);
4080 txq->xmit_lock_owner = smp_processor_id();
4084 static inline void __netif_tx_unlock(struct netdev_queue *txq)
4086 txq->xmit_lock_owner = -1;
4087 spin_unlock(&txq->_xmit_lock);
4090 static inline void __netif_tx_unlock_bh(struct netdev_queue *txq)
4092 txq->xmit_lock_owner = -1;
4093 spin_unlock_bh(&txq->_xmit_lock);
4096 static inline void txq_trans_update(struct netdev_queue *txq)
4098 if (txq->xmit_lock_owner != -1)
4099 txq->trans_start = jiffies;
4102 /* legacy drivers only, netdev_start_xmit() sets txq->trans_start */
4103 static inline void netif_trans_update(struct net_device *dev)
4105 struct netdev_queue *txq = netdev_get_tx_queue(dev, 0);
4107 if (txq->trans_start != jiffies)
4108 txq->trans_start = jiffies;
4112 * netif_tx_lock - grab network device transmit lock
4113 * @dev: network device
4115 * Get network device transmit lock
4117 static inline void netif_tx_lock(struct net_device *dev)
4122 spin_lock(&dev->tx_global_lock);
4123 cpu = smp_processor_id();
4124 for (i = 0; i < dev->num_tx_queues; i++) {
4125 struct netdev_queue *txq = netdev_get_tx_queue(dev, i);
4127 /* We are the only thread of execution doing a
4128 * freeze, but we have to grab the _xmit_lock in
4129 * order to synchronize with threads which are in
4130 * the ->hard_start_xmit() handler and already
4131 * checked the frozen bit.
4133 __netif_tx_lock(txq, cpu);
4134 set_bit(__QUEUE_STATE_FROZEN, &txq->state);
4135 __netif_tx_unlock(txq);
4139 static inline void netif_tx_lock_bh(struct net_device *dev)
4145 static inline void netif_tx_unlock(struct net_device *dev)
4149 for (i = 0; i < dev->num_tx_queues; i++) {
4150 struct netdev_queue *txq = netdev_get_tx_queue(dev, i);
4152 /* No need to grab the _xmit_lock here. If the
4153 * queue is not stopped for another reason, we
4156 clear_bit(__QUEUE_STATE_FROZEN, &txq->state);
4157 netif_schedule_queue(txq);
4159 spin_unlock(&dev->tx_global_lock);
4162 static inline void netif_tx_unlock_bh(struct net_device *dev)
4164 netif_tx_unlock(dev);
4168 #define HARD_TX_LOCK(dev, txq, cpu) { \
4169 if ((dev->features & NETIF_F_LLTX) == 0) { \
4170 __netif_tx_lock(txq, cpu); \
4172 __netif_tx_acquire(txq); \
4176 #define HARD_TX_TRYLOCK(dev, txq) \
4177 (((dev->features & NETIF_F_LLTX) == 0) ? \
4178 __netif_tx_trylock(txq) : \
4179 __netif_tx_acquire(txq))
4181 #define HARD_TX_UNLOCK(dev, txq) { \
4182 if ((dev->features & NETIF_F_LLTX) == 0) { \
4183 __netif_tx_unlock(txq); \
4185 __netif_tx_release(txq); \
4189 static inline void netif_tx_disable(struct net_device *dev)
4195 cpu = smp_processor_id();
4196 for (i = 0; i < dev->num_tx_queues; i++) {
4197 struct netdev_queue *txq = netdev_get_tx_queue(dev, i);
4199 __netif_tx_lock(txq, cpu);
4200 netif_tx_stop_queue(txq);
4201 __netif_tx_unlock(txq);
4206 static inline void netif_addr_lock(struct net_device *dev)
4208 spin_lock(&dev->addr_list_lock);
4211 static inline void netif_addr_lock_bh(struct net_device *dev)
4213 spin_lock_bh(&dev->addr_list_lock);
4216 static inline void netif_addr_unlock(struct net_device *dev)
4218 spin_unlock(&dev->addr_list_lock);
4221 static inline void netif_addr_unlock_bh(struct net_device *dev)
4223 spin_unlock_bh(&dev->addr_list_lock);
4227 * dev_addrs walker. Should be used only for read access. Call with
4228 * rcu_read_lock held.
4230 #define for_each_dev_addr(dev, ha) \
4231 list_for_each_entry_rcu(ha, &dev->dev_addrs.list, list)
4233 /* These functions live elsewhere (drivers/net/net_init.c, but related) */
4235 void ether_setup(struct net_device *dev);
4237 /* Support for loadable net-drivers */
4238 struct net_device *alloc_netdev_mqs(int sizeof_priv, const char *name,
4239 unsigned char name_assign_type,
4240 void (*setup)(struct net_device *),
4241 unsigned int txqs, unsigned int rxqs);
4242 #define alloc_netdev(sizeof_priv, name, name_assign_type, setup) \
4243 alloc_netdev_mqs(sizeof_priv, name, name_assign_type, setup, 1, 1)
4245 #define alloc_netdev_mq(sizeof_priv, name, name_assign_type, setup, count) \
4246 alloc_netdev_mqs(sizeof_priv, name, name_assign_type, setup, count, \
4249 int register_netdev(struct net_device *dev);
4250 void unregister_netdev(struct net_device *dev);
4252 /* General hardware address lists handling functions */
4253 int __hw_addr_sync(struct netdev_hw_addr_list *to_list,
4254 struct netdev_hw_addr_list *from_list, int addr_len);
4255 void __hw_addr_unsync(struct netdev_hw_addr_list *to_list,
4256 struct netdev_hw_addr_list *from_list, int addr_len);
4257 int __hw_addr_sync_dev(struct netdev_hw_addr_list *list,
4258 struct net_device *dev,
4259 int (*sync)(struct net_device *, const unsigned char *),
4260 int (*unsync)(struct net_device *,
4261 const unsigned char *));
4262 int __hw_addr_ref_sync_dev(struct netdev_hw_addr_list *list,
4263 struct net_device *dev,
4264 int (*sync)(struct net_device *,
4265 const unsigned char *, int),
4266 int (*unsync)(struct net_device *,
4267 const unsigned char *, int));
4268 void __hw_addr_ref_unsync_dev(struct netdev_hw_addr_list *list,
4269 struct net_device *dev,
4270 int (*unsync)(struct net_device *,
4271 const unsigned char *, int));
4272 void __hw_addr_unsync_dev(struct netdev_hw_addr_list *list,
4273 struct net_device *dev,
4274 int (*unsync)(struct net_device *,
4275 const unsigned char *));
4276 void __hw_addr_init(struct netdev_hw_addr_list *list);
4278 /* Functions used for device addresses handling */
4279 int dev_addr_add(struct net_device *dev, const unsigned char *addr,
4280 unsigned char addr_type);
4281 int dev_addr_del(struct net_device *dev, const unsigned char *addr,
4282 unsigned char addr_type);
4283 void dev_addr_flush(struct net_device *dev);
4284 int dev_addr_init(struct net_device *dev);
4286 /* Functions used for unicast addresses handling */
4287 int dev_uc_add(struct net_device *dev, const unsigned char *addr);
4288 int dev_uc_add_excl(struct net_device *dev, const unsigned char *addr);
4289 int dev_uc_del(struct net_device *dev, const unsigned char *addr);
4290 int dev_uc_sync(struct net_device *to, struct net_device *from);
4291 int dev_uc_sync_multiple(struct net_device *to, struct net_device *from);
4292 void dev_uc_unsync(struct net_device *to, struct net_device *from);
4293 void dev_uc_flush(struct net_device *dev);
4294 void dev_uc_init(struct net_device *dev);
4297 * __dev_uc_sync - Synchonize device's unicast list
4298 * @dev: device to sync
4299 * @sync: function to call if address should be added
4300 * @unsync: function to call if address should be removed
4302 * Add newly added addresses to the interface, and release
4303 * addresses that have been deleted.
4305 static inline int __dev_uc_sync(struct net_device *dev,
4306 int (*sync)(struct net_device *,
4307 const unsigned char *),
4308 int (*unsync)(struct net_device *,
4309 const unsigned char *))
4311 return __hw_addr_sync_dev(&dev->uc, dev, sync, unsync);
4315 * __dev_uc_unsync - Remove synchronized addresses from device
4316 * @dev: device to sync
4317 * @unsync: function to call if address should be removed
4319 * Remove all addresses that were added to the device by dev_uc_sync().
4321 static inline void __dev_uc_unsync(struct net_device *dev,
4322 int (*unsync)(struct net_device *,
4323 const unsigned char *))
4325 __hw_addr_unsync_dev(&dev->uc, dev, unsync);
4328 /* Functions used for multicast addresses handling */
4329 int dev_mc_add(struct net_device *dev, const unsigned char *addr);
4330 int dev_mc_add_global(struct net_device *dev, const unsigned char *addr);
4331 int dev_mc_add_excl(struct net_device *dev, const unsigned char *addr);
4332 int dev_mc_del(struct net_device *dev, const unsigned char *addr);
4333 int dev_mc_del_global(struct net_device *dev, const unsigned char *addr);
4334 int dev_mc_sync(struct net_device *to, struct net_device *from);
4335 int dev_mc_sync_multiple(struct net_device *to, struct net_device *from);
4336 void dev_mc_unsync(struct net_device *to, struct net_device *from);
4337 void dev_mc_flush(struct net_device *dev);
4338 void dev_mc_init(struct net_device *dev);
4341 * __dev_mc_sync - Synchonize device's multicast list
4342 * @dev: device to sync
4343 * @sync: function to call if address should be added
4344 * @unsync: function to call if address should be removed
4346 * Add newly added addresses to the interface, and release
4347 * addresses that have been deleted.
4349 static inline int __dev_mc_sync(struct net_device *dev,
4350 int (*sync)(struct net_device *,
4351 const unsigned char *),
4352 int (*unsync)(struct net_device *,
4353 const unsigned char *))
4355 return __hw_addr_sync_dev(&dev->mc, dev, sync, unsync);
4359 * __dev_mc_unsync - Remove synchronized addresses from device
4360 * @dev: device to sync
4361 * @unsync: function to call if address should be removed
4363 * Remove all addresses that were added to the device by dev_mc_sync().
4365 static inline void __dev_mc_unsync(struct net_device *dev,
4366 int (*unsync)(struct net_device *,
4367 const unsigned char *))
4369 __hw_addr_unsync_dev(&dev->mc, dev, unsync);
4372 /* Functions used for secondary unicast and multicast support */
4373 void dev_set_rx_mode(struct net_device *dev);
4374 void __dev_set_rx_mode(struct net_device *dev);
4375 int dev_set_promiscuity(struct net_device *dev, int inc);
4376 int dev_set_allmulti(struct net_device *dev, int inc);
4377 void netdev_state_change(struct net_device *dev);
4378 void netdev_notify_peers(struct net_device *dev);
4379 void netdev_features_change(struct net_device *dev);
4380 /* Load a device via the kmod */
4381 void dev_load(struct net *net, const char *name);
4382 struct rtnl_link_stats64 *dev_get_stats(struct net_device *dev,
4383 struct rtnl_link_stats64 *storage);
4384 void netdev_stats_to_stats64(struct rtnl_link_stats64 *stats64,
4385 const struct net_device_stats *netdev_stats);
4387 extern int netdev_max_backlog;
4388 extern int netdev_tstamp_prequeue;
4389 extern int weight_p;
4390 extern int dev_weight_rx_bias;
4391 extern int dev_weight_tx_bias;
4392 extern int dev_rx_weight;
4393 extern int dev_tx_weight;
4394 extern int gro_normal_batch;
4396 bool netdev_has_upper_dev(struct net_device *dev, struct net_device *upper_dev);
4397 struct net_device *netdev_upper_get_next_dev_rcu(struct net_device *dev,
4398 struct list_head **iter);
4399 struct net_device *netdev_all_upper_get_next_dev_rcu(struct net_device *dev,
4400 struct list_head **iter);
4402 /* iterate through upper list, must be called under RCU read lock */
4403 #define netdev_for_each_upper_dev_rcu(dev, updev, iter) \
4404 for (iter = &(dev)->adj_list.upper, \
4405 updev = netdev_upper_get_next_dev_rcu(dev, &(iter)); \
4407 updev = netdev_upper_get_next_dev_rcu(dev, &(iter)))
4409 int netdev_walk_all_upper_dev_rcu(struct net_device *dev,
4410 int (*fn)(struct net_device *upper_dev,
4414 bool netdev_has_upper_dev_all_rcu(struct net_device *dev,
4415 struct net_device *upper_dev);
4417 bool netdev_has_any_upper_dev(struct net_device *dev);
4419 void *netdev_lower_get_next_private(struct net_device *dev,
4420 struct list_head **iter);
4421 void *netdev_lower_get_next_private_rcu(struct net_device *dev,
4422 struct list_head **iter);
4424 #define netdev_for_each_lower_private(dev, priv, iter) \
4425 for (iter = (dev)->adj_list.lower.next, \
4426 priv = netdev_lower_get_next_private(dev, &(iter)); \
4428 priv = netdev_lower_get_next_private(dev, &(iter)))
4430 #define netdev_for_each_lower_private_rcu(dev, priv, iter) \
4431 for (iter = &(dev)->adj_list.lower, \
4432 priv = netdev_lower_get_next_private_rcu(dev, &(iter)); \
4434 priv = netdev_lower_get_next_private_rcu(dev, &(iter)))
4436 void *netdev_lower_get_next(struct net_device *dev,
4437 struct list_head **iter);
4439 #define netdev_for_each_lower_dev(dev, ldev, iter) \
4440 for (iter = (dev)->adj_list.lower.next, \
4441 ldev = netdev_lower_get_next(dev, &(iter)); \
4443 ldev = netdev_lower_get_next(dev, &(iter)))
4445 struct net_device *netdev_next_lower_dev_rcu(struct net_device *dev,
4446 struct list_head **iter);
4447 int netdev_walk_all_lower_dev(struct net_device *dev,
4448 int (*fn)(struct net_device *lower_dev,
4451 int netdev_walk_all_lower_dev_rcu(struct net_device *dev,
4452 int (*fn)(struct net_device *lower_dev,
4456 void *netdev_adjacent_get_private(struct list_head *adj_list);
4457 void *netdev_lower_get_first_private_rcu(struct net_device *dev);
4458 struct net_device *netdev_master_upper_dev_get(struct net_device *dev);
4459 struct net_device *netdev_master_upper_dev_get_rcu(struct net_device *dev);
4460 int netdev_upper_dev_link(struct net_device *dev, struct net_device *upper_dev,
4461 struct netlink_ext_ack *extack);
4462 int netdev_master_upper_dev_link(struct net_device *dev,
4463 struct net_device *upper_dev,
4464 void *upper_priv, void *upper_info,
4465 struct netlink_ext_ack *extack);
4466 void netdev_upper_dev_unlink(struct net_device *dev,
4467 struct net_device *upper_dev);
4468 int netdev_adjacent_change_prepare(struct net_device *old_dev,
4469 struct net_device *new_dev,
4470 struct net_device *dev,
4471 struct netlink_ext_ack *extack);
4472 void netdev_adjacent_change_commit(struct net_device *old_dev,
4473 struct net_device *new_dev,
4474 struct net_device *dev);
4475 void netdev_adjacent_change_abort(struct net_device *old_dev,
4476 struct net_device *new_dev,
4477 struct net_device *dev);
4478 void netdev_adjacent_rename_links(struct net_device *dev, char *oldname);
4479 void *netdev_lower_dev_get_private(struct net_device *dev,
4480 struct net_device *lower_dev);
4481 void netdev_lower_state_changed(struct net_device *lower_dev,
4482 void *lower_state_info);
4484 /* RSS keys are 40 or 52 bytes long */
4485 #define NETDEV_RSS_KEY_LEN 52
4486 extern u8 netdev_rss_key[NETDEV_RSS_KEY_LEN] __read_mostly;
4487 void netdev_rss_key_fill(void *buffer, size_t len);
4489 int skb_checksum_help(struct sk_buff *skb);
4490 int skb_crc32c_csum_help(struct sk_buff *skb);
4491 int skb_csum_hwoffload_help(struct sk_buff *skb,
4492 const netdev_features_t features);
4494 struct sk_buff *__skb_gso_segment(struct sk_buff *skb,
4495 netdev_features_t features, bool tx_path);
4496 struct sk_buff *skb_mac_gso_segment(struct sk_buff *skb,
4497 netdev_features_t features);
4499 struct netdev_bonding_info {
4504 struct netdev_notifier_bonding_info {
4505 struct netdev_notifier_info info; /* must be first */
4506 struct netdev_bonding_info bonding_info;
4509 void netdev_bonding_info_change(struct net_device *dev,
4510 struct netdev_bonding_info *bonding_info);
4512 #if IS_ENABLED(CONFIG_ETHTOOL_NETLINK)
4513 void ethtool_notify(struct net_device *dev, unsigned int cmd, const void *data);
4515 static inline void ethtool_notify(struct net_device *dev, unsigned int cmd,
4522 struct sk_buff *skb_gso_segment(struct sk_buff *skb, netdev_features_t features)
4524 return __skb_gso_segment(skb, features, true);
4526 __be16 skb_network_protocol(struct sk_buff *skb, int *depth);
4528 static inline bool can_checksum_protocol(netdev_features_t features,
4531 if (protocol == htons(ETH_P_FCOE))
4532 return !!(features & NETIF_F_FCOE_CRC);
4534 /* Assume this is an IP checksum (not SCTP CRC) */
4536 if (features & NETIF_F_HW_CSUM) {
4537 /* Can checksum everything */
4542 case htons(ETH_P_IP):
4543 return !!(features & NETIF_F_IP_CSUM);
4544 case htons(ETH_P_IPV6):
4545 return !!(features & NETIF_F_IPV6_CSUM);
4552 void netdev_rx_csum_fault(struct net_device *dev, struct sk_buff *skb);
4554 static inline void netdev_rx_csum_fault(struct net_device *dev,
4555 struct sk_buff *skb)
4559 /* rx skb timestamps */
4560 void net_enable_timestamp(void);
4561 void net_disable_timestamp(void);
4563 #ifdef CONFIG_PROC_FS
4564 int __init dev_proc_init(void);
4566 #define dev_proc_init() 0
4569 static inline netdev_tx_t __netdev_start_xmit(const struct net_device_ops *ops,
4570 struct sk_buff *skb, struct net_device *dev,
4573 __this_cpu_write(softnet_data.xmit.more, more);
4574 return ops->ndo_start_xmit(skb, dev);
4577 static inline bool netdev_xmit_more(void)
4579 return __this_cpu_read(softnet_data.xmit.more);
4582 static inline netdev_tx_t netdev_start_xmit(struct sk_buff *skb, struct net_device *dev,
4583 struct netdev_queue *txq, bool more)
4585 const struct net_device_ops *ops = dev->netdev_ops;
4588 rc = __netdev_start_xmit(ops, skb, dev, more);
4589 if (rc == NETDEV_TX_OK)
4590 txq_trans_update(txq);
4595 int netdev_class_create_file_ns(const struct class_attribute *class_attr,
4597 void netdev_class_remove_file_ns(const struct class_attribute *class_attr,
4600 static inline int netdev_class_create_file(const struct class_attribute *class_attr)
4602 return netdev_class_create_file_ns(class_attr, NULL);
4605 static inline void netdev_class_remove_file(const struct class_attribute *class_attr)
4607 netdev_class_remove_file_ns(class_attr, NULL);
4610 extern const struct kobj_ns_type_operations net_ns_type_operations;
4612 const char *netdev_drivername(const struct net_device *dev);
4614 void linkwatch_run_queue(void);
4616 static inline netdev_features_t netdev_intersect_features(netdev_features_t f1,
4617 netdev_features_t f2)
4619 if ((f1 ^ f2) & NETIF_F_HW_CSUM) {
4620 if (f1 & NETIF_F_HW_CSUM)
4621 f1 |= (NETIF_F_IP_CSUM|NETIF_F_IPV6_CSUM);
4623 f2 |= (NETIF_F_IP_CSUM|NETIF_F_IPV6_CSUM);
4629 static inline netdev_features_t netdev_get_wanted_features(
4630 struct net_device *dev)
4632 return (dev->features & ~dev->hw_features) | dev->wanted_features;
4634 netdev_features_t netdev_increment_features(netdev_features_t all,
4635 netdev_features_t one, netdev_features_t mask);
4637 /* Allow TSO being used on stacked device :
4638 * Performing the GSO segmentation before last device
4639 * is a performance improvement.
4641 static inline netdev_features_t netdev_add_tso_features(netdev_features_t features,
4642 netdev_features_t mask)
4644 return netdev_increment_features(features, NETIF_F_ALL_TSO, mask);
4647 int __netdev_update_features(struct net_device *dev);
4648 void netdev_update_features(struct net_device *dev);
4649 void netdev_change_features(struct net_device *dev);
4651 void netif_stacked_transfer_operstate(const struct net_device *rootdev,
4652 struct net_device *dev);
4654 netdev_features_t passthru_features_check(struct sk_buff *skb,
4655 struct net_device *dev,
4656 netdev_features_t features);
4657 netdev_features_t netif_skb_features(struct sk_buff *skb);
4659 static inline bool net_gso_ok(netdev_features_t features, int gso_type)
4661 netdev_features_t feature = (netdev_features_t)gso_type << NETIF_F_GSO_SHIFT;
4663 /* check flags correspondence */
4664 BUILD_BUG_ON(SKB_GSO_TCPV4 != (NETIF_F_TSO >> NETIF_F_GSO_SHIFT));
4665 BUILD_BUG_ON(SKB_GSO_DODGY != (NETIF_F_GSO_ROBUST >> NETIF_F_GSO_SHIFT));
4666 BUILD_BUG_ON(SKB_GSO_TCP_ECN != (NETIF_F_TSO_ECN >> NETIF_F_GSO_SHIFT));
4667 BUILD_BUG_ON(SKB_GSO_TCP_FIXEDID != (NETIF_F_TSO_MANGLEID >> NETIF_F_GSO_SHIFT));
4668 BUILD_BUG_ON(SKB_GSO_TCPV6 != (NETIF_F_TSO6 >> NETIF_F_GSO_SHIFT));
4669 BUILD_BUG_ON(SKB_GSO_FCOE != (NETIF_F_FSO >> NETIF_F_GSO_SHIFT));
4670 BUILD_BUG_ON(SKB_GSO_GRE != (NETIF_F_GSO_GRE >> NETIF_F_GSO_SHIFT));
4671 BUILD_BUG_ON(SKB_GSO_GRE_CSUM != (NETIF_F_GSO_GRE_CSUM >> NETIF_F_GSO_SHIFT));
4672 BUILD_BUG_ON(SKB_GSO_IPXIP4 != (NETIF_F_GSO_IPXIP4 >> NETIF_F_GSO_SHIFT));
4673 BUILD_BUG_ON(SKB_GSO_IPXIP6 != (NETIF_F_GSO_IPXIP6 >> NETIF_F_GSO_SHIFT));
4674 BUILD_BUG_ON(SKB_GSO_UDP_TUNNEL != (NETIF_F_GSO_UDP_TUNNEL >> NETIF_F_GSO_SHIFT));
4675 BUILD_BUG_ON(SKB_GSO_UDP_TUNNEL_CSUM != (NETIF_F_GSO_UDP_TUNNEL_CSUM >> NETIF_F_GSO_SHIFT));
4676 BUILD_BUG_ON(SKB_GSO_PARTIAL != (NETIF_F_GSO_PARTIAL >> NETIF_F_GSO_SHIFT));
4677 BUILD_BUG_ON(SKB_GSO_TUNNEL_REMCSUM != (NETIF_F_GSO_TUNNEL_REMCSUM >> NETIF_F_GSO_SHIFT));
4678 BUILD_BUG_ON(SKB_GSO_SCTP != (NETIF_F_GSO_SCTP >> NETIF_F_GSO_SHIFT));
4679 BUILD_BUG_ON(SKB_GSO_ESP != (NETIF_F_GSO_ESP >> NETIF_F_GSO_SHIFT));
4680 BUILD_BUG_ON(SKB_GSO_UDP != (NETIF_F_GSO_UDP >> NETIF_F_GSO_SHIFT));
4681 BUILD_BUG_ON(SKB_GSO_UDP_L4 != (NETIF_F_GSO_UDP_L4 >> NETIF_F_GSO_SHIFT));
4682 BUILD_BUG_ON(SKB_GSO_FRAGLIST != (NETIF_F_GSO_FRAGLIST >> NETIF_F_GSO_SHIFT));
4684 return (features & feature) == feature;
4687 static inline bool skb_gso_ok(struct sk_buff *skb, netdev_features_t features)
4689 return net_gso_ok(features, skb_shinfo(skb)->gso_type) &&
4690 (!skb_has_frag_list(skb) || (features & NETIF_F_FRAGLIST));
4693 static inline bool netif_needs_gso(struct sk_buff *skb,
4694 netdev_features_t features)
4696 return skb_is_gso(skb) && (!skb_gso_ok(skb, features) ||
4697 unlikely((skb->ip_summed != CHECKSUM_PARTIAL) &&
4698 (skb->ip_summed != CHECKSUM_UNNECESSARY)));
4701 static inline void netif_set_gso_max_size(struct net_device *dev,
4704 dev->gso_max_size = size;
4707 static inline void skb_gso_error_unwind(struct sk_buff *skb, __be16 protocol,
4708 int pulled_hlen, u16 mac_offset,
4711 skb->protocol = protocol;
4712 skb->encapsulation = 1;
4713 skb_push(skb, pulled_hlen);
4714 skb_reset_transport_header(skb);
4715 skb->mac_header = mac_offset;
4716 skb->network_header = skb->mac_header + mac_len;
4717 skb->mac_len = mac_len;
4720 static inline bool netif_is_macsec(const struct net_device *dev)
4722 return dev->priv_flags & IFF_MACSEC;
4725 static inline bool netif_is_macvlan(const struct net_device *dev)
4727 return dev->priv_flags & IFF_MACVLAN;
4730 static inline bool netif_is_macvlan_port(const struct net_device *dev)
4732 return dev->priv_flags & IFF_MACVLAN_PORT;
4735 static inline bool netif_is_bond_master(const struct net_device *dev)
4737 return dev->flags & IFF_MASTER && dev->priv_flags & IFF_BONDING;
4740 static inline bool netif_is_bond_slave(const struct net_device *dev)
4742 return dev->flags & IFF_SLAVE && dev->priv_flags & IFF_BONDING;
4745 static inline bool netif_supports_nofcs(struct net_device *dev)
4747 return dev->priv_flags & IFF_SUPP_NOFCS;
4750 static inline bool netif_has_l3_rx_handler(const struct net_device *dev)
4752 return dev->priv_flags & IFF_L3MDEV_RX_HANDLER;
4755 static inline bool netif_is_l3_master(const struct net_device *dev)
4757 return dev->priv_flags & IFF_L3MDEV_MASTER;
4760 static inline bool netif_is_l3_slave(const struct net_device *dev)
4762 return dev->priv_flags & IFF_L3MDEV_SLAVE;
4765 static inline bool netif_is_bridge_master(const struct net_device *dev)
4767 return dev->priv_flags & IFF_EBRIDGE;
4770 static inline bool netif_is_bridge_port(const struct net_device *dev)
4772 return dev->priv_flags & IFF_BRIDGE_PORT;
4775 static inline bool netif_is_ovs_master(const struct net_device *dev)
4777 return dev->priv_flags & IFF_OPENVSWITCH;
4780 static inline bool netif_is_ovs_port(const struct net_device *dev)
4782 return dev->priv_flags & IFF_OVS_DATAPATH;
4785 static inline bool netif_is_team_master(const struct net_device *dev)
4787 return dev->priv_flags & IFF_TEAM;
4790 static inline bool netif_is_team_port(const struct net_device *dev)
4792 return dev->priv_flags & IFF_TEAM_PORT;
4795 static inline bool netif_is_lag_master(const struct net_device *dev)
4797 return netif_is_bond_master(dev) || netif_is_team_master(dev);
4800 static inline bool netif_is_lag_port(const struct net_device *dev)
4802 return netif_is_bond_slave(dev) || netif_is_team_port(dev);
4805 static inline bool netif_is_rxfh_configured(const struct net_device *dev)
4807 return dev->priv_flags & IFF_RXFH_CONFIGURED;
4810 static inline bool netif_is_failover(const struct net_device *dev)
4812 return dev->priv_flags & IFF_FAILOVER;
4815 static inline bool netif_is_failover_slave(const struct net_device *dev)
4817 return dev->priv_flags & IFF_FAILOVER_SLAVE;
4820 /* This device needs to keep skb dst for qdisc enqueue or ndo_start_xmit() */
4821 static inline void netif_keep_dst(struct net_device *dev)
4823 dev->priv_flags &= ~(IFF_XMIT_DST_RELEASE | IFF_XMIT_DST_RELEASE_PERM);
4826 /* return true if dev can't cope with mtu frames that need vlan tag insertion */
4827 static inline bool netif_reduces_vlan_mtu(struct net_device *dev)
4829 /* TODO: reserve and use an additional IFF bit, if we get more users */
4830 return dev->priv_flags & IFF_MACSEC;
4833 extern struct pernet_operations __net_initdata loopback_net_ops;
4835 /* Logging, debugging and troubleshooting/diagnostic helpers. */
4837 /* netdev_printk helpers, similar to dev_printk */
4839 static inline const char *netdev_name(const struct net_device *dev)
4841 if (!dev->name[0] || strchr(dev->name, '%'))
4842 return "(unnamed net_device)";
4846 static inline bool netdev_unregistering(const struct net_device *dev)
4848 return dev->reg_state == NETREG_UNREGISTERING;
4851 static inline const char *netdev_reg_state(const struct net_device *dev)
4853 switch (dev->reg_state) {
4854 case NETREG_UNINITIALIZED: return " (uninitialized)";
4855 case NETREG_REGISTERED: return "";
4856 case NETREG_UNREGISTERING: return " (unregistering)";
4857 case NETREG_UNREGISTERED: return " (unregistered)";
4858 case NETREG_RELEASED: return " (released)";
4859 case NETREG_DUMMY: return " (dummy)";
4862 WARN_ONCE(1, "%s: unknown reg_state %d\n", dev->name, dev->reg_state);
4863 return " (unknown)";
4866 __printf(3, 4) __cold
4867 void netdev_printk(const char *level, const struct net_device *dev,
4868 const char *format, ...);
4869 __printf(2, 3) __cold
4870 void netdev_emerg(const struct net_device *dev, const char *format, ...);
4871 __printf(2, 3) __cold
4872 void netdev_alert(const struct net_device *dev, const char *format, ...);
4873 __printf(2, 3) __cold
4874 void netdev_crit(const struct net_device *dev, const char *format, ...);
4875 __printf(2, 3) __cold
4876 void netdev_err(const struct net_device *dev, const char *format, ...);
4877 __printf(2, 3) __cold
4878 void netdev_warn(const struct net_device *dev, const char *format, ...);
4879 __printf(2, 3) __cold
4880 void netdev_notice(const struct net_device *dev, const char *format, ...);
4881 __printf(2, 3) __cold
4882 void netdev_info(const struct net_device *dev, const char *format, ...);
4884 #define netdev_level_once(level, dev, fmt, ...) \
4886 static bool __print_once __read_mostly; \
4888 if (!__print_once) { \
4889 __print_once = true; \
4890 netdev_printk(level, dev, fmt, ##__VA_ARGS__); \
4894 #define netdev_emerg_once(dev, fmt, ...) \
4895 netdev_level_once(KERN_EMERG, dev, fmt, ##__VA_ARGS__)
4896 #define netdev_alert_once(dev, fmt, ...) \
4897 netdev_level_once(KERN_ALERT, dev, fmt, ##__VA_ARGS__)
4898 #define netdev_crit_once(dev, fmt, ...) \
4899 netdev_level_once(KERN_CRIT, dev, fmt, ##__VA_ARGS__)
4900 #define netdev_err_once(dev, fmt, ...) \
4901 netdev_level_once(KERN_ERR, dev, fmt, ##__VA_ARGS__)
4902 #define netdev_warn_once(dev, fmt, ...) \
4903 netdev_level_once(KERN_WARNING, dev, fmt, ##__VA_ARGS__)
4904 #define netdev_notice_once(dev, fmt, ...) \
4905 netdev_level_once(KERN_NOTICE, dev, fmt, ##__VA_ARGS__)
4906 #define netdev_info_once(dev, fmt, ...) \
4907 netdev_level_once(KERN_INFO, dev, fmt, ##__VA_ARGS__)
4909 #define MODULE_ALIAS_NETDEV(device) \
4910 MODULE_ALIAS("netdev-" device)
4912 #if defined(CONFIG_DYNAMIC_DEBUG)
4913 #define netdev_dbg(__dev, format, args...) \
4915 dynamic_netdev_dbg(__dev, format, ##args); \
4917 #elif defined(DEBUG)
4918 #define netdev_dbg(__dev, format, args...) \
4919 netdev_printk(KERN_DEBUG, __dev, format, ##args)
4921 #define netdev_dbg(__dev, format, args...) \
4924 netdev_printk(KERN_DEBUG, __dev, format, ##args); \
4928 #if defined(VERBOSE_DEBUG)
4929 #define netdev_vdbg netdev_dbg
4932 #define netdev_vdbg(dev, format, args...) \
4935 netdev_printk(KERN_DEBUG, dev, format, ##args); \
4941 * netdev_WARN() acts like dev_printk(), but with the key difference
4942 * of using a WARN/WARN_ON to get the message out, including the
4943 * file/line information and a backtrace.
4945 #define netdev_WARN(dev, format, args...) \
4946 WARN(1, "netdevice: %s%s: " format, netdev_name(dev), \
4947 netdev_reg_state(dev), ##args)
4949 #define netdev_WARN_ONCE(dev, format, args...) \
4950 WARN_ONCE(1, "netdevice: %s%s: " format, netdev_name(dev), \
4951 netdev_reg_state(dev), ##args)
4953 /* netif printk helpers, similar to netdev_printk */
4955 #define netif_printk(priv, type, level, dev, fmt, args...) \
4957 if (netif_msg_##type(priv)) \
4958 netdev_printk(level, (dev), fmt, ##args); \
4961 #define netif_level(level, priv, type, dev, fmt, args...) \
4963 if (netif_msg_##type(priv)) \
4964 netdev_##level(dev, fmt, ##args); \
4967 #define netif_emerg(priv, type, dev, fmt, args...) \
4968 netif_level(emerg, priv, type, dev, fmt, ##args)
4969 #define netif_alert(priv, type, dev, fmt, args...) \
4970 netif_level(alert, priv, type, dev, fmt, ##args)
4971 #define netif_crit(priv, type, dev, fmt, args...) \
4972 netif_level(crit, priv, type, dev, fmt, ##args)
4973 #define netif_err(priv, type, dev, fmt, args...) \
4974 netif_level(err, priv, type, dev, fmt, ##args)
4975 #define netif_warn(priv, type, dev, fmt, args...) \
4976 netif_level(warn, priv, type, dev, fmt, ##args)
4977 #define netif_notice(priv, type, dev, fmt, args...) \
4978 netif_level(notice, priv, type, dev, fmt, ##args)
4979 #define netif_info(priv, type, dev, fmt, args...) \
4980 netif_level(info, priv, type, dev, fmt, ##args)
4982 #if defined(CONFIG_DYNAMIC_DEBUG)
4983 #define netif_dbg(priv, type, netdev, format, args...) \
4985 if (netif_msg_##type(priv)) \
4986 dynamic_netdev_dbg(netdev, format, ##args); \
4988 #elif defined(DEBUG)
4989 #define netif_dbg(priv, type, dev, format, args...) \
4990 netif_printk(priv, type, KERN_DEBUG, dev, format, ##args)
4992 #define netif_dbg(priv, type, dev, format, args...) \
4995 netif_printk(priv, type, KERN_DEBUG, dev, format, ##args); \
5000 /* if @cond then downgrade to debug, else print at @level */
5001 #define netif_cond_dbg(priv, type, netdev, cond, level, fmt, args...) \
5004 netif_dbg(priv, type, netdev, fmt, ##args); \
5006 netif_ ## level(priv, type, netdev, fmt, ##args); \
5009 #if defined(VERBOSE_DEBUG)
5010 #define netif_vdbg netif_dbg
5012 #define netif_vdbg(priv, type, dev, format, args...) \
5015 netif_printk(priv, type, KERN_DEBUG, dev, format, ##args); \
5021 * The list of packet types we will receive (as opposed to discard)
5022 * and the routines to invoke.
5024 * Why 16. Because with 16 the only overlap we get on a hash of the
5025 * low nibble of the protocol value is RARP/SNAP/X.25.
5039 #define PTYPE_HASH_SIZE (16)
5040 #define PTYPE_HASH_MASK (PTYPE_HASH_SIZE - 1)
5042 extern struct net_device *blackhole_netdev;
5044 #endif /* _LINUX_NETDEVICE_H */