kdb_trap: Fix use of uninitialized data
In some cases, other_cpus was used without being initialized. Thankfully, it was harmless. Reported by: Coverity CID: 1385265 Sponsored by: Dell EMC
This commit is contained in:
parent
a4ccdf9091
commit
16b51429d2
@ -708,9 +708,10 @@ kdb_trap(int type, int code, struct trapframe *tf)
|
||||
kdb_active--;
|
||||
|
||||
#ifdef SMP
|
||||
if (did_stop_cpus) {
|
||||
CPU_AND(&other_cpus, &stopped_cpus);
|
||||
if (did_stop_cpus)
|
||||
restart_cpus(other_cpus);
|
||||
}
|
||||
#endif
|
||||
|
||||
intr_restore(intr);
|
||||
|
Loading…
Reference in New Issue
Block a user