Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1755454AbbFONNx (ORCPT ); Mon, 15 Jun 2015 09:13:53 -0400 Received: from cantor2.suse.de ([195.135.220.15]:51511 "EHLO mx2.suse.de" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1754143AbbFONNo (ORCPT ); Mon, 15 Jun 2015 09:13:44 -0400 Date: Mon, 15 Jun 2015 15:13:41 +0200 From: Petr Mladek To: Oleg Nesterov Cc: Andrew Morton , Tejun Heo , Ingo Molnar , Peter Zijlstra , Richard Weinberger , Steven Rostedt , David Woodhouse , linux-mtd@lists.infradead.org, Trond Myklebust , Anna Schumaker , linux-nfs@vger.kernel.org, Chris Mason , "Paul E. McKenney" , Thomas Gleixner , Linus Torvalds , Jiri Kosina , Borislav Petkov , Michal Hocko , live-patching@vger.kernel.org, linux-api@vger.kernel.org, linux-kernel@vger.kernel.org Subject: Re: [RFC PATCH 06/18] signal/kthread: Initial implementation of kthread signal handling Message-ID: <20150615131341.GN9409@pathway.suse.cz> References: <1433516477-5153-1-git-send-email-pmladek@suse.cz> <1433516477-5153-7-git-send-email-pmladek@suse.cz> <20150606215816.GB15591@redhat.com> <20150608135107.GB3135@pathway.suse.cz> <20150608211336.GB24869@redhat.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20150608211336.GB24869@redhat.com> User-Agent: Mutt/1.5.21 (2010-09-15) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 2584 Lines: 75 Hi Oleg, I am sorry for the late reply. I wanted to think more before answering all the mails. On Mon 2015-06-08 23:13:36, Oleg Nesterov wrote: > I do not. Contrary, I think this needs more code in the likely case. > Anyway, this API won't have too many users, so I don't even this this > is that important. > > > > > + if (sig_kernel_stop(signr)) { > > > > + __set_current_state(TASK_STOPPED); > > > > + spin_unlock_irqrestore(&sighand->siglock, flags); > > > > + /* Don't run again until woken by SIGCONT or SIGKILL */ > > > > + freezable_schedule(); > > > > + goto relock; > > > > > > Yes this avoids the race with SIGCONT. But as I said we can add another > > > trivial helper which checks JOBCTL_STOP_DEQUEUED. So a kthread can do > > > this itself. > > > > Hmm, the helper would have a strange semantic. You need to take > > sighand->siglock, dequeue the signal (SIGSTOP), and call > > __set_current_state(TASK_STOPPED) before you release the lock. > > But what would happen if the dequeued signal is _not_ SIGSTOP? > > Perhaps I missed your point, but no. If you want to handle SIGSTOP > you can do > I think that we need to add: spin_lock_irq(&sighand->siglock); > signr = kthread_signal_dequeue(); > switch (signr) { > case SIGSTOP: > something_else(); > kthread_do_signal_stop(); > ... > } And if we want to avoid any race, kthread_do_signal_stop() should look like: void kthread_do_signal_stop(unsigned long flags) { struct sighand_struct *sighand = current->sighand; __set_current_state(TASK_STOPPED); spin_unlock_irqrestore(&sighand->siglock, flags); /* Don't run again until woken by SIGCONT or SIGKILL */ freezable_schedule(); } It means that we will have spin_lock() in one function and spin_unlock() in another one. This is what I meant with the strange semantic. This is why I think that it might be cleaner to implement some generic kthread_do_signal() or so and allow to (re)define/add sigactions via callbacks. Note that I am not aware of any kthread that would use SIGSTOP non-standard way. Anyway, I am going to concentrate on the main structure of the kthread API and will put the controversial signal handling a side for now. I will get back to it when converting the few kthreads that use signals. I will think more about your feedback in the meantime. Best Regards, Petr -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/