diff options
author | Vasily Averin <vvs@virtuozzo.com> | 2017-11-06 08:22:48 -0500 |
---|---|---|
committer | J. Bruce Fields <bfields@redhat.com> | 2017-11-27 16:45:10 -0500 |
commit | b872285751c1af010e12d02bce7069e2061a58ca (patch) | |
tree | c310abc4d0a6d07e9481391fdf1e6b0cbb7ca43d /fs/nfs_common | |
parent | 4f34bd0540d290d1fe1bc699550025623b2761ef (diff) |
grace: replace BUG_ON by WARN_ONCE in exit_net hook
Signed-off-by: Vasily Averin <vvs@virtuozzo.com>
Signed-off-by: J. Bruce Fields <bfields@redhat.com>
Diffstat (limited to 'fs/nfs_common')
-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 897b299db55e..bd3e2d328e64 100644 --- a/fs/nfs_common/grace.c +++ b/fs/nfs_common/grace.c | |||
@@ -104,7 +104,9 @@ grace_exit_net(struct net *net) | |||
104 | { | 104 | { |
105 | struct list_head *grace_list = net_generic(net, grace_net_id); | 105 | struct list_head *grace_list = net_generic(net, grace_net_id); |
106 | 106 | ||
107 | BUG_ON(!list_empty(grace_list)); | 107 | WARN_ONCE(!list_empty(grace_list), |
108 | "net %x %s: grace_list is not empty\n", | ||
109 | net->ns.inum, __func__); | ||
108 | } | 110 | } |
109 | 111 | ||
110 | static struct pernet_operations grace_net_ops = { | 112 | static struct pernet_operations grace_net_ops = { |