From: Jules Irenge Date: Tue, 7 Apr 2020 03:08:18 +0000 (-0700) Subject: mm/slub: add missing annotation for put_map() X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=81aba9e06ba8cc1e2494258bc4b48875af522f32;p=linux.git mm/slub: add missing annotation for put_map() Sparse reports a warning at put_map()() warning: context imbalance in put_map() - unexpected unlock The root cause is the missing annotation at put_map() Add the missing __releases(&object_map_lock) annotation Signed-off-by: Jules Irenge Signed-off-by: Andrew Morton Link: http://lkml.kernel.org/r/20200214204741.94112-10-jbi.octave@gmail.com Signed-off-by: Linus Torvalds --- diff --git a/mm/slub.c b/mm/slub.c index c6d603648c791..332d4b459a907 100644 --- a/mm/slub.c +++ b/mm/slub.c @@ -466,7 +466,7 @@ static unsigned long *get_map(struct kmem_cache *s, struct page *page) return object_map; } -static void put_map(unsigned long *map) +static void put_map(unsigned long *map) __releases(&object_map_lock) { VM_BUG_ON(map != object_map); lockdep_assert_held(&object_map_lock);