From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-ob0-f197.google.com (mail-ob0-f197.google.com [209.85.214.197]) by kanga.kvack.org (Postfix) with ESMTP id 368516B0253 for ; Wed, 18 May 2016 09:34:31 -0400 (EDT) Received: by mail-ob0-f197.google.com with SMTP id rw3so61329935obb.0 for ; Wed, 18 May 2016 06:34:31 -0700 (PDT) Received: from merlin.infradead.org (merlin.infradead.org. [2001:4978:20e::2]) by mx.google.com with ESMTPS id d42si7656742ioj.98.2016.05.18.06.34.30 for (version=TLS1_2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Wed, 18 May 2016 06:34:30 -0700 (PDT) Date: Wed, 18 May 2016 15:34:20 +0200 From: Peter Zijlstra Subject: Re: [PATCH v12 04/13] task_isolation: add initial support Message-ID: <20160518133420.GG3193@twins.programming.kicks-ass.net> References: <1459877922-15512-1-git-send-email-cmetcalf@mellanox.com> <1459877922-15512-5-git-send-email-cmetcalf@mellanox.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1459877922-15512-5-git-send-email-cmetcalf@mellanox.com> Sender: owner-linux-mm@kvack.org List-ID: To: Chris Metcalf Cc: Gilad Ben Yossef , Steven Rostedt , Ingo Molnar , Andrew Morton , Rik van Riel , Tejun Heo , Frederic Weisbecker , Thomas Gleixner , "Paul E. McKenney" , Christoph Lameter , Viresh Kumar , Catalin Marinas , Will Deacon , Andy Lutomirski , Michal Hocko , linux-mm@kvack.org, linux-doc@vger.kernel.org, linux-api@vger.kernel.org, linux-kernel@vger.kernel.org On Tue, Apr 05, 2016 at 01:38:33PM -0400, Chris Metcalf wrote: > diff --git a/kernel/signal.c b/kernel/signal.c > index aa9bf00749c1..53e4e62f2778 100644 > --- a/kernel/signal.c > +++ b/kernel/signal.c > @@ -34,6 +34,7 @@ > #include > #include > #include > +#include > > #define CREATE_TRACE_POINTS > #include > @@ -2213,6 +2214,9 @@ relock: > /* Trace actually delivered signals. */ > trace_signal_deliver(signr, &ksig->info, ka); > > + /* Disable task isolation when delivering a signal. */ Why !? Changelog is quiet on this. > + task_isolation_set_flags(current, 0); > + > if (ka->sa.sa_handler == SIG_IGN) /* Do nothing. */ > continue; > if (ka->sa.sa_handler != SIG_DFL) { -- To unsubscribe, send a message with 'unsubscribe linux-mm' in the body to majordomo@kvack.org. For more info on Linux MM, see: http://www.linux-mm.org/ . Don't email: email@kvack.org