From: "Piotr Piórkowski" <piotr.piorkowski@intel.com>
To: Michal Wajdeczko <michal.wajdeczko@intel.com>
Cc: <intel-xe@lists.freedesktop.org>
Subject: Re: [PATCH 12/13] drm/xe/pf: Extract helpers for bulk EQ/PT provisioning
Date: Thu, 2 Apr 2026 17:57:11 +0200 [thread overview]
Message-ID: <20260402155711.fmnsw2iuovea2xjd@intel.com> (raw)
In-Reply-To: <20260330204046.567-13-michal.wajdeczko@intel.com>
Michal Wajdeczko <michal.wajdeczko@intel.com> wrote on pon [2026-mar-30 22:40:43 +0200]:
> We already have functions to bulk provision execution quantum and
> preemption timeout, but they are applying changes to all possible
> VFs, while in upcoming patch we would like to provision only subset
> of available VFs.
>
> Signed-off-by: Michal Wajdeczko <michal.wajdeczko@intel.com>
> ---
> drivers/gpu/drm/xe/xe_gt_sriov_pf_config.c | 66 +++++++++++++---------
> 1 file changed, 40 insertions(+), 26 deletions(-)
>
> diff --git a/drivers/gpu/drm/xe/xe_gt_sriov_pf_config.c b/drivers/gpu/drm/xe/xe_gt_sriov_pf_config.c
> index 680ea73d1ce3..7f85d6629fec 100644
> --- a/drivers/gpu/drm/xe/xe_gt_sriov_pf_config.c
> +++ b/drivers/gpu/drm/xe/xe_gt_sriov_pf_config.c
> @@ -2193,34 +2193,41 @@ u32 xe_gt_sriov_pf_config_get_exec_quantum(struct xe_gt *gt, unsigned int vfid)
> return pf_get_exec_quantum(gt, vfid);
> }
>
> -/**
> - * xe_gt_sriov_pf_config_bulk_set_exec_quantum_locked() - Configure EQ for PF and VFs.
> - * @gt: the &xe_gt to configure
> - * @exec_quantum: requested execution quantum in milliseconds (0 is infinity)
> - *
> - * This function can only be called on PF with the master mutex hold.
> - *
> - * Return: 0 on success or a negative error code on failure.
> - */
> -int xe_gt_sriov_pf_config_bulk_set_exec_quantum_locked(struct xe_gt *gt, u32 exec_quantum)
> +static int pf_bulk_set_exec_quantum(struct xe_gt *gt, u32 exec_quantum,
> + unsigned int first_vf, unsigned int num_vfs)
> {
> - unsigned int totalvfs = xe_gt_sriov_pf_get_totalvfs(gt);
> unsigned int n;
> int err = 0;
>
> lockdep_assert_held(xe_gt_sriov_pf_master_mutex(gt));
>
> - for (n = 0; n <= totalvfs; n++) {
> + for (n = first_vf; n < first_vf + num_vfs; n++) {
> err = pf_provision_exec_quantum(gt, VFID(n), exec_quantum);
> if (err)
> break;
> }
>
> - return pf_config_bulk_set_u32_done(gt, 0, 1 + totalvfs, exec_quantum,
> + return pf_config_bulk_set_u32_done(gt, first_vf, num_vfs, exec_quantum,
> pf_get_exec_quantum, "execution quantum",
> exec_quantum_unit, n, err);
> }
>
> +/**
> + * xe_gt_sriov_pf_config_bulk_set_exec_quantum_locked() - Configure EQ for PF and VFs.
> + * @gt: the &xe_gt to configure
> + * @exec_quantum: requested execution quantum in milliseconds (0 is infinity)
> + *
> + * This function can only be called on PF with the master mutex hold.
> + *
> + * Return: 0 on success or a negative error code on failure.
> + */
> +int xe_gt_sriov_pf_config_bulk_set_exec_quantum_locked(struct xe_gt *gt, u32 exec_quantum)
> +{
> + unsigned int totalvfs = xe_gt_sriov_pf_get_totalvfs(gt);
> +
> + return pf_bulk_set_exec_quantum(gt, exec_quantum, PFID, 1 + totalvfs);
> +}
> +
> static int pf_provision_groups_exec_quantums(struct xe_gt *gt, unsigned int vfid,
> const u32 *exec_quantums, u32 count)
> {
> @@ -2418,34 +2425,41 @@ u32 xe_gt_sriov_pf_config_get_preempt_timeout(struct xe_gt *gt, unsigned int vfi
> return pf_get_preempt_timeout(gt, vfid);
> }
>
> -/**
> - * xe_gt_sriov_pf_config_bulk_set_preempt_timeout_locked() - Configure PT for PF and VFs.
> - * @gt: the &xe_gt to configure
> - * @preempt_timeout: requested preemption timeout in microseconds (0 is infinity)
> - *
> - * This function can only be called on PF with the master mutex hold.
> - *
> - * Return: 0 on success or a negative error code on failure.
> - */
> -int xe_gt_sriov_pf_config_bulk_set_preempt_timeout_locked(struct xe_gt *gt, u32 preempt_timeout)
> +static int pf_bulk_set_preempt_timeout(struct xe_gt *gt, u32 preempt_timeout,
> + unsigned int first_vf, unsigned int num_vfs)
> {
> - unsigned int totalvfs = xe_gt_sriov_pf_get_totalvfs(gt);
> unsigned int n;
> int err = 0;
>
> lockdep_assert_held(xe_gt_sriov_pf_master_mutex(gt));
>
> - for (n = 0; n <= totalvfs; n++) {
> + for (n = first_vf; n < first_vf + num_vfs; n++) {
> err = pf_provision_preempt_timeout(gt, VFID(n), preempt_timeout);
> if (err)
> break;
> }
>
> - return pf_config_bulk_set_u32_done(gt, 0, 1 + totalvfs, preempt_timeout,
> + return pf_config_bulk_set_u32_done(gt, first_vf, num_vfs, preempt_timeout,
> pf_get_preempt_timeout, "preemption timeout",
> preempt_timeout_unit, n, err);
> }
>
> +/**
> + * xe_gt_sriov_pf_config_bulk_set_preempt_timeout_locked() - Configure PT for PF and VFs.
> + * @gt: the &xe_gt to configure
> + * @preempt_timeout: requested preemption timeout in microseconds (0 is infinity)
> + *
> + * This function can only be called on PF with the master mutex hold.
> + *
> + * Return: 0 on success or a negative error code on failure.
> + */
> +int xe_gt_sriov_pf_config_bulk_set_preempt_timeout_locked(struct xe_gt *gt, u32 preempt_timeout)
> +{
> + unsigned int totalvfs = xe_gt_sriov_pf_get_totalvfs(gt);
> +
> + return pf_bulk_set_preempt_timeout(gt, preempt_timeout, PFID, 1 + totalvfs);
> +}
> +
> static int pf_provision_groups_preempt_timeouts(struct xe_gt *gt, unsigned int vfid,
> const u32 *preempt_timeouts, u32 count)
> {
LGTM:
Reviewed-by: Piotr Piórkowski <piotr.piorkowski@intel.com>
> --
> 2.47.1
>
--
next prev parent reply other threads:[~2026-04-02 15:57 UTC|newest]
Thread overview: 32+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-03-30 20:40 [PATCH 00/13] drm/xe/pf: Improve EQ/PT provisioning Michal Wajdeczko
2026-03-30 20:40 ` [PATCH 01/13] drm/xe/guc: Update POLICY_SCHED_IF_IDLE documentation Michal Wajdeczko
2026-04-02 7:54 ` Piotr Piórkowski
2026-03-30 20:40 ` [PATCH 02/13] drm/xe/pf: Fix pf_get_sched_priority() function signature Michal Wajdeczko
2026-04-02 7:55 ` Piotr Piórkowski
2026-03-30 20:40 ` [PATCH 03/13] drm/xe/pf: Force new VFs prorities only once Michal Wajdeczko
2026-04-02 10:22 ` Piotr Piórkowski
2026-04-02 16:13 ` Michal Wajdeczko
2026-03-30 20:40 ` [PATCH 04/13] drm/xe/pf: Print applied policy KLVs Michal Wajdeczko
2026-04-02 10:56 ` Piotr Piórkowski
2026-03-30 20:40 ` [PATCH 05/13] drm/xe/pf: Reprovision policy settings after GT reset Michal Wajdeczko
2026-04-02 11:23 ` Piotr Piórkowski
2026-03-30 20:40 ` [PATCH 06/13] drm/xe/pf: Don't reprovision policies if already default Michal Wajdeczko
2026-04-02 11:23 ` Piotr Piórkowski
2026-03-30 20:40 ` [PATCH 07/13] drm/xe/pf: Encode scheduling priority KLV if needed Michal Wajdeczko
2026-04-02 13:18 ` Piotr Piórkowski
2026-03-30 20:40 ` [PATCH 08/13] drm/xe/pf: Check EQ/PT/PRIO when testing VF config Michal Wajdeczko
2026-04-02 13:30 ` Piotr Piórkowski
2026-03-30 20:40 ` [PATCH 09/13] drm/xe/pf: Allow to change sched_if_idle policy under lock Michal Wajdeczko
2026-04-02 13:33 ` Piotr Piórkowski
2026-03-30 20:40 ` [PATCH 10/13] drm/xe/pf: Reprovision scheduling to default when no VFs Michal Wajdeczko
2026-04-02 15:22 ` Piotr Piórkowski
2026-03-30 20:40 ` [PATCH 11/13] drm/xe/pf: Extract helper to show which VFs are provisioned Michal Wajdeczko
2026-04-02 15:40 ` Piotr Piórkowski
2026-03-30 20:40 ` [PATCH 12/13] drm/xe/pf: Extract helpers for bulk EQ/PT provisioning Michal Wajdeczko
2026-04-02 15:57 ` Piotr Piórkowski [this message]
2026-03-30 20:40 ` [PATCH 13/13] drm/xe/pf: Perform fair scheduling auto-provisioning Michal Wajdeczko
2026-04-02 16:06 ` Piotr Piórkowski
2026-03-30 21:09 ` ✓ CI.KUnit: success for drm/xe/pf: Improve EQ/PT provisioning Patchwork
2026-03-30 21:41 ` ✓ Xe.CI.BAT: " Patchwork
2026-03-31 0:28 ` ✗ Xe.CI.FULL: failure " Patchwork
2026-04-02 16:20 ` Michal Wajdeczko
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=20260402155711.fmnsw2iuovea2xjd@intel.com \
--to=piotr.piorkowski@intel.com \
--cc=intel-xe@lists.freedesktop.org \
--cc=michal.wajdeczko@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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.