From: Jules Irenge Date: Sun, 23 Feb 2020 23:16:52 +0000 (+0000) Subject: net: netrom: Add missing annotation for nr_node_stop() X-Git-Tag: v5.15~4200^2~344 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=0eb713fb667de4be60ad645f88de6e5bd15d41df;p=platform%2Fkernel%2Flinux-starfive.git net: netrom: Add missing annotation for nr_node_stop() Sparse reports a warning at nr_node_stop() warning: context imbalance in nr_node_stop() - wrong count at exit The root cause is the missing annotation at nr_node_stop() Add the missing __releases(&nr_node_list_lock) annotation Signed-off-by: Jules Irenge Signed-off-by: David S. Miller --- diff --git a/net/netrom/nr_route.c b/net/netrom/nr_route.c index fe278fc..637a743 100644 --- a/net/netrom/nr_route.c +++ b/net/netrom/nr_route.c @@ -850,6 +850,7 @@ static void *nr_node_next(struct seq_file *seq, void *v, loff_t *pos) } static void nr_node_stop(struct seq_file *seq, void *v) + __releases(&nr_node_list_lock) { spin_unlock_bh(&nr_node_list_lock); }