The patch titled constify libcrc32c table has been removed from the -mm tree. Its filename is constify-libcrc32c-table.patch This patch was dropped because it was merged into mainline or a subsystem tree ------------------------------------------------------ Subject: constify libcrc32c table From: Andreas Mohr <andi@xxxxxxxxxxxxxxxxxxxxxxx> constify a medium-large CRC code table. Signed-off-by: Andreas Mohr <andi@xxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxx> --- lib/libcrc32c.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff -puN lib/libcrc32c.c~constify-libcrc32c-table lib/libcrc32c.c --- a/lib/libcrc32c.c~constify-libcrc32c-table +++ a/lib/libcrc32c.c @@ -88,7 +88,7 @@ crc32c_le(u32 crc, unsigned char const * * reflect output bytes = true */ -static u32 crc32c_table[256] = { +static const u32 crc32c_table[256] = { 0x00000000L, 0xF26B8303L, 0xE13B70F7L, 0x1350F3F4L, 0xC79A971FL, 0x35F1141CL, 0x26A1E7E8L, 0xD4CA64EBL, 0x8AD958CFL, 0x78B2DBCCL, 0x6BE22838L, 0x9989AB3BL, _ Patches currently in -mm which might be from andi@xxxxxxxxxxxxxxxxxxxxxxx are origin.patch cpu_relax-use-in-acpi-lock.patch git-input.patch ni5010-netcard-cleanup.patch acx1xx-wireless-driver.patch x86-constify-some-parts-of-arch-i386-kernel-cpu.patch make-pmtmr_ioport-__read_mostly.patch - To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html