From: "Lis, Tomasz" <tomasz.lis@intel.com>
To: Matthew Brost <matthew.brost@intel.com>,
<intel-xe@lists.freedesktop.org>
Subject: Re: [PATCH v3 13/36] drm/xe/vf: Make VF recovery run on per-GT worker
Date: Tue, 30 Sep 2025 16:47:40 +0200 [thread overview]
Message-ID: <3d6f978c-0e7c-4ba5-8f22-2a2c99cee2c9@intel.com> (raw)
In-Reply-To: <20250929025542.1486303-14-matthew.brost@intel.com>
On 9/29/2025 4:55 AM, Matthew Brost wrote:
> VF recovery is a per-GT operation, so it makes sense to isolate it to a
> per-GT queue. Scheduling this operation on the same worker as the GT
> reset and TDR not only aligns with this design but also helps avoid race
> conditions, as those operations can also modify the queue state.
>
> v2:
> - Fix lockdep splat (Adam)
> - Use xe_sriov_vf_migration_supported helper
> v3:
> - Drop xe_gt_sriov_ prefix for private functions (Michal)
> - Drop message in xe_gt_sriov_vf_migration_init_early (Michal)
> - Logic rework in vf_post_migration_notify_resfix_done (Michal)
> - Rework init sequence layering (Michal)
One minor remark below, but other than that:
Reviewed-by: Tomasz Lis <tomasz.lis@intel.com>
> Signed-off-by: Matthew Brost <matthew.brost@intel.com>
> ---
> drivers/gpu/drm/xe/xe_gt.c | 6 +
> drivers/gpu/drm/xe/xe_gt_sriov_vf.c | 179 +++++++++++++++-
> drivers/gpu/drm/xe/xe_gt_sriov_vf.h | 3 +-
> drivers/gpu/drm/xe/xe_gt_sriov_vf_types.h | 7 +
> drivers/gpu/drm/xe/xe_sriov_vf.c | 246 ----------------------
> drivers/gpu/drm/xe/xe_sriov_vf.h | 1 -
> drivers/gpu/drm/xe/xe_sriov_vf_types.h | 4 -
> 7 files changed, 182 insertions(+), 264 deletions(-)
>
> diff --git a/drivers/gpu/drm/xe/xe_gt.c b/drivers/gpu/drm/xe/xe_gt.c
> index 3e0ad7e5b5df..5f9ba4caf837 100644
> --- a/drivers/gpu/drm/xe/xe_gt.c
> +++ b/drivers/gpu/drm/xe/xe_gt.c
> @@ -398,6 +398,12 @@ int xe_gt_init_early(struct xe_gt *gt)
> return err;
> }
>
> + if (IS_SRIOV_VF(gt_to_xe(gt))) {
> + err = xe_gt_sriov_vf_init_early(gt);
> + if (err)
> + return err;
> + }
> +
> xe_reg_sr_init(>->reg_sr, "GT", gt_to_xe(gt));
>
> err = xe_wa_gt_init(gt);
> diff --git a/drivers/gpu/drm/xe/xe_gt_sriov_vf.c b/drivers/gpu/drm/xe/xe_gt_sriov_vf.c
> index 71309219a4b7..ae9df9c0876d 100644
> --- a/drivers/gpu/drm/xe/xe_gt_sriov_vf.c
> +++ b/drivers/gpu/drm/xe/xe_gt_sriov_vf.c
> @@ -25,11 +25,15 @@
> #include "xe_guc.h"
> #include "xe_guc_hxg_helpers.h"
> #include "xe_guc_relay.h"
> +#include "xe_guc_submit.h"
> +#include "xe_irq.h"
> #include "xe_lrc.h"
> #include "xe_memirq.h"
> #include "xe_mmio.h"
> +#include "xe_pm.h"
> #include "xe_sriov.h"
> #include "xe_sriov_vf.h"
> +#include "xe_tile_sriov_vf.h"
> #include "xe_uc_fw.h"
> #include "xe_wopcm.h"
>
> @@ -308,13 +312,13 @@ static int guc_action_vf_notify_resfix_done(struct xe_guc *guc)
> }
>
> /**
> - * xe_gt_sriov_vf_notify_resfix_done - Notify GuC about resource fixups apply completed.
> + * vf_notify_resfix_done - Notify GuC about resource fixups apply completed.
> * @gt: the &xe_gt struct instance linked to target GuC
> *
> * Returns: 0 if the operation completed successfully, or a negative error
> * code otherwise.
> */
> -int xe_gt_sriov_vf_notify_resfix_done(struct xe_gt *gt)
> +static int vf_notify_resfix_done(struct xe_gt *gt)
> {
> struct xe_guc *guc = >->uc.guc;
> int err;
> @@ -808,7 +812,7 @@ int xe_gt_sriov_vf_connect(struct xe_gt *gt)
> * xe_gt_sriov_vf_default_lrcs_hwsp_rebase - Update GGTT references in HWSP of default LRCs.
> * @gt: the &xe_gt struct instance
> */
> -void xe_gt_sriov_vf_default_lrcs_hwsp_rebase(struct xe_gt *gt)
> +static void xe_gt_sriov_vf_default_lrcs_hwsp_rebase(struct xe_gt *gt)
> {
> struct xe_hw_engine *hwe;
> enum xe_hw_engine_id id;
> @@ -817,6 +821,26 @@ void xe_gt_sriov_vf_default_lrcs_hwsp_rebase(struct xe_gt *gt)
> xe_default_lrc_update_memirq_regs_with_address(hwe);
> }
>
> +static void vf_start_migration_recovery(struct xe_gt *gt)
> +{
> + bool started;
> +
> + xe_gt_assert(gt, IS_SRIOV_VF(gt_to_xe(gt)));
> +
> + spin_lock(>->sriov.vf.migration.lock);
> +
> + if (!gt->sriov.vf.migration.recovery_queued) {
> + gt->sriov.vf.migration.recovery_queued = true;
> + WRITE_ONCE(gt->sriov.vf.migration.recovery_inprogress, true);
> +
> + started = queue_work(gt->ordered_wq, >->sriov.vf.migration.worker);
> + xe_gt_sriov_info(gt, "VF migration recovery %s\n", started ?
> + "scheduled" : "already in progress");
> + }
> +
> + spin_unlock(>->sriov.vf.migration.lock);
> +}
> +
> /**
> * xe_gt_sriov_vf_migrated_event_handler - Start a VF migration recovery,
> * or just mark that a GuC is ready for it.
> @@ -831,15 +855,8 @@ void xe_gt_sriov_vf_migrated_event_handler(struct xe_gt *gt)
> xe_gt_assert(gt, IS_SRIOV_VF(xe));
> xe_gt_assert(gt, xe_gt_sriov_vf_recovery_inprogress(gt));
>
> - set_bit(gt->info.id, &xe->sriov.vf.migration.gt_flags);
> - /*
> - * We need to be certain that if all flags were set, at least one
> - * thread will notice that and schedule the recovery.
> - */
> - smp_mb__after_atomic();
> -
> xe_gt_sriov_info(gt, "ready for recovery after migration\n");
> - xe_sriov_vf_start_migration_recovery(xe);
> + vf_start_migration_recovery(gt);
> }
>
> static bool vf_is_negotiated(struct xe_gt *gt, u16 major, u16 minor)
> @@ -1175,6 +1192,146 @@ void xe_gt_sriov_vf_print_version(struct xe_gt *gt, struct drm_printer *p)
> pf_version->major, pf_version->minor);
> }
>
> +static void vf_post_migration_shutdown(struct xe_gt *gt)
> +{
> + int ret = 0;
> +
> + spin_lock_irq(>->sriov.vf.migration.lock);
> + gt->sriov.vf.migration.recovery_queued = false;
> + spin_unlock_irq(>->sriov.vf.migration.lock);
> +
> + xe_guc_submit_pause(>->uc.guc);
> + ret |= xe_guc_submit_reset_block(>->uc.guc);
> +
> + if (ret)
> + xe_gt_sriov_info(gt, "migration recovery encountered ongoing reset\n");
> +}
> +
> +static size_t post_migration_scratch_size(struct xe_device *xe)
> +{
> + return max(xe_lrc_reg_size(xe), LRC_WA_BB_SIZE);
> +}
> +
> +static int vf_post_migration_fixups(struct xe_gt *gt)
> +{
> + s64 shift;
> + void *buf;
> + int err;
> +
> + buf = kmalloc(post_migration_scratch_size(gt_to_xe(gt)), GFP_ATOMIC);
> + if (!buf)
> + return -ENOMEM;
> +
> + err = xe_gt_sriov_vf_query_config(gt);
> + if (err)
> + goto out;
> +
> + shift = xe_gt_sriov_vf_ggtt_shift(gt);
> + if (shift) {
> + xe_tile_sriov_vf_fixup_ggtt_nodes(gt_to_tile(gt), shift);
> + xe_gt_sriov_vf_default_lrcs_hwsp_rebase(gt);
> + err = xe_guc_contexts_hwsp_rebase(>->uc.guc, buf);
> + if (err)
> + goto out;
> + }
> +
> +out:
> + kfree(buf);
> + return err;
> +}
> +
> +static void vf_post_migration_kickstart(struct xe_gt *gt)
> +{
> + /*
> + * Make sure interrupts on the new HW are properly set. The GuC IRQ
> + * must be working at this point, since the recovery did started,
> + * but the rest was not enabled using the procedure from spec.
> + */
> + xe_irq_resume(gt_to_xe(gt));
> +
> + xe_guc_submit_reset_unblock(>->uc.guc);
> + xe_guc_submit_unpause(>->uc.guc);
> +}
> +
> +static int vf_post_migration_notify_resfix_done(struct xe_gt *gt)
> +{
> + bool skip_resfix = false;
> +
> + spin_lock_irq(>->sriov.vf.migration.lock);
> + if (gt->sriov.vf.migration.recovery_queued) {
> + skip_resfix = true;
> + xe_gt_sriov_dbg(gt, "another recovery imminent, skipped some notifications\n");
Now as the recovery is per-GT, this message concerns one RESFIX_DONE
notification only.
(though the message will disappear anyway in the future, with double
migration support)
-Tomasz
> + } else {
> + WRITE_ONCE(gt->sriov.vf.migration.recovery_inprogress, false);
> + }
> + spin_unlock_irq(>->sriov.vf.migration.lock);
> +
> + if (skip_resfix)
> + return -EAGAIN;
> +
> + return vf_notify_resfix_done(gt);
> +}
> +
> +static void vf_post_migration_recovery(struct xe_gt *gt)
> +{
> + struct xe_device *xe = gt_to_xe(gt);
> + int err;
> +
> + xe_gt_sriov_dbg(gt, "migration recovery in progress\n");
> +
> + xe_pm_runtime_get(xe);
> + vf_post_migration_shutdown(gt);
> +
> + if (!xe_sriov_vf_migration_supported(xe)) {
> + xe_gt_sriov_err(gt, "migration is not supported\n");
> + err = -ENOTRECOVERABLE;
> + goto fail;
> + }
> +
> + err = vf_post_migration_fixups(gt);
> + if (err)
> + goto fail;
> +
> + vf_post_migration_kickstart(gt);
> + err = vf_post_migration_notify_resfix_done(gt);
> + if (err && err != -EAGAIN)
> + goto fail;
> +
> + xe_pm_runtime_put(xe);
> + xe_gt_sriov_notice(gt, "migration recovery ended\n");
> + return;
> +fail:
> + xe_pm_runtime_put(xe);
> + xe_gt_sriov_err(gt, "migration recovery failed (%pe)\n", ERR_PTR(err));
> + xe_device_declare_wedged(xe);
> +}
> +
> +static void migration_worker_func(struct work_struct *w)
> +{
> + struct xe_gt *gt = container_of(w, struct xe_gt,
> + sriov.vf.migration.worker);
> +
> + vf_post_migration_recovery(gt);
> +}
> +
> +/**
> + * xe_gt_sriov_vf_init_early() - GT VF init early
> + * @gt: the &xe_gt
> + *
> + * Return 0 on success, errno on failure
> + */
> +int xe_gt_sriov_vf_init_early(struct xe_gt *gt)
> +{
> + if (!xe_sriov_vf_migration_supported(gt_to_xe(gt)))
> + return 0;
> +
> + init_rwsem(>->sriov.vf.self_config.lock);
> + spin_lock_init(>->sriov.vf.migration.lock);
> + INIT_WORK(>->sriov.vf.migration.worker, migration_worker_func);
> +
> + return 0;
> +}
> +
> /**
> * xe_gt_sriov_vf_recovery_inprogress() - VF post migration recovery in progress
> * @gt: the &xe_gt
> diff --git a/drivers/gpu/drm/xe/xe_gt_sriov_vf.h b/drivers/gpu/drm/xe/xe_gt_sriov_vf.h
> index bb5f8eace19b..0b0f2a30e67c 100644
> --- a/drivers/gpu/drm/xe/xe_gt_sriov_vf.h
> +++ b/drivers/gpu/drm/xe/xe_gt_sriov_vf.h
> @@ -21,10 +21,9 @@ void xe_gt_sriov_vf_guc_versions(struct xe_gt *gt,
> int xe_gt_sriov_vf_query_config(struct xe_gt *gt);
> int xe_gt_sriov_vf_connect(struct xe_gt *gt);
> int xe_gt_sriov_vf_query_runtime(struct xe_gt *gt);
> -void xe_gt_sriov_vf_default_lrcs_hwsp_rebase(struct xe_gt *gt);
> -int xe_gt_sriov_vf_notify_resfix_done(struct xe_gt *gt);
> void xe_gt_sriov_vf_migrated_event_handler(struct xe_gt *gt);
>
> +int xe_gt_sriov_vf_init_early(struct xe_gt *gt);
> bool xe_gt_sriov_vf_recovery_inprogress(struct xe_gt *gt);
>
> u32 xe_gt_sriov_vf_gmdid(struct xe_gt *gt);
> diff --git a/drivers/gpu/drm/xe/xe_gt_sriov_vf_types.h b/drivers/gpu/drm/xe/xe_gt_sriov_vf_types.h
> index 7b10b8e1e10e..53680a2f188a 100644
> --- a/drivers/gpu/drm/xe/xe_gt_sriov_vf_types.h
> +++ b/drivers/gpu/drm/xe/xe_gt_sriov_vf_types.h
> @@ -8,6 +8,7 @@
>
> #include <linux/rwsem.h>
> #include <linux/types.h>
> +#include <linux/workqueue.h>
> #include "xe_uc_fw_types.h"
>
> /**
> @@ -53,6 +54,12 @@ struct xe_gt_sriov_vf_runtime {
> * xe_gt_sriov_vf_migration - VF migration data.
> */
> struct xe_gt_sriov_vf_migration {
> + /** @migration: VF migration recovery worker */
> + struct work_struct worker;
> + /** @lock: Protects recovery_queued */
> + spinlock_t lock;
> + /** @recovery_queued: VF post migration recovery in queued */
> + bool recovery_queued;
> /** @recovery_inprogress: VF post migration recovery in progress */
> bool recovery_inprogress;
> };
> diff --git a/drivers/gpu/drm/xe/xe_sriov_vf.c b/drivers/gpu/drm/xe/xe_sriov_vf.c
> index da064a1e7419..911d5720917b 100644
> --- a/drivers/gpu/drm/xe/xe_sriov_vf.c
> +++ b/drivers/gpu/drm/xe/xe_sriov_vf.c
> @@ -6,21 +6,12 @@
> #include <drm/drm_debugfs.h>
> #include <drm/drm_managed.h>
>
> -#include "xe_assert.h"
> -#include "xe_device.h"
> #include "xe_gt.h"
> -#include "xe_gt_sriov_printk.h"
> #include "xe_gt_sriov_vf.h"
> #include "xe_guc.h"
> -#include "xe_guc_submit.h"
> -#include "xe_irq.h"
> -#include "xe_lrc.h"
> -#include "xe_pm.h"
> -#include "xe_sriov.h"
> #include "xe_sriov_printk.h"
> #include "xe_sriov_vf.h"
> #include "xe_sriov_vf_ccs.h"
> -#include "xe_tile_sriov_vf.h"
>
> /**
> * DOC: VF restore procedure in PF KMD and VF KMD
> @@ -158,8 +149,6 @@ static void vf_disable_migration(struct xe_device *xe, const char *fmt, ...)
> xe->sriov.vf.migration.enabled = false;
> }
>
> -static void migration_worker_func(struct work_struct *w);
> -
> static void vf_migration_init_early(struct xe_device *xe)
> {
> /*
> @@ -184,8 +173,6 @@ static void vf_migration_init_early(struct xe_device *xe)
> guc_version.major, guc_version.minor);
> }
>
> - INIT_WORK(&xe->sriov.vf.migration.worker, migration_worker_func);
> -
> xe->sriov.vf.migration.enabled = true;
> xe_sriov_dbg(xe, "migration support enabled\n");
> }
> @@ -196,242 +183,9 @@ static void vf_migration_init_early(struct xe_device *xe)
> */
> void xe_sriov_vf_init_early(struct xe_device *xe)
> {
> - struct xe_gt *gt;
> - unsigned int id;
> -
> - for_each_gt(gt, xe, id)
> - init_rwsem(>->sriov.vf.self_config.lock);
> -
> vf_migration_init_early(xe);
> }
>
> -/**
> - * vf_post_migration_shutdown - Stop the driver activities after VF migration.
> - * @xe: the &xe_device struct instance
> - *
> - * After this VM is migrated and assigned to a new VF, it is running on a new
> - * hardware, and therefore many hardware-dependent states and related structures
> - * require fixups. Without fixups, the hardware cannot do any work, and therefore
> - * all GPU pipelines are stalled.
> - * Stop some of kernel activities to make the fixup process faster.
> - */
> -static void vf_post_migration_shutdown(struct xe_device *xe)
> -{
> - struct xe_gt *gt;
> - unsigned int id;
> - int ret = 0;
> -
> - for_each_gt(gt, xe, id) {
> - xe_guc_submit_pause(>->uc.guc);
> - ret |= xe_guc_submit_reset_block(>->uc.guc);
> - }
> -
> - if (ret)
> - drm_info(&xe->drm, "migration recovery encountered ongoing reset\n");
> -}
> -
> -/**
> - * vf_post_migration_kickstart - Re-start the driver activities under new hardware.
> - * @xe: the &xe_device struct instance
> - *
> - * After we have finished with all post-migration fixups, restart the driver
> - * activities to continue feeding the GPU with workloads.
> - */
> -static void vf_post_migration_kickstart(struct xe_device *xe)
> -{
> - struct xe_gt *gt;
> - unsigned int id;
> -
> - /*
> - * Make sure interrupts on the new HW are properly set. The GuC IRQ
> - * must be working at this point, since the recovery did started,
> - * but the rest was not enabled using the procedure from spec.
> - */
> - xe_irq_resume(xe);
> -
> - for_each_gt(gt, xe, id) {
> - xe_guc_submit_reset_unblock(>->uc.guc);
> - xe_guc_submit_unpause(>->uc.guc);
> - }
> -}
> -
> -static bool gt_vf_post_migration_needed(struct xe_gt *gt)
> -{
> - return test_bit(gt->info.id, >_to_xe(gt)->sriov.vf.migration.gt_flags);
> -}
> -
> -/*
> - * Notify GuCs marked in flags about resource fixups apply finished.
> - * @xe: the &xe_device struct instance
> - * @gt_flags: flags marking to which GTs the notification shall be sent
> - */
> -static int vf_post_migration_notify_resfix_done(struct xe_device *xe, unsigned long gt_flags)
> -{
> - struct xe_gt *gt;
> - unsigned int id;
> - int err = 0;
> -
> - for_each_gt(gt, xe, id) {
> - if (!test_bit(id, >_flags))
> - continue;
> - /* skip asking GuC for RESFIX exit if new recovery request arrived */
> - if (gt_vf_post_migration_needed(gt))
> - continue;
> - err = xe_gt_sriov_vf_notify_resfix_done(gt);
> - if (err)
> - break;
> - clear_bit(id, >_flags);
> - }
> -
> - if (gt_flags && !err)
> - drm_dbg(&xe->drm, "another recovery imminent, skipped some notifications\n");
> - return err;
> -}
> -
> -static int vf_get_next_migrated_gt_id(struct xe_device *xe)
> -{
> - struct xe_gt *gt;
> - unsigned int id;
> -
> - for_each_gt(gt, xe, id) {
> - if (test_and_clear_bit(id, &xe->sriov.vf.migration.gt_flags))
> - return id;
> - }
> - return -1;
> -}
> -
> -static size_t post_migration_scratch_size(struct xe_device *xe)
> -{
> - return max(xe_lrc_reg_size(xe), LRC_WA_BB_SIZE);
> -}
> -
> -/**
> - * Perform post-migration fixups on a single GT.
> - *
> - * After migration, GuC needs to be re-queried for VF configuration to check
> - * if it matches previous provisioning. Most of VF provisioning shall be the
> - * same, except GGTT range, since GGTT is not virtualized per-VF. If GGTT
> - * range has changed, we have to perform fixups - shift all GGTT references
> - * used anywhere within the driver. After the fixups in this function succeed,
> - * it is allowed to ask the GuC bound to this GT to continue normal operation.
> - *
> - * Returns: 0 if the operation completed successfully, or a negative error
> - * code otherwise.
> - */
> -static int gt_vf_post_migration_fixups(struct xe_gt *gt)
> -{
> - s64 shift;
> - void *buf;
> - int err;
> -
> - buf = kmalloc(post_migration_scratch_size(gt_to_xe(gt)), GFP_KERNEL);
> - if (!buf)
> - return -ENOMEM;
> -
> - err = xe_gt_sriov_vf_query_config(gt);
> - if (err)
> - goto out;
> -
> - shift = xe_gt_sriov_vf_ggtt_shift(gt);
> - if (shift) {
> - xe_tile_sriov_vf_fixup_ggtt_nodes(gt_to_tile(gt), shift);
> - xe_gt_sriov_vf_default_lrcs_hwsp_rebase(gt);
> - err = xe_guc_contexts_hwsp_rebase(>->uc.guc, buf);
> - if (err)
> - goto out;
> - }
> -
> -out:
> - kfree(buf);
> - return err;
> -}
> -
> -static void vf_post_migration_recovery(struct xe_device *xe)
> -{
> - unsigned long fixed_gts = 0;
> - int id, err;
> -
> - drm_dbg(&xe->drm, "migration recovery in progress\n");
> - xe_pm_runtime_get(xe);
> - vf_post_migration_shutdown(xe);
> -
> - if (!xe_sriov_vf_migration_supported(xe)) {
> - xe_sriov_err(xe, "migration is not supported\n");
> - err = -ENOTRECOVERABLE;
> - goto fail;
> - }
> -
> - while (id = vf_get_next_migrated_gt_id(xe), id >= 0) {
> - struct xe_gt *gt = xe_device_get_gt(xe, id);
> -
> - err = gt_vf_post_migration_fixups(gt);
> - if (err)
> - goto fail;
> -
> - set_bit(id, &fixed_gts);
> - }
> -
> - vf_post_migration_kickstart(xe);
> - err = vf_post_migration_notify_resfix_done(xe, fixed_gts);
> - if (err)
> - goto fail;
> -
> - xe_pm_runtime_put(xe);
> - drm_notice(&xe->drm, "migration recovery ended\n");
> - return;
> -fail:
> - xe_pm_runtime_put(xe);
> - drm_err(&xe->drm, "migration recovery failed (%pe)\n", ERR_PTR(err));
> - xe_device_declare_wedged(xe);
> -}
> -
> -static void migration_worker_func(struct work_struct *w)
> -{
> - struct xe_device *xe = container_of(w, struct xe_device,
> - sriov.vf.migration.worker);
> -
> - vf_post_migration_recovery(xe);
> -}
> -
> -/*
> - * Check if post-restore recovery is coming on any of GTs.
> - * @xe: the &xe_device struct instance
> - *
> - * Return: True if migration recovery worker will soon be running. Any worker currently
> - * executing does not affect the result.
> - */
> -static bool vf_ready_to_recovery_on_any_gts(struct xe_device *xe)
> -{
> - struct xe_gt *gt;
> - unsigned int id;
> -
> - for_each_gt(gt, xe, id) {
> - if (test_bit(id, &xe->sriov.vf.migration.gt_flags))
> - return true;
> - }
> - return false;
> -}
> -
> -/**
> - * xe_sriov_vf_start_migration_recovery - Start VF migration recovery.
> - * @xe: the &xe_device to start recovery on
> - *
> - * This function shall be called only by VF.
> - */
> -void xe_sriov_vf_start_migration_recovery(struct xe_device *xe)
> -{
> - bool started;
> -
> - xe_assert(xe, IS_SRIOV_VF(xe));
> -
> - if (!vf_ready_to_recovery_on_any_gts(xe))
> - return;
> -
> - started = queue_work(xe->sriov.wq, &xe->sriov.vf.migration.worker);
> - drm_info(&xe->drm, "VF migration recovery %s\n", started ?
> - "scheduled" : "already in progress");
> -}
> -
> /**
> * xe_sriov_vf_init_late() - SR-IOV VF late initialization functions.
> * @xe: the &xe_device to initialize
> diff --git a/drivers/gpu/drm/xe/xe_sriov_vf.h b/drivers/gpu/drm/xe/xe_sriov_vf.h
> index 9e752105ec2a..4df95266b261 100644
> --- a/drivers/gpu/drm/xe/xe_sriov_vf.h
> +++ b/drivers/gpu/drm/xe/xe_sriov_vf.h
> @@ -13,7 +13,6 @@ struct xe_device;
>
> void xe_sriov_vf_init_early(struct xe_device *xe);
> int xe_sriov_vf_init_late(struct xe_device *xe);
> -void xe_sriov_vf_start_migration_recovery(struct xe_device *xe);
> bool xe_sriov_vf_migration_supported(struct xe_device *xe);
> void xe_sriov_vf_debugfs_register(struct xe_device *xe, struct dentry *root);
>
> diff --git a/drivers/gpu/drm/xe/xe_sriov_vf_types.h b/drivers/gpu/drm/xe/xe_sriov_vf_types.h
> index 426cc5841958..6a0fd0f5463e 100644
> --- a/drivers/gpu/drm/xe/xe_sriov_vf_types.h
> +++ b/drivers/gpu/drm/xe/xe_sriov_vf_types.h
> @@ -33,10 +33,6 @@ struct xe_device_vf {
>
> /** @migration: VF Migration state data */
> struct {
> - /** @migration.worker: VF migration recovery worker */
> - struct work_struct worker;
> - /** @migration.gt_flags: Per-GT request flags for VF migration recovery */
> - unsigned long gt_flags;
> /**
> * @migration.enabled: flag indicating if migration support
> * was enabled or not due to missing prerequisites
next prev parent reply other threads:[~2025-09-30 14:48 UTC|newest]
Thread overview: 83+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-09-29 2:55 [PATCH v3 00/36] VF migration redesign Matthew Brost
2025-09-29 2:55 ` [PATCH v3 01/36] drm/xe: Add NULL checks to scratch LRC allocation Matthew Brost
2025-09-30 2:06 ` Lis, Tomasz
2025-09-30 22:53 ` Matthew Brost
2025-09-29 2:55 ` [PATCH v3 02/36] drm/xe/vf: Lock querying GGTT config during driver init Matthew Brost
2025-09-29 7:42 ` Michal Wajdeczko
2025-09-29 12:15 ` Matthew Brost
2025-09-30 0:42 ` Lis, Tomasz
2025-09-30 10:25 ` Michal Wajdeczko
2025-09-29 8:13 ` Ville Syrjälä
2025-09-30 13:22 ` Lis, Tomasz
2025-09-29 2:55 ` [PATCH v3 03/36] Revert "drm/xe/vf: Rebase exec queue parallel commands during migration recovery" Matthew Brost
2025-09-30 15:22 ` Michal Wajdeczko
2025-09-29 2:55 ` [PATCH v3 04/36] Revert "drm/xe/vf: Post migration, repopulate ring area for pending request" Matthew Brost
2025-09-30 15:24 ` Michal Wajdeczko
2025-09-29 2:55 ` [PATCH v3 05/36] Revert "drm/xe/vf: Fixup CTB send buffer messages after migration" Matthew Brost
2025-09-30 15:27 ` Michal Wajdeczko
2025-09-29 2:55 ` [PATCH v3 06/36] drm/xe: Save off position in ring in which a job was programmed Matthew Brost
2025-09-29 2:55 ` [PATCH v3 07/36] drm/xe/guc: Track pending-enable source in submission state Matthew Brost
2025-09-29 2:55 ` [PATCH v3 08/36] drm/xe: Track LR jobs in DRM scheduler pending list Matthew Brost
2025-09-29 2:55 ` [PATCH v3 09/36] drm/xe: Don't change LRC ring head on job resubmission Matthew Brost
2025-09-30 2:38 ` Lis, Tomasz
2025-09-29 2:55 ` [PATCH v3 10/36] drm/xe: Make LRC W/A scratch buffer usage consistent Matthew Brost
2025-09-29 2:55 ` [PATCH v3 11/36] drm/xe/guc: Document GuC submission backend Matthew Brost
2025-09-30 3:28 ` Lis, Tomasz
2025-09-30 6:30 ` Matthew Brost
2025-09-29 2:55 ` [PATCH v3 12/36] drm/xe/vf: Add xe_gt_recovery_inprogress helper Matthew Brost
2025-09-29 8:04 ` Michal Wajdeczko
2025-09-29 8:52 ` Matthew Brost
2025-09-29 2:55 ` [PATCH v3 13/36] drm/xe/vf: Make VF recovery run on per-GT worker Matthew Brost
2025-09-30 14:47 ` Lis, Tomasz [this message]
2025-09-29 2:55 ` [PATCH v3 14/36] drm/xe/vf: Abort H2G sends during VF post-migration recovery Matthew Brost
2025-09-29 8:17 ` Michal Wajdeczko
2025-09-29 2:55 ` [PATCH v3 15/36] drm/xe/vf: Remove memory allocations from VF post migration recovery Matthew Brost
2025-09-30 15:00 ` Lis, Tomasz
2025-09-29 2:55 ` [PATCH v3 16/36] drm/xe/vf: Close multi-GT GGTT shift race Matthew Brost
2025-09-29 8:44 ` Michal Wajdeczko
2025-09-29 12:31 ` Matthew Brost
2025-09-29 2:55 ` [PATCH v3 17/36] drm/xe/vf: Teardown VF post migration worker on driver unload Matthew Brost
2025-09-30 16:24 ` Lis, Tomasz
2025-09-29 2:55 ` [PATCH v3 18/36] drm/xe/vf: Don't allow GT reset to be queued during VF post migration recovery Matthew Brost
2025-09-29 9:17 ` Michal Wajdeczko
2025-09-29 12:50 ` Matthew Brost
2025-09-29 2:55 ` [PATCH v3 19/36] drm/xe/vf: Wakeup in GuC backend on " Matthew Brost
2025-09-29 2:55 ` [PATCH v3 20/36] drm/xe/vf: Avoid indefinite blocking in preempt rebind worker for VFs supporting migration Matthew Brost
2025-10-01 13:45 ` Lis, Tomasz
2025-10-01 13:56 ` Lis, Tomasz
2025-09-29 2:55 ` [PATCH v3 21/36] drm/xe/vf: Extra debug on GGTT shift Matthew Brost
2025-09-29 2:55 ` [PATCH v3 22/36] drm/xe/vf: Use GUC_HXG_TYPE_EVENT for GuC context register Matthew Brost
2025-09-29 2:55 ` [PATCH v3 23/36] drm/xe/vf: Flush and stop CTs in VF post migration recovery Matthew Brost
2025-09-29 21:31 ` Michal Wajdeczko
2025-09-29 2:55 ` [PATCH v3 24/36] drm/xe/vf: Reset TLB invalidations during " Matthew Brost
2025-10-01 13:53 ` Lis, Tomasz
2025-09-29 2:55 ` [PATCH v3 25/36] drm/xe/vf: Kickstart after resfix in " Matthew Brost
2025-09-29 2:55 ` [PATCH v3 26/36] drm/xe/vf: Start CTs before resfix " Matthew Brost
2025-09-29 21:49 ` Michal Wajdeczko
2025-09-30 6:26 ` Matthew Brost
2025-09-29 2:55 ` [PATCH v3 27/36] drm/xe/vf: Abort VF post migration recovery on failure Matthew Brost
2025-10-01 14:06 ` Lis, Tomasz
2025-09-29 2:55 ` [PATCH v3 28/36] drm/xe/vf: Replay GuC submission state on pause / unpause Matthew Brost
2025-10-01 14:37 ` Lis, Tomasz
2025-09-29 2:55 ` [PATCH v3 29/36] drm/xe: Move queue init before LRC creation Matthew Brost
2025-10-02 0:44 ` Lis, Tomasz
2025-10-02 7:36 ` Matthew Brost
2025-10-02 14:54 ` Lis, Tomasz
2025-09-29 2:55 ` [PATCH v3 30/36] drm/xe/vf: Add debug prints for GuC replaying state during VF recovery Matthew Brost
2025-10-02 1:02 ` Lis, Tomasz
2025-09-29 2:55 ` [PATCH v3 31/36] drm/xe/vf: Workaround for race condition in GuC firmware during VF pause Matthew Brost
2025-10-02 1:09 ` Lis, Tomasz
2025-10-02 6:12 ` Matthew Brost
2025-09-29 2:55 ` [PATCH v3 32/36] drm/xe: Use PPGTT addresses for TLB invalidation to avoid GGTT fixups Matthew Brost
2025-10-02 1:25 ` Lis, Tomasz
2025-09-29 2:55 ` [PATCH v3 33/36] drm/xe/vf: Use primary GT ordered work queue on media GT on PTL VF Matthew Brost
2025-09-29 2:55 ` [PATCH v3 34/36] drm/xe/vf: Ensure media GT VF recovery runs after primary GT on PTL Matthew Brost
2025-09-29 2:55 ` [PATCH v3 35/36] drm/xe/vf: Rebase CCS save/restore BB GGTT addresses Matthew Brost
2025-09-29 2:55 ` [PATCH v3 36/36] drm/xe/guc: Increase wait timeout to 2sec after BUSY reply from GuC Matthew Brost
2025-09-29 15:17 ` K V P, Satyanarayana
2025-09-30 12:39 ` Matthew Brost
2025-09-30 13:38 ` Michal Wajdeczko
2025-09-30 14:39 ` Matthew Brost
2025-09-29 3:06 ` ✗ CI.checkpatch: warning for VF migration redesign (rev3) Patchwork
2025-09-29 3:08 ` ✓ CI.KUnit: success " Patchwork
2025-09-29 6:28 ` ✗ Xe.CI.Full: failure " Patchwork
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=3d6f978c-0e7c-4ba5-8f22-2a2c99cee2c9@intel.com \
--to=tomasz.lis@intel.com \
--cc=intel-xe@lists.freedesktop.org \
--cc=matthew.brost@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