I think I've found the problem: in the function cramfs_read in fs/cramfs/inode.c
the line
devsize = blk_size[major][minor] >> 2;
seems to assume a block size of 4096 bytes. Shouldn't it be depending on
PAGE_CACHE_SIZE or the block size of the filesystem? The following works
for me:
devsize = blk_size[major][minor] / (PAGE_CACHE_SIZE / 1024);
Best regards
/Jonas
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/