aboutsummaryrefslogtreecommitdiffstats
path: root/fs/squashfs/super.c
diff options
context:
space:
mode:
Diffstat (limited to 'fs/squashfs/super.c')
-rw-r--r--fs/squashfs/super.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/squashfs/super.c b/fs/squashfs/super.c
index 5e79bfa4f260..cf01e15a7b16 100644
--- a/fs/squashfs/super.c
+++ b/fs/squashfs/super.c
@@ -152,7 +152,7 @@ static int squashfs_fill_super(struct super_block *sb, void *data, int silent)
152 * Check the system page size is not larger than the filesystem 152 * Check the system page size is not larger than the filesystem
153 * block size (by default 128K). This is currently not supported. 153 * block size (by default 128K). This is currently not supported.
154 */ 154 */
155 if (PAGE_CACHE_SIZE > msblk->block_size) { 155 if (PAGE_SIZE > msblk->block_size) {
156 ERROR("Page size > filesystem block size (%d). This is " 156 ERROR("Page size > filesystem block size (%d). This is "
157 "currently not supported!\n", msblk->block_size); 157 "currently not supported!\n", msblk->block_size);
158 goto failed_mount; 158 goto failed_mount;