1
0
Fork 0

percpu: add missing lockdep_assert_held to func pcpu_free_area

Add a missing lockdep_assert_held for pcpu_lock to improve consistency
and safety throughout mm/percpu.c.

Signed-off-by: Dennis Zhou <dennisz@fb.com>
Signed-off-by: Tejun Heo <tj@kernel.org>
hifive-unleashed-5.1
Dennis Zhou 2017-06-19 19:28:29 -04:00 committed by Tejun Heo
parent 1328710b8e
commit 5ccd30e40e
1 changed files with 2 additions and 0 deletions

View File

@ -672,6 +672,8 @@ static void pcpu_free_area(struct pcpu_chunk *chunk, int freeme,
int to_free = 0;
int *p;
lockdep_assert_held(&pcpu_lock);
freeme |= 1; /* we are searching for <given offset, in use> pair */
i = 0;