run_ctx->saved_run_ctx = bpf_set_run_ctx(&run_ctx->run_ctx);
 
-       if (unlikely(__this_cpu_inc_return(*(prog->active)) != 1)) {
+       if (unlikely(this_cpu_inc_return(*(prog->active)) != 1)) {
                inc_misses_counter(prog);
                return 0;
        }
        bpf_reset_run_ctx(run_ctx->saved_run_ctx);
 
        update_prog_stats(prog, start);
-       __this_cpu_dec(*(prog->active));
+       this_cpu_dec(*(prog->active));
        migrate_enable();
        rcu_read_unlock();
 }
        migrate_disable();
        might_fault();
 
-       if (unlikely(__this_cpu_inc_return(*(prog->active)) != 1)) {
+       if (unlikely(this_cpu_inc_return(*(prog->active)) != 1)) {
                inc_misses_counter(prog);
                return 0;
        }
        bpf_reset_run_ctx(run_ctx->saved_run_ctx);
 
        update_prog_stats(prog, start);
-       __this_cpu_dec(*(prog->active));
+       this_cpu_dec(*(prog->active));
        migrate_enable();
        rcu_read_unlock_trace();
 }