diff options
author | Vasily Averin <vvs@virtuozzo.com> | 2017-11-06 16:22:48 +0300 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2018-02-03 19:39:08 +0300 |
commit | e0849eb97066b741c5dacf96349741fad983b7cd (patch) | |
tree | 4cb37ee13b4c779171628574e6b1e1da250222b0 | |
parent | 3bd364d156b13a7f5ba6fd5892b1a4439aa1666b (diff) | |
download | linux-e0849eb97066b741c5dacf96349741fad983b7cd.tar.xz |
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@verizon.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
-rw-r--r-- | fs/nfs_common/grace.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/fs/nfs_common/grace.c b/fs/nfs_common/grace.c index 420d3a0ab258..1bd659938646 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 = { |