]> git.baikalelectronics.ru Git - kernel.git/commit
mm: add lock release annotation on do_wp_page()
authorNamhyung Kim <namhyung@gmail.com>
Tue, 26 Oct 2010 21:22:00 +0000 (14:22 -0700)
committerLinus Torvalds <torvalds@linux-foundation.org>
Tue, 26 Oct 2010 23:52:09 +0000 (16:52 -0700)
commit544ea018b622b43a3c6403dea3a07c989e0aa5cf
tree36c718adce5018fe87398fc7d8ebb7c1dfb14646
parent037207ca0b949efecd4b0caf9663aa1412e68823
mm: add lock release annotation on do_wp_page()

The do_wp_page() releases @ptl but was missing proper annotation.  Add it.
 This removes following warnings from sparse:

 mm/memory.c:2337:9: warning: context imbalance in 'do_wp_page' - unexpected unlock
 mm/memory.c:3142:19: warning: context imbalance in 'handle_mm_fault' - different lock contexts for basic block

Signed-off-by: Namhyung Kim <namhyung@gmail.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
mm/memory.c