From: "Thomas Hellström" <thomas.hellstrom@linux.intel.com>
To: Matthew Brost <matthew.brost@intel.com>, intel-xe@lists.freedesktop.org
Subject: Re: [Intel-xe] [PATCH 3/3] drm/xe: Fix array of binds
Date: Thu, 24 Aug 2023 12:38:41 +0200 [thread overview]
Message-ID: <59e97073-bee1-31ff-2672-88fe4e3dbecf@linux.intel.com> (raw)
In-Reply-To: <20230817043148.740495-4-matthew.brost@intel.com>
Hi, Matt.
On 8/17/23 06:31, Matthew Brost wrote:
> If multiple bind ops in an array of binds touch the same address range
> invalid GPUVA operations are generated as each GPUVA operation is
> generated based on the orignal GPUVA state. To fix this, after each
> GPUVA operations is generated, commit the GPUVA operation updating the
> GPUVA state so subsequent bind ops can see a current GPUVA state.
Let me check if I understand this correctly.
1) The GPUVA helpers only know about one GPUVA op at a time, so the
GPUVA state basically needs to be updated before we call in to get the
next GPUVA op for our XE op?
2) We're still able to rollback /unwind after each state commit, but
once we start the execute phase and hit an error we currently can't do
that with or without this patch series?
With that and the previous comments from me and Rodrigo fixed, this
LGTM, although unrelated, I still wonder what happens if we hit an
-EINTR during the execute phase?
Thanks,
Thomas
> Signed-off-by: Matthew Brost <matthew.brost@intel.com>
> ---
> drivers/gpu/drm/xe/xe_vm.c | 418 +++++++++++++++++++------------------
> 1 file changed, 212 insertions(+), 206 deletions(-)
>
> diff --git a/drivers/gpu/drm/xe/xe_vm.c b/drivers/gpu/drm/xe/xe_vm.c
> index bd20840616ca..2452e24fbc81 100644
> --- a/drivers/gpu/drm/xe/xe_vm.c
> +++ b/drivers/gpu/drm/xe/xe_vm.c
> @@ -2426,24 +2426,73 @@ static u64 xe_vma_set_pte_size(struct xe_vma *vma, u64 size)
> return SZ_4K;
> }
>
> -/*
> - * Parse operations list and create any resources needed for the operations
> - * prior to fully committing to the operations. This setup can fail.
> - */
> +static int xe_vma_op_commit(struct xe_vm *vm, struct xe_vma_op *op)
> +{
> + int err = 0;
> +
> + lockdep_assert_held_write(&vm->lock);
> +
> + switch (op->base.op) {
> + case DRM_GPUVA_OP_MAP:
> + err |= xe_vm_insert_vma(vm, op->map.vma);
> + if (!err)
> + op->flags |= XE_VMA_OP_COMMITTED;
> + break;
> + case DRM_GPUVA_OP_REMAP:
> + prep_vma_destroy(vm, gpuva_to_vma(op->base.remap.unmap->va),
> + true);
> + op->flags |= XE_VMA_OP_COMMITTED;
> +
> + if (op->remap.prev) {
> + err |= xe_vm_insert_vma(vm, op->remap.prev);
> + if (!err)
> + op->flags |= XE_VMA_OP_PREV_COMMITTED;
> + if (!err && op->remap.skip_prev)
> + op->remap.prev = NULL;
> + }
> + if (op->remap.next) {
> + err |= xe_vm_insert_vma(vm, op->remap.next);
> + if (!err)
> + op->flags |= XE_VMA_OP_NEXT_COMMITTED;
> + if (!err && op->remap.skip_next)
> + op->remap.next = NULL;
> + }
> +
> + /* Adjust for partial unbind after removin VMA from VM */
> + if (!err) {
> + op->base.remap.unmap->va->va.addr = op->remap.start;
> + op->base.remap.unmap->va->va.range = op->remap.range;
> + }
> + break;
> + case DRM_GPUVA_OP_UNMAP:
> + prep_vma_destroy(vm, gpuva_to_vma(op->base.unmap.va), true);
> + op->flags |= XE_VMA_OP_COMMITTED;
> + break;
> + case DRM_GPUVA_OP_PREFETCH:
> + op->flags |= XE_VMA_OP_COMMITTED;
> + break;
> + default:
> + XE_WARN_ON("NOT POSSIBLE");
> + }
> +
> + return err;
> +}
> +
> +
> static int vm_bind_ioctl_ops_parse(struct xe_vm *vm, struct xe_exec_queue *q,
> - struct drm_gpuva_ops **ops, int num_ops_list,
> + struct drm_gpuva_ops *ops,
> struct xe_sync_entry *syncs, u32 num_syncs,
> - struct list_head *ops_list, bool async)
> + struct list_head *ops_list, bool last,
> + bool async)
> {
> struct xe_vma_op *last_op = NULL;
> - struct list_head *async_list = NULL;
> struct async_op_fence *fence = NULL;
> - int err, i;
> + struct drm_gpuva_op *__op;
> + int err = 0;
>
> lockdep_assert_held_write(&vm->lock);
> - XE_WARN_ON(num_ops_list > 1 && !async);
>
> - if (num_syncs && async) {
> + if (last && num_syncs && async) {
> u64 seqno;
>
> fence = kmalloc(sizeof(*fence), GFP_KERNEL);
> @@ -2462,145 +2511,145 @@ static int vm_bind_ioctl_ops_parse(struct xe_vm *vm, struct xe_exec_queue *q,
> }
> }
>
> - for (i = 0; i < num_ops_list; ++i) {
> - struct drm_gpuva_ops *__ops = ops[i];
> - struct drm_gpuva_op *__op;
> + drm_gpuva_for_each_op(__op, ops) {
> + struct xe_vma_op *op = gpuva_op_to_vma_op(__op);
> + bool first = list_empty(ops_list);
>
> - drm_gpuva_for_each_op(__op, __ops) {
> - struct xe_vma_op *op = gpuva_op_to_vma_op(__op);
> - bool first = !async_list;
> + XE_WARN_ON(!first && !async);
> +
> + INIT_LIST_HEAD(&op->link);
> + list_add_tail(&op->link, ops_list);
>
> - XE_WARN_ON(!first && !async);
> + if (first) {
> + op->flags |= XE_VMA_OP_FIRST;
> + op->num_syncs = num_syncs;
> + op->syncs = syncs;
> + }
>
> - INIT_LIST_HEAD(&op->link);
> - if (first)
> - async_list = ops_list;
> - list_add_tail(&op->link, async_list);
> + op->q = q;
> +
> + switch (op->base.op) {
> + case DRM_GPUVA_OP_MAP:
> + {
> + struct xe_vma *vma;
>
> - if (first) {
> - op->flags |= XE_VMA_OP_FIRST;
> - op->num_syncs = num_syncs;
> - op->syncs = syncs;
> + vma = new_vma(vm, &op->base.map,
> + op->tile_mask, op->map.read_only,
> + op->map.is_null);
> + if (IS_ERR(vma)) {
> + err = PTR_ERR(vma);
> + goto free_fence;
> }
>
> - op->q = q;
> + op->map.vma = vma;
> + break;
> + }
> + case DRM_GPUVA_OP_REMAP:
> + {
> + struct xe_vma *old =
> + gpuva_to_vma(op->base.remap.unmap->va);
>
> - switch (op->base.op) {
> - case DRM_GPUVA_OP_MAP:
> - {
> - struct xe_vma *vma;
> + op->remap.start = xe_vma_start(old);
> + op->remap.range = xe_vma_size(old);
>
> - vma = new_vma(vm, &op->base.map,
> - op->tile_mask, op->map.read_only,
> - op->map.is_null);
> + if (op->base.remap.prev) {
> + struct xe_vma *vma;
> + bool read_only =
> + op->base.remap.unmap->va->flags &
> + XE_VMA_READ_ONLY;
> + bool is_null =
> + op->base.remap.unmap->va->flags &
> + DRM_GPUVA_SPARSE;
> +
> + vma = new_vma(vm, op->base.remap.prev,
> + op->tile_mask, read_only,
> + is_null);
> if (IS_ERR(vma)) {
> err = PTR_ERR(vma);
> goto free_fence;
> }
>
> - op->map.vma = vma;
> - break;
> + op->remap.prev = vma;
> +
> + /*
> + * Userptr creates a new SG mapping so
> + * we must also rebind.
> + */
> + op->remap.skip_prev = !xe_vma_is_userptr(old) &&
> + IS_ALIGNED(xe_vma_end(vma),
> + xe_vma_max_pte_size(old));
> + if (op->remap.skip_prev) {
> + xe_vma_set_pte_size(vma, xe_vma_max_pte_size(old));
> + op->remap.range -=
> + xe_vma_end(vma) -
> + xe_vma_start(old);
> + op->remap.start = xe_vma_end(vma);
> + }
> }
> - case DRM_GPUVA_OP_REMAP:
> - {
> - struct xe_vma *old =
> - gpuva_to_vma(op->base.remap.unmap->va);
> -
> - op->remap.start = xe_vma_start(old);
> - op->remap.range = xe_vma_size(old);
> -
> - if (op->base.remap.prev) {
> - struct xe_vma *vma;
> - bool read_only =
> - op->base.remap.unmap->va->flags &
> - XE_VMA_READ_ONLY;
> - bool is_null =
> - op->base.remap.unmap->va->flags &
> - DRM_GPUVA_SPARSE;
> -
> - vma = new_vma(vm, op->base.remap.prev,
> - op->tile_mask, read_only,
> - is_null);
> - if (IS_ERR(vma)) {
> - err = PTR_ERR(vma);
> - goto free_fence;
> - }
> -
> - op->remap.prev = vma;
> -
> - /*
> - * Userptr creates a new SG mapping so
> - * we must also rebind.
> - */
> - op->remap.skip_prev = !xe_vma_is_userptr(old) &&
> - IS_ALIGNED(xe_vma_end(vma),
> - xe_vma_max_pte_size(old));
> - if (op->remap.skip_prev) {
> - xe_vma_set_pte_size(vma, xe_vma_max_pte_size(old));
> - op->remap.range -=
> - xe_vma_end(vma) -
> - xe_vma_start(old);
> - op->remap.start = xe_vma_end(vma);
> - }
> +
> + if (op->base.remap.next) {
> + struct xe_vma *vma;
> + bool read_only =
> + op->base.remap.unmap->va->flags &
> + XE_VMA_READ_ONLY;
> +
> + bool is_null =
> + op->base.remap.unmap->va->flags &
> + DRM_GPUVA_SPARSE;
> +
> + vma = new_vma(vm, op->base.remap.next,
> + op->tile_mask, read_only,
> + is_null);
> + if (IS_ERR(vma)) {
> + err = PTR_ERR(vma);
> + goto free_fence;
> }
>
> - if (op->base.remap.next) {
> - struct xe_vma *vma;
> - bool read_only =
> - op->base.remap.unmap->va->flags &
> - XE_VMA_READ_ONLY;
> -
> - bool is_null =
> - op->base.remap.unmap->va->flags &
> - DRM_GPUVA_SPARSE;
> -
> - vma = new_vma(vm, op->base.remap.next,
> - op->tile_mask, read_only,
> - is_null);
> - if (IS_ERR(vma)) {
> - err = PTR_ERR(vma);
> - goto free_fence;
> - }
> -
> - op->remap.next = vma;
> -
> - /*
> - * Userptr creates a new SG mapping so
> - * we must also rebind.
> - */
> - op->remap.skip_next = !xe_vma_is_userptr(old) &&
> - IS_ALIGNED(xe_vma_start(vma),
> - xe_vma_max_pte_size(old));
> - if (op->remap.skip_next) {
> - xe_vma_set_pte_size(vma, xe_vma_max_pte_size(old));
> - op->remap.range -=
> - xe_vma_end(old) -
> - xe_vma_start(vma);
> - }
> + op->remap.next = vma;
> +
> + /*
> + * Userptr creates a new SG mapping so
> + * we must also rebind.
> + */
> + op->remap.skip_next = !xe_vma_is_userptr(old) &&
> + IS_ALIGNED(xe_vma_start(vma),
> + xe_vma_max_pte_size(old));
> + if (op->remap.skip_next) {
> + xe_vma_set_pte_size(vma, xe_vma_max_pte_size(old));
> + op->remap.range -=
> + xe_vma_end(old) -
> + xe_vma_start(vma);
> }
> - break;
> - }
> - case DRM_GPUVA_OP_UNMAP:
> - case DRM_GPUVA_OP_PREFETCH:
> - /* Nothing to do */
> - break;
> - default:
> - XE_WARN_ON("NOT POSSIBLE");
> }
> -
> - last_op = op;
> + break;
> + }
> + case DRM_GPUVA_OP_UNMAP:
> + case DRM_GPUVA_OP_PREFETCH:
> + /* Nothing to do */
> + break;
> + default:
> + XE_WARN_ON("NOT POSSIBLE");
> }
>
> - last_op->ops = __ops;
> + last_op = op;
> +
> + err = xe_vma_op_commit(vm, op);
> + if (err)
> + goto free_fence;
> }
>
> - if (!last_op)
> - return -ENODATA;
> + /* FIXME: Unhandled corner case */
> + XE_WARN_ON(!last_op && last && !list_empty(ops_list));
>
> - last_op->flags |= XE_VMA_OP_LAST;
> - last_op->num_syncs = num_syncs;
> - last_op->syncs = syncs;
> - last_op->fence = fence;
> + if (!last_op)
> + goto free_fence;
> + last_op->ops = ops;
> + if (last) {
> + last_op->flags |= XE_VMA_OP_LAST;
> + last_op->num_syncs = num_syncs;
> + last_op->syncs = syncs;
> + last_op->fence = fence;
> + }
>
> return 0;
>
> @@ -2609,58 +2658,6 @@ static int vm_bind_ioctl_ops_parse(struct xe_vm *vm, struct xe_exec_queue *q,
> return err;
> }
>
> -static int xe_vma_op_commit(struct xe_vm *vm, struct xe_vma_op *op)
> -{
> - int err = 0;
> -
> - lockdep_assert_held_write(&vm->lock);
> -
> - switch (op->base.op) {
> - case DRM_GPUVA_OP_MAP:
> - err |= xe_vm_insert_vma(vm, op->map.vma);
> - if (!err)
> - op->flags |= XE_VMA_OP_COMMITTED;
> - break;
> - case DRM_GPUVA_OP_REMAP:
> - prep_vma_destroy(vm, gpuva_to_vma(op->base.remap.unmap->va),
> - true);
> - op->flags |= XE_VMA_OP_COMMITTED;
> -
> - if (op->remap.prev) {
> - err |= xe_vm_insert_vma(vm, op->remap.prev);
> - if (!err)
> - op->flags |= XE_VMA_OP_PREV_COMMITTED;
> - if (!err && op->remap.skip_prev)
> - op->remap.prev = NULL;
> - }
> - if (op->remap.next) {
> - err |= xe_vm_insert_vma(vm, op->remap.next);
> - if (!err)
> - op->flags |= XE_VMA_OP_NEXT_COMMITTED;
> - if (!err && op->remap.skip_next)
> - op->remap.next = NULL;
> - }
> -
> - /* Adjust for partial unbind after removin VMA from VM */
> - if (!err) {
> - op->base.remap.unmap->va->va.addr = op->remap.start;
> - op->base.remap.unmap->va->va.range = op->remap.range;
> - }
> - break;
> - case DRM_GPUVA_OP_UNMAP:
> - prep_vma_destroy(vm, gpuva_to_vma(op->base.unmap.va), true);
> - op->flags |= XE_VMA_OP_COMMITTED;
> - break;
> - case DRM_GPUVA_OP_PREFETCH:
> - op->flags |= XE_VMA_OP_COMMITTED;
> - break;
> - default:
> - XE_WARN_ON("NOT POSSIBLE");
> - }
> -
> - return err;
> -}
> -
> static int __xe_vma_op_execute(struct xe_vm *vm, struct xe_vma *vma,
> struct xe_vma_op *op)
> {
> @@ -2878,11 +2875,13 @@ static void xe_vma_op_unwind(struct xe_vm *vm, struct xe_vma_op *op,
> {
> struct xe_vma *vma = gpuva_to_vma(op->base.unmap.va);
>
> - down_read(&vm->userptr.notifier_lock);
> - vma->gpuva.flags &= ~XE_VMA_DESTROYED;
> - up_read(&vm->userptr.notifier_lock);
> - if (post_commit)
> - xe_vm_insert_vma(vm, vma);
> + if (vma) {
> + down_read(&vm->userptr.notifier_lock);
> + vma->gpuva.flags &= ~XE_VMA_DESTROYED;
> + up_read(&vm->userptr.notifier_lock);
> + if (post_commit)
> + xe_vm_insert_vma(vm, vma);
> + }
> break;
> }
> case DRM_GPUVA_OP_REMAP:
> @@ -2897,11 +2896,13 @@ static void xe_vma_op_unwind(struct xe_vm *vm, struct xe_vma_op *op,
> prep_vma_destroy(vm, op->remap.next, next_post_commit);
> xe_vma_destroy_unlocked(op->remap.next);
> }
> - down_read(&vm->userptr.notifier_lock);
> - vma->gpuva.flags &= ~XE_VMA_DESTROYED;
> - up_read(&vm->userptr.notifier_lock);
> - if (post_commit)
> - xe_vm_insert_vma(vm, vma);
> + if (vma) {
> + down_read(&vm->userptr.notifier_lock);
> + vma->gpuva.flags &= ~XE_VMA_DESTROYED;
> + up_read(&vm->userptr.notifier_lock);
> + if (post_commit)
> + xe_vm_insert_vma(vm, vma);
> + }
> break;
> }
> case DRM_GPUVA_OP_PREFETCH:
> @@ -2990,20 +2991,16 @@ static void xe_vma_op_work_func(struct work_struct *w)
> }
> }
>
> -static int vm_bind_ioctl_ops_commit(struct xe_vm *vm,
> - struct list_head *ops_list, bool async)
> +static int vm_bind_ioctl_ops_execute(struct xe_vm *vm,
> + struct list_head *ops_list, bool async)
> {
> struct xe_vma_op *op, *last_op, *next;
> int err;
>
> lockdep_assert_held_write(&vm->lock);
>
> - list_for_each_entry(op, ops_list, link) {
> + list_for_each_entry(op, ops_list, link)
> last_op = op;
> - err = xe_vma_op_commit(vm, op);
> - if (err)
> - goto unwind;
> - }
>
> if (!async) {
> err = xe_vma_op_execute(vm, last_op);
> @@ -3042,28 +3039,29 @@ static int vm_bind_ioctl_ops_commit(struct xe_vm *vm,
> return err;
> }
>
> -/*
> - * Unwind operations list, called after a failure of vm_bind_ioctl_ops_create or
> - * vm_bind_ioctl_ops_parse.
> - */
> static void vm_bind_ioctl_ops_unwind(struct xe_vm *vm,
> struct drm_gpuva_ops **ops,
> int num_ops_list)
> {
> int i;
>
> - for (i = 0; i < num_ops_list; ++i) {
> + for (i = num_ops_list - 1; i; ++i) {
> struct drm_gpuva_ops *__ops = ops[i];
> struct drm_gpuva_op *__op;
>
> if (!__ops)
> continue;
>
> - drm_gpuva_for_each_op(__op, __ops) {
> + drm_gpuva_for_each_op_reverse(__op, __ops) {
> struct xe_vma_op *op = gpuva_op_to_vma_op(__op);
>
> - xe_vma_op_unwind(vm, op, false, false, false);
> + xe_vma_op_unwind(vm, op,
> + op->flags & XE_VMA_OP_COMMITTED,
> + op->flags & XE_VMA_OP_PREV_COMMITTED,
> + op->flags & XE_VMA_OP_NEXT_COMMITTED);
> }
> +
> + drm_gpuva_ops_free(&vm->mgr, __ops);
> }
> }
>
> @@ -3384,14 +3382,22 @@ int xe_vm_bind_ioctl(struct drm_device *dev, void *data, struct drm_file *file)
> ops[i] = NULL;
> goto unwind_ops;
> }
> +
> + err = vm_bind_ioctl_ops_parse(vm, q, ops[i], syncs, num_syncs,
> + &ops_list,
> + i == args->num_binds - 1,
> + async);
> + if (err)
> + goto unwind_ops;
> }
>
> - err = vm_bind_ioctl_ops_parse(vm, q, ops, args->num_binds,
> - syncs, num_syncs, &ops_list, async);
> - if (err)
> + /* Nothing to do */
> + if (list_empty(&ops_list)) {
> + err = -ENODATA;
> goto unwind_ops;
> + }
>
> - err = vm_bind_ioctl_ops_commit(vm, &ops_list, async);
> + err = vm_bind_ioctl_ops_execute(vm, &ops_list, async);
> up_write(&vm->lock);
>
> for (i = 0; i < args->num_binds; ++i)
next prev parent reply other threads:[~2023-08-24 10:38 UTC|newest]
Thread overview: 19+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-08-17 4:31 [Intel-xe] [PATCH 0/3] Fix array of binds Matthew Brost
2023-08-17 4:31 ` [Intel-xe] [PATCH 1/3] drm/xe: Fixup unwind on VM ops errors Matthew Brost
2023-08-22 23:33 ` Rodrigo Vivi
2023-08-17 4:31 ` [Intel-xe] [PATCH 2/3] drm/gpuva: Add drm_gpuva_for_each_op_reverse Matthew Brost
2023-08-22 23:34 ` Rodrigo Vivi
2023-08-17 4:31 ` [Intel-xe] [PATCH 3/3] drm/xe: Fix array of binds Matthew Brost
2023-08-22 23:38 ` Rodrigo Vivi
2023-08-31 14:43 ` Matthew Brost
2023-08-23 12:51 ` Thomas Hellström
2023-08-24 10:38 ` Thomas Hellström [this message]
2023-08-24 14:16 ` Matthew Brost
2023-08-17 4:34 ` [Intel-xe] ✓ CI.Patch_applied: success for " Patchwork
2023-08-17 4:34 ` [Intel-xe] ✗ CI.checkpatch: warning " Patchwork
2023-08-17 4:35 ` [Intel-xe] ✓ CI.KUnit: success " Patchwork
2023-08-17 4:39 ` [Intel-xe] ✓ CI.Build: " Patchwork
2023-08-17 4:40 ` [Intel-xe] ✓ CI.Hooks: " Patchwork
2023-08-17 4:40 ` [Intel-xe] ✗ CI.checksparse: warning " Patchwork
2023-08-17 5:17 ` [Intel-xe] ✓ CI.BAT: success " Patchwork
2023-08-18 4:08 ` [Intel-xe] [PATCH 0/3] " Zanoni, Paulo R
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=59e97073-bee1-31ff-2672-88fe4e3dbecf@linux.intel.com \
--to=thomas.hellstrom@linux.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