1

ネットワークカードからいくつかの統計情報を収集するための非常にシンプルなカーネルモジュールを構築しています。コードは次のとおりです。エラーが発生し続けますimplicit declaration of function '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);

ありがとう

4

1 に答える 1

1

ndo_get_statsnet_device_ops関数ポインタです。netdev_opsあなたはあなたのフィールドを通してそれを呼び出さなければなりませんnet_device

このようなものが機能します:

stats = dev->netdev_ops->ndo_get_stats(dev);
于 2012-04-10T07:47:32.627 に答える