netdevice.h
上传用户:szlgq88
上传日期:2009-04-28
资源大小:48287k
文件大小:28k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  * INET An implementation of the TCP/IP protocol suite for the LINUX
  3.  * operating system.  INET is implemented using the  BSD Socket
  4.  * interface as the means of communication with the user level.
  5.  *
  6.  * Definitions for the Interfaces handler.
  7.  *
  8.  * Version: @(#)dev.h 1.0.10 08/12/93
  9.  *
  10.  * Authors: Ross Biro
  11.  * Fred N. van Kempen, <waltje@uWalt.NL.Mugnet.ORG>
  12.  * Corey Minyard <wf-rch!minyard@relay.EU.net>
  13.  * Donald J. Becker, <becker@cesdis.gsfc.nasa.gov>
  14.  * Alan Cox, <Alan.Cox@linux.org>
  15.  * Bjorn Ekwall. <bj0rn@blox.se>
  16.  *              Pekka Riikonen <priikone@poseidon.pspt.fi>
  17.  *
  18.  * This program is free software; you can redistribute it and/or
  19.  * modify it under the terms of the GNU General Public License
  20.  * as published by the Free Software Foundation; either version
  21.  * 2 of the License, or (at your option) any later version.
  22.  *
  23.  * Moved to /usr/include/linux for NET3
  24.  */
  25. #ifndef _LINUX_NETDEVICE_H
  26. #define _LINUX_NETDEVICE_H
  27. #include <linux/if.h>
  28. #include <linux/if_ether.h>
  29. #include <linux/if_packet.h>
  30. #ifdef __KERNEL__
  31. #include <asm/atomic.h>
  32. #include <asm/cache.h>
  33. #include <asm/byteorder.h>
  34. #include <linux/config.h>
  35. #include <linux/device.h>
  36. #include <linux/percpu.h>
  37. struct divert_blk;
  38. struct vlan_group;
  39. struct ethtool_ops;
  40. struct netpoll_info;
  41. /* source back-compat hooks */
  42. #define SET_ETHTOOL_OPS(netdev,ops) 
  43. ( (netdev)->ethtool_ops = (ops) )
  44. #define HAVE_ALLOC_NETDEV /* feature macro: alloc_xxxdev
  45.    functions are available. */
  46. #define HAVE_FREE_NETDEV /* free_netdev() */
  47. #define HAVE_NETDEV_PRIV /* netdev_priv() */
  48. #define NET_XMIT_SUCCESS 0
  49. #define NET_XMIT_DROP 1 /* skb dropped */
  50. #define NET_XMIT_CN 2 /* congestion notification */
  51. #define NET_XMIT_POLICED 3 /* skb is shot by police */
  52. #define NET_XMIT_BYPASS 4 /* packet does not leave via dequeue;
  53.    (TC use only - dev_queue_xmit
  54.    returns this as NET_XMIT_SUCCESS) */
  55. /* Backlog congestion levels */
  56. #define NET_RX_SUCCESS 0   /* keep 'em coming, baby */
  57. #define NET_RX_DROP 1  /* packet dropped */
  58. #define NET_RX_CN_LOW 2   /* storm alert, just in case */
  59. #define NET_RX_CN_MOD 3   /* Storm on its way! */
  60. #define NET_RX_CN_HIGH 4   /* The storm is here */
  61. #define NET_RX_BAD 5  /* packet dropped due to kernel error */
  62. #define net_xmit_errno(e) ((e) != NET_XMIT_CN ? -ENOBUFS : 0)
  63. #endif
  64. #define MAX_ADDR_LEN 32 /* Largest hardware address length */
  65. /* Driver transmit return codes */
  66. #define NETDEV_TX_OK 0 /* driver took care of packet */
  67. #define NETDEV_TX_BUSY 1 /* driver tx path was busy*/
  68. #define NETDEV_TX_LOCKED -1 /* driver tx lock was already taken */
  69. /*
  70.  * Compute the worst case header length according to the protocols
  71.  * used.
  72.  */
  73.  
  74. #if !defined(CONFIG_AX25) && !defined(CONFIG_AX25_MODULE) && !defined(CONFIG_TR)
  75. #define LL_MAX_HEADER 32
  76. #else
  77. #if defined(CONFIG_AX25) || defined(CONFIG_AX25_MODULE)
  78. #define LL_MAX_HEADER 96
  79. #else
  80. #define LL_MAX_HEADER 48
  81. #endif
  82. #endif
  83. #if !defined(CONFIG_NET_IPIP) && 
  84.     !defined(CONFIG_IPV6) && !defined(CONFIG_IPV6_MODULE)
  85. #define MAX_HEADER LL_MAX_HEADER
  86. #else
  87. #define MAX_HEADER (LL_MAX_HEADER + 48)
  88. #endif
  89. /*
  90.  * Network device statistics. Akin to the 2.0 ether stats but
  91.  * with byte counters.
  92.  */
  93.  
  94. struct net_device_stats
  95. {
  96. unsigned long rx_packets; /* total packets received */
  97. unsigned long tx_packets; /* total packets transmitted */
  98. unsigned long rx_bytes; /* total bytes received  */
  99. unsigned long tx_bytes; /* total bytes transmitted */
  100. unsigned long rx_errors; /* bad packets received */
  101. unsigned long tx_errors; /* packet transmit problems */
  102. unsigned long rx_dropped; /* no space in linux buffers */
  103. unsigned long tx_dropped; /* no space available in linux */
  104. unsigned long multicast; /* multicast packets received */
  105. unsigned long collisions;
  106. /* detailed rx_errors: */
  107. unsigned long rx_length_errors;
  108. unsigned long rx_over_errors; /* receiver ring buff overflow */
  109. unsigned long rx_crc_errors; /* recved pkt with crc error */
  110. unsigned long rx_frame_errors; /* recv'd frame alignment error */
  111. unsigned long rx_fifo_errors; /* recv'r fifo overrun */
  112. unsigned long rx_missed_errors; /* receiver missed packet */
  113. /* detailed tx_errors */
  114. unsigned long tx_aborted_errors;
  115. unsigned long tx_carrier_errors;
  116. unsigned long tx_fifo_errors;
  117. unsigned long tx_heartbeat_errors;
  118. unsigned long tx_window_errors;
  119. /* for cslip etc */
  120. unsigned long rx_compressed;
  121. unsigned long tx_compressed;
  122. };
  123. /* Media selection options. */
  124. enum {
  125.         IF_PORT_UNKNOWN = 0,
  126.         IF_PORT_10BASE2,
  127.         IF_PORT_10BASET,
  128.         IF_PORT_AUI,
  129.         IF_PORT_100BASET,
  130.         IF_PORT_100BASETX,
  131.         IF_PORT_100BASEFX
  132. };
  133. #ifdef __KERNEL__
  134. #include <linux/cache.h>
  135. #include <linux/skbuff.h>
  136. struct neighbour;
  137. struct neigh_parms;
  138. struct sk_buff;
  139. struct netif_rx_stats
  140. {
  141. unsigned total;
  142. unsigned dropped;
  143. unsigned time_squeeze;
  144. unsigned cpu_collision;
  145. };
  146. DECLARE_PER_CPU(struct netif_rx_stats, netdev_rx_stat);
  147. /*
  148.  * We tag multicasts with these structures.
  149.  */
  150.  
  151. struct dev_mc_list
  152. {
  153. struct dev_mc_list *next;
  154. __u8 dmi_addr[MAX_ADDR_LEN];
  155. unsigned char dmi_addrlen;
  156. int dmi_users;
  157. int dmi_gusers;
  158. };
  159. struct hh_cache
  160. {
  161. struct hh_cache *hh_next; /* Next entry      */
  162. atomic_t hh_refcnt; /* number of users                   */
  163. unsigned short  hh_type; /* protocol identifier, f.e ETH_P_IP
  164.                                          *  NOTE:  For VLANs, this will be the
  165.                                          *  encapuslated type. --BLG
  166.                                          */
  167. int hh_len; /* length of header */
  168. int (*hh_output)(struct sk_buff *skb);
  169. rwlock_t hh_lock;
  170. /* cached hardware header; allow for machine alignment needs.        */
  171. #define HH_DATA_MOD 16
  172. #define HH_DATA_OFF(__len) 
  173. (HH_DATA_MOD - (((__len - 1) & (HH_DATA_MOD - 1)) + 1))
  174. #define HH_DATA_ALIGN(__len) 
  175. (((__len)+(HH_DATA_MOD-1))&~(HH_DATA_MOD - 1))
  176. unsigned long hh_data[HH_DATA_ALIGN(LL_MAX_HEADER) / sizeof(long)];
  177. };
  178. /* Reserve HH_DATA_MOD byte aligned hard_header_len, but at least that much.
  179.  * Alternative is:
  180.  *   dev->hard_header_len ? (dev->hard_header_len +
  181.  *                           (HH_DATA_MOD - 1)) & ~(HH_DATA_MOD - 1) : 0
  182.  *
  183.  * We could use other alignment values, but we must maintain the
  184.  * relationship HH alignment <= LL alignment.
  185.  */
  186. #define LL_RESERVED_SPACE(dev) 
  187. (((dev)->hard_header_len&~(HH_DATA_MOD - 1)) + HH_DATA_MOD)
  188. #define LL_RESERVED_SPACE_EXTRA(dev,extra) 
  189. ((((dev)->hard_header_len+extra)&~(HH_DATA_MOD - 1)) + HH_DATA_MOD)
  190. /* These flag bits are private to the generic network queueing
  191.  * layer, they may not be explicitly referenced by any other
  192.  * code.
  193.  */
  194. enum netdev_state_t
  195. {
  196. __LINK_STATE_XOFF=0,
  197. __LINK_STATE_START,
  198. __LINK_STATE_PRESENT,
  199. __LINK_STATE_SCHED,
  200. __LINK_STATE_NOCARRIER,
  201. __LINK_STATE_RX_SCHED,
  202. __LINK_STATE_LINKWATCH_PENDING
  203. };
  204. /*
  205.  * This structure holds at boot time configured netdevice settings. They
  206.  * are then used in the device probing. 
  207.  */
  208. struct netdev_boot_setup {
  209. char name[IFNAMSIZ];
  210. struct ifmap map;
  211. };
  212. #define NETDEV_BOOT_SETUP_MAX 8
  213. extern int __init netdev_boot_setup(char *str);
  214. /*
  215.  * The DEVICE structure.
  216.  * Actually, this whole structure is a big mistake.  It mixes I/O
  217.  * data with strictly "high-level" data, and it has to know about
  218.  * almost every data structure used in the INET module.
  219.  *
  220.  * FIXME: cleanup struct net_device such that network protocol info
  221.  * moves out.
  222.  */
  223. struct net_device
  224. {
  225. /*
  226.  * This is the first field of the "visible" part of this structure
  227.  * (i.e. as seen by users in the "Space.c" file).  It is the name
  228.  * the interface.
  229.  */
  230. char name[IFNAMSIZ];
  231. /* device name hash chain */
  232. struct hlist_node name_hlist;
  233. /*
  234.  * I/O specific fields
  235.  * FIXME: Merge these and struct ifmap into one
  236.  */
  237. unsigned long mem_end; /* shared mem end */
  238. unsigned long mem_start; /* shared mem start */
  239. unsigned long base_addr; /* device I/O address */
  240. unsigned int irq; /* device IRQ number */
  241. /*
  242.  * Some hardware also needs these fields, but they are not
  243.  * part of the usual set specified in Space.c.
  244.  */
  245. unsigned char if_port; /* Selectable AUI, TP,..*/
  246. unsigned char dma; /* DMA channel */
  247. unsigned long state;
  248. struct net_device *next;
  249. /* The device initialization function. Called only once. */
  250. int (*init)(struct net_device *dev);
  251. /* ------- Fields preinitialized in Space.c finish here ------- */
  252. /* Net device features */
  253. unsigned long features;
  254. #define NETIF_F_SG 1 /* Scatter/gather IO. */
  255. #define NETIF_F_IP_CSUM 2 /* Can checksum only TCP/UDP over IPv4. */
  256. #define NETIF_F_NO_CSUM 4 /* Does not require checksum. F.e. loopack. */
  257. #define NETIF_F_HW_CSUM 8 /* Can checksum all the packets. */
  258. #define NETIF_F_HIGHDMA 32 /* Can DMA to high memory. */
  259. #define NETIF_F_FRAGLIST 64 /* Scatter/gather IO. */
  260. #define NETIF_F_HW_VLAN_TX 128 /* Transmit VLAN hw acceleration */
  261. #define NETIF_F_HW_VLAN_RX 256 /* Receive VLAN hw acceleration */
  262. #define NETIF_F_HW_VLAN_FILTER 512 /* Receive filtering on VLAN */
  263. #define NETIF_F_VLAN_CHALLENGED 1024 /* Device cannot handle VLAN packets */
  264. #define NETIF_F_TSO 2048 /* Can offload TCP/IP segmentation */
  265. #define NETIF_F_LLTX 4096 /* LockLess TX */
  266. struct net_device *next_sched;
  267. /* Interface index. Unique device identifier */
  268. int ifindex;
  269. int iflink;
  270. struct net_device_stats* (*get_stats)(struct net_device *dev);
  271. struct iw_statistics* (*get_wireless_stats)(struct net_device *dev);
  272. /* List of functions to handle Wireless Extensions (instead of ioctl).
  273.  * See <net/iw_handler.h> for details. Jean II */
  274. const struct iw_handler_def * wireless_handlers;
  275. /* Instance data managed by the core of Wireless Extensions. */
  276. struct iw_public_data * wireless_data;
  277. struct ethtool_ops *ethtool_ops;
  278. /*
  279.  * This marks the end of the "visible" part of the structure. All
  280.  * fields hereafter are internal to the system, and may change at
  281.  * will (read: may be cleaned up at will).
  282.  */
  283. unsigned short flags; /* interface flags (a la BSD) */
  284. unsigned short gflags;
  285.         unsigned short          priv_flags; /* Like 'flags' but invisible to userspace. */
  286. unsigned short padded; /* How much padding added by alloc_netdev() */
  287. unsigned mtu; /* interface MTU value */
  288. unsigned short type; /* interface hardware type */
  289. unsigned short hard_header_len; /* hardware hdr length */
  290. struct net_device *master; /* Pointer to master device of a group,
  291.   * which this device is member of.
  292.   */
  293. /* Interface address info. */
  294. unsigned char perm_addr[MAX_ADDR_LEN]; /* permanent hw address */
  295. unsigned char addr_len; /* hardware address length */
  296. unsigned short          dev_id; /* for shared network cards */
  297. struct dev_mc_list *mc_list; /* Multicast mac addresses */
  298. int mc_count; /* Number of installed mcasts */
  299. int promiscuity;
  300. int allmulti;
  301. /* Protocol specific pointers */
  302. void  *atalk_ptr; /* AppleTalk link  */
  303. void *ip_ptr; /* IPv4 specific data */  
  304. void                    *dn_ptr;        /* DECnet specific data */
  305. void                    *ip6_ptr;       /* IPv6 specific data */
  306. void *ec_ptr; /* Econet specific data */
  307. void *ax25_ptr; /* AX.25 specific data */
  308. /*
  309.  * Cache line mostly used on receive path (including eth_type_trans())
  310.  */
  311. struct list_head poll_list ____cacheline_aligned_in_smp;
  312. /* Link to poll list */
  313. int (*poll) (struct net_device *dev, int *quota);
  314. int quota;
  315. int weight;
  316. unsigned long last_rx; /* Time of last Rx */
  317. /* Interface address info used in eth_type_trans() */
  318. unsigned char dev_addr[MAX_ADDR_LEN]; /* hw address, (before bcast 
  319. because most packets are unicast) */
  320. unsigned char broadcast[MAX_ADDR_LEN]; /* hw bcast add */
  321. /*
  322.  * Cache line mostly used on queue transmit path (qdisc)
  323.  */
  324. /* device queue lock */
  325. spinlock_t queue_lock ____cacheline_aligned_in_smp;
  326. struct Qdisc *qdisc;
  327. struct Qdisc *qdisc_sleeping;
  328. struct list_head qdisc_list;
  329. unsigned long tx_queue_len; /* Max frames per queue allowed */
  330. /* ingress path synchronizer */
  331. spinlock_t ingress_lock;
  332. struct Qdisc *qdisc_ingress;
  333. /*
  334.  * One part is mostly used on xmit path (device)
  335.  */
  336. /* hard_start_xmit synchronizer */
  337. spinlock_t xmit_lock ____cacheline_aligned_in_smp;
  338. /* cpu id of processor entered to hard_start_xmit or -1,
  339.    if nobody entered there.
  340.  */
  341. int xmit_lock_owner;
  342. void *priv; /* pointer to private data */
  343. int (*hard_start_xmit) (struct sk_buff *skb,
  344.     struct net_device *dev);
  345. /* These may be needed for future network-power-down code. */
  346. unsigned long trans_start; /* Time (in jiffies) of last Tx */
  347. int watchdog_timeo; /* used by dev_watchdog() */
  348. struct timer_list watchdog_timer;
  349. /*
  350.  * refcnt is a very hot point, so align it on SMP
  351.  */
  352. /* Number of references to this device */
  353. atomic_t refcnt ____cacheline_aligned_in_smp;
  354. /* delayed register/unregister */
  355. struct list_head todo_list;
  356. /* device index hash chain */
  357. struct hlist_node index_hlist;
  358. /* register/unregister state machine */
  359. enum { NETREG_UNINITIALIZED=0,
  360.        NETREG_REGISTERING, /* called register_netdevice */
  361.        NETREG_REGISTERED, /* completed register todo */
  362.        NETREG_UNREGISTERING, /* called unregister_netdevice */
  363.        NETREG_UNREGISTERED, /* completed unregister todo */
  364.        NETREG_RELEASED, /* called free_netdev */
  365. } reg_state;
  366. /* Called after device is detached from network. */
  367. void (*uninit)(struct net_device *dev);
  368. /* Called after last user reference disappears. */
  369. void (*destructor)(struct net_device *dev);
  370. /* Pointers to interface service routines. */
  371. int (*open)(struct net_device *dev);
  372. int (*stop)(struct net_device *dev);
  373. #define HAVE_NETDEV_POLL
  374. int (*hard_header) (struct sk_buff *skb,
  375. struct net_device *dev,
  376. unsigned short type,
  377. void *daddr,
  378. void *saddr,
  379. unsigned len);
  380. int (*rebuild_header)(struct sk_buff *skb);
  381. #define HAVE_MULTICAST  
  382. void (*set_multicast_list)(struct net_device *dev);
  383. #define HAVE_SET_MAC_ADDR    
  384. int (*set_mac_address)(struct net_device *dev,
  385.    void *addr);
  386. #define HAVE_PRIVATE_IOCTL
  387. int (*do_ioctl)(struct net_device *dev,
  388.     struct ifreq *ifr, int cmd);
  389. #define HAVE_SET_CONFIG
  390. int (*set_config)(struct net_device *dev,
  391.       struct ifmap *map);
  392. #define HAVE_HEADER_CACHE
  393. int (*hard_header_cache)(struct neighbour *neigh,
  394.      struct hh_cache *hh);
  395. void (*header_cache_update)(struct hh_cache *hh,
  396.        struct net_device *dev,
  397.        unsigned char *  haddr);
  398. #define HAVE_CHANGE_MTU
  399. int (*change_mtu)(struct net_device *dev, int new_mtu);
  400. #define HAVE_TX_TIMEOUT
  401. void (*tx_timeout) (struct net_device *dev);
  402. void (*vlan_rx_register)(struct net_device *dev,
  403.     struct vlan_group *grp);
  404. void (*vlan_rx_add_vid)(struct net_device *dev,
  405.    unsigned short vid);
  406. void (*vlan_rx_kill_vid)(struct net_device *dev,
  407.     unsigned short vid);
  408. int (*hard_header_parse)(struct sk_buff *skb,
  409.      unsigned char *haddr);
  410. int (*neigh_setup)(struct net_device *dev, struct neigh_parms *);
  411. #ifdef CONFIG_NETPOLL
  412. struct netpoll_info *npinfo;
  413. #endif
  414. #ifdef CONFIG_NET_POLL_CONTROLLER
  415. void                    (*poll_controller)(struct net_device *dev);
  416. #endif
  417. /* bridge stuff */
  418. struct net_bridge_port *br_port;
  419. #ifdef CONFIG_NET_DIVERT
  420. /* this will get initialized at each interface type init routine */
  421. struct divert_blk *divert;
  422. #endif /* CONFIG_NET_DIVERT */
  423. /* class/net/name entry */
  424. struct class_device class_dev;
  425. };
  426. #define NETDEV_ALIGN 32
  427. #define NETDEV_ALIGN_CONST (NETDEV_ALIGN - 1)
  428. static inline void *netdev_priv(struct net_device *dev)
  429. {
  430. return (char *)dev + ((sizeof(struct net_device)
  431. + NETDEV_ALIGN_CONST)
  432. & ~NETDEV_ALIGN_CONST);
  433. }
  434. #define SET_MODULE_OWNER(dev) do { } while (0)
  435. /* Set the sysfs physical device reference for the network logical device
  436.  * if set prior to registration will cause a symlink during initialization.
  437.  */
  438. #define SET_NETDEV_DEV(net, pdev) ((net)->class_dev.dev = (pdev))
  439. struct packet_type {
  440. __be16 type; /* This is really htons(ether_type). */
  441. struct net_device *dev; /* NULL is wildcarded here      */
  442. int (*func) (struct sk_buff *,
  443.  struct net_device *,
  444.  struct packet_type *,
  445.  struct net_device *);
  446. void *af_packet_priv;
  447. struct list_head list;
  448. };
  449. #include <linux/interrupt.h>
  450. #include <linux/notifier.h>
  451. extern struct net_device loopback_dev; /* The loopback */
  452. extern struct net_device *dev_base; /* All devices */
  453. extern rwlock_t dev_base_lock; /* Device list lock */
  454. extern int  netdev_boot_setup_check(struct net_device *dev);
  455. extern unsigned long netdev_boot_base(const char *prefix, int unit);
  456. extern struct net_device    *dev_getbyhwaddr(unsigned short type, char *hwaddr);
  457. extern struct net_device *dev_getfirstbyhwtype(unsigned short type);
  458. extern void dev_add_pack(struct packet_type *pt);
  459. extern void dev_remove_pack(struct packet_type *pt);
  460. extern void __dev_remove_pack(struct packet_type *pt);
  461. extern struct net_device *dev_get_by_flags(unsigned short flags,
  462.   unsigned short mask);
  463. extern struct net_device *dev_get_by_name(const char *name);
  464. extern struct net_device *__dev_get_by_name(const char *name);
  465. extern int dev_alloc_name(struct net_device *dev, const char *name);
  466. extern int dev_open(struct net_device *dev);
  467. extern int dev_close(struct net_device *dev);
  468. extern int dev_queue_xmit(struct sk_buff *skb);
  469. extern int register_netdevice(struct net_device *dev);
  470. extern int unregister_netdevice(struct net_device *dev);
  471. extern void free_netdev(struct net_device *dev);
  472. extern void synchronize_net(void);
  473. extern int  register_netdevice_notifier(struct notifier_block *nb);
  474. extern int unregister_netdevice_notifier(struct notifier_block *nb);
  475. extern int call_netdevice_notifiers(unsigned long val, void *v);
  476. extern struct net_device *dev_get_by_index(int ifindex);
  477. extern struct net_device *__dev_get_by_index(int ifindex);
  478. extern int dev_restart(struct net_device *dev);
  479. #ifdef CONFIG_NETPOLL_TRAP
  480. extern int netpoll_trap(void);
  481. #endif
  482. typedef int gifconf_func_t(struct net_device * dev, char __user * bufptr, int len);
  483. extern int register_gifconf(unsigned int family, gifconf_func_t * gifconf);
  484. static inline int unregister_gifconf(unsigned int family)
  485. {
  486. return register_gifconf(family, NULL);
  487. }
  488. /*
  489.  * Incoming packets are placed on per-cpu queues so that
  490.  * no locking is needed.
  491.  */
  492. struct softnet_data
  493. {
  494. struct net_device *output_queue;
  495. struct sk_buff_head input_pkt_queue;
  496. struct list_head poll_list;
  497. struct sk_buff *completion_queue;
  498. struct net_device backlog_dev; /* Sorry. 8) */
  499. };
  500. DECLARE_PER_CPU(struct softnet_data,softnet_data);
  501. #define HAVE_NETIF_QUEUE
  502. static inline void __netif_schedule(struct net_device *dev)
  503. {
  504. if (!test_and_set_bit(__LINK_STATE_SCHED, &dev->state)) {
  505. unsigned long flags;
  506. struct softnet_data *sd;
  507. local_irq_save(flags);
  508. sd = &__get_cpu_var(softnet_data);
  509. dev->next_sched = sd->output_queue;
  510. sd->output_queue = dev;
  511. raise_softirq_irqoff(NET_TX_SOFTIRQ);
  512. local_irq_restore(flags);
  513. }
  514. }
  515. static inline void netif_schedule(struct net_device *dev)
  516. {
  517. if (!test_bit(__LINK_STATE_XOFF, &dev->state))
  518. __netif_schedule(dev);
  519. }
  520. static inline void netif_start_queue(struct net_device *dev)
  521. {
  522. clear_bit(__LINK_STATE_XOFF, &dev->state);
  523. }
  524. static inline void netif_wake_queue(struct net_device *dev)
  525. {
  526. #ifdef CONFIG_NETPOLL_TRAP
  527. if (netpoll_trap())
  528. return;
  529. #endif
  530. if (test_and_clear_bit(__LINK_STATE_XOFF, &dev->state))
  531. __netif_schedule(dev);
  532. }
  533. static inline void netif_stop_queue(struct net_device *dev)
  534. {
  535. #ifdef CONFIG_NETPOLL_TRAP
  536. if (netpoll_trap())
  537. return;
  538. #endif
  539. set_bit(__LINK_STATE_XOFF, &dev->state);
  540. }
  541. static inline int netif_queue_stopped(const struct net_device *dev)
  542. {
  543. return test_bit(__LINK_STATE_XOFF, &dev->state);
  544. }
  545. static inline int netif_running(const struct net_device *dev)
  546. {
  547. return test_bit(__LINK_STATE_START, &dev->state);
  548. }
  549. /* Use this variant when it is known for sure that it
  550.  * is executing from interrupt context.
  551.  */
  552. static inline void dev_kfree_skb_irq(struct sk_buff *skb)
  553. {
  554. if (atomic_dec_and_test(&skb->users)) {
  555. struct softnet_data *sd;
  556. unsigned long flags;
  557. local_irq_save(flags);
  558. sd = &__get_cpu_var(softnet_data);
  559. skb->next = sd->completion_queue;
  560. sd->completion_queue = skb;
  561. raise_softirq_irqoff(NET_TX_SOFTIRQ);
  562. local_irq_restore(flags);
  563. }
  564. }
  565. /* Use this variant in places where it could be invoked
  566.  * either from interrupt or non-interrupt context.
  567.  */
  568. static inline void dev_kfree_skb_any(struct sk_buff *skb)
  569. {
  570. if (in_irq() || irqs_disabled())
  571. dev_kfree_skb_irq(skb);
  572. else
  573. dev_kfree_skb(skb);
  574. }
  575. #define HAVE_NETIF_RX 1
  576. extern int netif_rx(struct sk_buff *skb);
  577. extern int netif_rx_ni(struct sk_buff *skb);
  578. #define HAVE_NETIF_RECEIVE_SKB 1
  579. extern int netif_receive_skb(struct sk_buff *skb);
  580. extern int dev_ioctl(unsigned int cmd, void __user *);
  581. extern int dev_ethtool(struct ifreq *);
  582. extern unsigned dev_get_flags(const struct net_device *);
  583. extern int dev_change_flags(struct net_device *, unsigned);
  584. extern int dev_change_name(struct net_device *, char *);
  585. extern int dev_set_mtu(struct net_device *, int);
  586. extern int dev_set_mac_address(struct net_device *,
  587.     struct sockaddr *);
  588. extern void dev_queue_xmit_nit(struct sk_buff *skb, struct net_device *dev);
  589. extern void dev_init(void);
  590. extern int netdev_nit;
  591. extern int netdev_budget;
  592. /* Called by rtnetlink.c:rtnl_unlock() */
  593. extern void netdev_run_todo(void);
  594. static inline void dev_put(struct net_device *dev)
  595. {
  596. atomic_dec(&dev->refcnt);
  597. }
  598. #define __dev_put(dev) atomic_dec(&(dev)->refcnt)
  599. #define dev_hold(dev) atomic_inc(&(dev)->refcnt)
  600. /* Carrier loss detection, dial on demand. The functions netif_carrier_on
  601.  * and _off may be called from IRQ context, but it is caller
  602.  * who is responsible for serialization of these calls.
  603.  */
  604. extern void linkwatch_fire_event(struct net_device *dev);
  605. static inline int netif_carrier_ok(const struct net_device *dev)
  606. {
  607. return !test_bit(__LINK_STATE_NOCARRIER, &dev->state);
  608. }
  609. extern void __netdev_watchdog_up(struct net_device *dev);
  610. extern void netif_carrier_on(struct net_device *dev);
  611. extern void netif_carrier_off(struct net_device *dev);
  612. /* Hot-plugging. */
  613. static inline int netif_device_present(struct net_device *dev)
  614. {
  615. return test_bit(__LINK_STATE_PRESENT, &dev->state);
  616. }
  617. static inline void netif_device_detach(struct net_device *dev)
  618. {
  619. if (test_and_clear_bit(__LINK_STATE_PRESENT, &dev->state) &&
  620.     netif_running(dev)) {
  621. netif_stop_queue(dev);
  622. }
  623. }
  624. static inline void netif_device_attach(struct net_device *dev)
  625. {
  626. if (!test_and_set_bit(__LINK_STATE_PRESENT, &dev->state) &&
  627.     netif_running(dev)) {
  628. netif_wake_queue(dev);
  629.   __netdev_watchdog_up(dev);
  630. }
  631. }
  632. /*
  633.  * Network interface message level settings
  634.  */
  635. #define HAVE_NETIF_MSG 1
  636. enum {
  637. NETIF_MSG_DRV = 0x0001,
  638. NETIF_MSG_PROBE = 0x0002,
  639. NETIF_MSG_LINK = 0x0004,
  640. NETIF_MSG_TIMER = 0x0008,
  641. NETIF_MSG_IFDOWN = 0x0010,
  642. NETIF_MSG_IFUP = 0x0020,
  643. NETIF_MSG_RX_ERR = 0x0040,
  644. NETIF_MSG_TX_ERR = 0x0080,
  645. NETIF_MSG_TX_QUEUED = 0x0100,
  646. NETIF_MSG_INTR = 0x0200,
  647. NETIF_MSG_TX_DONE = 0x0400,
  648. NETIF_MSG_RX_STATUS = 0x0800,
  649. NETIF_MSG_PKTDATA = 0x1000,
  650. NETIF_MSG_HW = 0x2000,
  651. NETIF_MSG_WOL = 0x4000,
  652. };
  653. #define netif_msg_drv(p) ((p)->msg_enable & NETIF_MSG_DRV)
  654. #define netif_msg_probe(p) ((p)->msg_enable & NETIF_MSG_PROBE)
  655. #define netif_msg_link(p) ((p)->msg_enable & NETIF_MSG_LINK)
  656. #define netif_msg_timer(p) ((p)->msg_enable & NETIF_MSG_TIMER)
  657. #define netif_msg_ifdown(p) ((p)->msg_enable & NETIF_MSG_IFDOWN)
  658. #define netif_msg_ifup(p) ((p)->msg_enable & NETIF_MSG_IFUP)
  659. #define netif_msg_rx_err(p) ((p)->msg_enable & NETIF_MSG_RX_ERR)
  660. #define netif_msg_tx_err(p) ((p)->msg_enable & NETIF_MSG_TX_ERR)
  661. #define netif_msg_tx_queued(p) ((p)->msg_enable & NETIF_MSG_TX_QUEUED)
  662. #define netif_msg_intr(p) ((p)->msg_enable & NETIF_MSG_INTR)
  663. #define netif_msg_tx_done(p) ((p)->msg_enable & NETIF_MSG_TX_DONE)
  664. #define netif_msg_rx_status(p) ((p)->msg_enable & NETIF_MSG_RX_STATUS)
  665. #define netif_msg_pktdata(p) ((p)->msg_enable & NETIF_MSG_PKTDATA)
  666. #define netif_msg_hw(p) ((p)->msg_enable & NETIF_MSG_HW)
  667. #define netif_msg_wol(p) ((p)->msg_enable & NETIF_MSG_WOL)
  668. static inline u32 netif_msg_init(int debug_value, int default_msg_enable_bits)
  669. {
  670. /* use default */
  671. if (debug_value < 0 || debug_value >= (sizeof(u32) * 8))
  672. return default_msg_enable_bits;
  673. if (debug_value == 0) /* no output */
  674. return 0;
  675. /* set low N bits */
  676. return (1 << debug_value) - 1;
  677. }
  678. /* Schedule rx intr now? */
  679. static inline int netif_rx_schedule_prep(struct net_device *dev)
  680. {
  681. return netif_running(dev) &&
  682. !test_and_set_bit(__LINK_STATE_RX_SCHED, &dev->state);
  683. }
  684. /* Add interface to tail of rx poll list. This assumes that _prep has
  685.  * already been called and returned 1.
  686.  */
  687. static inline void __netif_rx_schedule(struct net_device *dev)
  688. {
  689. unsigned long flags;
  690. local_irq_save(flags);
  691. dev_hold(dev);
  692. list_add_tail(&dev->poll_list, &__get_cpu_var(softnet_data).poll_list);
  693. if (dev->quota < 0)
  694. dev->quota += dev->weight;
  695. else
  696. dev->quota = dev->weight;
  697. __raise_softirq_irqoff(NET_RX_SOFTIRQ);
  698. local_irq_restore(flags);
  699. }
  700. /* Try to reschedule poll. Called by irq handler. */
  701. static inline void netif_rx_schedule(struct net_device *dev)
  702. {
  703. if (netif_rx_schedule_prep(dev))
  704. __netif_rx_schedule(dev);
  705. }
  706. /* Try to reschedule poll. Called by dev->poll() after netif_rx_complete().
  707.  * Do not inline this?
  708.  */
  709. static inline int netif_rx_reschedule(struct net_device *dev, int undo)
  710. {
  711. if (netif_rx_schedule_prep(dev)) {
  712. unsigned long flags;
  713. dev->quota += undo;
  714. local_irq_save(flags);
  715. list_add_tail(&dev->poll_list, &__get_cpu_var(softnet_data).poll_list);
  716. __raise_softirq_irqoff(NET_RX_SOFTIRQ);
  717. local_irq_restore(flags);
  718. return 1;
  719. }
  720. return 0;
  721. }
  722. /* Remove interface from poll list: it must be in the poll list
  723.  * on current cpu. This primitive is called by dev->poll(), when
  724.  * it completes the work. The device cannot be out of poll list at this
  725.  * moment, it is BUG().
  726.  */
  727. static inline void netif_rx_complete(struct net_device *dev)
  728. {
  729. unsigned long flags;
  730. local_irq_save(flags);
  731. BUG_ON(!test_bit(__LINK_STATE_RX_SCHED, &dev->state));
  732. list_del(&dev->poll_list);
  733. smp_mb__before_clear_bit();
  734. clear_bit(__LINK_STATE_RX_SCHED, &dev->state);
  735. local_irq_restore(flags);
  736. }
  737. static inline void netif_poll_disable(struct net_device *dev)
  738. {
  739. while (test_and_set_bit(__LINK_STATE_RX_SCHED, &dev->state)) {
  740. /* No hurry. */
  741. current->state = TASK_INTERRUPTIBLE;
  742. schedule_timeout(1);
  743. }
  744. }
  745. static inline void netif_poll_enable(struct net_device *dev)
  746. {
  747. clear_bit(__LINK_STATE_RX_SCHED, &dev->state);
  748. }
  749. /* same as netif_rx_complete, except that local_irq_save(flags)
  750.  * has already been issued
  751.  */
  752. static inline void __netif_rx_complete(struct net_device *dev)
  753. {
  754. BUG_ON(!test_bit(__LINK_STATE_RX_SCHED, &dev->state));
  755. list_del(&dev->poll_list);
  756. smp_mb__before_clear_bit();
  757. clear_bit(__LINK_STATE_RX_SCHED, &dev->state);
  758. }
  759. static inline void netif_tx_disable(struct net_device *dev)
  760. {
  761. spin_lock_bh(&dev->xmit_lock);
  762. netif_stop_queue(dev);
  763. spin_unlock_bh(&dev->xmit_lock);
  764. }
  765. /* These functions live elsewhere (drivers/net/net_init.c, but related) */
  766. extern void ether_setup(struct net_device *dev);
  767. /* Support for loadable net-drivers */
  768. extern struct net_device *alloc_netdev(int sizeof_priv, const char *name,
  769.        void (*setup)(struct net_device *));
  770. extern int register_netdev(struct net_device *dev);
  771. extern void unregister_netdev(struct net_device *dev);
  772. /* Functions used for multicast support */
  773. extern void dev_mc_upload(struct net_device *dev);
  774. extern int  dev_mc_delete(struct net_device *dev, void *addr, int alen, int all);
  775. extern int dev_mc_add(struct net_device *dev, void *addr, int alen, int newonly);
  776. extern void dev_mc_discard(struct net_device *dev);
  777. extern void dev_set_promiscuity(struct net_device *dev, int inc);
  778. extern void dev_set_allmulti(struct net_device *dev, int inc);
  779. extern void netdev_state_change(struct net_device *dev);
  780. extern void netdev_features_change(struct net_device *dev);
  781. /* Load a device via the kmod */
  782. extern void dev_load(const char *name);
  783. extern void dev_mcast_init(void);
  784. extern int netdev_max_backlog;
  785. extern int weight_p;
  786. extern int netdev_set_master(struct net_device *dev, struct net_device *master);
  787. extern int skb_checksum_help(struct sk_buff *skb, int inward);
  788. /* rx skb timestamps */
  789. extern void net_enable_timestamp(void);
  790. extern void net_disable_timestamp(void);
  791. #ifdef CONFIG_PROC_FS
  792. extern void *dev_seq_start(struct seq_file *seq, loff_t *pos);
  793. extern void *dev_seq_next(struct seq_file *seq, void *v, loff_t *pos);
  794. extern void dev_seq_stop(struct seq_file *seq, void *v);
  795. #endif
  796. extern void linkwatch_run_queue(void);
  797. #endif /* __KERNEL__ */
  798. #endif /* _LINUX_DEV_H */