Re: 1.3.71, SMP

loewis@informatik.hu-berlin.de
Tue, 5 Mar 1996 13:22:19 +0100


In article <Pine.LNX.3.91.960304135816.26635A-100000@micro.internexus.net> you write:
>/usr/src/linux/arch/i386/lib/lib.a -o vmlinux
>fs/fs.o(.text+0x8ef7): undefined reference to `get_binfmt_list'
>make: *** [vmlinux] Error 1
>
>I get the error above when compiling make dep ; make clean ; make zlilo
>with SMP = 1. Is there a patch I need to get for 1.3.71?

I suggest the patch included below. Sorry about that.

Regards,
Martin

--- exec.c.old Tue Mar 5 12:55:08 1996
+++ exec.c Tue Mar 5 12:55:25 1996
@@ -535,7 +535,7 @@
}
#endif
for (try=0; try<2; try++) {
- for (fmt = get_binfmt_list() ; fmt ; fmt = fmt->next) {
+ for (fmt = formats; fmt ; fmt = fmt->next) {
int (*fn)(struct linux_binprm *, struct pt_regs *) = fmt->load_binary;
if (!fn)
continue;