From: Jeremiah Mahler Date: Sat, 27 Dec 2014 20:46:48 +0000 (-0800) Subject: staging: lustre: selftest: fix sfw_deactivate_session context imbalance X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=8a136d117d4508d3a701e70e608077032dc1b909;p=linux-beck.git staging: lustre: selftest: fix sfw_deactivate_session context imbalance Fix the sparse warning about a context imbalance in the sfw_deactivate_session function by telling sparse that it should expect the lock to be held on entry and held on exit. drivers/staging/lustre/lnet/selftest/framework.c:210:9: warning: context imbalance in 'sfw_deactivate_session' - unexpected unlock Signed-off-by: Jeremiah Mahler Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/staging/lustre/lnet/selftest/framework.c b/drivers/staging/lustre/lnet/selftest/framework.c index 56b4ef4a5592..570914828b8c 100644 --- a/drivers/staging/lustre/lnet/selftest/framework.c +++ b/drivers/staging/lustre/lnet/selftest/framework.c @@ -194,9 +194,9 @@ sfw_del_session_timer (void) return EBUSY; /* racing with sfw_session_expired() */ } -/* called with sfw_data.fw_lock held */ static void sfw_deactivate_session (void) + __must_hold(&sfw_data.fw_lock) { sfw_session_t *sn = sfw_data.fw_session; int nactive = 0;