From: Vasily Averin Date: Mon, 6 Nov 2017 13:22:48 +0000 (+0300) Subject: grace: replace BUG_ON by WARN_ONCE in exit_net hook X-Git-Tag: archive/raspbian/4.9.80-2+rpi1~7^2~44 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=f35ab8e2eeb8bc9492cbaf4653e04eea9cb63648;p=linux-4.9.git grace: replace BUG_ON by WARN_ONCE in exit_net hook [ Upstream commit b872285751c1af010e12d02bce7069e2061a58ca ] Signed-off-by: Vasily Averin Signed-off-by: J. Bruce Fields Signed-off-by: Sasha Levin Signed-off-by: Greg Kroah-Hartman --- diff --git a/fs/nfs_common/grace.c b/fs/nfs_common/grace.c index fd8c9a5bcac4..e280e9c9ebf3 100644 --- a/fs/nfs_common/grace.c +++ b/fs/nfs_common/grace.c @@ -104,7 +104,9 @@ grace_exit_net(struct net *net) { struct list_head *grace_list = net_generic(net, grace_net_id); - BUG_ON(!list_empty(grace_list)); + WARN_ONCE(!list_empty(grace_list), + "net %x %s: grace_list is not empty\n", + net->ns.inum, __func__); } static struct pernet_operations grace_net_ops = {