Signed-off-by: Stefan Hajnoczi <stefanha@xxxxxxxxxx> --- net/sunrpc/svcsock.c | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/net/sunrpc/svcsock.c b/net/sunrpc/svcsock.c index 0c09f3f..e67b097 100644 --- a/net/sunrpc/svcsock.c +++ b/net/sunrpc/svcsock.c @@ -78,8 +78,8 @@ static void svc_bc_sock_free(struct svc_xprt *xprt); #endif /* CONFIG_SUNRPC_BACKCHANNEL */ #ifdef CONFIG_DEBUG_LOCK_ALLOC -static struct lock_class_key svc_key[2]; -static struct lock_class_key svc_slock_key[2]; +static struct lock_class_key svc_key[3]; +static struct lock_class_key svc_slock_key[3]; static void svc_reclassify_socket(struct socket *sock) { @@ -103,6 +103,13 @@ static void svc_reclassify_socket(struct socket *sock) &svc_key[1]); break; + case AF_VSOCK: + sock_lock_init_class_and_name(sk, "slock-AF_VSOCK-NFSD", + &svc_slock_key[2], + "sk_xprt.xpt_lock-AF_VSOCK-NFSD", + &svc_key[2]); + break; + default: BUG(); } -- 2.9.4 -- To unsubscribe from this list: send the line "unsubscribe linux-nfs" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html