diff options
Diffstat (limited to 'fs/ecryptfs/inode.c')
-rw-r--r-- | fs/ecryptfs/inode.c | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/fs/ecryptfs/inode.c b/fs/ecryptfs/inode.c index 55b3145b8072..5ed86e25b8a2 100644 --- a/fs/ecryptfs/inode.c +++ b/fs/ecryptfs/inode.c | |||
@@ -814,6 +814,13 @@ int ecryptfs_truncate(struct dentry *dentry, loff_t new_length) | |||
814 | size_t num_zeros = (PAGE_CACHE_SIZE | 814 | size_t num_zeros = (PAGE_CACHE_SIZE |
815 | - (new_length & ~PAGE_CACHE_MASK)); | 815 | - (new_length & ~PAGE_CACHE_MASK)); |
816 | 816 | ||
817 | if (!(crypt_stat->flags & ECRYPTFS_ENCRYPTED)) { | ||
818 | rc = vmtruncate(inode, new_length); | ||
819 | if (rc) | ||
820 | goto out_free; | ||
821 | rc = vmtruncate(lower_dentry->d_inode, new_length); | ||
822 | goto out_free; | ||
823 | } | ||
817 | if (num_zeros) { | 824 | if (num_zeros) { |
818 | char *zeros_virt; | 825 | char *zeros_virt; |
819 | 826 | ||
@@ -915,8 +922,6 @@ static int ecryptfs_setattr(struct dentry *dentry, struct iattr *ia) | |||
915 | } | 922 | } |
916 | rc = 0; | 923 | rc = 0; |
917 | crypt_stat->flags &= ~(ECRYPTFS_ENCRYPTED); | 924 | crypt_stat->flags &= ~(ECRYPTFS_ENCRYPTED); |
918 | mutex_unlock(&crypt_stat->cs_mutex); | ||
919 | goto out; | ||
920 | } | 925 | } |
921 | } | 926 | } |
922 | mutex_unlock(&crypt_stat->cs_mutex); | 927 | mutex_unlock(&crypt_stat->cs_mutex); |