1
0
Fork 0

padata: free correct variable

The author meant to free the variable that was just allocated, instead
of the one that failed to be allocated, but made a simple typo. This
patch rectifies that.

Signed-off-by: Jason A. Donenfeld <Jason@zx2c4.com>
Cc: stable@vger.kernel.org
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
zero-colors
Jason A. Donenfeld 2017-04-07 02:33:30 +02:00 committed by Herbert Xu
parent f437a3f477
commit 07a77929ba
1 changed files with 1 additions and 1 deletions

View File

@ -354,7 +354,7 @@ static int padata_setup_cpumasks(struct parallel_data *pd,
cpumask_and(pd->cpumask.pcpu, pcpumask, cpu_online_mask);
if (!alloc_cpumask_var(&pd->cpumask.cbcpu, GFP_KERNEL)) {
free_cpumask_var(pd->cpumask.cbcpu);
free_cpumask_var(pd->cpumask.pcpu);
return -ENOMEM;
}