From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from mail.librecores.org (lists.librecores.org [88.198.125.70]) by smtp.lore.kernel.org (Postfix) with ESMTP id 7002BC46467 for ; Tue, 3 Jan 2023 07:39:00 +0000 (UTC) Received: from [172.31.1.100] (localhost.localdomain [127.0.0.1]) by mail.librecores.org (Postfix) with ESMTP id 03D3924992; Tue, 3 Jan 2023 08:38:59 +0100 (CET) Received: from ams.source.kernel.org (ams.source.kernel.org [145.40.68.75]) by mail.librecores.org (Postfix) with ESMTPS id E4B0C248C9 for ; Tue, 3 Jan 2023 08:38:56 +0100 (CET) Received: from smtp.kernel.org (relay.kernel.org [52.25.139.140]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ams.source.kernel.org (Postfix) with ESMTPS id 50408B80E13; Tue, 3 Jan 2023 07:38:56 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id AB87DC433F0; Tue, 3 Jan 2023 07:38:54 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1672731535; bh=OIAuLBFh3tQray9pX2s4rXk9edPs0djBJtbs4qG7cXY=; h=Subject:To:Cc:From:Date:From; b=yZB896xMic8EPapniSfZrAi94pMr95mVU5UV8/NvBKEi16t+5ckcfkFa2aQED5urR prsI+1PSufVepL5DuJpcZyy4F72fZxzEK0RoC9H+BmT4/Oycr0TyypVlPDX0r+Tvu5 QI7lpQzEbSx5XoyDO/JWPjD0orq8DMvEq+GxHHWk= Subject: Patch "openrisc: add support for TIF_NOTIFY_SIGNAL" has been added to the 5.10-stable tree To: axboe@kernel.dk, gregkh@linuxfoundation.org, openrisc@lists.librecores.org, shorne@gmail.com From: Date: Tue, 03 Jan 2023 08:36:30 +0100 Message-ID: <1672731390163127@kroah.com> MIME-Version: 1.0 Content-Type: text/plain; charset=ANSI_X3.4-1968 Content-Transfer-Encoding: 8bit X-stable: commit X-Patchwork-Hint: ignore X-BeenThere: openrisc@lists.librecores.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: Discussion around the OpenRISC processor List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Cc: stable-commits@vger.kernel.org Errors-To: openrisc-bounces@lists.librecores.org Sender: "OpenRISC" This is a note to let you know that I've just added the patch titled openrisc: add support for TIF_NOTIFY_SIGNAL to the 5.10-stable tree which can be found at: http://www.kernel.org/git/?p=linux/kernel/git/stable/stable-queue.git;a=summary The filename of the patch is: openrisc-add-support-for-tif_notify_signal.patch and it can be found in the queue-5.10 subdirectory. If you, or anyone else, feels it should not be added to the stable tree, please let know about it. >From 64cef01754a4419e13f0f5f14ec4a9e181bffbe8 Mon Sep 17 00:00:00 2001 From: Jens Axboe Date: Fri, 9 Oct 2020 15:24:46 -0600 Subject: openrisc: add support for TIF_NOTIFY_SIGNAL From: Jens Axboe [ Upstream commit e181c0aa2e532af2b17128fbde699f8578cc0562 ] Wire up TIF_NOTIFY_SIGNAL handling for openrisc. Cc: openrisc@lists.librecores.org Acked-by: Stafford Horne Signed-off-by: Jens Axboe Signed-off-by: Greg Kroah-Hartman --- arch/openrisc/include/asm/thread_info.h | 2 ++ arch/openrisc/kernel/signal.c | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) --- a/arch/openrisc/include/asm/thread_info.h +++ b/arch/openrisc/include/asm/thread_info.h @@ -98,6 +98,7 @@ register struct thread_info *current_thr #define TIF_SINGLESTEP 4 /* restore singlestep on return to user * mode */ +#define TIF_NOTIFY_SIGNAL 5 /* signal notifications exist */ #define TIF_SYSCALL_TRACEPOINT 8 /* for ftrace syscall instrumentation */ #define TIF_RESTORE_SIGMASK 9 #define TIF_POLLING_NRFLAG 16 /* true if poll_idle() is polling * TIF_NEED_RESCHED @@ -109,6 +110,7 @@ register struct thread_info *current_thr #define _TIF_SIGPENDING (1<