The patch titled MIPS: ELF handling: use SELFMAG instead of numeric constant has been removed from the -mm tree. Its filename was mips-elf-handling-use-selfmag-instead-of-numeric-constant.patch This patch was dropped because it was merged into mainline or a subsystem tree The current -mm tree may be found at http://userweb.kernel.org/~akpm/mmotm/ ------------------------------------------------------ Subject: MIPS: ELF handling: use SELFMAG instead of numeric constant From: Cyrill Gorcunov <gorcunov@xxxxxxxxx> Signed-off-by: Cyrill Gorcunov <gorcunov@xxxxxxxxx> Cc: Ralf Baechle <ralf@xxxxxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- arch/mips/kernel/vpe.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff -puN arch/mips/kernel/vpe.c~mips-elf-handling-use-selfmag-instead-of-numeric-constant arch/mips/kernel/vpe.c --- a/arch/mips/kernel/vpe.c~mips-elf-handling-use-selfmag-instead-of-numeric-constant +++ a/arch/mips/kernel/vpe.c @@ -840,7 +840,7 @@ static int vpe_elfload(struct vpe * v) /* Sanity checks against insmoding binaries or wrong arch, weird elf version */ - if (memcmp(hdr->e_ident, ELFMAG, 4) != 0 + if (memcmp(hdr->e_ident, ELFMAG, SELFMAG) != 0 || (hdr->e_type != ET_REL && hdr->e_type != ET_EXEC) || !elf_check_arch(hdr) || hdr->e_shentsize != sizeof(*sechdrs)) { @@ -1107,7 +1107,7 @@ static int vpe_release(struct inode *ino return -ENODEV; hdr = (Elf_Ehdr *) v->pbuffer; - if (memcmp(hdr->e_ident, ELFMAG, 4) == 0) { + if (memcmp(hdr->e_ident, ELFMAG, SELFMAG) == 0) { if (vpe_elfload(v) >= 0) { vpe_run(v); } else { _ Patches currently in -mm which might be from gorcunov@xxxxxxxxx are origin.patch uml-use-page_size-in-linker-scripts.patch init-dont-loose-initcall-code-returned-v2.patch ecryptfs-fix-imbalanced-mutex-locking.patch git-cifs.patch module-loading-elf-handling-use-selfmag-instead-of-numeric-constant.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