From: Alex Davis <alex14641 <at> yahoo.com>
Subject: Re: ndiswrapper: Unknown symbol task_nice
Newsgroups: gmane.linux.drivers.ndiswrapper.general
Date: Mon, 22 Nov 2004 16:40:35 -0800
Edit the the file kernel/sched.c in the kernel source
directory. At line 3041 there's the function task_nice.
After the end of that function, you want to add the line
EXPORT_SYMBOL(task_nice);
so that section looks like
int task_nice(const task_t p)
{
return TASK_NICE(p);
}