Chinaunix首页 | 论坛 | 博客
  • 博客访问: 2853222
  • 博文数量: 674
  • 博客积分: 17881
  • 博客等级: 上将
  • 技术积分: 4849
  • 用 户 组: 普通用户
  • 注册时间: 2010-03-17 10:15
文章分类

全部博文(674)

文章存档

2013年(34)

2012年(146)

2011年(197)

2010年(297)

发布时间:2011-05-31 16:20:56

......【阅读全文】

阅读(1119) | 评论(0) | 转发(0)

发布时间:2011-05-30 16:12:32

......【阅读全文】

阅读(1204) | 评论(0) | 转发(1)

发布时间:2011-05-30 15:45:11

......【阅读全文】

阅读(910) | 评论(0) | 转发(1)

发布时间:2011-05-27 18:00:27

......【阅读全文】

阅读(1198) | 评论(0) | 转发(0)

发布时间:2011-05-24 10:25:14

......【阅读全文】

阅读(1920) | 评论(0) | 转发(2)
给主人留下些什么吧!~~

chen_chuang2012-10-11 16:33

高手,有本书上写cdev初始化和注册是这样写的

static void VirtualDisk_setup_cdev(struct VirtualDisk *dev, int minor)
{
        int err;
        devno = MDDEV(VirtualDisk_major, minor);
        cdev_init(&dev->cdev, &VirtualDisk_fops);
        dev->cdev.owner = THIS_MOUDULE;
        dev->cdev.ops = &VirtualDisk_fops;
        err = cdev_add(&dev->cdev, debno, 1);
        if (err)
                printk(KERN_NOTICE "Error in cdev_add()\n");
}

而cdev_init里
void cdev_init(struct cdev *cdev, const struct file_operations *fops)
{
        memset(cdev, 0, sizeof *cdev);
        INIT_LIST_HEAD(&cdev->list);
        kobject_init(&cdev->kobj, &ktype_cdev_default);
        cdev->ops = fops;
}
已经有cdev->ops = fops了
那上面的代码cdev_init之后又有dev->cdev.ops ,这两个函数不一样吗,自我感觉有点多次一举,,,不太明白

回复  |  举报
留言热议
请登录后留言。

登录 注册