Home
last modified time | relevance | path

Searched refs:cpu_bp (Results 1 – 1 of 1) sorted by relevance

/kernel/linux/linux-5.10/arch/powerpc/kernel/
Dhw_breakpoint.c230 struct breakpoint **cpu_bp; in cpu_bps_add() local
238 cpu_bp = per_cpu_ptr(cpu_bps, bp->cpu); in cpu_bps_add()
240 if (!cpu_bp[i]) { in cpu_bps_add()
241 cpu_bp[i] = tmp; in cpu_bps_add()
250 struct breakpoint **cpu_bp; in cpu_bps_remove() local
253 cpu_bp = per_cpu_ptr(cpu_bps, bp->cpu); in cpu_bps_remove()
255 if (!cpu_bp[i]) in cpu_bps_remove()
258 if (cpu_bp[i]->bp == bp) { in cpu_bps_remove()
259 kfree(cpu_bp[i]); in cpu_bps_remove()
260 cpu_bp[i] = NULL; in cpu_bps_remove()
[all …]