X-Git-Url: https://git.kernel.dk/?p=linux-2.6-block.git;a=blobdiff_plain;f=fs%2Fecryptfs%2Finode.c;h=3ce01dd4a371b9590e70ba4d5389a8da55e6aa90;hp=0caec70a8f1798b1e3308dcc004df4a2db58d06c;hb=9a07a7968407e20fe87ed6b5eb6a6000e4819492;hpb=256b1cfb9a346bb4808cd27b7b8f9b120f96491e diff --git a/fs/ecryptfs/inode.c b/fs/ecryptfs/inode.c index 0caec70a8f17..3ce01dd4a371 100644 --- a/fs/ecryptfs/inode.c +++ b/fs/ecryptfs/inode.c @@ -763,10 +763,10 @@ static int truncate_upper(struct dentry *dentry, struct iattr *ia, } else { /* ia->ia_size < i_size_read(inode) */ /* We're chopping off all the pages down to the page * in which ia->ia_size is located. Fill in the end of - * that page from (ia->ia_size & ~PAGE_CACHE_MASK) to - * PAGE_CACHE_SIZE with zeros. */ - size_t num_zeros = (PAGE_CACHE_SIZE - - (ia->ia_size & ~PAGE_CACHE_MASK)); + * that page from (ia->ia_size & ~PAGE_MASK) to + * PAGE_SIZE with zeros. */ + size_t num_zeros = (PAGE_SIZE + - (ia->ia_size & ~PAGE_MASK)); if (!(crypt_stat->flags & ECRYPTFS_ENCRYPTED)) { truncate_setsize(inode, ia->ia_size);