Hi all, Today's linux-next merge of the akpm-current tree got a conflict in: kernel/watchdog.c between commit: 89e28ce60cb6 ("workqueue/watchdog: Make unbound workqueues aware of touch_softlockup_watchdog() 84;0;0c84;0;0c There are two workqueue-specific watchdog timestamps:") (pity about that commit subject) from Linus' tree and commit: 3dd2b5b9c268 ("watchdog/softlockup: report the overall time of softlockups") from the akpm-current tree. I fixed it up (see below) and can carry the fix as necessary. This is now fixed as far as linux-next is concerned, but any non trivial conflicts should be mentioned to your upstream maintainer when your tree is submitted for merging. You may also want to consider cooperating with the maintainer of the conflicting tree to minimise any particularly complex conflicts. -- Cheers, Stephen Rothwell diff --cc kernel/watchdog.c index 107bc38b1945,090b6bc4de79..000000000000 --- a/kernel/watchdog.c +++ b/kernel/watchdog.c @@@ -278,10 -290,9 +290,10 @@@ void touch_all_softlockup_watchdogs(voi * update as well, the only side effect might be a cycle delay for * the softlockup check. */ - for_each_cpu(cpu, &watchdog_allowed_mask) + for_each_cpu(cpu, &watchdog_allowed_mask) { - per_cpu(watchdog_touch_ts, cpu) = SOFTLOCKUP_RESET; + per_cpu(watchdog_report_ts, cpu) = SOFTLOCKUP_DELAY_REPORT; - wq_watchdog_touch(-1); + wq_watchdog_touch(cpu); + } } void touch_softlockup_watchdog_sync(void)