From: Jessica Zhang <quic_jesszhan@quicinc.com>
To: Dmitry Baryshkov <dmitry.baryshkov@linaro.org>
Cc: "Rob Clark" <robdclark@gmail.com>,
quic_abhinavk@quicinc.com, "Sean Paul" <sean@poorly.run>,
"Marijn Suijten" <marijn.suijten@somainline.org>,
"David Airlie" <airlied@gmail.com>,
"Maarten Lankhorst" <maarten.lankhorst@linux.intel.com>,
"Maxime Ripard" <mripard@kernel.org>,
"Thomas Zimmermann" <tzimmermann@suse.de>,
"Simona Vetter" <simona@ffwll.ch>,
"Simona Vetter" <simona.vetter@ffwll.ch>,
quic_ebharadw@quicinc.com, linux-arm-msm@vger.kernel.org,
dri-devel@lists.freedesktop.org, freedreno@lists.freedesktop.org,
linux-kernel@vger.kernel.org,
"Rob Clark" <robdclark@chromium.org>,
"Ville Syrjälä" <ville.syrjala@linux.intel.com>
Subject: Re: [PATCH v4 18/25] drm/msm/dpu: Reserve resources for CWB
Date: Thu, 9 Jan 2025 13:26:34 -0800 [thread overview]
Message-ID: <a8e6be19-06c8-4f95-a31f-2be5f27f2e6a@quicinc.com> (raw)
In-Reply-To: <jtovhd4zsaumm27gzwlkufqywyr2he36rmo6jjm2vnchkjeugd@fdpws67sjlfx>
On 12/28/2024 8:47 PM, Dmitry Baryshkov wrote:
> On Thu, Dec 26, 2024 at 02:49:28PM -0800, Jessica Zhang wrote:
>>
>>
>> On 12/20/2024 5:07 PM, Dmitry Baryshkov wrote:
>>> On Fri, Dec 20, 2024 at 04:12:29PM -0800, Jessica Zhang wrote:
>>>>
>>>>
>>>> On 12/19/2024 9:52 PM, Dmitry Baryshkov wrote:
>>>>> On Mon, Dec 16, 2024 at 04:43:29PM -0800, Jessica Zhang wrote:
>>>>>> Add support for RM to reserve dedicated CWB PINGPONGs and CWB muxes
>>>>>>
>>>>>> For concurrent writeback, even-indexed CWB muxes must be assigned to
>>>>>> even-indexed LMs and odd-indexed CWB muxes for odd-indexed LMs. The same
>>>>>> even/odd rule applies for dedicated CWB PINGPONGs.
>>>>>>
>>>>>> Track the CWB muxes in the global state and add a CWB-specific helper to
>>>>>> reserve the correct CWB muxes and dedicated PINGPONGs following the
>>>>>> even/odd rule.
>>>>>>
>>>>>> Signed-off-by: Jessica Zhang <quic_jesszhan@quicinc.com>
>>>>>> ---
>>>>>> drivers/gpu/drm/msm/disp/dpu1/dpu_encoder.c | 34 ++++++++++--
>>>>>> drivers/gpu/drm/msm/disp/dpu1/dpu_hw_mdss.h | 2 +
>>>>>> drivers/gpu/drm/msm/disp/dpu1/dpu_kms.h | 1 +
>>>>>> drivers/gpu/drm/msm/disp/dpu1/dpu_rm.c | 83 +++++++++++++++++++++++++++++
>>>>>> 4 files changed, 116 insertions(+), 4 deletions(-)
>>>>>>
>>>>>> diff --git a/drivers/gpu/drm/msm/disp/dpu1/dpu_encoder.c b/drivers/gpu/drm/msm/disp/dpu1/dpu_encoder.c
>>>>>> index a895d48fe81ccc71d265e089992786e8b6268b1b..a95dc1f0c6a422485c7ba98743e944e1a4f43539 100644
>>>>>> --- a/drivers/gpu/drm/msm/disp/dpu1/dpu_encoder.c
>>>>>> +++ b/drivers/gpu/drm/msm/disp/dpu1/dpu_encoder.c
>>>>>> @@ -2,7 +2,7 @@
>>>>>> /*
>>>>>> * Copyright (C) 2013 Red Hat
>>>>>> * Copyright (c) 2014-2018, 2020-2021 The Linux Foundation. All rights reserved.
>>>>>> - * Copyright (c) 2022-2023 Qualcomm Innovation Center, Inc. All rights reserved.
>>>>>> + * Copyright (c) 2022-2024 Qualcomm Innovation Center, Inc. All rights reserved.
>>>>>> *
>>>>>> * Author: Rob Clark <robdclark@gmail.com>
>>>>>> */
>>>>>> @@ -28,6 +28,7 @@
>>>>>> #include "dpu_hw_dsc.h"
>>>>>> #include "dpu_hw_merge3d.h"
>>>>>> #include "dpu_hw_cdm.h"
>>>>>> +#include "dpu_hw_cwb.h"
>>>>>> #include "dpu_formats.h"
>>>>>> #include "dpu_encoder_phys.h"
>>>>>> #include "dpu_crtc.h"
>>>>>> @@ -133,6 +134,9 @@ enum dpu_enc_rc_states {
>>>>>> * @cur_slave: As above but for the slave encoder.
>>>>>> * @hw_pp: Handle to the pingpong blocks used for the display. No.
>>>>>> * pingpong blocks can be different than num_phys_encs.
>>>>>> + * @hw_cwb: Handle to the CWB muxes used for concurrent writeback
>>>>>> + * display. Number of CWB muxes can be different than
>>>>>> + * num_phys_encs.
>>>>>> * @hw_dsc: Handle to the DSC blocks used for the display.
>>>>>> * @dsc_mask: Bitmask of used DSC blocks.
>>>>>> * @intfs_swapped: Whether or not the phys_enc interfaces have been swapped
>>>>>> @@ -177,6 +181,7 @@ struct dpu_encoder_virt {
>>>>>> struct dpu_encoder_phys *cur_master;
>>>>>> struct dpu_encoder_phys *cur_slave;
>>>>>> struct dpu_hw_pingpong *hw_pp[MAX_CHANNELS_PER_ENC];
>>>>>> + struct dpu_hw_cwb *hw_cwb[MAX_CHANNELS_PER_ENC];
>>>>>> struct dpu_hw_dsc *hw_dsc[MAX_CHANNELS_PER_ENC];
>>>>>> unsigned int dsc_mask;
>>>>>> @@ -1138,7 +1143,10 @@ static void dpu_encoder_virt_atomic_mode_set(struct drm_encoder *drm_enc,
>>>>>> struct dpu_hw_blk *hw_pp[MAX_CHANNELS_PER_ENC];
>>>>>> struct dpu_hw_blk *hw_ctl[MAX_CHANNELS_PER_ENC];
>>>>>> struct dpu_hw_blk *hw_dsc[MAX_CHANNELS_PER_ENC];
>>>>>> + struct dpu_hw_blk *hw_cwb[MAX_CHANNELS_PER_ENC];
>>>>>> int num_pp, num_dsc, num_ctl;
>>>>>> + int num_cwb = 0;
>>>>>> + bool is_cwb_encoder;
>>>>>> unsigned int dsc_mask = 0;
>>>>>> int i;
>>>>>> @@ -1152,6 +1160,8 @@ static void dpu_encoder_virt_atomic_mode_set(struct drm_encoder *drm_enc,
>>>>>> priv = drm_enc->dev->dev_private;
>>>>>> dpu_kms = to_dpu_kms(priv->kms);
>>>>>> + is_cwb_encoder = drm_crtc_in_clone_mode(crtc_state) &&
>>>>>> + dpu_enc->disp_info.intf_type == INTF_WB;
>>>>>> global_state = dpu_kms_get_existing_global_state(dpu_kms);
>>>>>> if (IS_ERR_OR_NULL(global_state)) {
>>>>>> @@ -1162,9 +1172,25 @@ static void dpu_encoder_virt_atomic_mode_set(struct drm_encoder *drm_enc,
>>>>>> trace_dpu_enc_mode_set(DRMID(drm_enc));
>>>>>> /* Query resource that have been reserved in atomic check step. */
>>>>>> - num_pp = dpu_rm_get_assigned_resources(&dpu_kms->rm, global_state,
>>>>>> - drm_enc->crtc, DPU_HW_BLK_PINGPONG, hw_pp,
>>>>>> - ARRAY_SIZE(hw_pp));
>>>>>> + if (is_cwb_encoder) {
>>>>>> + num_pp = dpu_rm_get_assigned_resources(&dpu_kms->rm, global_state,
>>>>>> + drm_enc->crtc,
>>>>>> + DPU_HW_BLK_DCWB_PINGPONG,
>>>>>> + hw_pp, ARRAY_SIZE(hw_pp));
>>>>>> + num_cwb = dpu_rm_get_assigned_resources(&dpu_kms->rm, global_state,
>>>>>> + drm_enc->crtc,
>>>>>> + DPU_HW_BLK_CWB,
>>>>>> + hw_cwb, ARRAY_SIZE(hw_cwb));
>>>>>> + } else {
>>>>>> + num_pp = dpu_rm_get_assigned_resources(&dpu_kms->rm, global_state,
>>>>>> + drm_enc->crtc,
>>>>>> + DPU_HW_BLK_PINGPONG, hw_pp,
>>>>>> + ARRAY_SIZE(hw_pp));
>>>>>> + }
>>>>>> +
>>>>>> + for (i = 0; i < num_cwb; i++)
>>>>>> + dpu_enc->hw_cwb[i] = to_dpu_hw_cwb(hw_cwb[i]);
>>>>>> +
>>>>>> num_ctl = dpu_rm_get_assigned_resources(&dpu_kms->rm, global_state,
>>>>>> drm_enc->crtc, DPU_HW_BLK_CTL, hw_ctl, ARRAY_SIZE(hw_ctl));
>>>>>> diff --git a/drivers/gpu/drm/msm/disp/dpu1/dpu_hw_mdss.h b/drivers/gpu/drm/msm/disp/dpu1/dpu_hw_mdss.h
>>>>>> index ba7bb05efe9b8cac01a908e53121117e130f91ec..8d820cd1b5545d247515763039b341184e814e32 100644
>>>>>> --- a/drivers/gpu/drm/msm/disp/dpu1/dpu_hw_mdss.h
>>>>>> +++ b/drivers/gpu/drm/msm/disp/dpu1/dpu_hw_mdss.h
>>>>>> @@ -77,12 +77,14 @@ enum dpu_hw_blk_type {
>>>>>> DPU_HW_BLK_LM,
>>>>>> DPU_HW_BLK_CTL,
>>>>>> DPU_HW_BLK_PINGPONG,
>>>>>> + DPU_HW_BLK_DCWB_PINGPONG,
>>>>>> DPU_HW_BLK_INTF,
>>>>>> DPU_HW_BLK_WB,
>>>>>> DPU_HW_BLK_DSPP,
>>>>>> DPU_HW_BLK_MERGE_3D,
>>>>>> DPU_HW_BLK_DSC,
>>>>>> DPU_HW_BLK_CDM,
>>>>>> + DPU_HW_BLK_CWB,
>>>>>> DPU_HW_BLK_MAX,
>>>>>> };
>>>>>> diff --git a/drivers/gpu/drm/msm/disp/dpu1/dpu_kms.h b/drivers/gpu/drm/msm/disp/dpu1/dpu_kms.h
>>>>>> index 48d756d8f8c6e4ab94b72bac0418320f7dc8cda8..1fc8abda927fc094b369e0d1efc795b71d6a7fcb 100644
>>>>>> --- a/drivers/gpu/drm/msm/disp/dpu1/dpu_kms.h
>>>>>> +++ b/drivers/gpu/drm/msm/disp/dpu1/dpu_kms.h
>>>>>> @@ -128,6 +128,7 @@ struct dpu_global_state {
>>>>>> uint32_t dspp_to_crtc_id[DSPP_MAX - DSPP_0];
>>>>>> uint32_t dsc_to_crtc_id[DSC_MAX - DSC_0];
>>>>>> uint32_t cdm_to_crtc_id;
>>>>>> + uint32_t cwb_to_crtc_id[CWB_MAX - CWB_0];
>>>>>> };
>>>>>> struct dpu_global_state
>>>>>> diff --git a/drivers/gpu/drm/msm/disp/dpu1/dpu_rm.c b/drivers/gpu/drm/msm/disp/dpu1/dpu_rm.c
>>>>>> index 85adaf256b2c705d2d7df378b6ffc0e578f52bc3..ead24bb0ceb5d8ec4705f0d32330294d0b45b216 100644
>>>>>> --- a/drivers/gpu/drm/msm/disp/dpu1/dpu_rm.c
>>>>>> +++ b/drivers/gpu/drm/msm/disp/dpu1/dpu_rm.c
>>>>>> @@ -234,6 +234,55 @@ static int _dpu_rm_get_lm_peer(struct dpu_rm *rm, int primary_idx)
>>>>>> return -EINVAL;
>>>>>> }
>>>>>> +static int _dpu_rm_reserve_cwb_mux_and_pingpongs(struct dpu_rm *rm,
>>>>>> + struct dpu_global_state *global_state,
>>>>>> + uint32_t crtc_id,
>>>>>> + struct msm_display_topology *topology)
>>>>>> +{
>>>>>> + int num_cwb_pp = topology->num_lm, cwb_pp_count = 0;
>>>>>> + int cwb_pp_start_idx = PINGPONG_CWB_0 - PINGPONG_0;
>>>>>> + int cwb_pp_idx[MAX_BLOCKS];
>>>>>> + int cwb_mux_idx[MAX_BLOCKS];
>>>>>> +
>>>>>> + /*
>>>>>> + * Reserve additional dedicated CWB PINGPONG blocks and muxes for each
>>>>>> + * mixer
>>>>>> + *
>>>>>> + * TODO: add support reserving resources for platforms with no
>>>>>> + * PINGPONG_CWB
>>>>>
>>>>> What about doing it other way around: allocate CWBs first as required
>>>>> (even/odd, proper count, etc). Then for each of CWBs allocate a PP block
>>>>> (I think it's enough to simply make CWB blocks have a corresponding PP
>>>>> index as a property). This way the driver can handle both legacy and
>>>>> current platforms.
>>>>
>>>> Hi Dmitry,
>>>>
>>>> Sorry if I'm misunderstanding your suggestion, but the main change needed to
>>>> support platforms with no dedicated PINGPONG_CWB is where in the
>>>> rm->pingpong_blks list to start assigning pingpong blocks for the CWB mux.
>>>> I'm not sure how changing the order in which CWBs and the pingpong blocks
>>>> are assigned will address that.
>>>>
>>>> (FWIW, the only change necessary to add support for non-dedicated
>>>> PINGPONG_CWBs platforms for this function should just be changing the
>>>> initialization value of cwb_pp_start_idx)
>>>
>>> If I remember correctly, we have identified several generations of DPU
>>> wrt. CWB handling:
>>> - 8.1+ (or 8.0+?), DCWB, dedicated PP blocks
>>> - 7.2, dedicated PP_1?
>>> - 5.0+, shared PP blocks
>>> - older DPUs, special handling of PP
>>>
>>> If the driver allocates PP first and then first it has to allocated PP
>>> (in a platform-specific way) and then go from PINGPONG to CWB (in a
>>> platform-specific way). If CWB is allocated first, then you have only
>>> one platform-specific piece of code that gets PINGPONG for the CWB (and
>>> as this function is called after the CWB allocation, the major part of
>>> the CWB / PP allocation is generic).
>>
>> The issue with breaking this into separate helpers/functions is that the CWB
>> mux and PPB indices are dependent on each other. But I agree that we can
>> reserve CWB mux and the PPBs in 2 separate loops within this helper to
>> minimize the special platform-specific handling.
>
> Doesn't it just PPB depend on CWB?
Sorry, poor wording on my part. Was referring specifically to this part
of the logic within the code chunk:
```
cwb_pp_idx[cwb_pp_count] = j;
cwb_mux_idx[cwb_pp_count] = j - cwb_pp_start_idx;
```
The point I wanted to make was that I think we can keep the CWB-specific
reservation of the the PPBs and muxes in this function, but I agree with
your suggestion to reserve the CWBs first and the PPBs second (just in
separate loops rather than separate functions).
>
>
>>
>> Also wanted to note that the comment doc on the PPB odd/even rule is
>> inaccurate -- technically the odd/even rule applies specifically to the CWB
>> mux as odd/even LMs are hardwired to their respective CWB muxes. Will
>> correct the comment doc to be more accurate.
>
> Yes, please fix that.
>
>>
>> Thanks,
>>
>> Jessica Zhang
>>
>
> --
> With best wishes
> Dmitry
next prev parent reply other threads:[~2025-01-09 21:26 UTC|newest]
Thread overview: 77+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-12-17 0:43 [PATCH v4 00/25] drm/msm/dpu: Add Concurrent Writeback Support for DPU 10.x+ Jessica Zhang
2024-12-17 0:43 ` [PATCH v4 01/25] drm: add clone mode check for CRTC Jessica Zhang
2024-12-17 1:49 ` Abhinav Kumar
2024-12-17 17:16 ` Maxime Ripard
2024-12-17 0:43 ` [PATCH v4 02/25] drm/tests: Add test for drm_crtc_in_clone_mode() Jessica Zhang
2024-12-17 2:06 ` Abhinav Kumar
2024-12-17 17:17 ` Maxime Ripard
2024-12-17 0:43 ` [PATCH v4 03/25] drm: Add valid clones check Jessica Zhang
2024-12-17 17:17 ` Maxime Ripard
2024-12-17 0:43 ` [PATCH v4 04/25] drm/tests: Add test for drm_atomic_helper_check_modeset() Jessica Zhang
2024-12-17 12:14 ` Maxime Ripard
2024-12-17 0:43 ` [PATCH v4 05/25] drm/msm/dpu: get rid of struct dpu_rm_requirements Jessica Zhang
2024-12-17 1:26 ` Dmitry Baryshkov
2024-12-17 2:11 ` Abhinav Kumar
2024-12-17 0:43 ` [PATCH v4 06/25] drm/msm/dpu: switch RM to use crtc_id rather than enc_id for allocation Jessica Zhang
2024-12-24 4:45 ` Dmitry Baryshkov
2024-12-24 20:00 ` Dmitry Baryshkov
2025-01-15 5:28 ` Jessica Zhang
2025-01-15 9:56 ` Dmitry Baryshkov
2025-01-16 4:13 ` Jessica Zhang
2025-01-16 7:32 ` Dmitry Baryshkov
2024-12-17 0:43 ` [PATCH v4 07/25] drm/msm/dpu: move resource allocation to CRTC Jessica Zhang
2024-12-17 1:47 ` Abhinav Kumar
2024-12-20 2:32 ` Dmitry Baryshkov
2024-12-20 2:50 ` Dmitry Baryshkov
2024-12-24 5:02 ` Dmitry Baryshkov
2024-12-26 18:14 ` Jessica Zhang
2024-12-17 0:43 ` [PATCH v4 08/25] drm/msm/dpu: fill CRTC resources in dpu_crtc.c Jessica Zhang
2024-12-17 1:39 ` Abhinav Kumar
2024-12-20 2:40 ` Dmitry Baryshkov
2024-12-20 2:52 ` Dmitry Baryshkov
2024-12-17 0:43 ` [PATCH v4 09/25] drm/msm/dpu: Add CWB entry to catalog for SM8650 Jessica Zhang
2024-12-17 0:43 ` [PATCH v4 10/25] drm/msm/dpu: Specify dedicated CWB pingpong blocks Jessica Zhang
2024-12-17 0:43 ` [PATCH v4 11/25] drm/msm/dpu: add devcoredumps for cwb registers Jessica Zhang
2024-12-17 0:43 ` [PATCH v4 12/25] drm/msm/dpu: Add dpu_hw_cwb abstraction for CWB block Jessica Zhang
2024-12-17 0:43 ` [PATCH v4 13/25] drm/msm/dpu: add CWB support to dpu_hw_wb Jessica Zhang
2024-12-17 0:43 ` [PATCH v4 14/25] drm/msm/dpu: Add RM support for allocating CWB Jessica Zhang
2024-12-17 0:43 ` [PATCH v4 15/25] drm/msm/dpu: Add CWB to msm_display_topology Jessica Zhang
2024-12-20 5:03 ` Dmitry Baryshkov
2025-01-03 18:03 ` Jessica Zhang
2025-01-03 18:16 ` Dmitry Baryshkov
2025-01-09 22:34 ` Jessica Zhang
2025-01-10 0:00 ` Dmitry Baryshkov
2025-01-10 0:30 ` Jessica Zhang
2025-01-10 1:42 ` Dmitry Baryshkov
2025-01-10 1:50 ` Jessica Zhang
2025-01-10 2:10 ` Dmitry Baryshkov
2025-01-10 22:08 ` Jessica Zhang
2024-12-17 0:43 ` [PATCH v4 16/25] drm/msm/dpu: Require modeset if clone mode status changes Jessica Zhang
2024-12-20 5:41 ` Dmitry Baryshkov
2024-12-17 0:43 ` [PATCH v4 17/25] drm/msm/dpu: Fail atomic_check if CWB and CDM are enabled Jessica Zhang
2024-12-20 5:44 ` Dmitry Baryshkov
2024-12-26 22:51 ` Jessica Zhang
2024-12-30 23:59 ` Dmitry Baryshkov
2024-12-17 0:43 ` [PATCH v4 18/25] drm/msm/dpu: Reserve resources for CWB Jessica Zhang
2024-12-20 5:52 ` Dmitry Baryshkov
2024-12-21 0:12 ` Jessica Zhang
2024-12-21 1:07 ` Dmitry Baryshkov
2024-12-26 22:49 ` Jessica Zhang
2024-12-29 4:47 ` Dmitry Baryshkov
2025-01-09 21:26 ` Jessica Zhang [this message]
2025-01-09 22:13 ` Dmitry Baryshkov
2025-01-09 22:53 ` Jessica Zhang
2025-01-10 0:02 ` Dmitry Baryshkov
2024-12-17 0:43 ` [PATCH v4 19/25] drm/msm/dpu: Configure CWB in writeback encoder Jessica Zhang
2024-12-20 5:55 ` Dmitry Baryshkov
2024-12-17 0:43 ` [PATCH v4 20/25] drm/msm/dpu: Support CWB in dpu_hw_ctl Jessica Zhang
2024-12-17 0:43 ` [PATCH v4 21/25] drm/msm/dpu: Adjust writeback phys encoder setup for CWB Jessica Zhang
2024-12-17 0:43 ` [PATCH v4 22/25] drm/msm/dpu: Start frame done timer after encoder kickoff Jessica Zhang
2024-12-17 0:43 ` [PATCH v4 23/25] drm/msm/dpu: Skip trigger flush and start for CWB Jessica Zhang
2024-12-17 0:43 ` [PATCH v4 24/25] drm/msm/dpu: Reorder encoder kickoff " Jessica Zhang
2024-12-20 6:00 ` Dmitry Baryshkov
2024-12-17 0:43 ` [PATCH v4 25/25] drm/msm/dpu: Set possible clones for all encoders Jessica Zhang
2024-12-20 5:11 ` [PATCH v4 00/25] drm/msm/dpu: Add Concurrent Writeback Support for DPU 10.x+ Dmitry Baryshkov
2024-12-20 18:46 ` Jessica Zhang
2024-12-24 20:41 ` Dmitry Baryshkov
2025-01-07 23:50 ` (subset) " Dmitry Baryshkov
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=a8e6be19-06c8-4f95-a31f-2be5f27f2e6a@quicinc.com \
--to=quic_jesszhan@quicinc.com \
--cc=airlied@gmail.com \
--cc=dmitry.baryshkov@linaro.org \
--cc=dri-devel@lists.freedesktop.org \
--cc=freedreno@lists.freedesktop.org \
--cc=linux-arm-msm@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=maarten.lankhorst@linux.intel.com \
--cc=marijn.suijten@somainline.org \
--cc=mripard@kernel.org \
--cc=quic_abhinavk@quicinc.com \
--cc=quic_ebharadw@quicinc.com \
--cc=robdclark@chromium.org \
--cc=robdclark@gmail.com \
--cc=sean@poorly.run \
--cc=simona.vetter@ffwll.ch \
--cc=simona@ffwll.ch \
--cc=tzimmermann@suse.de \
--cc=ville.syrjala@linux.intel.com \
/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
all inboxes | Powered by JetHome®