From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from galois.linutronix.de (Galois.linutronix.de [193.142.43.55]) (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 DA717327C18 for ; Wed, 19 Nov 2025 15:57:32 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=193.142.43.55 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1763567855; cv=none; b=eKe/SXaMYP2alFouBNiBuknW+jtnHFrpZLFVmbGBu/J1hslCt1C6Nt8tZKSmkxyuMfhS/HEsGc4+FBDFxG6bI2fWL2gvITbnzIExDlN8foc5b4nf1550KBzq/8HUTJEbsjEQJRVNzD1jYt7uEV9MY1p+Mflnt3GSc/UtOUxG1zE= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1763567855; c=relaxed/simple; bh=kN0IZxMp3rqo0KheKC5LUJ7sY5scRA5VP659FQaWCU8=; h=From:To:Cc:Subject:In-Reply-To:References:Date:Message-ID: MIME-Version:Content-Type; b=OtVmKzk0U6YdhCZp5Dkx6TsvDdMvoOvciKbsZaH8tMJUcifv7ypowdwoVhSDLGhy3wJsFkBBvN2kUtn5TUevl92m6NG4zW2E7hcmPMdilXgSgEsB/09AWbtL7SxWQHFp3hcAyXBOY4O+aQpGBo7vHrSr+7oOqkdOG4R04/i1PKE= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dmarc=pass (p=none dis=none) header.from=linutronix.de; spf=pass smtp.mailfrom=linutronix.de; dkim=pass (2048-bit key) header.d=linutronix.de header.i=@linutronix.de header.b=JOw/O660; dkim=permerror (0-bit key) header.d=linutronix.de header.i=@linutronix.de header.b=jyuKzW0Y; arc=none smtp.client-ip=193.142.43.55 Authentication-Results: smtp.subspace.kernel.org; dmarc=pass (p=none dis=none) header.from=linutronix.de Authentication-Results: smtp.subspace.kernel.org; spf=pass smtp.mailfrom=linutronix.de Authentication-Results: smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=linutronix.de header.i=@linutronix.de header.b="JOw/O660"; dkim=permerror (0-bit key) header.d=linutronix.de header.i=@linutronix.de header.b="jyuKzW0Y" From: Thomas Gleixner DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linutronix.de; s=2020; t=1763567850; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version:content-type:content-type: in-reply-to:in-reply-to:references:references; bh=kN0IZxMp3rqo0KheKC5LUJ7sY5scRA5VP659FQaWCU8=; b=JOw/O660g68jD76dflQkhPlJ0nXIX2oCqamCyM3MutgH8U41murZBv0/9Wpmj19veEcMwt JRmZ9HcRs+kw/bRR+rQBTZGHTPUHGy0G1271VUddjp0QN8EwUWOGW2LZgGNEYhMd8Jyrvm qRxxQnGVosh/+afPKfTXd4LXOJF+YStgk025RTRHPKiAWf8z9PIwX5AUIlc8/hFFTYQYhv lH4dEOY4D/9ntH2AlP/91w45mEVHSmil0W9pXcoYPcm9W77pOGxqhSbB6Tsh9NcB8VVAq4 GO24RhLsiX5qOK8gIWmmKBYZVWCO1e2L3T5O3Fx2eYDlWeVTzBGozmtSOyVa3A== DKIM-Signature: v=1; a=ed25519-sha256; c=relaxed/relaxed; d=linutronix.de; s=2020e; t=1763567850; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version:content-type:content-type: in-reply-to:in-reply-to:references:references; bh=kN0IZxMp3rqo0KheKC5LUJ7sY5scRA5VP659FQaWCU8=; b=jyuKzW0Y6OOvMFmVQecigzna8RHEa2Y75jlj3mt0jRqkJdoY3YNQIvkFyJ1Hnvph3PApZY CpyRgVns28sPXHDg== To: Gabriele Monaco , linux-kernel@vger.kernel.org, Anna-Maria Behnsen , Frederic Weisbecker , Waiman Long Cc: Gabriele Monaco Subject: Re: [PATCH v15 3/7] timers: Use scoped_guard when setting/clearing the tmigr available flag In-Reply-To: <20251113083324.33490-4-gmonaco@redhat.com> References: <20251113083324.33490-1-gmonaco@redhat.com> <20251113083324.33490-4-gmonaco@redhat.com> Date: Wed, 19 Nov 2025 16:57:29 +0100 Message-ID: <87seeakoba.ffs@tglx> Precedence: bulk X-Mailing-List: linux-kernel@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Type: text/plain On Thu, Nov 13 2025 at 09:33, Gabriele Monaco wrote: > Cleanup tmigr_clear_cpu_available() and tmigr_set_cpu_available() to > prepare for easier checks on the available flag. > > Reviewed-by: Frederic Weisbecker > Signed-off-by: Gabriele Monaco Reviewed-by: Thomas Gleixner