|
@@ -9,6 +9,7 @@
|
|
|
|
|
|
#include <linux/workqueue.h>
|
|
#include <linux/workqueue.h>
|
|
#include <linux/kthread.h>
|
|
#include <linux/kthread.h>
|
|
|
|
+#include <linux/preempt.h>
|
|
|
|
|
|
struct worker_pool;
|
|
struct worker_pool;
|
|
|
|
|
|
@@ -59,7 +60,7 @@ struct worker {
|
|
*/
|
|
*/
|
|
static inline struct worker *current_wq_worker(void)
|
|
static inline struct worker *current_wq_worker(void)
|
|
{
|
|
{
|
|
- if (current->flags & PF_WQ_WORKER)
|
|
|
|
|
|
+ if (in_task() && (current->flags & PF_WQ_WORKER))
|
|
return kthread_data(current);
|
|
return kthread_data(current);
|
|
return NULL;
|
|
return NULL;
|
|
}
|
|
}
|