Skip to content

Commit f08bc4d

Browse files
zx2c4gregkh
authored andcommitted
padata: free correct variable
commit 07a77929ba672d93642a56dc2255dd21e6e2290b upstream. 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> Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
1 parent 9f4ba90 commit f08bc4d

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

kernel/padata.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -357,7 +357,7 @@ static int padata_setup_cpumasks(struct parallel_data *pd,
357357

358358
cpumask_and(pd->cpumask.pcpu, pcpumask, cpu_online_mask);
359359
if (!alloc_cpumask_var(&pd->cpumask.cbcpu, GFP_KERNEL)) {
360-
free_cpumask_var(pd->cpumask.cbcpu);
360+
free_cpumask_var(pd->cpumask.pcpu);
361361
return -ENOMEM;
362362
}
363363

0 commit comments

Comments
 (0)