From: Matthew Brost <matthew.brost@intel.com>
To: Umesh Nerlige Ramappa <umesh.nerlige.ramappa@intel.com>
Cc: <intel-xe@lists.freedesktop.org>, <lucas.demarchi@intel.com>
Subject: Re: [PATCH v2 1/4] drm/xe: Move part of xe_file cleanup to a helper
Date: Tue, 9 Jul 2024 00:37:22 +0000 [thread overview]
Message-ID: <ZoyGQvUmk4dyk5xx@DUT025-TGLU.fm.intel.com> (raw)
In-Reply-To: <20240709002835.3372618-2-umesh.nerlige.ramappa@intel.com>
On Mon, Jul 08, 2024 at 05:28:32PM -0700, Umesh Nerlige Ramappa wrote:
> In order to make xe_file ref counted, move destruction of xe_file
> members to a helper.
>
> v2: Move xe_vm_close_and_put back into xe_file_close (Matt)
>
> Signed-off-by: Umesh Nerlige Ramappa <umesh.nerlige.ramappa@intel.com>
Reviewed-by: Matthew Brost <matthew.brost@intel.com>
> ---
> drivers/gpu/drm/xe/xe_device.c | 29 ++++++++++++++++++-----------
> 1 file changed, 18 insertions(+), 11 deletions(-)
>
> diff --git a/drivers/gpu/drm/xe/xe_device.c b/drivers/gpu/drm/xe/xe_device.c
> index 64aea962afd5..c5464ad5d908 100644
> --- a/drivers/gpu/drm/xe/xe_device.c
> +++ b/drivers/gpu/drm/xe/xe_device.c
> @@ -93,9 +93,25 @@ static int xe_file_open(struct drm_device *dev, struct drm_file *file)
> return 0;
> }
>
> +static void xe_file_destroy(struct xe_file *xef)
> +{
> + struct xe_device *xe = xef->xe;
> +
> + xa_destroy(&xef->exec_queue.xa);
> + mutex_destroy(&xef->exec_queue.lock);
> + xa_destroy(&xef->vm.xa);
> + mutex_destroy(&xef->vm.lock);
> +
> + spin_lock(&xe->clients.lock);
> + xe->clients.count--;
> + spin_unlock(&xe->clients.lock);
> +
> + xe_drm_client_put(xef->client);
> + kfree(xef);
> +}
> +
> static void xe_file_close(struct drm_device *dev, struct drm_file *file)
> {
> - struct xe_device *xe = to_xe_device(dev);
> struct xe_file *xef = file->driver_priv;
> struct xe_vm *vm;
> struct xe_exec_queue *q;
> @@ -111,21 +127,12 @@ static void xe_file_close(struct drm_device *dev, struct drm_file *file)
> xe_exec_queue_kill(q);
> xe_exec_queue_put(q);
> }
> - xa_destroy(&xef->exec_queue.xa);
> - mutex_destroy(&xef->exec_queue.lock);
> mutex_lock(&xef->vm.lock);
> xa_for_each(&xef->vm.xa, idx, vm)
> xe_vm_close_and_put(vm);
> mutex_unlock(&xef->vm.lock);
> - xa_destroy(&xef->vm.xa);
> - mutex_destroy(&xef->vm.lock);
>
> - spin_lock(&xe->clients.lock);
> - xe->clients.count--;
> - spin_unlock(&xe->clients.lock);
> -
> - xe_drm_client_put(xef->client);
> - kfree(xef);
> + xe_file_destroy(xef);
> }
>
> static const struct drm_ioctl_desc xe_ioctls[] = {
> --
> 2.38.1
>
next prev parent reply other threads:[~2024-07-09 0:38 UTC|newest]
Thread overview: 22+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-07-09 0:28 [PATCH v2 0/4] Have xe_vm and xe_exec_queue take references to xef Umesh Nerlige Ramappa
2024-07-09 0:28 ` [PATCH v2 1/4] drm/xe: Move part of xe_file cleanup to a helper Umesh Nerlige Ramappa
2024-07-09 0:37 ` Matthew Brost [this message]
2024-07-18 12:53 ` Lucas De Marchi
2024-07-09 0:28 ` [PATCH v2 2/4] drm/xe: Add ref counting for xe_file Umesh Nerlige Ramappa
2024-07-09 20:41 ` Matthew Brost
2024-07-18 13:01 ` Lucas De Marchi
2024-07-18 18:57 ` Umesh Nerlige Ramappa
2024-07-18 19:24 ` Lucas De Marchi
2024-07-09 0:28 ` [PATCH v2 3/4] drm/xe: Take a ref to xe file when user creates a VM Umesh Nerlige Ramappa
2024-07-18 13:01 ` Lucas De Marchi
2024-07-09 0:28 ` [PATCH v2 4/4] drm/xe: Fix use after free when client stats are captured Umesh Nerlige Ramappa
2024-07-09 20:46 ` Matthew Brost
2024-07-18 13:35 ` Lucas De Marchi
2024-07-09 0:33 ` ✓ CI.Patch_applied: success for Have xe_vm and xe_exec_queue take references to xef (rev2) Patchwork
2024-07-09 0:33 ` ✓ CI.checkpatch: " Patchwork
2024-07-09 0:34 ` ✓ CI.KUnit: " Patchwork
2024-07-09 0:46 ` ✓ CI.Build: " Patchwork
2024-07-09 0:49 ` ✓ CI.Hooks: " Patchwork
2024-07-09 0:50 ` ✓ CI.checksparse: " Patchwork
2024-07-09 1:04 ` ✓ CI.BAT: " Patchwork
2024-07-09 4:21 ` ✓ CI.FULL: " 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=ZoyGQvUmk4dyk5xx@DUT025-TGLU.fm.intel.com \
--to=matthew.brost@intel.com \
--cc=intel-xe@lists.freedesktop.org \
--cc=lucas.demarchi@intel.com \
--cc=umesh.nerlige.ramappa@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