This message generated a parse failure. Raw output follows here. Please use 'back' to navigate. From devnull@lkml.org Mon May 6 00:24:20 2024 Delivery-date: Fri, 01 Feb 2008 02:04:30 +0000 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1752446AbYBACD4 (ORCPT ); Thu, 31 Jan 2008 21:03:56 -0500 Received: from mx2.netapp.com ([216.240.18.37]:35443 "EHLO mx2.netapp.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752296AbYBACDz (ORCPT ); Thu, 31 Jan 2008 21:03:55 -0500 X-Ironport-AV: E=Sophos;i="4.25,287,1199692800"; d="dif'208?scan'208,208";a="148203510" Received: from smtp2.corp.netapp.com ([10.57.159.114]) by mx2-out.netapp.com with ESMTP; 31 Jan 2008 18:03:55 -0800 Received: from svlexrs01.hq.netapp.com (svlexrs01.corp.netapp.com [10.57.156.158]) by smtp2.corp.netapp.com (8.13.1/8.13.1/NTAP-1.6) with ESMTP id m1123sMK013884; Thu, 31 Jan 2008 18:03:54 -0800 (PST) Received: from exsvlrb02.hq.netapp.com ([10.56.8.63]) by svlexrs01.hq.netapp.com with Microsoft SMTPSVC(6.0.3790.1830); Thu, 31 Jan 2008 18:03:54 -0800 Received: from exsvl03.hq.netapp.com ([10.56.8.64]) by exsvlrb02.hq.netapp.com with Microsoft SMTPSVC(6.0.3790.1830); Thu, 31 Jan 2008 18:03:54 -0800 Received: from 10.58.54.122 ([10.58.54.122]) by exsvl03.hq.netapp.com ([10.56.8.64]) with Microsoft Exchange Server HTTP-DAV ; Fri, 1 Feb 2008 02:03:53 +0000 Received: from heimdal.trondhjem.org by exsvl03.hq.netapp.com; 31 Jan 2008 21:03:53 -0500 Subject: Re: Pull request: TASK_KILLABLE From: Trond Myklebust To: Linus Torvalds Cc: Matthew Wilcox , Linux Kernel Mailing List , Liam Howlett , Andrew Morton In-Reply-To: References: <20080129000447.GC31101@parisc-linux.org> <20080131234504.GB25967@parisc-linux.org> <1201830304.3087.2.camel@heimdal.trondhjem.org> Mime-Version: 1.0 X-Mailer: Evolution 2.12.1 X-OriginalArrivalTime: 01 Feb 2008 02:03:54.0083 (UTC) FILETIME=[B2540B30:01C86476] Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-Id: X-Mailing-List: linux-kernel@vger.kernel.org --=-9Ag4SAQxIMG9IexPqIh8 Content-Type: text/plain Content-Transfer-Encoding: 7bit On Fri, 2008-02-01 at 12:54 +1100, Linus Torvalds wrote: > No need to make that one-liner function be a GPL-only export, it's not > like any of the other regular sigpending functions are we export are > GPL-only either (dequeue_signal() is, but that is because we *really* > don't want people using that, and it's really about internal signal > handling behavior). No. It was more in the spirit of "let's not export a function that others may implement trivially using established interfaces". However if you don't care, then here's a replacement. Cheers Trond --=-9Ag4SAQxIMG9IexPqIh8 Content-Description: Content-Type: message/rfc822 Content-Disposition: inline; filename=linux-2.6.24-000-export_fatal_signal_pending.dif From: Trond Myklebust Date: Thu, 31 Jan 2008 20:40:29 -0500 Subject: Ensure that we export __fatal_signal_pending() Message-Id: <1201831343.3087.12.camel@heimdal.trondhjem.org> Mime-Version: 1.0 It may be used by the modules nfs.ko and sunrpc.ko Signed-off-by: Trond Myklebust --- kernel/signal.c | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/kernel/signal.c b/kernel/signal.c index 8054dd4..4333b6d 100644 --- a/kernel/signal.c +++ b/kernel/signal.c @@ -998,6 +998,7 @@ int fastcall __fatal_signal_pending(struct task_struct *tsk) { return sigismember(&tsk->pending.signal, SIGKILL); } +EXPORT_SYMBOL(__fatal_signal_pending); /* * Must be called under rcu_read_lock() or with tasklist_lock read-held. --=-9Ag4SAQxIMG9IexPqIh8-- -- 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/