Hi Tejun, Today's linux-next merge of the workqueues tree got a conflict in include/linux/workqueue.h between commit a25909a4d4a29e272f953e12595bf2f04a292dbd ("lockdep: Add an in_workqueue_context() lockdep-based test function") from the tip tree and commit a0a1a5fd4fb15ec61117c759fe9f5c16c53d9e9c ("workqueue: reimplement workqueue freeze using max_active") from the workqueues tree. I fixed it up (see below) and can carry the fix as necessary. -- Cheers, Stephen Rothwell sfr@xxxxxxxxxxxxxxxx diff --cc include/linux/workqueue.h index d0f7c81,d74a529..0000000 --- a/include/linux/workqueue.h +++ b/include/linux/workqueue.h @@@ -298,7 -394,10 +394,14 @@@ static inline long work_on_cpu(unsigne long work_on_cpu(unsigned int cpu, long (*fn)(void *), void *arg); #endif /* CONFIG_SMP */ +#ifdef CONFIG_LOCKDEP +int in_workqueue_context(struct workqueue_struct *wq); +#endif ++ + #ifdef CONFIG_FREEZER + extern void freeze_workqueues_begin(void); + extern bool freeze_workqueues_busy(void); + extern void thaw_workqueues(void); + #endif /* CONFIG_FREEZER */ + #endif -- To unsubscribe from this list: send the line "unsubscribe linux-next" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html