gpt4 book ai didi

linux - 如何从 Linux 内核模块的 init_module 代码创 build 备节点?

转载 作者:IT老高 更新时间:2023-10-28 12:36:21 26 4
gpt4 key购买 nike

我正在为linux内核编写一个模块,我想在init函数中创建一些设备节点

int init_module(void)
{
Major = register_chrdev(0, DEVICE_NAME, &fops);
// Now I want to create device nodes with the returned major number
}

我也希望内核为我的第一个节点分配一个次要编号,然后我将自己分配其他节点的次要编号。

如何在代码中执行此操作。我不想使用 mknod 从 shell 创 build 备

最佳答案

要更好地控制设备编号和设备创建,您可以执行以下步骤(而不是 register_chrdev()):

  1. 调用 alloc_chrdev_region() 以获取主要编号和要使用的次要编号范围。
  2. 使用 class_create() 为您的设备创 build 备类。
  3. 对于每个设备,调用 cdev_init()cdev_add() 将字符设备添加到系统中。
  4. 对于每个设备,调用 device_create()。结果,除其他外,Udev将为您的设备创 build 备节点。不需要 mknod 之类的。 device_create() 还允许您控制设备的名称。

网上可能有很多这样的例子,one of them is here .

关于linux - 如何从 Linux 内核模块的 init_module 代码创 build 备节点?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5970595/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com