Re: [PATCH] Squashfs: Fix oops when reading fsfuzzer corruptedfilesystems

From: Andrew Morton
Date: Thu Feb 05 2009 - 15:23:36 EST


On Wed, 04 Feb 2009 03:07:48 +0000
Phillip Lougher <phillip@xxxxxxxxxxxxxxxxxxx> wrote:

> - ERROR("sb_bread failed reading block 0x%llx\n", cur_index);
> + ERROR("squashfs_read_data failed to read block 0x%llx\n", index);

`index' has type u64. You don't know what C type is used to implement
u64, hence it must be cast to a known type before it can be passed to
printk.

In this case we use `unsigned long long'.

The code as it stands will generate compiler warnings on some
architectures.

One day, maybe before we all die, we will fix this. Then we get to
spend another five years weeding out all the casts we added.

--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/