With proc we can easily use read & write system call as shown in this example. write on /proc entry through user space
But i am working on passing information from driver to user-space using debugfs. I am able to find these two example code. Here application is able to read and write to debugfs file using mmap() system call.
http://people.ee.ethz.ch/~arkeller/linux/code/mmap_simple_kernel.c http://people.ee.ethz.ch/~arkeller/linux/code/mmap_user.c
But suppose in my case requirement for communicating using Debugfs file with device driver :----
user-space application <-------> debugfs file <-------> Device driver
1> So can i use same code mmap_simple_kernel.c inside my --->> device driver code --->> and transfer data to debugfs directly from driver ? But in this case there will be two file_operations structures inside my driver will it cause some problem ? Is it right approach ?
2> Or just like application is following process in -- mmap_user.c --- same process -- i follow in my device driver program. And keep mmap_simple_kernel.c as seprate module for debugfs entry ?
Please suggest on this point.
read()andwrite()on a file in debugfs too if you need that.mmap()comes in handy if you need to pass larger amounts of data, for example, but it is not mandatory to use it. – Eugene Dec 30 '12 at 8:15debugfs_create_file()is used there. I would also suggest to see other debugfs_create_* functions, they may better suit your needs. – Eugene Dec 30 '12 at 8:25mmap(), the links are in this comment. Depending on what you are trying to accomplish, this could be useful. – Eugene Dec 30 '12 at 8:34