mirror of
https://github.com/tbsdtv/linux_media.git
synced 2025-07-23 04:33:26 +02:00
sched: Change task_struct::state
Change the type and name of task_struct::state. Drop the volatile and shrink it to an 'unsigned int'. Rename it in order to find all uses such that we can use READ_ONCE/WRITE_ONCE as appropriate. Signed-off-by: Peter Zijlstra (Intel) <peterz@infradead.org> Reviewed-by: Daniel Bristot de Oliveira <bristot@redhat.com> Acked-by: Will Deacon <will@kernel.org> Acked-by: Daniel Thompson <daniel.thompson@linaro.org> Link: https://lore.kernel.org/r/20210611082838.550736351@infradead.org
This commit is contained in:
@@ -68,13 +68,13 @@ static int collect_syscall(struct task_struct *target, struct syscall_info *info
|
||||
*/
|
||||
int task_current_syscall(struct task_struct *target, struct syscall_info *info)
|
||||
{
|
||||
long state;
|
||||
unsigned long ncsw;
|
||||
unsigned int state;
|
||||
|
||||
if (target == current)
|
||||
return collect_syscall(target, info);
|
||||
|
||||
state = target->state;
|
||||
state = READ_ONCE(target->__state);
|
||||
if (unlikely(!state))
|
||||
return -EAGAIN;
|
||||
|
||||
|
Reference in New Issue
Block a user