mirror of
https://github.com/torvalds/linux.git
synced 2024-12-03 17:41:22 +00:00
selftests/rseq: parametrized test: Report/abort on negative concurrency ID
Report and abort when a negative concurrency ID value is observed by the spinlock test. Signed-off-by: Mathieu Desnoyers <mathieu.desnoyers@efficios.com> Signed-off-by: Peter Zijlstra (Intel) <peterz@infradead.org> Link: https://lore.kernel.org/r/20221122203932.231377-21-mathieu.desnoyers@efficios.com
This commit is contained in:
parent
ee31fff091
commit
a3798e6ffb
@ -410,6 +410,11 @@ static int rseq_this_cpu_lock(struct percpu_lock *lock)
|
||||
int ret;
|
||||
|
||||
cpu = get_current_cpu_id();
|
||||
if (cpu < 0) {
|
||||
fprintf(stderr, "pid: %d: tid: %d, cpu: %d: cid: %d\n",
|
||||
getpid(), (int) rseq_gettid(), rseq_current_cpu_raw(), cpu);
|
||||
abort();
|
||||
}
|
||||
ret = rseq_cmpeqv_storev(RSEQ_MO_RELAXED, RSEQ_PERCPU,
|
||||
&lock->c[cpu].v,
|
||||
0, 1, cpu);
|
||||
|
Loading…
Reference in New Issue
Block a user