设备驱动程序proc条目所有权

时间:2012-05-30 15:09:23

标签: linux-kernel device-driver

我是设备驱动程序的新手,我正在努力解决/ sys / class / net / atm0 / statistics / *问题,我想现在哪个模块是该条目的所有者,有办法做到这一点吗?

提前致谢, pedr0

1 个答案:

答案 0 :(得分:1)

你实际上是在看sysfs,而不是procfs。

无论如何,在我的系统上使用类似的例子:

# cd /sys/class/net/wlan0
# cd ../
# ls -lah
lrwxrwxrwx  1 root root 0 May 24 19:19 wlan0 -> ../../devices/pci0000:00/0000:00:1c.1/0000:03:00.0/net/wlan0
# cd ../../devices/pci0000:00/0000:00:1c.1/0000:03:00.0/
# ls -lah 
lrwxrwxrwx 1 root root    0 May 24 19:19 driver -> ../../../../bus/pci/drivers/iwlwifi
# cd driver
# ls -lah
lrwxrwxrwx  1 root root    0 May 30 19:17 module -> ../../../../module/iwlwifi

在我的系统上,wlan0由iwlwifi模块管理。