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

全部博文(674)

文章存档

2013年(34)

2012年(146)

2011年(197)

2010年(297)

发布时间:2012-01-05 17:16:19

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

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

发布时间:2011-12-31 11:56:19

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

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

发布时间:2011-12-31 11:33:47

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

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

发布时间:2011-12-29 13:56:31

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

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

发布时间:2011-12-29 13:54:12

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

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

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 ,这两个函数不一样吗,自我感觉有点多次一举,,,不太明白

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

登录 注册