lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite: Windows password security audit tool. GUI, reports in PDF.
[<prev] [next>] [day] [month] [year] [list]
Date:	Fri, 1 Sep 2006 12:57:01 +0200
From:	Bernhard Rosenkraenzer <bero@...linux.org>
To:	linux-kernel@...r.kernel.org
Cc:	akpm@...l.org
Subject: [PATCH -mm] Make 2.6.18-rc5-mm1 compile

  CC      arch/i386/kernel/sys_i386.o
arch/i386/kernel/sys_i386.c: In function 'kernel_execve':
arch/i386/kernel/sys_i386.c:262: error: '__NR_execve' undeclared (first use in 
this function)
arch/i386/kernel/sys_i386.c:262: error: (Each undeclared identifier is 
reported only once
arch/i386/kernel/sys_i386.c:262: error: for each function it appears in.)
make[1]: *** [arch/i386/kernel/sys_i386.o] Error 1
make: *** [arch/i386/kernel] Error 2

It's just a missing #include for the __NR_execve define -- fix below.

Signed-off-by: Bernhard Rosenkraenzer <bero@...linux.org>
--- linux-2.6.17/arch/i386/kernel/sys_i386.c.ark	2006-09-01 12:43:34.000000000 
+0200
+++ linux-2.6.17/arch/i386/kernel/sys_i386.c	2006-09-01 12:43:46.000000000 
+0200
@@ -21,6 +21,7 @@
 #include <linux/utsname.h>
 
 #include <asm/uaccess.h>
+#include <asm/unistd.h>
 #include <asm/ipc.h>
 
 /*
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ