On Mon, Nov 26, 2012 at 10:40:28AM +0100, Lukáš Czerner wrote: > I do not see cp initialized anywhere. I suppose it should map to the > 'in' bitmap ? Oops, I missed this when moving the patch over. Thanks for pointing this out! Yes, it should have been initialized: unsigned char *cp = in; > I guess that 8 will always be aliquot part of 'num', by maybe we > could explicitly check for that to avoid access to uninitialized > memory ? It is true that ext2fs_[sg]et_bmap_range() always gets called with num as a multiple of 8, but it should work correctly even if it isn't here, since when we check the uninitialized bits in the last byte in the memory range, the optimization will just fail, and then we'll fall back to the old slow path for the last bits in the bitmap. - Ted -- To unsubscribe from this list: send the line "unsubscribe linux-ext4" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html