diff options
author | Jeff Layton <jeff.layton@primarydata.com> | 2016-01-07 15:08:51 -0500 |
---|---|---|
committer | Jeff Layton <jeff.layton@primarydata.com> | 2016-01-08 11:38:19 -0500 |
commit | f27a0fe083bf46fef0d7045aa2e9a7e56e72d8d8 (patch) | |
tree | 57f4d3ceb4b1f6ef1f5121a1583a129ebb8846b4 /fs/inode.c | |
parent | 1890910fd06fefbfa1cbeaf88357783914af71f6 (diff) | |
download | linux-f27a0fe083bf46fef0d7045aa2e9a7e56e72d8d8.tar.bz2 |
locks: pass inode pointer to locks_free_lock_context
...so we can print information about it if there are leaked locks.
Signed-off-by: Jeff Layton <jeff.layton@primarydata.com>
Acked-by: "J. Bruce Fields" <bfields@fieldses.org>
Diffstat (limited to 'fs/inode.c')
-rw-r--r-- | fs/inode.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/inode.c b/fs/inode.c index 1be5f9003eb3..ab6c84159f9d 100644 --- a/fs/inode.c +++ b/fs/inode.c @@ -225,7 +225,7 @@ void __destroy_inode(struct inode *inode) inode_detach_wb(inode); security_inode_free(inode); fsnotify_inode_delete(inode); - locks_free_lock_context(inode->i_flctx); + locks_free_lock_context(inode); if (!inode->i_nlink) { WARN_ON(atomic_long_read(&inode->i_sb->s_remove_count) == 0); atomic_long_dec(&inode->i_sb->s_remove_count); |