From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-1.web.codeaurora.org [10.30.226.201]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id 617131DFE4; Mon, 6 May 2024 10:40:00 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=10.30.226.201 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1714992001; cv=none; b=hhLULRfR8UylHSD31YHuxArH1c29BpQSs2l9du3QA3J2GwBcrmi2w5afXwRBL+b48oW5brfvmhEFvgmtf3Ie0EOmqfQmTaYQaMtJ3bomNewGnMsuVL5frS0v77nwqNcexrQLE5c+XNYjea2/0O33eaAHRyqqJTE90OK7f0d3MQk= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1714992001; c=relaxed/simple; bh=tDfOelPn8V9dkLiL9K3cCCumanrN8V3yDR3cRFRMZtY=; h=Date:From:To:Cc:Subject:Message-ID:References:MIME-Version: Content-Type:Content-Disposition:In-Reply-To; b=Xh+gIt3P1KX5eUbZzj9Spy1JG74RMvvZn15b47W9FfWGKh2A42RFZT6P16Ht8NSYKld36+Wrlx54w+x3o8Fz9iMbFU22/0ExGINENnk66ipTO8CnFpGXP5aY/QviHkCgX85X9oJ9s6FU94+M7GbvOWtfGebbPLw67/BDGGEagLU= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b=DG9IPPL7; arc=none smtp.client-ip=10.30.226.201 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b="DG9IPPL7" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 4B884C116B1; Mon, 6 May 2024 10:40:00 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1714992000; bh=tDfOelPn8V9dkLiL9K3cCCumanrN8V3yDR3cRFRMZtY=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=DG9IPPL7dgNZ7H9WO8QUnHLPphxrExuDCg3YqeidDGxC/dSR3hl6qdtH8/zyL7+U8 ExAPUQ98YXLjwOKywlFmNQrK/fhLHn5bcsgqaEv5z6ipB7r6RM9WykyqfH9Sem25nk tY2hEISXqIzKz7uyHKyDonABJk7BUKB+zP7GktciSfzyNE39ORxXd7t+L3tinYlTzF QfHmn2awxYxbB0aMmziEKAh2fe2mCzcKx4903qVPtL2jaYkAHiPjtKl7XJuEERtwXs Q02dnHMWmVyw+y1SLnjjaTsqew8kt/vQ95pSB1bmjgMh4rfHQDGbWYeytEfOM5samR Dte1gwjR1rxcg== Date: Mon, 6 May 2024 12:39:58 +0200 From: Frederic Weisbecker To: Valentin Schneider Cc: rcu@vger.kernel.org, linux-kernel@vger.kernel.org, "Paul E. McKenney" , Peter Zijlstra , Neeraj Upadhyay , Joel Fernandes , Josh Triplett , Boqun Feng , Steven Rostedt , Mathieu Desnoyers , Lai Jiangshan , Zqiang Subject: Re: [PATCH v2 02/27] context_tracking, rcu: Rename RCU_DYNTICKS_IDX into CT_RCU_WATCHING Message-ID: References: <20240430091740.1826862-1-vschneid@redhat.com> <20240430091740.1826862-3-vschneid@redhat.com> Precedence: bulk X-Mailing-List: linux-kernel@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Disposition: inline Content-Transfer-Encoding: 8bit In-Reply-To: <20240430091740.1826862-3-vschneid@redhat.com> Le Tue, Apr 30, 2024 at 11:17:06AM +0200, Valentin Schneider a écrit : > The symbols relating to the CT_STATE part of context_tracking.state are now > all prefixed with CT_STATE. > > The RCU dynticks counter part of that atomic variable still involves > symbols with different prefixes, align them all to be prefixed with > CT_RCU_WATCHING. > > Suggested-by: Frederic Weisbecker Actually it was suggested by Paul :-) > Signed-off-by: Valentin Schneider Reviewed-by: Frederic Weisbecker