Commit d303f4a1 authored by Cyrill Gorcunov's avatar Cyrill Gorcunov Committed by Ralf Baechle

[MIPS] ELF handling - use SELFMAG instead of numeric constant

Signed-off-by: default avatarCyrill Gorcunov <gorcunov@gmail.com>
Signed-off-by: default avatarRalf Baechle <ralf@linux-mips.org>
parent ddc0d009
...@@ -845,7 +845,7 @@ static int vpe_elfload(struct vpe * v) ...@@ -845,7 +845,7 @@ static int vpe_elfload(struct vpe * v)
/* Sanity checks against insmoding binaries or wrong arch, /* Sanity checks against insmoding binaries or wrong arch,
weird elf version */ 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) || (hdr->e_type != ET_REL && hdr->e_type != ET_EXEC)
|| !elf_check_arch(hdr) || !elf_check_arch(hdr)
|| hdr->e_shentsize != sizeof(*sechdrs)) { || hdr->e_shentsize != sizeof(*sechdrs)) {
...@@ -1114,7 +1114,7 @@ static int vpe_release(struct inode *inode, struct file *filp) ...@@ -1114,7 +1114,7 @@ static int vpe_release(struct inode *inode, struct file *filp)
return -ENODEV; return -ENODEV;
hdr = (Elf_Ehdr *) v->pbuffer; 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) { if (vpe_elfload(v) >= 0) {
vpe_run(v); vpe_run(v);
} else { } else {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment