The patch titled crc32: add missed brackets in macro has been added to the -mm tree. Its filename is crc32-add-missed-brackets-in-macro.patch Before you just go and hit "reply", please: a) Consider who else should be cc'ed b) Prefer to cc a suitable mailing list as well c) Ideally: find the original patch on the mailing list and do a reply-to-all to that, adding suitable additional cc's *** Remember to use Documentation/SubmitChecklist when testing your code *** See http://userweb.kernel.org/~akpm/stuff/added-to-mm.txt to find out what to do about this The current -mm tree may be found at http://userweb.kernel.org/~akpm/mmotm/ ------------------------------------------------------ Subject: crc32: add missed brackets in macro From: Konstantin Khlebnikov <khlebnikov@xxxxxxxxxx> Add brackets around typecasted argument in crc32() macro. Signed-off-by: Konstantin Khlebnikov <khlebnikov@xxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- include/linux/crc32.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff -puN include/linux/crc32.h~crc32-add-missed-brackets-in-macro include/linux/crc32.h --- a/include/linux/crc32.h~crc32-add-missed-brackets-in-macro +++ a/include/linux/crc32.h @@ -11,7 +11,7 @@ extern u32 crc32_le(u32 crc, unsigned char const *p, size_t len); extern u32 crc32_be(u32 crc, unsigned char const *p, size_t len); -#define crc32(seed, data, length) crc32_le(seed, (unsigned char const *)data, length) +#define crc32(seed, data, length) crc32_le(seed, (unsigned char const *)(data), length) /* * Helpers for hash table generation of ethernet nics: _ Patches currently in -mm which might be from khlebnikov@xxxxxxxxxx are crc32-add-missed-brackets-in-macro.patch proc-hide-kernel-addresses-via-%pk-in-proc-pid-stack.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