Hi David, Today's linux-next merge of the creds tree got a conflict in kernel/fork.c between commit f06febc96ba8e0af80bcc3eaec0a109e88275fac ("timers: fix itimer/many thread hang") from the timers tree and commit 3ef958261a38aaf9a7baab6565def2680e5743ed ("CRED: Separate per-task-group keyrings from signal_struct") from the creds tree. Overlapping addition/removal. I fixed it up (see below). -- Cheers, Stephen Rothwell sfr@xxxxxxxxxxxxxxxx http://www.canb.auug.org.au/~sfr/ diff --cc kernel/fork.c index d8de863,e392e5a..0000000 --- a/kernel/fork.c +++ b/kernel/fork.c @@@ -794,15 -761,11 +793,14 @@@ static void posix_cpu_timers_init_group static int copy_signal(unsigned long clone_flags, struct task_struct *tsk) { struct signal_struct *sig; - int ret; if (clone_flags & CLONE_THREAD) { - atomic_inc(¤t->signal->count); - atomic_inc(¤t->signal->live); - return 0; + ret = thread_group_cputime_clone_thread(current); + if (likely(!ret)) { + atomic_inc(¤t->signal->count); + atomic_inc(¤t->signal->live); + } + return ret; } sig = kmem_cache_alloc(signal_cachep, GFP_KERNEL); tsk->signal = sig; @@@ -858,8 -830,6 +850,7 @@@ void __cleanup_signal(struct signal_struct *sig) { + thread_group_cputime_free(sig); - exit_thread_group_keys(sig); tty_kref_put(sig->tty); kmem_cache_free(signal_cachep, sig); } -- 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