The patch titled Subject: byteswap-try-to-avoid-__builtin_constant_p-gcc-bug-fix has been removed from the -mm tree. Its filename was byteswap-try-to-avoid-__builtin_constant_p-gcc-bug-fix.patch This patch was dropped because an updated version will be merged ------------------------------------------------------ From: Josh Poimboeuf <jpoimboe@xxxxxxxxxx> Subject: byteswap-try-to-avoid-__builtin_constant_p-gcc-bug-fix We probably need to add a (__u64) cast to the return value of __builtin_bswap64(), like: Cc: Arnd Bergmann <arnd@xxxxxxxx> Cc: Josh Poimboeuf <jpoimboe@xxxxxxxxxx> Cc: Stephen Rothwell <sfr@xxxxxxxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- include/uapi/linux/swab.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff -puN include/uapi/linux/swab.h~byteswap-try-to-avoid-__builtin_constant_p-gcc-bug-fix include/uapi/linux/swab.h --- a/include/uapi/linux/swab.h~byteswap-try-to-avoid-__builtin_constant_p-gcc-bug-fix +++ a/include/uapi/linux/swab.h @@ -123,7 +123,7 @@ static inline __attribute_const__ __u32 * @x: value to byteswap */ #ifdef __HAVE_BUILTIN_BSWAP64__ -#define __swab64(x) __builtin_bswap64((__u64)(x)) +#define __swab64(x) (__u64)__builtin_bswap64((__u64)(x)) #else #define __swab64(x) \ (__builtin_constant_p((__u64)(x)) ? \ _ Patches currently in -mm which might be from jpoimboe@xxxxxxxxxx are -- 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