Subject: [alternative-merged] x86-vdso-remove-one-final-use-of-htole16.patch removed from -mm tree To: hpa@xxxxxxxxx,akpm@xxxxxxxxxxxxxxxxxxxx,luto@xxxxxxxxxxxxxx,mm-commits@xxxxxxxxxxxxxxx From: akpm@xxxxxxxxxxxxxxxxxxxx Date: Mon, 16 Jun 2014 12:04:51 -0700 The patch titled Subject: x86, vdso: Remove one final use of htole16() has been removed from the -mm tree. Its filename was x86-vdso-remove-one-final-use-of-htole16.patch This patch was dropped because an alternative patch was merged ------------------------------------------------------ From: "H. Peter Anvin" <hpa@xxxxxxxxx> Subject: x86, vdso: Remove one final use of htole16() One final use of the macros from <endian.h> which are not available on older system. In this case we had one sole case of *writing* a littleendian number, but the number is SHN_UNDEF which is the constant zero, so rather than dealing with the general case of littleendian puts here, just document that the constant is zero and be done with it. Reported-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> Signed-off-by: H. Peter Anvin <hpa@xxxxxxxxx> Cc: Andy Lutomirski <luto@xxxxxxxxxxxxxx> Link: http://lkml.kernel.org/r/20140610135051.c3c34165f73d67d218b62bd9@xxxxxxxxxxxxxxxxxxxx Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- arch/x86/vdso/vdso2c.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff -puN arch/x86/vdso/vdso2c.h~x86-vdso-remove-one-final-use-of-htole16 arch/x86/vdso/vdso2c.h --- a/arch/x86/vdso/vdso2c.h~x86-vdso-remove-one-final-use-of-htole16 +++ a/arch/x86/vdso/vdso2c.h @@ -116,7 +116,7 @@ static void GOFUNC(void *addr, size_t le hdr->e_shoff = 0; hdr->e_shentsize = 0; hdr->e_shnum = 0; - hdr->e_shstrndx = htole16(SHN_UNDEF); + hdr->e_shstrndx = SHN_UNDEF; /* SHN_UNDEF == 0 */ if (!name) { fwrite(addr, load_size, 1, outfile); _ Patches currently in -mm which might be from hpa@xxxxxxxxx are lib-scatterlist-make-arch_has_sg_chain-an-actual-kconfig.patch lib-scatterlist-clean-up-useless-architecture-versions-of-scatterlisth.patch linux-next.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