diff options
Diffstat (limited to 'kernel/bpf/bpf_task_storage.c')
| -rw-r--r-- | kernel/bpf/bpf_task_storage.c | 8 | 
1 files changed, 4 insertions, 4 deletions
diff --git a/kernel/bpf/bpf_task_storage.c b/kernel/bpf/bpf_task_storage.c index e9014dc62682..6f290623347e 100644 --- a/kernel/bpf/bpf_task_storage.c +++ b/kernel/bpf/bpf_task_storage.c @@ -26,20 +26,20 @@ static DEFINE_PER_CPU(int, bpf_task_storage_busy);  static void bpf_task_storage_lock(void)  {  	migrate_disable(); -	__this_cpu_inc(bpf_task_storage_busy); +	this_cpu_inc(bpf_task_storage_busy);  }  static void bpf_task_storage_unlock(void)  { -	__this_cpu_dec(bpf_task_storage_busy); +	this_cpu_dec(bpf_task_storage_busy);  	migrate_enable();  }  static bool bpf_task_storage_trylock(void)  {  	migrate_disable(); -	if (unlikely(__this_cpu_inc_return(bpf_task_storage_busy) != 1)) { -		__this_cpu_dec(bpf_task_storage_busy); +	if (unlikely(this_cpu_inc_return(bpf_task_storage_busy) != 1)) { +		this_cpu_dec(bpf_task_storage_busy);  		migrate_enable();  		return false;  	}  |