On Thu, Nov 02, 2000 at 05:13:35PM -0500, Kevin Lawton wrote:
> calberty wrote:
> > 
> > I ran misc/load_module.sh and got the following
> > "misc/../kernel/plex86.o: unresolved symbol current_got_fatal_signal
> > The kernel module failed to load!"
> > this seems to be a probem in 2.4.0-test10 because everything ran fine on
> > test2 and test9 any ideas on how to fix?
> 
> Good question.  I downloaded 2.4.0-test10, and grep'd the sources for
> that.  Didn't find it.  Maybe some problem with the module loader.
> 
> I'll compile/install test10 later if nobody figures this out.
> 
> -Kevin

The problem is that it was in test9 but is no longer in test10 (which is
why grepping turned up nothing). It was previously #define'd as
(signal_pending(current)), which was used in many places in the source,
whereas current_got_fatal_signal was never used.

So that's the fix. Change it from current_got_fatal_signal() to
signal_pending(current). Worked for me anyway.

Eric

Reply via email to