I am in my own kernel module, try to init a kthread from the interupt handerl function.
in the global scope I have:
static struct task_struct *thread1;
the function handler of the irq is:
static irqreturn_t* func_irq_handler (int irq, void *dev_id)
{
printk("irq handeler ... \n");
thread1 = kthread_create(thread_function,NULL,"my_thread");
if ((thread1)) {
printk(KERN_INFO "%s\n" , __FUNCTION__);
}
return IRQ_HANDLED;
}
and the thread function is:
static thread_function(void)
{
unsigned long j1=jiffies+20000;
int delay = 60*HZ;
printk("%s \n",__FUNCTION__);
while (time_before(jiffies,j1)) {
schedule();
printk(KERN_INFO "after schedule\n");
}
}
the request_irq looks like this:
request_irq(irq,func_irq_handler,IRQF_TRIGGER_HIGH | IRQF_TRIGGER_RISING ,"test_irq",(void*)&my_miscdev);
why do I get this error:
BUG: scheduling while atomic: swapper
