1

我对 linux 内核模块有点陌生,我正在尝试编写自己的模块,以提供有关设备的一些统计信息(此处为 NIC)。虽然我使用的是内核 2.6.35 并且我已经包含linux/netdevices,但编译一直说该函数ndo_get_stats是隐式声明的。谁能告诉我发生了什么事?

这是模块,我知道很简单,

#include <linux/module.h>       /* Needed by all modules */
#include <linux/kernel.h>       /* Needed for KERN_INFO */
#include <linux/netdevice.h>    /* Needed for netdevice*/




static int __init hello_start(void)
{
     struct net_device *dev;
     struct net_device_stats *devstats;

    printk(KERN_INFO "Loading Stats module...\n");
    printk(KERN_ALERT "Hello world\n");
    dev = first_net_device(&init_net);
    while (dev)
    {
         printk(KERN_INFO "found [%s] and it's [%d]\n", dev->name, dev->flags & IFF_UP);

         printk(KERN_INFO "End of dev struct ... now starts the get_stats struct\n");

     devstats = ndo_get_stats(dev);

     printk(KERN_INFO "recive errors: [%li]\n transmission errors: [%li]\n number of collisions: [%li]", devstats->rx_errors , devstats->tx_errors, devstats->collisions);

      dev = next_net_device(dev);
     }

    return 0;
}

static void __exit hello_end(void)
{
    printk(KERN_ALERT "Goodbye.\n");
}

module_init(hello_start);
module_exit(hello_end);
4

0 回答 0