为什么我得到“隐式声明函数'ndo_get_stats'”的错误?
问题描述:
我正在构建一个非常简单的内核模块,用于从网卡收集一些统计信息,这里是代码,我不断收到错误implicit declaration of function 'ndo_get_stats'
。我不知道为什么...为什么我得到“隐式声明函数'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;
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");
dev->stats = ndo_get_stats(dev);
printk(KERN_INFO "recive errors: [%li]\n transmission errors: [%li]\n number of collisions: [%li]", dev->stats.rx_errors , dev->stats.tx_errors, dev->stats.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);
感谢
答
ndo_get_stats
是net_device_ops
函数指针。您必须通过net_device
的netdev_ops
字段调用它。
像这样的工作:
stats = dev->netdev_ops->ndo_get_stats(dev);
感谢您的答案,但... '不兼容的类型从net_device_stats分配型结构net_device_stats *'仍然没有工作 – 2012-04-10 08:08:22
请发表您的更新的代码。你试图做'struct net_device_stats stats = dev-> netdev_ops-> nd_get_stats(dev);'?请注意,nd_get_stats返回一个指向struct_dev_device_stats的指针。 – 2012-04-10 08:10:16
另请注意,您尝试执行的操作可能无效。您不允许覆盖net_device的统计信息字段。这是由net_device本身管理的。 – 2012-04-10 08:12:08