We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 06bff3d commit e53de7bCopy full SHA for e53de7b
tools/perf/util/bpf_skel/lock_contention.bpf.c
@@ -418,11 +418,11 @@ int contention_end(u64 *ctx)
418
419
extern struct rq runqueues __ksym;
420
421
-struct rq__old {
+struct rq___old {
422
raw_spinlock_t lock;
423
} __attribute__((preserve_access_index));
424
425
-struct rq__new {
+struct rq___new {
426
raw_spinlock_t __lock;
427
428
@@ -434,8 +434,8 @@ int BPF_PROG(collect_lock_syms)
434
435
for (int i = 0; i < MAX_CPUS; i++) {
436
struct rq *rq = bpf_per_cpu_ptr(&runqueues, i);
437
- struct rq__new *rq_new = (void *)rq;
438
- struct rq__old *rq_old = (void *)rq;
+ struct rq___new *rq_new = (void *)rq;
+ struct rq___old *rq_old = (void *)rq;
439
440
if (rq == NULL)
441
break;
0 commit comments