From: Igor Korotin <igor.korotin@linux.dev>
To: Danilo Krummrich <dakr@kernel.org>,
gregkh@linuxfoundation.org, rafael@kernel.org,
acourbot@nvidia.com, aliceryhl@google.com,
david.m.ertman@intel.com, ira.weiny@intel.com, leon@kernel.org,
viresh.kumar@linaro.org, m.wilczynski@samsung.com,
ukleinek@kernel.org, bhelgaas@google.com, kwilczynski@kernel.org,
abdiel.janulgue@gmail.com, robin.murphy@arm.com,
markus.probst@posteo.de, ojeda@kernel.org, boqun@kernel.org,
gary@garyguo.net, bjorn3_gh@protonmail.com, lossin@kernel.org,
a.hindborg@kernel.org, tmgross@umich.edu
Cc: driver-core@lists.linux.dev, linux-kernel@vger.kernel.org,
nova-gpu@lists.linux.dev, dri-devel@lists.freedesktop.org,
linux-pm@vger.kernel.org, linux-pwm@vger.kernel.org,
linux-pci@vger.kernel.org, rust-for-linux@vger.kernel.org
Subject: Re: [PATCH 17/24] rust: i2c: make Driver trait lifetime-parameterized
Date: Mon, 4 May 2026 11:18:17 +0100 [thread overview]
Message-ID: <9f324d14-bee4-4943-b282-fe2029a3464d@linux.dev> (raw)
In-Reply-To: <20260427221155.2144848-18-dakr@kernel.org>
On 4/27/2026 11:11 PM, Danilo Krummrich wrote:
> Make i2c::Driver take a lifetime parameter 'a that ties device resources
> to the binding scope.
>
> Internally, Adapter<T: Driver> becomes Adapter<F: ForLt> with a bound
> for<'a> F::Of<'a>: Driver<'a>; module_i2c_driver! wraps the driver type
> in ForLt!() so drivers don't have to.
>
> Signed-off-by: Danilo Krummrich <dakr@kernel.org>
> ---
> rust/kernel/i2c.rs | 116 +++++++++++++++++++-------------
> samples/rust/rust_driver_i2c.rs | 18 ++---
> 2 files changed, 78 insertions(+), 56 deletions(-)
>
> diff --git a/rust/kernel/i2c.rs b/rust/kernel/i2c.rs
> index 08d310aa9d6b..4464146d6c4d 100644
> --- a/rust/kernel/i2c.rs
> +++ b/rust/kernel/i2c.rs
> @@ -92,43 +92,57 @@ macro_rules! i2c_device_table {
> }
>
> /// An adapter for the registration of I2C drivers.
> -pub struct Adapter<T: Driver>(T);
> +///
> +/// `F` is a [`ForLt`](trait@ForLt) type that maps lifetimes to the driver's device
> +/// private data type, i.e. `F::Of<'a>` is the driver struct parameterized by `'a`. The macro
> +/// `module_i2c_driver!` generates this automatically via `ForLt!()`.
> +pub struct Adapter<F>(PhantomData<F>);
>
> // SAFETY:
> // - `bindings::i2c_driver` is a C type declared as `repr(C)`.
> -// - `T` is the type of the driver's device private data.
> +// - `F::Of<'static>` is the stored type of the driver's device private data.
> // - `struct i2c_driver` embeds a `struct device_driver`.
> // - `DEVICE_DRIVER_OFFSET` is the correct byte offset to the embedded `struct device_driver`.
> -unsafe impl<T: Driver + 'static> driver::DriverLayout for Adapter<T> {
> +unsafe impl<F> driver::DriverLayout for Adapter<F>
> +where
> + F: ForLt + 'static,
> + for<'a> F::Of<'a>: Driver<'a>,
> +{
> type DriverType = bindings::i2c_driver;
> - type DriverData = ForLt!(T);
> + type DriverData = F;
> const DEVICE_DRIVER_OFFSET: usize = core::mem::offset_of!(Self::DriverType, driver);
> }
>
> // SAFETY: A call to `unregister` for a given instance of `DriverType` is guaranteed to be valid if
> // a preceding call to `register` has been successful.
> -unsafe impl<T: Driver + 'static> driver::RegistrationOps for Adapter<T> {
> +unsafe impl<F> driver::RegistrationOps for Adapter<F>
> +where
> + F: ForLt + 'static,
> + for<'a> F::Of<'a>: Driver<'a>,
> +{
> unsafe fn register(
> idrv: &Opaque<Self::DriverType>,
> name: &'static CStr,
> module: &'static ThisModule,
> ) -> Result {
> build_assert!(
> - T::ACPI_ID_TABLE.is_some() || T::OF_ID_TABLE.is_some() || T::I2C_ID_TABLE.is_some(),
> + <F::Of<'static> as Driver<'static>>::ACPI_ID_TABLE.is_some()
> + || <F::Of<'static> as Driver<'static>>::OF_ID_TABLE.is_some()
> + || <F::Of<'static> as Driver<'static>>::I2C_ID_TABLE.is_some(),
> "At least one of ACPI/OF/Legacy tables must be present when registering an i2c driver"
> );
>
> - let i2c_table = match T::I2C_ID_TABLE {
> + let i2c_table = match <F::Of<'static> as Driver<'static>>::I2C_ID_TABLE {
> Some(table) => table.as_ptr(),
> None => core::ptr::null(),
> };
>
> - let of_table = match T::OF_ID_TABLE {
> + let of_table = match <F::Of<'static> as Driver<'static>>::OF_ID_TABLE {
> Some(table) => table.as_ptr(),
> None => core::ptr::null(),
> };
>
> - let acpi_table = match T::ACPI_ID_TABLE {
> + let acpi_table = match <F::Of<'static> as Driver<'static>>::ACPI_ID_TABLE {
> Some(table) => table.as_ptr(),
> None => core::ptr::null(),
> };
> @@ -154,7 +168,11 @@ unsafe fn unregister(idrv: &Opaque<Self::DriverType>) {
> }
> }
>
> -impl<T: Driver + 'static> Adapter<T> {
> +impl<F> Adapter<F>
> +where
> + F: ForLt + 'static,
> + for<'a> F::Of<'a>: Driver<'a>,
> +{
> extern "C" fn probe_callback(idev: *mut bindings::i2c_client) -> kernel::ffi::c_int {
> // SAFETY: The I2C bus only ever calls the probe callback with a valid pointer to a
> // `struct i2c_client`.
> @@ -162,13 +180,12 @@ extern "C" fn probe_callback(idev: *mut bindings::i2c_client) -> kernel::ffi::c_
> // INVARIANT: `idev` is valid for the duration of `probe_callback()`.
> let idev = unsafe { &*idev.cast::<I2cClient<device::CoreInternal>>() };
>
> - let info = Self::i2c_id_info(idev)
> - .or_else(|| <Self as driver::Adapter<'_>>::id_info(idev.as_ref()));
> -
> from_result(|| {
> - let data = T::probe(idev, info);
> + let info = Self::i2c_id_info(idev)
> + .or_else(|| <Self as driver::Adapter<'_>>::id_info(idev.as_ref()));
> + let data = <F::Of<'_> as Driver<'_>>::probe(idev, info);
>
> - idev.as_ref().set_drvdata::<ForLt!(T)>(data)?;
> + idev.as_ref().set_drvdata::<F>(data)?;
> Ok(0)
> })
> }
> @@ -178,11 +195,10 @@ extern "C" fn remove_callback(idev: *mut bindings::i2c_client) {
> let idev = unsafe { &*idev.cast::<I2cClient<device::CoreInternal>>() };
>
> // SAFETY: `remove_callback` is only ever called after a successful call to
> - // `probe_callback`, hence it's guaranteed that `I2cClient::set_drvdata()` has been called
> - // and stored a `Pin<KBox<T>>`.
> - let data = unsafe { idev.as_ref().drvdata_borrow::<ForLt!(T)>() };
> + // `probe_callback`, hence it's guaranteed that drvdata has been set.
> + let data = unsafe { idev.as_ref().drvdata_borrow::<F>() };
>
> - T::unbind(idev, data);
> + <F::Of<'_> as Driver<'_>>::unbind(idev, data);
> }
>
> extern "C" fn shutdown_callback(idev: *mut bindings::i2c_client) {
> @@ -190,23 +206,22 @@ extern "C" fn shutdown_callback(idev: *mut bindings::i2c_client) {
> let idev = unsafe { &*idev.cast::<I2cClient<device::CoreInternal>>() };
>
> // SAFETY: `shutdown_callback` is only ever called after a successful call to
> - // `probe_callback`, hence it's guaranteed that `Device::set_drvdata()` has been called
> - // and stored a `Pin<KBox<T>>`.
> - let data = unsafe { idev.as_ref().drvdata_borrow::<ForLt!(T)>() };
> + // `probe_callback`, hence it's guaranteed that drvdata has been set.
> + let data = unsafe { idev.as_ref().drvdata_borrow::<F>() };
>
> - T::shutdown(idev, data);
> + <F::Of<'_> as Driver<'_>>::shutdown(idev, data);
> }
>
> /// The [`i2c::IdTable`] of the corresponding driver.
> - fn i2c_id_table() -> Option<IdTable<<Self as driver::Adapter<'static>>::IdInfo>> {
> - T::I2C_ID_TABLE
> + fn i2c_id_table<'a>() -> Option<IdTable<<F::Of<'a> as Driver<'a>>::IdInfo>> {
> + <F::Of<'a> as Driver<'a>>::I2C_ID_TABLE
> }
>
> /// Returns the driver's private data from the matching entry in the [`i2c::IdTable`], if any.
> ///
> /// If this returns `None`, it means there is no match with an entry in the [`i2c::IdTable`].
> - fn i2c_id_info(dev: &I2cClient) -> Option<&'static <Self as driver::Adapter<'static>>::IdInfo> {
> - let table = Self::i2c_id_table()?;
> + fn i2c_id_info<'a>(dev: &I2cClient) -> Option<&'a <F::Of<'a> as Driver<'a>>::IdInfo> {
> + let table = Self::i2c_id_table::<'a>()?;
>
> // SAFETY:
> // - `table` has static lifetime, hence it's valid for reads
> @@ -225,15 +240,19 @@ fn i2c_id_info(dev: &I2cClient) -> Option<&'static <Self as driver::Adapter<'sta
> }
> }
>
> -impl<'a, T: Driver + 'static> driver::Adapter<'a> for Adapter<T> {
> - type IdInfo = T::IdInfo;
> +impl<'a, F> driver::Adapter<'a> for Adapter<F>
> +where
> + F: ForLt + 'static,
> + F::Of<'a>: Driver<'a>,
> +{
> + type IdInfo = <F::Of<'a> as Driver<'a>>::IdInfo;
>
> fn of_id_table() -> Option<of::IdTable<Self::IdInfo>> {
> - T::OF_ID_TABLE
> + <F::Of<'a> as Driver<'a>>::OF_ID_TABLE
> }
>
> fn acpi_id_table() -> Option<acpi::IdTable<Self::IdInfo>> {
> - T::ACPI_ID_TABLE
> + <F::Of<'a> as Driver<'a>>::ACPI_ID_TABLE
> }
> }
>
> @@ -252,8 +271,11 @@ fn acpi_id_table() -> Option<acpi::IdTable<Self::IdInfo>> {
> /// ```
> #[macro_export]
> macro_rules! module_i2c_driver {
> - ($($f:tt)*) => {
> - $crate::module_driver!(<T>, $crate::i2c::Adapter<T>, { $($f)* });
> + (type: $type:ty, $($rest:tt)*) => {
> + $crate::module_driver!(<T>, $crate::i2c::Adapter<T>, {
> + type: $crate::types::ForLt!($type),
> + $($rest)*
> + });
> };
> }
>
> @@ -271,7 +293,7 @@ macro_rules! module_i2c_driver {
> /// kernel::acpi_device_table!(
> /// ACPI_TABLE,
> /// MODULE_ACPI_TABLE,
> -/// <MyDriver as i2c::Driver>::IdInfo,
> +/// <MyDriver as i2c::Driver<'_>>::IdInfo,
> /// [
> /// (acpi::DeviceId::new(c"LNUXBEEF"), ())
> /// ]
> @@ -280,7 +302,7 @@ macro_rules! module_i2c_driver {
> /// kernel::i2c_device_table!(
> /// I2C_TABLE,
> /// MODULE_I2C_TABLE,
> -/// <MyDriver as i2c::Driver>::IdInfo,
> +/// <MyDriver as i2c::Driver<'_>>::IdInfo,
> /// [
> /// (i2c::DeviceId::new(c"rust_driver_i2c"), ())
> /// ]
> @@ -289,30 +311,30 @@ macro_rules! module_i2c_driver {
> /// kernel::of_device_table!(
> /// OF_TABLE,
> /// MODULE_OF_TABLE,
> -/// <MyDriver as i2c::Driver>::IdInfo,
> +/// <MyDriver as i2c::Driver<'_>>::IdInfo,
> /// [
> /// (of::DeviceId::new(c"test,device"), ())
> /// ]
> /// );
> ///
> -/// impl i2c::Driver for MyDriver {
> +/// impl<'a> i2c::Driver<'a> for MyDriver {
> /// type IdInfo = ();
> /// const I2C_ID_TABLE: Option<i2c::IdTable<Self::IdInfo>> = Some(&I2C_TABLE);
> /// const OF_ID_TABLE: Option<of::IdTable<Self::IdInfo>> = Some(&OF_TABLE);
> /// const ACPI_ID_TABLE: Option<acpi::IdTable<Self::IdInfo>> = Some(&ACPI_TABLE);
> ///
> /// fn probe(
> -/// _idev: &i2c::I2cClient<Core>,
> -/// _id_info: Option<&Self::IdInfo>,
> -/// ) -> impl PinInit<Self, Error> {
> +/// _idev: &'a i2c::I2cClient<Core>,
> +/// _id_info: Option<&'a Self::IdInfo>,
> +/// ) -> impl PinInit<Self, Error> + 'a {
> /// Err(ENODEV)
> /// }
> ///
> -/// fn shutdown(_idev: &i2c::I2cClient<Core>, this: Pin<&Self>) {
> +/// fn shutdown(_idev: &'a i2c::I2cClient<Core>, _this: Pin<&'a Self>) {
> /// }
> /// }
> ///```
> -pub trait Driver: Send {
> +pub trait Driver<'a>: Send {
> /// The type holding information about each device id supported by the driver.
> // TODO: Use `associated_type_defaults` once stabilized:
> //
> @@ -335,9 +357,9 @@ pub trait Driver: Send {
> /// Called when a new i2c client is added or discovered.
> /// Implementers should attempt to initialize the client here.
> fn probe(
> - dev: &I2cClient<device::Core>,
> - id_info: Option<&Self::IdInfo>,
> - ) -> impl PinInit<Self, Error>;
> + dev: &'a I2cClient<device::Core>,
> + id_info: Option<&'a Self::IdInfo>,
> + ) -> impl PinInit<Self, Error> + 'a;
>
> /// I2C driver shutdown.
> ///
> @@ -350,7 +372,7 @@ fn probe(
> /// This callback is distinct from final resource cleanup, as the driver instance remains valid
> /// after it returns. Any deallocation or teardown of driver-owned resources should instead be
> /// handled in `Self::drop`.
> - fn shutdown(dev: &I2cClient<device::Core>, this: Pin<&Self>) {
> + fn shutdown(dev: &'a I2cClient<device::Core>, this: Pin<&'a Self>) {
> let _ = (dev, this);
> }
>
> @@ -364,7 +386,7 @@ fn shutdown(dev: &I2cClient<device::Core>, this: Pin<&Self>) {
> /// operations to gracefully tear down the device.
> ///
> /// Otherwise, release operations for driver resources should be performed in `Self::drop`.
> - fn unbind(dev: &I2cClient<device::Core>, this: Pin<&Self>) {
> + fn unbind(dev: &'a I2cClient<device::Core>, this: Pin<&'a Self>) {
> let _ = (dev, this);
> }
> }
> diff --git a/samples/rust/rust_driver_i2c.rs b/samples/rust/rust_driver_i2c.rs
> index 6be79f9e9fb5..f86c1cf7c786 100644
> --- a/samples/rust/rust_driver_i2c.rs
> +++ b/samples/rust/rust_driver_i2c.rs
> @@ -15,25 +15,25 @@
> kernel::acpi_device_table! {
> ACPI_TABLE,
> MODULE_ACPI_TABLE,
> - <SampleDriver as i2c::Driver>::IdInfo,
> + <SampleDriver as i2c::Driver<'_>>::IdInfo,
> [(acpi::DeviceId::new(c"LNUXBEEF"), 0)]
> }
>
> kernel::i2c_device_table! {
> I2C_TABLE,
> MODULE_I2C_TABLE,
> - <SampleDriver as i2c::Driver>::IdInfo,
> + <SampleDriver as i2c::Driver<'_>>::IdInfo,
> [(i2c::DeviceId::new(c"rust_driver_i2c"), 0)]
> }
>
> kernel::of_device_table! {
> OF_TABLE,
> MODULE_OF_TABLE,
> - <SampleDriver as i2c::Driver>::IdInfo,
> + <SampleDriver as i2c::Driver<'_>>::IdInfo,
> [(of::DeviceId::new(c"test,rust_driver_i2c"), 0)]
> }
>
> -impl i2c::Driver for SampleDriver {
> +impl<'a> i2c::Driver<'a> for SampleDriver {
> type IdInfo = u32;
>
> const ACPI_ID_TABLE: Option<acpi::IdTable<Self::IdInfo>> = Some(&ACPI_TABLE);
> @@ -41,9 +41,9 @@ impl i2c::Driver for SampleDriver {
> const OF_ID_TABLE: Option<of::IdTable<Self::IdInfo>> = Some(&OF_TABLE);
>
> fn probe(
> - idev: &i2c::I2cClient<Core>,
> - info: Option<&Self::IdInfo>,
> - ) -> impl PinInit<Self, Error> {
> + idev: &'a i2c::I2cClient<Core>,
> + info: Option<&'a Self::IdInfo>,
> + ) -> impl PinInit<Self, Error> + 'a {
> let dev = idev.as_ref();
>
> dev_info!(dev, "Probe Rust I2C driver sample.\n");
> @@ -55,11 +55,11 @@ fn probe(
> Ok(Self)
> }
>
> - fn shutdown(idev: &i2c::I2cClient<Core>, _this: Pin<&Self>) {
> + fn shutdown(idev: &'a i2c::I2cClient<Core>, _this: Pin<&'a Self>) {
> dev_info!(idev.as_ref(), "Shutdown Rust I2C driver sample.\n");
> }
>
> - fn unbind(idev: &i2c::I2cClient<Core>, _this: Pin<&Self>) {
> + fn unbind(idev: &'a i2c::I2cClient<Core>, _this: Pin<&'a Self>) {
> dev_info!(idev.as_ref(), "Unbind Rust I2C driver sample.\n");
> }
> }
Acked-by: Igor Korotin <igor.korotin@linux.dev>
Cheers
Igor
next prev parent reply other threads:[~2026-05-04 10:18 UTC|newest]
Thread overview: 37+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-04-27 22:10 [PATCH 00/24] rust: device: Higher-Ranked Lifetime Types for device drivers Danilo Krummrich
2026-04-27 22:10 ` [PATCH 01/24] rust: driver core: drop drvdata before devres release Danilo Krummrich
2026-04-30 9:12 ` Alice Ryhl
2026-04-30 13:32 ` Danilo Krummrich
2026-04-27 22:11 ` [PATCH 02/24] rust: types: add `ForLt` trait for higher-ranked lifetime support Danilo Krummrich
2026-04-27 22:16 ` Danilo Krummrich
2026-04-27 22:11 ` [PATCH 03/24] rust: devres: add ForLt support to Devres Danilo Krummrich
2026-04-28 13:14 ` Danilo Krummrich
2026-04-27 22:11 ` [PATCH 04/24] rust: device: generalize drvdata methods over ForLt Danilo Krummrich
2026-04-27 22:11 ` [PATCH 05/24] rust: driver: make Adapter trait lifetime-parameterized Danilo Krummrich
2026-04-27 22:11 ` [PATCH 06/24] rust: pci: implement Sync for Device<Bound> Danilo Krummrich
2026-04-27 23:52 ` Gary Guo
2026-04-28 10:11 ` Danilo Krummrich
2026-04-27 22:11 ` [PATCH 07/24] rust: platform: " Danilo Krummrich
2026-04-27 22:11 ` [PATCH 08/24] rust: auxiliary: " Danilo Krummrich
2026-04-27 22:11 ` [PATCH 09/24] rust: usb: " Danilo Krummrich
2026-04-27 22:11 ` [PATCH 10/24] rust: device: " Danilo Krummrich
2026-04-27 22:11 ` [PATCH 11/24] rust: pci: make Driver trait lifetime-parameterized Danilo Krummrich
2026-04-27 22:11 ` [PATCH 12/24] rust: platform: " Danilo Krummrich
2026-04-27 22:11 ` [PATCH 13/24] rust: auxiliary: " Danilo Krummrich
2026-04-27 22:11 ` [PATCH 14/24] rust: auxiliary: generalize Registration over ForLt Danilo Krummrich
2026-04-27 22:11 ` [PATCH 15/24] samples: rust: rust_driver_auxiliary: showcase lifetime-bound registration data Danilo Krummrich
2026-04-27 22:11 ` [PATCH 16/24] rust: usb: make Driver trait lifetime-parameterized Danilo Krummrich
2026-04-27 22:11 ` [PATCH 17/24] rust: i2c: " Danilo Krummrich
2026-05-04 10:18 ` Igor Korotin [this message]
2026-04-27 22:11 ` [PATCH 18/24] rust: pci: make Bar lifetime-parameterized Danilo Krummrich
2026-04-27 22:11 ` [PATCH 19/24] rust: io: make IoMem and ExclusiveIoMem lifetime-parameterized Danilo Krummrich
2026-04-27 22:11 ` [PATCH 20/24] samples: rust: rust_driver_pci: use HRT lifetime for Bar Danilo Krummrich
2026-04-27 22:11 ` [PATCH REF 21/24] gpu: nova-core: " Danilo Krummrich
2026-04-27 22:11 ` [PATCH REF 22/24] gpu: nova-core: unregister sysmem flush page from Drop Danilo Krummrich
2026-04-27 22:11 ` [PATCH REF 23/24] gpu: nova-core: replace ARef<Device> with &'a Device in SysmemFlush Danilo Krummrich
2026-04-27 22:11 ` [PATCH REF 24/24] gpu: drm: tyr: use HRT lifetime for IoMem Danilo Krummrich
2026-04-28 9:37 ` [PATCH 00/24] rust: device: Higher-Ranked Lifetime Types for device drivers Uwe Kleine-König
2026-04-28 10:04 ` Danilo Krummrich
2026-04-30 9:14 ` Alice Ryhl
2026-04-30 11:35 ` Alexandre Courbot
2026-04-30 13:36 ` Danilo Krummrich
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=9f324d14-bee4-4943-b282-fe2029a3464d@linux.dev \
--to=igor.korotin@linux.dev \
--cc=a.hindborg@kernel.org \
--cc=abdiel.janulgue@gmail.com \
--cc=acourbot@nvidia.com \
--cc=aliceryhl@google.com \
--cc=bhelgaas@google.com \
--cc=bjorn3_gh@protonmail.com \
--cc=boqun@kernel.org \
--cc=dakr@kernel.org \
--cc=david.m.ertman@intel.com \
--cc=dri-devel@lists.freedesktop.org \
--cc=driver-core@lists.linux.dev \
--cc=gary@garyguo.net \
--cc=gregkh@linuxfoundation.org \
--cc=ira.weiny@intel.com \
--cc=kwilczynski@kernel.org \
--cc=leon@kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-pci@vger.kernel.org \
--cc=linux-pm@vger.kernel.org \
--cc=linux-pwm@vger.kernel.org \
--cc=lossin@kernel.org \
--cc=m.wilczynski@samsung.com \
--cc=markus.probst@posteo.de \
--cc=nova-gpu@lists.linux.dev \
--cc=ojeda@kernel.org \
--cc=rafael@kernel.org \
--cc=robin.murphy@arm.com \
--cc=rust-for-linux@vger.kernel.org \
--cc=tmgross@umich.edu \
--cc=ukleinek@kernel.org \
--cc=viresh.kumar@linaro.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox