CVSROOT: /home/cvs
Module name: linux
Changes by: sjhill@ftp.linux-mips.org 05/02/19 16:15:54
Modified files:
arch/mips/kernel: irixelf.c
Log message:
Until I figure out why NFS filesystems are having problems with
the 'load_irix_binary' and having kernel faults, Irix support is
disabled. I suspect locking of some sort, but I will now have to
investigate further.
diff -urN linux/arch/mips/kernel/irixelf.c linux/arch/mips/kernel/irixelf.c
--- linux/arch/mips/kernel/irixelf.c 2005/02/19 05:56:51 1.64
+++ linux/arch/mips/kernel/irixelf.c 2005/02/19 16:15:54 1.65
@@ -601,6 +601,15 @@
elf_ex = *((struct elfhdr *) bprm->buf);
retval = -ENOEXEC;
+ /*
+ * Here until I figure out why NFS filesystems are having
+ * problems with this code. I suspect locking of some sort,
+ * but for now we'll have to disable IRIX support.
+ */
+#ifdef 1
+ goto out;
+#endif
+
if (verify_binary(&elf_ex, bprm))
goto out;
|