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 X-Spam-Level: X-Spam-Status: No, score=-11.0 required=3.0 tests=BAYES_00,DKIMWL_WL_HIGH, DKIM_SIGNED,DKIM_VALID,DKIM_VALID_AU,INCLUDES_CR_TRAILER,MAILING_LIST_MULTI, SPF_HELO_NONE,SPF_PASS,URIBL_BLOCKED autolearn=ham autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id DEBD8C433FE for ; Mon, 7 Dec 2020 13:38:52 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id 843D9233CF for ; Mon, 7 Dec 2020 13:38:52 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1726722AbgLGNig (ORCPT ); Mon, 7 Dec 2020 08:38:36 -0500 Received: from mail.kernel.org ([198.145.29.99]:48158 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1725800AbgLGNig (ORCPT ); Mon, 7 Dec 2020 08:38:36 -0500 Date: Mon, 7 Dec 2020 14:37:52 +0100 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1607348275; bh=tpi4FrWn9qJ8WeL3TVIABxxC99KnkRW8SfGpO/EOKyw=; h=From:To:Cc:Subject:References:In-Reply-To:From; b=FqHagQBvLTKXkqWij/pjjNG5SjFuIJ0zLmVR3+PpPV50tkUGoUH+HRsOC74gjk+Vx b9ZPqZanKpfv9ElKKOxOsihYRA7k8qd5y3cwIuj7mS8w27TtfXHF+hEXoRUONaMj4d AVEmSQ+aqFpoVaCaUdAvcUCsEWzUt0DSHi7rUKFGsm7vR31HeiND0Aa8Kh6xERUHb7 2CxuRt+bKrPwzIbyQEj5nTk42ALvLA09dvtHyHtYZbDxQSt+NrfXqsNDy1znSUnTee uEINEq3TzsZKGmTlF6JgfInWHR+TEo/d6leYjaRx/XoMGyn8S+JHiradKRbeJEU+gq pKjyiCe1UNXvw== From: Frederic Weisbecker To: Thomas Gleixner Cc: LKML , Peter Zijlstra , Paul McKenney , Sebastian Andrzej Siewior Subject: Re: [patch V2 3/9] softirq: Move various protections into inline helpers Message-ID: <20201207133752.GD122233@lothringen> References: <20201204170151.960336698@linutronix.de> <20201204170805.004816169@linutronix.de> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20201204170805.004816169@linutronix.de> Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Fri, Dec 04, 2020 at 06:01:54PM +0100, Thomas Gleixner wrote: > To allow reuse of the bulk of softirq processing code for RT and to avoid > #ifdeffery all over the place, split protections for various code sections > out into inline helpers so the RT variant can just replace them in one go. > > Signed-off-by: Thomas Gleixner Reviewed-by: Frederic Weisbecker