From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mail-40133.protonmail.ch (mail-40133.protonmail.ch [185.70.40.133]) (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 63A0F1E868 for ; Fri, 7 Mar 2025 13:22:41 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=185.70.40.133 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1741353763; cv=none; b=NlZTUOQo4qL6S2EmpsGsBSonCzqzrRkdX/AaD+mFRI9L/e9kfMLR4TpiAasXDBsEzVU+hx+KRe0RmeXRPpEZQHaBc9pUkBIzdah2OZcAXy12g6LOyxh+9lwP2FkQ1UQsg+gY60OBr4XP+SzA1Fwv7uCb2BgKEwdjKYMBUfwav3k= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1741353763; c=relaxed/simple; bh=+qCe7WBTKUohVXUdu6G/wFKNi5eJP34DteZiEWk3fe0=; h=Date:To:From:Cc:Subject:Message-ID:In-Reply-To:References: MIME-Version:Content-Type; b=VrjGI3r8YUisSdKni6UMHOj/fyxfMZ2p9sGbKDYHOpC/H+HHtf/acUtYzG/J/tTPU/+gqEKlXq+74xnWl3p7QgU2pWYjCFpeWoTf/O98Rr2tj8jJPwylrzKzP7qvwADrXWZmA2R2xErAzBnzW3pE0SX3TcMtwGT3ft8P+tiWRO0= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dmarc=pass (p=quarantine dis=none) header.from=proton.me; spf=pass smtp.mailfrom=proton.me; dkim=pass (2048-bit key) header.d=proton.me header.i=@proton.me header.b=Lo5ZPRF6; arc=none smtp.client-ip=185.70.40.133 Authentication-Results: smtp.subspace.kernel.org; dmarc=pass (p=quarantine dis=none) header.from=proton.me Authentication-Results: smtp.subspace.kernel.org; spf=pass smtp.mailfrom=proton.me Authentication-Results: smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=proton.me header.i=@proton.me header.b="Lo5ZPRF6" DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=proton.me; s=fp3ubbyvt5hw3nfdwfk3gybux4.protonmail; t=1741353759; x=1741612959; bh=+qCe7WBTKUohVXUdu6G/wFKNi5eJP34DteZiEWk3fe0=; h=Date:To:From:Cc:Subject:Message-ID:In-Reply-To:References: Feedback-ID:From:To:Cc:Date:Subject:Reply-To:Feedback-ID: Message-ID:BIMI-Selector:List-Unsubscribe:List-Unsubscribe-Post; b=Lo5ZPRF64O1YK5ceOpbPmTt69Mwd5hUPAFe5xLztox90JUhcNMiiBm78z2vZRYWsn SglVF7xj+FkOMtHD6ljNzJwjHYUAtNfLx6PXgAegw4R4KtZXhPr82OjYKSu/7Wf10P B8+rzvj9e+N/KhLwxAuo3L+uH12iCgpoaFn8y/uLgBQ4v4eflRJVBXWvlWXlz60yuQ cu+a6O2LGoFH3YRg5ZCLYyFqMXgaPTaGdN48vs3fcd+9fyDKcNCOK4YG//A60nm6Wt 6kvzcZEuyhVnV/y5as6ltBhgEUP366VESxfPdOSTBPNuClIX5J5fUg8NIG1IoCz/uf smFTkd47+8c1g== Date: Fri, 07 Mar 2025 13:22:32 +0000 To: Andreas Hindborg , Miguel Ojeda , Anna-Maria Behnsen , Frederic Weisbecker , Thomas Gleixner , Danilo Krummrich From: Benno Lossin Cc: Alex Gaynor , Boqun Feng , Gary Guo , =?utf-8?Q?Bj=C3=B6rn_Roy_Baron?= , Alice Ryhl , Trevor Gross , Lyude Paul , Guangbo Cui <2407018371@qq.com>, Dirk Behme , Daniel Almeida , Tamir Duberstein , Markus Elfring , rust-for-linux@vger.kernel.org, linux-kernel@vger.kernel.org Subject: Re: [PATCH v10 11/13] rust: hrtimer: add `HrTimerMode` Message-ID: In-Reply-To: <20250307-hrtimer-v3-v6-12-rc2-v10-11-0cf7e9491da4@kernel.org> References: <20250307-hrtimer-v3-v6-12-rc2-v10-0-0cf7e9491da4@kernel.org> <20250307-hrtimer-v3-v6-12-rc2-v10-11-0cf7e9491da4@kernel.org> Feedback-ID: 71780778:user:proton X-Pm-Message-ID: f44b3e2c1a9cf3ddff3bdf72c444a75f278b177f Precedence: bulk X-Mailing-List: rust-for-linux@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable On Fri Mar 7, 2025 at 11:11 AM CET, Andreas Hindborg wrote: > Allow selection of timer mode by passing a `HrTimerMode` variant to > `HrTimer::new`. > > Acked-by: Frederic Weisbecker > Reviewed-by: Lyude Paul > Signed-off-by: Andreas Hindborg Reviewed-by: Benno Lossin --- Cheers, Benno