* [patch] 2.4.6-pre4 unresolved symbol do_softirq
@ 2001-06-21 1:55 Keith Owens
0 siblings, 0 replies; only message in thread
From: Keith Owens @ 2001-06-21 1:55 UTC (permalink / raw)
To: torvalds; +Cc: linux-kernel
do_softirq is called from asm code which does not get preprocessed.
The label needs to be exposed so cpp can see it.
Against 2.4.6-pre4.
Index: 6-pre4.1/include/asm-i386/softirq.h
--- 6-pre4.1/include/asm-i386/softirq.h Sat, 09 Jun 2001 11:25:53 +1000 kaos (linux-2.4/T/51_softirq.h 1.3 644)
+++ 6-pre4.1(w)/include/asm-i386/softirq.h Thu, 21 Jun 2001 11:52:34 +1000 kaos (linux-2.4/T/51_softirq.h 1.3 644)
@@ -36,13 +36,13 @@ do { \
\
".section .text.lock,\"ax\";" \
"2: pushl %%eax; pushl %%ecx; pushl %%edx;" \
- "call do_softirq;" \
+ "call %c1;" \
"popl %%edx; popl %%ecx; popl %%eax;" \
"jmp 1b;" \
".previous;" \
\
: /* no output */ \
- : "r" (ptr) \
+ : "r" (ptr), "i" (do_softirq) \
/* no registers clobbered */ ); \
} while (0)
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2001-06-21 1:55 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2001-06-21 1:55 [patch] 2.4.6-pre4 unresolved symbol do_softirq Keith Owens
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox