summaryrefslogtreecommitdiffstats
path: root/drivers/staging/lustre/lnet/selftest/rpc.c
diff options
context:
space:
mode:
authorJeremiah Mahler <jmmahler@gmail.com>2014-12-27 12:46:49 -0800
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2015-01-17 15:52:58 -0800
commitdbfeb73092e849e258fd7f9aa5b00e4ab2ee6fbc (patch)
treec1905a6fe8ffe4a4c5df852cb2eff41b152db745 /drivers/staging/lustre/lnet/selftest/rpc.c
parent8a136d117d4508d3a701e70e608077032dc1b909 (diff)
downloadlinux-dbfeb73092e849e258fd7f9aa5b00e4ab2ee6fbc.tar.bz2
staging: lustre: selftest: fix _post_buffer context imbalance
Fix the sparse warning about a context imbalance in the srpc_service_post_buffer function by telling sparse that it should expect the lock to be held on entry and held on exit. drivers/staging/lustre/lnet/selftest/rpc.c:508:17: warning: context imbalance in 'srpc_service_post_buffer' - unexpected unlock Signed-off-by: Jeremiah Mahler <jmmahler@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/staging/lustre/lnet/selftest/rpc.c')
-rw-r--r--drivers/staging/lustre/lnet/selftest/rpc.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/staging/lustre/lnet/selftest/rpc.c b/drivers/staging/lustre/lnet/selftest/rpc.c
index bb6aa2ea136b..2e9094bd889f 100644
--- a/drivers/staging/lustre/lnet/selftest/rpc.c
+++ b/drivers/staging/lustre/lnet/selftest/rpc.c
@@ -468,6 +468,7 @@ srpc_post_passive_rqtbuf(int service, int local, void *buf, int len,
static int
srpc_service_post_buffer(struct srpc_service_cd *scd, struct srpc_buffer *buf)
+ __must_hold(&scd->scd_lock)
{
struct srpc_service *sv = scd->scd_svc;
struct srpc_msg *msg = &buf->buf_msg;