I have a question about the how the file_operations in the struct file is defined in linux kernel
vfs_read()
calls
ret = file->f_op->read(file, buf, count, pos);
I know this read is a function pointer, which is defined in some driver code, but is there a way to find where it is actually defined?