I want to iterate over each process in the kernel and modify some parameters in task_struct. I think I can use the for_each_process() macro to do so.
However, to do it safely, I have to ensure that the process is not being executed currently and also after I get reference to its task_struct, I want to lock it down so that no one else accesses it while I am modifying it.
How can I accomplish these two goals?