Intel-XE Archive on lore.kernel.org
 help / color / mirror / Atom feed
From: Gustavo Sousa <gustavo.sousa@intel.com>
To: Matt Roper <matthew.d.roper@intel.com>, <intel-xe@lists.freedesktop.org>
Cc: <matthew.d.roper@intel.com>
Subject: Re: [PATCH v2 06/30] drm/xe/gt: Use scope-based cleanup
Date: Thu, 13 Nov 2025 09:26:47 -0300	[thread overview]
Message-ID: <176303680786.3698.2888966281466967422@intel.com> (raw)
In-Reply-To: <20251110232017.1475869-38-matthew.d.roper@intel.com>

Quoting Matt Roper (2025-11-10 20:20:24-03:00)
>Using scope-based cleanup for forcewake and runtime PM allows us to
>reduce or eliminate some of the goto-based error handling and simplify
>several functions.
>
>Signed-off-by: Matt Roper <matthew.d.roper@intel.com>

I provided some suggestions below.  With or without them,

Reviewed-by: Gustavo Sousa <gustavo.sousa@intel.com>

>---
> drivers/gpu/drm/xe/xe_gt.c | 151 ++++++++++++-------------------------
> 1 file changed, 48 insertions(+), 103 deletions(-)
>
>diff --git a/drivers/gpu/drm/xe/xe_gt.c b/drivers/gpu/drm/xe/xe_gt.c
>index 6d479948bf21..e81674c40e57 100644
>--- a/drivers/gpu/drm/xe/xe_gt.c
>+++ b/drivers/gpu/drm/xe/xe_gt.c
>@@ -103,14 +103,13 @@ void xe_gt_sanitize(struct xe_gt *gt)
> 
> static void xe_gt_enable_host_l2_vram(struct xe_gt *gt)
> {
>-        unsigned int fw_ref;
>         u32 reg;
> 
>         if (!XE_GT_WA(gt, 16023588340))
>                 return;
> 
>-        fw_ref = xe_force_wake_get(gt_to_fw(gt), XE_FW_GT);
>-        if (!fw_ref)
>+        CLASS(xe_force_wake, fw_ref)(gt_to_fw(gt), XE_FW_GT);
>+        if (!fw_ref.domains)
>                 return;
> 
>         if (xe_gt_is_main_type(gt)) {
>@@ -120,12 +119,10 @@ static void xe_gt_enable_host_l2_vram(struct xe_gt *gt)
>         }
> 
>         xe_gt_mcr_multicast_write(gt, XEHPC_L3CLOS_MASK(3), 0xF);
>-        xe_force_wake_put(gt_to_fw(gt), fw_ref);
> }
> 
> static void xe_gt_disable_host_l2_vram(struct xe_gt *gt)
> {
>-        unsigned int fw_ref;
>         u32 reg;
> 
>         if (!XE_GT_WA(gt, 16023588340))
>@@ -134,15 +131,13 @@ static void xe_gt_disable_host_l2_vram(struct xe_gt *gt)
>         if (xe_gt_is_media_type(gt))
>                 return;
> 
>-        fw_ref = xe_force_wake_get(gt_to_fw(gt), XE_FW_GT);
>-        if (!fw_ref)
>+        CLASS(xe_force_wake, fw_ref)(gt_to_fw(gt), XE_FW_GT);
>+        if (!fw_ref.domains)
>                 return;
> 
>         reg = xe_gt_mcr_unicast_read_any(gt, XE2_GAMREQSTRM_CTRL);
>         reg &= ~CG_DIS_CNTLBUS;
>         xe_gt_mcr_multicast_write(gt, XE2_GAMREQSTRM_CTRL, reg);
>-
>-        xe_force_wake_put(gt_to_fw(gt), fw_ref);
> }
> 
> static void gt_reset_worker(struct work_struct *w);
>@@ -389,7 +384,6 @@ int xe_gt_record_default_lrcs(struct xe_gt *gt)
> 
> int xe_gt_init_early(struct xe_gt *gt)
> {
>-        unsigned int fw_ref;
>         int err;
> 
>         if (IS_SRIOV_PF(gt_to_xe(gt))) {
>@@ -436,13 +430,12 @@ int xe_gt_init_early(struct xe_gt *gt)
>         if (err)
>                 return err;
> 
>-        fw_ref = xe_force_wake_get(gt_to_fw(gt), XE_FW_GT);
>-        if (!fw_ref)
>+        CLASS(xe_force_wake, fw_ref)(gt_to_fw(gt), XE_FW_GT);
>+        if (!fw_ref.domains)
>                 return -ETIMEDOUT;
> 
>         xe_gt_mcr_init_early(gt);
>         xe_pat_init(gt);
>-        xe_force_wake_put(gt_to_fw(gt), fw_ref);
> 
>         return 0;
> }
>@@ -460,16 +453,15 @@ static void dump_pat_on_error(struct xe_gt *gt)
> 
> static int gt_init_with_gt_forcewake(struct xe_gt *gt)
> {
>-        unsigned int fw_ref;
>         int err;
> 
>-        fw_ref = xe_force_wake_get(gt_to_fw(gt), XE_FW_GT);
>-        if (!fw_ref)
>+        CLASS(xe_force_wake, fw_ref)(gt_to_fw(gt), XE_FW_GT);
>+        if (!fw_ref.domains)
>                 return -ETIMEDOUT;
> 
>         err = xe_uc_init(&gt->uc);
>         if (err)
>-                goto err_force_wake;
>+                return err;
> 
>         xe_gt_topology_init(gt);
>         xe_gt_mcr_init(gt);
>@@ -478,7 +470,7 @@ static int gt_init_with_gt_forcewake(struct xe_gt *gt)
>         if (xe_gt_is_main_type(gt)) {
>                 err = xe_ggtt_init(gt_to_tile(gt)->mem.ggtt);
>                 if (err)
>-                        goto err_force_wake;
>+                        return err;
>                 if (IS_SRIOV_PF(gt_to_xe(gt)))
>                         xe_lmtt_init(&gt_to_tile(gt)->sriov.pf.lmtt);
>         }
>@@ -492,17 +484,17 @@ static int gt_init_with_gt_forcewake(struct xe_gt *gt)
>         err = xe_hw_engines_init_early(gt);
>         if (err) {
>                 dump_pat_on_error(gt);
>-                goto err_force_wake;
>+                return err;
>         }
> 
>         err = xe_hw_engine_class_sysfs_init(gt);
>         if (err)
>-                goto err_force_wake;
>+                return err;
> 
>         /* Initialize CCS mode sysfs after early initialization of HW engines */
>         err = xe_gt_ccs_mode_sysfs_init(gt);
>         if (err)
>-                goto err_force_wake;
>+                return err;
> 
>         /*
>          * Stash hardware-reported version.  Since this register does not exist
>@@ -510,25 +502,16 @@ static int gt_init_with_gt_forcewake(struct xe_gt *gt)
>          */
>         gt->info.gmdid = xe_mmio_read32(&gt->mmio, GMD_ID);
> 
>-        xe_force_wake_put(gt_to_fw(gt), fw_ref);
>         return 0;
>-
>-err_force_wake:
>-        xe_force_wake_put(gt_to_fw(gt), fw_ref);
>-
>-        return err;
> }
> 
> static int gt_init_with_all_forcewake(struct xe_gt *gt)
> {
>-        unsigned int fw_ref;
>         int err;
> 
>-        fw_ref = xe_force_wake_get(gt_to_fw(gt), XE_FORCEWAKE_ALL);
>-        if (!xe_force_wake_ref_has_domain(fw_ref, XE_FORCEWAKE_ALL)) {
>-                err = -ETIMEDOUT;
>-                goto err_force_wake;
>-        }
>+        CLASS(xe_force_wake, fw_ref)(gt_to_fw(gt), XE_FORCEWAKE_ALL);
>+        if (!xe_force_wake_ref_has_domain(fw_ref.domains, XE_FORCEWAKE_ALL))
>+                return -ETIMEDOUT;
> 
>         xe_gt_mcr_set_implicit_defaults(gt);
>         xe_wa_process_gt(gt);
>@@ -537,20 +520,20 @@ static int gt_init_with_all_forcewake(struct xe_gt *gt)
> 
>         err = xe_gt_clock_init(gt);
>         if (err)
>-                goto err_force_wake;
>+                return err;
> 
>         xe_mocs_init(gt);
>         err = xe_execlist_init(gt);
>         if (err)
>-                goto err_force_wake;
>+                return err;
> 
>         err = xe_hw_engines_init(gt);
>         if (err)
>-                goto err_force_wake;
>+                return err;
> 
>         err = xe_uc_init_post_hwconfig(&gt->uc);
>         if (err)
>-                goto err_force_wake;
>+                return err;
> 
>         if (xe_gt_is_main_type(gt)) {
>                 /*
>@@ -561,10 +544,8 @@ static int gt_init_with_all_forcewake(struct xe_gt *gt)
> 
>                         gt->usm.bb_pool = xe_sa_bo_manager_init(gt_to_tile(gt),
>                                                                 IS_DGFX(xe) ? SZ_1M : SZ_512K, 16);
>-                        if (IS_ERR(gt->usm.bb_pool)) {
>-                                err = PTR_ERR(gt->usm.bb_pool);
>-                                goto err_force_wake;
>-                        }
>+                        if (IS_ERR(gt->usm.bb_pool))
>+                                return PTR_ERR(gt->usm.bb_pool);
>                 }
>         }
> 
>@@ -573,12 +554,12 @@ static int gt_init_with_all_forcewake(struct xe_gt *gt)
> 
>                 err = xe_migrate_init(tile->migrate);
>                 if (err)
>-                        goto err_force_wake;
>+                        return err;
>         }
> 
>         err = xe_uc_load_hw(&gt->uc);
>         if (err)
>-                goto err_force_wake;
>+                return err;
> 
>         /* Configure default CCS mode of 1 engine with all resources */
>         if (xe_gt_ccs_mode_enabled(gt)) {
>@@ -592,14 +573,7 @@ static int gt_init_with_all_forcewake(struct xe_gt *gt)
>         if (IS_SRIOV_PF(gt_to_xe(gt)))
>                 xe_gt_sriov_pf_init_hw(gt);
> 
>-        xe_force_wake_put(gt_to_fw(gt), fw_ref);
>-
>         return 0;
>-
>-err_force_wake:
>-        xe_force_wake_put(gt_to_fw(gt), fw_ref);
>-
>-        return err;
> }
> 
> static void xe_gt_fini(void *arg)
>@@ -819,15 +793,17 @@ static int do_gt_restart(struct xe_gt *gt)
> static void gt_reset_worker(struct work_struct *w)
> {
>         struct xe_gt *gt = container_of(w, typeof(*gt), reset.worker);
>-        unsigned int fw_ref;
>         int err;
> 
>+        /* Drop the existing runtime PM reference when exiting this function */

I believe the comment above is kind of already implied. I think I would
prefer to keep the previous comment, i.e.:

    /* Pair with get while enqueueing the work in xe_gt_reset_async() */

, which adds info about where the ref came from.  Hmm, maybe that's
implied as well? Not sure...

>+        guard(xe_pm_runtime_release_only)(gt_to_xe(gt));
>+
>         if (xe_device_wedged(gt_to_xe(gt)))
>-                goto err_pm_put;
>+                return;
> 
>         /* We only support GT resets with GuC submission */
>         if (!xe_device_uc_enabled(gt_to_xe(gt)))
>-                goto err_pm_put;
>+                return;
> 
>         xe_gt_info(gt, "reset started\n");
> 
>@@ -838,8 +814,8 @@ static void gt_reset_worker(struct work_struct *w)
> 
>         xe_gt_sanitize(gt);
> 
>-        fw_ref = xe_force_wake_get(gt_to_fw(gt), XE_FORCEWAKE_ALL);
>-        if (!xe_force_wake_ref_has_domain(fw_ref, XE_FORCEWAKE_ALL)) {
>+        CLASS(xe_force_wake, fw_ref)(gt_to_fw(gt), XE_FORCEWAKE_ALL);
>+        if (!xe_force_wake_ref_has_domain(fw_ref.domains, XE_FORCEWAKE_ALL)) {
>                 err = -ETIMEDOUT;
>                 goto err_out;
>         }
>@@ -863,25 +839,16 @@ static void gt_reset_worker(struct work_struct *w)
>         if (err)
>                 goto err_out;
> 
>-        xe_force_wake_put(gt_to_fw(gt), fw_ref);
>-
>-        /* Pair with get while enqueueing the work in xe_gt_reset_async() */
>-        xe_pm_runtime_put(gt_to_xe(gt));
>-
>         xe_gt_info(gt, "reset done\n");
> 
>         return;
> 
> err_out:

Aren't we are violating one of the expectations of cleanup.h here? Quoting
below:

     * Lastly, given that the benefit of cleanup helpers is removal of
     * "goto", and that the "goto" statement can jump between scopes, the
     * expectation is that usage of "goto" and cleanup helpers is never
     * mixed in the same function. I.e. for a given routine, convert all
     * resources that need a "goto" cleanup to scope-based cleanup, or
     * convert none of them.

That said, I do believe this is a bit too restrictive. In simple cases,
like this one, I believe the mix is okay.

>-        xe_force_wake_put(gt_to_fw(gt), fw_ref);
>         XE_WARN_ON(xe_uc_start(&gt->uc));
> 
> err_fail:
>         xe_gt_err(gt, "reset failed (%pe)\n", ERR_PTR(err));
>         xe_device_declare_wedged(gt_to_xe(gt));
>-
>-err_pm_put:
>-        xe_pm_runtime_put(gt_to_xe(gt));
> }
> 
> void xe_gt_reset_async(struct xe_gt *gt)
>@@ -902,56 +869,42 @@ void xe_gt_reset_async(struct xe_gt *gt)
> 
> void xe_gt_suspend_prepare(struct xe_gt *gt)
> {
>-        unsigned int fw_ref;
>-
>-        fw_ref = xe_force_wake_get(gt_to_fw(gt), XE_FORCEWAKE_ALL);
>-
>+        CLASS(xe_force_wake, fw_ref)(gt_to_fw(gt), XE_FORCEWAKE_ALL);
>         xe_uc_suspend_prepare(&gt->uc);
>-
>-        xe_force_wake_put(gt_to_fw(gt), fw_ref);
> }
> 
> int xe_gt_suspend(struct xe_gt *gt)
> {
>-        unsigned int fw_ref;
>         int err;
> 
>         xe_gt_dbg(gt, "suspending\n");
>         xe_gt_sanitize(gt);
> 
>-        fw_ref = xe_force_wake_get(gt_to_fw(gt), XE_FORCEWAKE_ALL);
>-        if (!xe_force_wake_ref_has_domain(fw_ref, XE_FORCEWAKE_ALL))
>-                goto err_msg;
>+        CLASS(xe_force_wake, fw_ref)(gt_to_fw(gt), XE_FORCEWAKE_ALL);
>+        if (!xe_force_wake_ref_has_domain(fw_ref.domains, XE_FORCEWAKE_ALL)) {
>+                xe_gt_err(gt, "suspend failed (%pe)\n", ERR_PTR(-ETIMEDOUT));

Since we are touching this part, we could add a more specific message
here. Something like "suspend failed due to force wake error: (%pe)\n".

The same suggestion also applies to xe_gt_resume().

>+                return -ETIMEDOUT;
>+        }
> 
>         err = xe_uc_suspend(&gt->uc);
>-        if (err)
>-                goto err_force_wake;
>+        if (err) {
>+                xe_gt_err(gt, "suspend failed (%pe)\n", ERR_PTR(err));
>+                return err;
>+        }
> 
>         xe_gt_idle_disable_pg(gt);
> 
>         xe_gt_disable_host_l2_vram(gt);
> 
>-        xe_force_wake_put(gt_to_fw(gt), fw_ref);
>         xe_gt_dbg(gt, "suspended\n");
> 
>         return 0;
>-
>-err_msg:
>-        err = -ETIMEDOUT;
>-err_force_wake:
>-        xe_force_wake_put(gt_to_fw(gt), fw_ref);
>-        xe_gt_err(gt, "suspend failed (%pe)\n", ERR_PTR(err));
>-
>-        return err;
> }
> 
> void xe_gt_shutdown(struct xe_gt *gt)
> {
>-        unsigned int fw_ref;
>-
>-        fw_ref = xe_force_wake_get(gt_to_fw(gt), XE_FORCEWAKE_ALL);
>+        CLASS(xe_force_wake, fw_ref)(gt_to_fw(gt), XE_FORCEWAKE_ALL);
>         do_gt_reset(gt);
>-        xe_force_wake_put(gt_to_fw(gt), fw_ref);
> }
> 
> /**
>@@ -976,32 +929,24 @@ int xe_gt_sanitize_freq(struct xe_gt *gt)
> 
> int xe_gt_resume(struct xe_gt *gt)
> {
>-        unsigned int fw_ref;
>         int err;
> 
>         xe_gt_dbg(gt, "resuming\n");
>-        fw_ref = xe_force_wake_get(gt_to_fw(gt), XE_FORCEWAKE_ALL);
>-        if (!xe_force_wake_ref_has_domain(fw_ref, XE_FORCEWAKE_ALL))
>-                goto err_msg;
>+        CLASS(xe_force_wake, fw_ref)(gt_to_fw(gt), XE_FORCEWAKE_ALL);
>+        if (!xe_force_wake_ref_has_domain(fw_ref.domains, XE_FORCEWAKE_ALL)) {
>+                xe_gt_err(gt, "resume failed (%pe)\n", ERR_PTR(-ETIMEDOUT));
>+                return -ETIMEDOUT;
>+        }
> 
>         err = do_gt_restart(gt);
>         if (err)
>-                goto err_force_wake;
>+                return err;
> 
>         xe_gt_idle_enable_pg(gt);
> 
>-        xe_force_wake_put(gt_to_fw(gt), fw_ref);
>         xe_gt_dbg(gt, "resumed\n");
> 
>         return 0;
>-
>-err_msg:
>-        err = -ETIMEDOUT;
>-err_force_wake:
>-        xe_force_wake_put(gt_to_fw(gt), fw_ref);
>-        xe_gt_err(gt, "resume failed (%pe)\n", ERR_PTR(err));
>-
>-        return err;
> }
> 
> struct xe_hw_engine *xe_gt_hw_engine(struct xe_gt *gt,
>-- 
>2.51.1
>

  reply	other threads:[~2025-11-13 12:27 UTC|newest]

Thread overview: 74+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2025-11-10 23:20 [PATCH v2 00/30] Scope-based forcewake and runtime PM Matt Roper
2025-11-10 23:20 ` [PATCH v2 01/30] drm/xe/forcewake: Improve kerneldoc Matt Roper
2025-11-12 14:04   ` Gustavo Sousa
2025-11-10 23:20 ` [PATCH v2 02/30] drm/xe/eustall: Store forcewake reference in stream structure Matt Roper
2025-11-12 15:36   ` Gustavo Sousa
2025-11-10 23:20 ` [PATCH v2 03/30] drm/xe/oa: " Matt Roper
2025-11-12 16:11   ` Gustavo Sousa
2025-11-13 17:10   ` Dixit, Ashutosh
2025-11-10 23:20 ` [PATCH v2 04/30] drm/xe/forcewake: Add scope-based cleanup for forcewake Matt Roper
2025-11-12 20:00   ` Gustavo Sousa
2025-11-12 21:01     ` Matt Roper
2025-11-12 21:16     ` Gustavo Sousa
2025-11-10 23:20 ` [PATCH v2 05/30] drm/xe/pm: Add scope-based cleanup helper for runtime PM Matt Roper
2025-11-12 19:53   ` Michal Wajdeczko
2025-11-12 21:48     ` Gustavo Sousa
2025-11-10 23:20 ` [PATCH v2 06/30] drm/xe/gt: Use scope-based cleanup Matt Roper
2025-11-13 12:26   ` Gustavo Sousa [this message]
2025-11-13 22:58     ` Matt Roper
2025-11-10 23:20 ` [PATCH v2 07/30] drm/xe/gt_idle: " Matt Roper
2025-11-13 12:39   ` Gustavo Sousa
2025-11-10 23:20 ` [PATCH v2 08/30] drm/xe/guc: " Matt Roper
2025-11-13 12:46   ` Gustavo Sousa
2025-11-10 23:20 ` [PATCH v2 09/30] drm/xe/guc_pc: " Matt Roper
2025-11-13 13:00   ` Gustavo Sousa
2025-11-10 23:20 ` [PATCH v2 10/30] drm/xe/mocs: " Matt Roper
2025-11-13 13:30   ` Gustavo Sousa
2025-11-13 23:28     ` Matt Roper
2025-11-10 23:20 ` [PATCH v2 11/30] drm/xe/pat: Use scope-based forcewake Matt Roper
2025-11-13 13:37   ` Gustavo Sousa
2025-11-10 23:20 ` [PATCH v2 12/30] drm/xe/pxp: Use scope-based cleanup Matt Roper
2025-11-13 13:40   ` Gustavo Sousa
2025-11-10 23:20 ` [PATCH v2 13/30] drm/xe/gsc: " Matt Roper
2025-11-13 13:46   ` Gustavo Sousa
2025-11-10 23:20 ` [PATCH v2 14/30] drm/xe/device: " Matt Roper
2025-11-13 14:04   ` Gustavo Sousa
2025-11-10 23:20 ` [PATCH v2 15/30] drm/xe/devcoredump: " Matt Roper
2025-11-13 14:14   ` Gustavo Sousa
2025-11-10 23:20 ` [PATCH v2 16/30] drm/xe/display: Use scoped-cleanup Matt Roper
2025-11-13 14:25   ` Gustavo Sousa
2025-11-10 23:20 ` [PATCH v2 17/30] drm/xe: Create scoped cleanup class for force_wake_get_any_engine() Matt Roper
2025-11-13 17:39   ` Gustavo Sousa
2025-11-10 23:20 ` [PATCH v2 18/30] drm/xe/drm_client: Use scope-based cleanup Matt Roper
2025-11-10 23:20 ` [PATCH v2 19/30] drm/xe/gt_debugfs: " Matt Roper
2025-11-13 17:45   ` Gustavo Sousa
2025-11-10 23:20 ` [PATCH v2 20/30] drm/xe/huc: Use scope-based forcewake Matt Roper
2025-11-13 17:46   ` Gustavo Sousa
2025-11-10 23:20 ` [PATCH v2 21/30] drm/xe/query: " Matt Roper
2025-11-13 17:50   ` Gustavo Sousa
2025-11-10 23:20 ` [PATCH v2 22/30] drm/xe/reg_sr: " Matt Roper
2025-11-13 17:51   ` Gustavo Sousa
2025-11-10 23:20 ` [PATCH v2 23/30] drm/xe/vram: " Matt Roper
2025-11-10 23:57   ` [PATCH v2.1 " Matt Roper
2025-11-13 17:52     ` Gustavo Sousa
2025-11-10 23:20 ` [PATCH v2 24/30] drm/xe/bo: Use scope-based runtime PM Matt Roper
2025-11-13 17:54   ` Gustavo Sousa
2025-11-10 23:20 ` [PATCH v2 25/30] drm/xe/ggtt: Use scope-based runtime pm Matt Roper
2025-11-13 17:55   ` Gustavo Sousa
2025-11-10 23:20 ` [PATCH v2 26/30] drm/xe/hwmon: Use scope-based runtime PM Matt Roper
2025-11-13 18:01   ` Gustavo Sousa
2025-11-13 18:05     ` Gustavo Sousa
2025-11-10 23:20 ` [PATCH v2 27/30] drm/xe/sriov: " Matt Roper
2025-11-13 18:09   ` Gustavo Sousa
2025-11-10 23:20 ` [PATCH v2 28/30] drm/xe/tests: " Matt Roper
2025-11-13 18:15   ` Gustavo Sousa
2025-11-10 23:20 ` [PATCH v2 29/30] drm/xe/sysfs: Use scope-based runtime power management Matt Roper
2025-11-13 18:25   ` Gustavo Sousa
2025-11-10 23:20 ` [PATCH v2 30/30] drm/xe/debugfs: Use scope-based runtime PM Matt Roper
2025-11-13 18:30   ` Gustavo Sousa
2025-11-11  0:20 ` ✓ CI.KUnit: success for Scope-based forcewake and runtime PM (rev3) Patchwork
2025-11-11  0:57 ` ✓ Xe.CI.BAT: " Patchwork
2025-11-11 10:50 ` ✗ Xe.CI.Full: failure " Patchwork
2025-11-11 10:57 ` [PATCH v2 00/30] Scope-based forcewake and runtime PM Jani Nikula
2025-11-12 16:01   ` Matt Roper
2025-11-13 22:11 ` Matt Roper

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=176303680786.3698.2888966281466967422@intel.com \
    --to=gustavo.sousa@intel.com \
    --cc=intel-xe@lists.freedesktop.org \
    --cc=matthew.d.roper@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