svn commit: r328110 - head/sys/kern

Eric van Gyzen eric at vangyzen.net
Mon Jan 22 01:25:24 UTC 2018


On 01/18/2018 01:38, Wojciech Macek wrote:
> Author: wma
> Date: Thu Jan 18 07:38:54 2018
> New Revision: 328110
> URL: https://svnweb.freebsd.org/changeset/base/328110
> 
> Log:
>    KDB: restart only CPUs stopped by KDB
>    

> @@ -707,8 +708,9 @@ kdb_trap(int type, int code, struct trapframe *tf)
>   	kdb_active--;
>   
>   #ifdef SMP
> +	CPU_AND(&other_cpus, &stopped_cpus);

Wojciech,

Coverity told me that other_cpus is used uninitialized here (CID 1385265).

Cheers,

Eric


More information about the svn-src-all mailing list