I am working on a kernel module which needs to work on data from another module. how to share the buffer?
I have tried using EXPORT_SYMBOL to access the array
char my_test_buffer[100];
EXPORT_SYMBOL(my_test_buffer);
How to access this in the other module?
Note you will only be able to load the user module after the provider module.