diff options
Diffstat (limited to 'fs/ntfs/attrib.c')
-rw-r--r-- | fs/ntfs/attrib.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/fs/ntfs/attrib.c b/fs/ntfs/attrib.c index 380f70a5f2e1..8821e2d088b7 100644 --- a/fs/ntfs/attrib.c +++ b/fs/ntfs/attrib.c | |||
@@ -1719,7 +1719,9 @@ int ntfs_attr_make_non_resident(ntfs_inode *ni, const u32 data_size) | |||
1719 | ffs(ni->itype.compressed.block_size) - 1; | 1719 | ffs(ni->itype.compressed.block_size) - 1; |
1720 | ni->itype.compressed.block_clusters = 1U << | 1720 | ni->itype.compressed.block_clusters = 1U << |
1721 | a->data.non_resident.compression_unit; | 1721 | a->data.non_resident.compression_unit; |
1722 | } | 1722 | vi->i_blocks = ni->itype.compressed.size >> 9; |
1723 | } else | ||
1724 | vi->i_blocks = ni->allocated_size >> 9; | ||
1723 | write_unlock_irqrestore(&ni->size_lock, flags); | 1725 | write_unlock_irqrestore(&ni->size_lock, flags); |
1724 | /* | 1726 | /* |
1725 | * This needs to be last since the address space operations ->readpage | 1727 | * This needs to be last since the address space operations ->readpage |