From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1755190Ab2BFQcv (ORCPT ); Mon, 6 Feb 2012 11:32:51 -0500 Received: from mx1.redhat.com ([209.132.183.28]:65400 "EHLO mx1.redhat.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1754513Ab2BFQct (ORCPT ); Mon, 6 Feb 2012 11:32:49 -0500 Date: Mon, 6 Feb 2012 17:25:32 +0100 From: Oleg Nesterov To: Steven Rostedt Cc: linux-kernel@vger.kernel.org, linux-rt-users , Thomas Gleixner , Carsten Emde , John Kacur , Masami Hiramatsu , Ingo Molnar , Andrew Morton , "H. Peter Anvin" , Alexander van Heukelum , Andi Kleen , Clark Williams , Luis Goncalves , stable-rt@vger.kernel.org Subject: Re: [PATCH RT 2/2 v4] preempt-rt/x86: Delay calling signals in int3 Message-ID: <20120206162532.GA6951@redhat.com> References: <20120203182853.547078531@goodmis.org> <20120203183041.427463295@goodmis.org> <20120203184016.GA10413@redhat.com> <1328299833.5882.211.camel@gandalf.stny.rr.com> <20120205192305.GB12183@redhat.com> <20120205193146.GC12183@redhat.com> <1328544744.2200.11.camel@gandalf.stny.rr.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1328544744.2200.11.camel@gandalf.stny.rr.com> User-Agent: Mutt/1.5.18 (2008-05-17) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On 02/06, Steven Rostedt wrote: > > On Sun, 2012-02-05 at 20:31 +0100, Oleg Nesterov wrote: > > Damn. Sorry for noise... > > > > On 02/05, Oleg Nesterov wrote: > > > > > > +int force_sig_info(int sig, struct siginfo *info, struct task_struct *t) > > > +{ > > > +#ifdef CONFIG_PREEMPT_RT_FULL > > > + if (in_atomic()) { > > > + if (WARN_ON_ONCE(t != current)) > > > > This is certainly wrong in upstream kernel. It does use force_ > > this way although it shouldn't imho. > > It's wrong in upstream even with the #ifdef define here? No, the patch has no effect if !CONFIG_PREEMPT_RT_FULL. Oleg.