Is it guaranteed that a struct file pointer won't be deallocated and reallocated somewhere else in memory during its open to close lifecycle?
I want to uniquely identify file structs that are passed to a device driver (through read/write/open etc) and was wondering if I could just use the pointer to the file struct for identification. The only other alternative I see would be to store a unique identifier in private_data, if it is not guaranteed that the struct file pointer will not change.
struct inode *and astruct file *. You can use theinodeto know which of the possibly many entries in/devyou are dealing with. Each of those can be accessed by multiple independent threads. Each of those independent threads can callopen()on that inode and they get an independentstruct file *. Normally, when a kernel developer uses thatstruct file *, they use a field called private_data to store a pointer to custom data that they are using. – sharth Sep 14 '12 at 2:17