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 70E245661; Wed, 9 Jul 2025 20:18:23 +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=1752092303; cv=none; b=J1lPhZfhBf+yKy5Sz5cP3ha2BUZLpUx3Mqusovo8ppusftf0n0NongsHDeAU3Hi076mk/1JHLEBy6jnFf19gicOvpFSlkphQSm9ShDPkIBy0cdaqLrLXTWWA0dXT6QqEEWU6dyNz0qAvxUqcnTON3HjjUAzZQFNpjw2FGDGvcDU= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1752092303; c=relaxed/simple; bh=6CR39NgMbcKd+hNEk754/31daJAAsaoy5EewA9veMuM=; h=Mime-Version:Content-Type:Date:Message-Id:Cc:Subject:From:To: References:In-Reply-To; b=j9XiYBtrX6Vy3P5BRWHoo8IkFJdQX3e+vc8LrlvpEwUS4CskfcYdzRbE36+yIVmnzXgivhOsmErApzOGGMPXwRUZTntdgRPRqQF6P+9SyOfu+WGks6r1UTGXh9yd5t/g2TeWcbkbQNyewspdwCWz7zmgCn3BAExPpkLYEbog7zA= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b=Pe4a+AP/; 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="Pe4a+AP/" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 7AC1EC4CEEF; Wed, 9 Jul 2025 20:18:18 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1752092303; bh=6CR39NgMbcKd+hNEk754/31daJAAsaoy5EewA9veMuM=; h=Date:Cc:Subject:From:To:References:In-Reply-To:From; b=Pe4a+AP/AhHZk8t3rcsQ/1og7b4y1QwCzYv9LFgXa2mAX2gu6d7A0Xs9OyPXQZy7K 5VFRoHNeV9ZcKEPC0jgo5/NfIB64qHe7+tT6ijzH57rfE3sDK03oZ/8iyee9gBS+yr 36Ec820desW6oCWxV8dvLg1756m/lIaPWuxkVrYiTiAK42zKPeN36M7nJINbjJ3yGp PgOhN82d0Z/wsQV2oDvoi3wwkO2m0XjGEGDumc49dZ3z026mBGcsBAbGEXOaYp9Xg8 vwR/AFk/vyVRa/PRYs22GULSAX62oY0DYSNTQ0wO/QLVUKLTWGLhBuX3st95jJNXNu Olt8kO8GVPGcA== Precedence: bulk X-Mailing-List: linux-block@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: Mime-Version: 1.0 Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset=UTF-8 Date: Wed, 09 Jul 2025 22:18:16 +0200 Message-Id: Cc: , , , , , , Subject: Re: [PATCH 7/9] rust: pin-init: use `kernel::{fmt,prelude::fmt!}` From: "Benno Lossin" To: "Tamir Duberstein" , "Danilo Krummrich" , "David Airlie" , "Simona Vetter" , "Miguel Ojeda" , "Alex Gaynor" , "Boqun Feng" , "Gary Guo" , =?utf-8?q?Bj=C3=B6rn_Roy_Baron?= , "Andreas Hindborg" , "Alice Ryhl" , "Trevor Gross" , "Jens Axboe" , "Greg Kroah-Hartman" , "Rafael J. Wysocki" , "Brendan Higgins" , "David Gow" , "Rae Moar" X-Mailer: aerc 0.20.1 References: <20250709-core-cstr-fanout-1-v1-0-64308e7203fc@gmail.com> <20250709-core-cstr-fanout-1-v1-7-64308e7203fc@gmail.com> In-Reply-To: <20250709-core-cstr-fanout-1-v1-7-64308e7203fc@gmail.com> On Wed Jul 9, 2025 at 10:00 PM CEST, Tamir Duberstein wrote: > Reduce coupling to implementation details of the formatting machinery by > avoiding direct use for `core`'s formatting traits and macros. > > Acked-by: Greg Kroah-Hartman > Reviewed-by: Alice Ryhl > Signed-off-by: Tamir Duberstein > --- > rust/kernel/init.rs | 4 ++-- > 1 file changed, 2 insertions(+), 2 deletions(-) I usually prefix patches to init.rs with `rust: init`. I'll fix it up when picking the patch or Miguel can do it if he takes it: Acked-by: Benno Lossin --- Cheers, Benno