netif_start_queue函数

netif_start_queue ()用来告诉上层网络协定这个驱动程序还有空的缓冲区可用,请把下一个封包送进来。
netif_wake_queue() 会使得上层协定传送新的数据下来,这个函数除了通知网络系统可再次开始传输数据包之外
和netif_start_queue()函数一样。
函数原型如下:
  static inline void netif_start_queue(struct net_device *dev);
  static inline void netif_wake_queue(struct net_device *dev);

你可能感兴趣的:(netif_start_queue函数)