http://oss.sgi.com/bugzilla/show_bug.cgi?id=217
kaos@xxxxxxx changed:
What |Removed |Added
----------------------------------------------------------------------------
AssignedTo|xfs-master@xxxxxxxxxxx |kaos@xxxxxxx
------- Additional Comments From cw@xxxxxxxx 2003-02-08 11:51 -------
Subject: Re: New: Kernel compilation error
On Sat, Feb 08, 2003 at 09:51:51AM -0800, bugzilla-daemon@xxxxxxxxxxx wrote:
> /usr/src/linux-2.4.20-bugreport/include/linux/module.h:434: `ESRCH'
> undeclared (first use in this function)
I've seen this too.
Make sure you have #include <asm/errno.h> in linux/module.h.
--cw
------- Additional Comments From kaos@xxxxxxx 2003-02-08 14:59 -------
The backport of kksymoops from 2.5 to 2.4 and included in kdb v3.0 did not cater
for kernels with no modules at all. Quick patch until I can upgrade kdb.
--- linux/include/linux/module.h Sun Feb 9 09:58:57 2003
+++ linux/include/linux/module.h Sun Feb 9 09:58:33 2003
@@ -428,6 +428,7 @@
#else
+#include <linux/errno.h>
static inline int
print_symbol(const char *fmt, unsigned long address)
{
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
|