简体   繁体   中英

Thread local data in linux kernel module

Is it possible to create thread local data in a linux kernel module?

I need to store some data for each process/thread calling my module. Is there an easy way of using thread local data, or do I have to resort to writing a hash map which uses the pid of the current process as a key?

Assuming the interface to you kernel module is a character device driver, then you have a private_data field in the file struct (which is analogous to user space file descriptor) exactly for that.

Just allocate and assign a pointer to your structure of choice at the open file operation to it.

It's not exactly thread or process local, but in most cases a mapping of one file descriptor to your process is true and it might be good enough for you.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM