diff options
author | David Howells <dhowells@redhat.com> | 2019-05-15 07:09:17 -0400 |
---|---|---|
committer | David Howells <dhowells@redhat.com> | 2019-05-15 07:32:34 -0400 |
commit | a1b879eefc2b34cd3f17187ef6fc1cf3960e9518 (patch) | |
tree | 749a872254c15ad9de5a0e17a895d7d553321e99 /fs/afs/inode.c | |
parent | 80f232121b69cc69a31ccb2b38c1665d770b0710 (diff) |
afs: Fix key leak in afs_release() and afs_evict_inode()
Fix afs_release() to go through the cleanup part of the function if
FMODE_WRITE is set rather than exiting through vfs_fsync() (which skips the
cleanup). The cleanup involves discarding the refs on the key used for
file ops and the writeback key record.
Also fix afs_evict_inode() to clean up any left over wb keys attached to
the inode/vnode when it is removed.
Fixes: 5a8132761609 ("afs: Do better accretion of small writes on newly created content")
Signed-off-by: David Howells <dhowells@redhat.com>
Diffstat (limited to 'fs/afs/inode.c')
-rw-r--r-- | fs/afs/inode.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/fs/afs/inode.c b/fs/afs/inode.c index c4652b42d545..f30aa5eacd39 100644 --- a/fs/afs/inode.c +++ b/fs/afs/inode.c | |||
@@ -573,6 +573,7 @@ void afs_evict_inode(struct inode *inode) | |||
573 | } | 573 | } |
574 | #endif | 574 | #endif |
575 | 575 | ||
576 | afs_prune_wb_keys(vnode); | ||
576 | afs_put_permits(rcu_access_pointer(vnode->permit_cache)); | 577 | afs_put_permits(rcu_access_pointer(vnode->permit_cache)); |
577 | key_put(vnode->silly_key); | 578 | key_put(vnode->silly_key); |
578 | vnode->silly_key = NULL; | 579 | vnode->silly_key = NULL; |