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 lists.ozlabs.org (lists.ozlabs.org [112.213.38.117]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.lore.kernel.org (Postfix) with ESMTPS id E62DFC4828D for ; Tue, 6 Feb 2024 23:22:22 +0000 (UTC) Authentication-Results: lists.ozlabs.org; dkim=fail reason="signature verification failed" (2048-bit key; unprotected) header.d=kernel.org header.i=@kernel.org header.a=rsa-sha256 header.s=k20201202 header.b=Ur6PL279; dkim-atps=neutral Received: from boromir.ozlabs.org (localhost [IPv6:::1]) by lists.ozlabs.org (Postfix) with ESMTP id 4TTzmY4H6fz3cGw for ; Wed, 7 Feb 2024 10:22:21 +1100 (AEDT) Authentication-Results: lists.ozlabs.org; dkim=pass (2048-bit key; unprotected) header.d=kernel.org header.i=@kernel.org header.a=rsa-sha256 header.s=k20201202 header.b=Ur6PL279; dkim-atps=neutral Authentication-Results: lists.ozlabs.org; spf=pass (sender SPF authorized) smtp.mailfrom=kernel.org (client-ip=145.40.73.55; helo=sin.source.kernel.org; envelope-from=frederic@kernel.org; receiver=lists.ozlabs.org) Received: from sin.source.kernel.org (sin.source.kernel.org [145.40.73.55]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits) server-digest SHA256) (No client certificate requested) by lists.ozlabs.org (Postfix) with ESMTPS id 4TTzlc5nWQz2yq4 for ; Wed, 7 Feb 2024 10:21:32 +1100 (AEDT) Received: from smtp.kernel.org (transwarp.subspace.kernel.org [100.75.92.58]) by sin.source.kernel.org (Postfix) with ESMTP id 88258CE179B; Tue, 6 Feb 2024 23:21:30 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id 69075C433F1; Tue, 6 Feb 2024 23:21:29 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1707261689; bh=ithrnW7mrAUwgzefWAlkisiO97xAaMWaVn7JYX2tYuQ=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=Ur6PL279EzOqkACouJUT1+NEejB6pR2/B+UmPX4aDMUq0B4xftyGUNy1qtB/ApPJR +s/NKRjyqDDkteKaEqKfLDes9+B7Jtyam6MLKm7HU3nyMNmXId5kZZmHOKqf/6hwUD qXXlRAnRKZvFjrxcQRB2Jj62sX6RkEacqKVJ861BgLomPDLXTyTGCRt2ttST0JxnOk VbGXS7Eu14TyShXSGKXQ1m9l3nCOaGejscWqBIyOvOMQgAmiHuKVzK2uulDjedYQx4 G+367LOoCM7u2epKasAl1X6/XXmMgsiY2ZMzWqispNj0tbjfBjBRfttWCMYsoVzz6d G7krIZuvpjvWQ== Date: Wed, 7 Feb 2024 00:21:27 +0100 From: Frederic Weisbecker To: Alexander Gordeev Subject: Re: [PATCH 3/5] s390/vtime: remove unused __ARCH_HAS_VTIME_TASK_SWITCH leftover Message-ID: References: MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Disposition: inline Content-Transfer-Encoding: 8bit In-Reply-To: X-BeenThere: linuxppc-dev@lists.ozlabs.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Linux on PowerPC Developers Mail List List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Cc: linux-s390@vger.kernel.org, Vasily Gorbik , Heiko Carstens , linux-kernel@vger.kernel.org, linuxppc-dev@lists.ozlabs.org, Ingo Molnar Errors-To: linuxppc-dev-bounces+linuxppc-dev=archiver.kernel.org@lists.ozlabs.org Sender: "Linuxppc-dev" Le Sun, Jan 28, 2024 at 08:58:52PM +0100, Alexander Gordeev a écrit : > __ARCH_HAS_VTIME_TASK_SWITCH macro is not used anymore. > > Signed-off-by: Alexander Gordeev Reviewed-by: Frederic Weisbecker > --- > arch/s390/include/asm/vtime.h | 2 -- > 1 file changed, 2 deletions(-) > > diff --git a/arch/s390/include/asm/vtime.h b/arch/s390/include/asm/vtime.h > index fe17e448c0c5..561c91c1a87c 100644 > --- a/arch/s390/include/asm/vtime.h > +++ b/arch/s390/include/asm/vtime.h > @@ -2,8 +2,6 @@ > #ifndef _S390_VTIME_H > #define _S390_VTIME_H > > -#define __ARCH_HAS_VTIME_TASK_SWITCH > - > static inline void update_timer_sys(void) > { > S390_lowcore.system_timer += S390_lowcore.last_update_timer - S390_lowcore.exit_timer; > -- > 2.40.1 >