I was asked this question in an interview. You are writing a PCI driver and you want to export the hardware-related information to the /proc filesystem. The interesting thing is that I searched the driver code and I couldn't find any call related to /proc filesystem though actually the information is exported. Is it done automatically? What is the mechanism? Can anyone please explain?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
One way to do it is for your driver to
When your driver unloads, it should remove the entry with |
|||
|
|
|
Creating entries in the /proc pseudo-filesystem is explained in Linux Device Drivers [3rd ed], chapter 4. Nowadays you probably want to consider using |
|||
|
|