0

我正在开发示例内核模块driver.ko。我想data_node用模块参数指定结构的块大小BlockSize。当我insmod driver.ko单独运行时,它可以工作,但是当我指定 BlockSize 时,insmod driver.ko BlockSize = 10我得到了这个错误:

Error: could not insert module driver.ko: Invalid parameters

modinfo -p ./driver.ko命令给我这个:

BlockSize: size of  buffer (int)

驱动程序.c

#include <linux/init.h>
#include <linux/module.h>
#include <linux/moduleparam.h>
#include <linux/kernel.h>
#include <linux/cdev.h>
#include <linux/kdev_t.h>
#include <linux/fs.h>
#include <asm/uaccess.h>
#include <linux/mutex.h>
#include <linux/device.h>
#include <linux/slab.h>


/* parametter  */
static int BlockNumber = 8;
static int BlockSize = 512;

 module_param( variable name, type, permission);  */

module_param(BlockSize, int, S_IRUGO);
MODULE_PARM_DESC(BlockSize , " size of  buffer");

/* using 'k' as magic number  */
#define SAMPLE_IOC_MAGIC 'k'
#define SAMPLE_IOCRESET _IOWR(SAMPLE_IOC_MAGIC, 0, int)
#define SAMPLE_IOC_MAXNR 0


struct cdev* my_cdev;
dev_t dev;

static int size_to_read;


/* Macro used to compute the minimum */
#define MIN(a,b) (((a) < (b)) ? (a) : (b))





/* data buffer structure */
typedef struct dnode
{
    int bufSize;
    char *buffer;
    struct dnode *next;
} data_node;


/* liste stucture */
typedef struct  lnode
{
    data_node *head;
    data_node *cur_write_node;
    data_node *cur_read_node;   
        int cur_read_offset;
        int cur_write_offset;
    }liste;


   code ..........................

..

4

1 回答 1

0

似乎模块参数应该在名称和值之间没有空格的情况下传递,即您应该使用:

insmod driver.ko BlockSize=10

这是有道理的,因为在 insmod 本身的命令行中,“BlockSize=10”是 *argv[] 中的一个条目,可以作为一个块传递给内核,而“BlockSize = 10”将是三个不同的条目("BlockSize", "=", "10") 有人必须编写代码才能重新加入。

于 2014-08-08T17:52:59.000 回答