Commit f48407dd authored by Trond Myklebust's avatar Trond Myklebust

NFS: Remove BUG_ON()s in the fs/nfs/inode.c

Signed-off-by: default avatarTrond Myklebust <Trond.Myklebust@netapp.com>
parent 4ea8fed5
...@@ -112,8 +112,8 @@ void nfs_clear_inode(struct inode *inode) ...@@ -112,8 +112,8 @@ void nfs_clear_inode(struct inode *inode)
/* /*
* The following should never happen... * The following should never happen...
*/ */
BUG_ON(nfs_have_writebacks(inode)); WARN_ON_ONCE(nfs_have_writebacks(inode));
BUG_ON(!list_empty(&NFS_I(inode)->open_files)); WARN_ON_ONCE(!list_empty(&NFS_I(inode)->open_files));
nfs_zap_acl_cache(inode); nfs_zap_acl_cache(inode);
nfs_access_zap_cache(inode); nfs_access_zap_cache(inode);
nfs_fscache_release_inode_cookie(inode); nfs_fscache_release_inode_cookie(inode);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment