summaryrefslogtreecommitdiff
path: root/fs
diff options
context:
space:
mode:
authorVasily Averin <vvs@virtuozzo.com>2017-11-06 16:22:48 +0300
committerSasha Levin <alexander.levin@microsoft.com>2018-02-28 22:09:46 -0500
commit7207bd5112750712b182253b4cd97528e1ef8fa9 (patch)
tree02b3ee3dd7968f6d31e97e388996ab3863867eef /fs
parent049f56a34feb564c464b32518d16a1cfee270782 (diff)
grace: replace BUG_ON by WARN_ONCE in exit_net hook
[ Upstream commit b872285751c1af010e12d02bce7069e2061a58ca ] Signed-off-by: Vasily Averin <vvs@virtuozzo.com> Signed-off-by: J. Bruce Fields <bfields@redhat.com> Signed-off-by: Sasha Levin <alexander.levin@microsoft.com>
Diffstat (limited to 'fs')
-rw-r--r--fs/nfs_common/grace.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/fs/nfs_common/grace.c b/fs/nfs_common/grace.c
index ae6e58ea4de5..450954d5b7f6 100644
--- a/fs/nfs_common/grace.c
+++ b/fs/nfs_common/grace.c
@@ -85,7 +85,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 = {