From: "Sundaresan, Sujaritha" <sujaritha.sundaresan@intel.com>
To: Riana Tauro <riana.tauro@intel.com>,
"Upadhyay, Tejas" <tejas.upadhyay@intel.com>,
"Gupta, Anshuman" <anshuman.gupta@intel.com>,
"intel-xe@lists.freedesktop.org" <intel-xe@lists.freedesktop.org>
Cc: "Vivi, Rodrigo" <rodrigo.vivi@intel.com>
Subject: Re: [Intel-xe] [v2 1/2] drm/xe: Add a new memory directory under tile
Date: Thu, 7 Dec 2023 12:58:14 +0530 [thread overview]
Message-ID: <38a32c29-fd64-4770-82cd-6e3660d14191@intel.com> (raw)
In-Reply-To: <d6d0fd1e-3c13-4992-8969-ea6533b7128a@intel.com>
On 12/7/2023 12:08 PM, Sundaresan, Sujaritha wrote:
>
> On 12/7/2023 11:36 AM, Riana Tauro wrote:
>>
>>
>> On 12/7/2023 10:51 AM, Sundaresan, Sujaritha wrote:
>>>
>>> On 12/7/2023 10:42 AM, Upadhyay, Tejas wrote:
>>>>
>>>>> -----Original Message-----
>>>>> From: Intel-xe <intel-xe-bounces@lists.freedesktop.org> On Behalf Of
>>>>> Sundaresan, Sujaritha
>>>>> Sent: Wednesday, December 6, 2023 5:44 PM
>>>>> To: Gupta, Anshuman <anshuman.gupta@intel.com>; intel-
>>>>> xe@lists.freedesktop.org
>>>>> Cc: Vivi, Rodrigo <rodrigo.vivi@intel.com>
>>>>> Subject: Re: [Intel-xe] [v2 1/2] drm/xe: Add a new memory
>>>>> directory under
>>>>> tile
>>>>>
>>>>>
>>>>> On 12/6/2023 5:38 PM, Sundaresan, Sujaritha wrote:
>>>>>> On 12/6/2023 5:23 PM, Gupta, Anshuman wrote:
>>>>>>>> -----Original Message-----
>>>>>>>> From: Intel-xe <intel-xe-bounces@lists.freedesktop.org> On
>>>>>>>> Behalf Of
>>>>>>>> Sujaritha Sundaresan
>>>>>>>> Sent: Wednesday, December 6, 2023 10:18 AM
>>>>>>>> To: intel-xe@lists.freedesktop.org
>>>>>>>> Cc: Sundaresan, Sujaritha <sujaritha.sundaresan@intel.com>; Vivi,
>>>>>>>> Rodrigo <rodrigo.vivi@intel.com>
>>>>>>>> Subject: [Intel-xe] [v2 1/2] drm/xe: Add a new memory directory
>>>>>>>> under tile
>>>>>>>>
>>>>>>>> Add a new memory directory under /device/tile<n> and move
>>>>>>>> physical_vram_size attribute to the new directory.
>>>>>>>>
>>>>>>>> New hierarchy:
>>>>>>>>
>>>>>>>> /device/tile<n>/memory/physical_vram_size_bytes
>>>>>>>>
>>>>>>>> v2: Fix heading typo (Riana)
>>>>>>>> Fix cleanup error on unload/reload cycle
>>>>>>>>
>>>>>>>> Signed-off-by: Sujaritha Sundaresan
>>>>>>>> <sujaritha.sundaresan@intel.com>
>>>>>>>> ---
>>>>>>>> drivers/gpu/drm/xe/xe_tile_sysfs.c | 15 ++++++++++++---
>>>>>>>> 1 file changed, 12 insertions(+), 3 deletions(-)
>>>>>>>>
>>>>>>>> diff --git a/drivers/gpu/drm/xe/xe_tile_sysfs.c
>>>>>>>> b/drivers/gpu/drm/xe/xe_tile_sysfs.c
>>>>>>>> index 16376607c68f..e8ce4d9270e6 100644
>>>>>>>> --- a/drivers/gpu/drm/xe/xe_tile_sysfs.c
>>>>>>>> +++ b/drivers/gpu/drm/xe/xe_tile_sysfs.c
>>>>>>>> @@ -24,7 +24,8 @@ static ssize_t
>>>>>>>> physical_vram_size_bytes_show(struct device *kdev, struct
>>>>>>>> device_attribute *attr,
>>>>>>>> char *buf)
>>>>>>>> {
>>>>>>>> - struct xe_tile *tile = kobj_to_tile(&kdev->kobj);
>>>>>>>> + struct kobject *kobj = &kdev->kobj;
>>>>>>>> + struct xe_tile *tile = kobj_to_tile(kobj->parent);
>>>>>>>>
>>>>>>>> return sysfs_emit(buf, "%llu\n",
>>>>>>>> tile->mem.vram.actual_physical_size);
>>>>>>>> }
>>>>>>>> @@ -38,7 +39,7 @@ static void tile_sysfs_fini(struct drm_device
>>>>>>>> *drm, void
>>>>>>>> *arg) {
>>>>>>>> struct xe_tile *tile = arg;
>>>>>>>>
>>>>>>>> - kobject_put(tile->sysfs);
>>>>>>>> + kobject_del(tile->sysfs);
>>>>>>> Why kobekct_del instead of kobject_put?
>>>>>>> Thanks,
>>>>>>> Anshuman Gupta.
>>>>>> Hi Anshuman,
>>>>>>
>>>>>> Basically when sanity checking, after reload we see that we are not
>>>>>> doing a proper cleanup.
>>>>>>
>>>>>> kobject_put will only decrement the ref count and possibly free the
>>>>>> kobject.
>>>>>>
>>>>>> But that is not happening in this case. There is a duplicate
>>>>>> remaining
>>>>>> of the tile directory.
>>>>>>
>>>>>> This required a clean unregister of the parent from sysfs hence the
>>>>>> use of kobject_del.
>>>>>>
>>>>>> Thanks,
>>>>>>
>>>>>> Suja
>>>>> As a continuation of the above response;
>>>>>
>>>>> I can probably add a kobject_put call as well to ensure that we
>>>>> are cleaning
>>>>> up the memory side of
>>>>>
>>>>> things as well. Will add.
>>>>>
>>>>> Thanks,
>>>>>
>>>>> Suja
>>>>>
>>>>>>>> }
>>>>>>>>
>>>>>>>> void xe_tile_sysfs_init(struct xe_tile *tile) @@ -46,6 +47,7 @@
>>>>>>>> void xe_tile_sysfs_init(struct xe_tile *tile)
>>>>>>>> struct xe_device *xe = tile_to_xe(tile);
>>>>>>>> struct device *dev = xe->drm.dev;
>>>>>>>> struct kobj_tile *kt;
>>>>>>>> + struct kobject *kobj;
>>>>>>>> int err;
>>>>>>>>
>>>>>>>> kt = kzalloc(sizeof(*kt), GFP_KERNEL); @@ -64,8 +66,15
>>>>>>>> @@ void
>>>>>>>> xe_tile_sysfs_init(struct xe_tile *tile)
>>>>>>>>
>>>>>>>> tile->sysfs = &kt->base;
>>>>>>>>
>>>>>>>> + kobj = kobject_create_and_add("memory", tile->sysfs);
>>>>>>>> + if (!kobj) {
>>>>>>>> + kobject_put(kobj);
>>>> Do you mean to put kobject_put(tile->sysfs) instead of
>>>> kobject_put(kobj) ? as there was no Kobj created by the time you
>>>> reached here!
>>>>
>>>> Tejas
>>>
>>> Yup this should be fixed.
>> Hi Suja
>>
>> Removing tile won't be right, as there are other directories (gt#)
>> dependent on it. Simple return should be good with a warn?
>>
>> Thanks
>> Riana
> Sure. We can probably have the original cleanup in fini.
>>>
>>> Thanks.
>>>
>>> Suja
>>>
>>>>
>>>>>>>> + drm_warn(&xe->drm, "%s failed, err: %d\n", __func__, -
>>>>>>>> ENOMEM);
>>>>>>>> + return;
>>>>>>>> + }
>>>>>>>> +
>>>>>>>> if (IS_DGFX(xe) && xe->info.platform != XE_DG1 &&
>>>>>>>> - sysfs_create_file(tile->sysfs, physical_memsize_attr))
>>>>>>>> + sysfs_create_file(kobj, physical_memsize_attr))
>>>>>>>> drm_warn(&xe->drm,
>>>>>>>> "Sysfs creation to read addr_range per tile
>>>>>>>> failed\n");
>>>>>>>>
>>>>>>>> --
>>>>>>>> 2.25.1
Hi all,
So after all of this discussion, here's the final results after testing
the cleanup.
Regardless of anything we do in the init function, it looks like without
having the
two-step kobject_del and kobject_put cleanup in the sysfs_fini function
we will
see an error on reload with the tile directory not being fully cleaned
up and reporting
duplicate creation.
The solution seems to be just to add a kobject_del before kobject_put in
the fini
function.
I am only having warnings and simple returns on the init side.
If there can be a consensus about this from the reviewers, I can float
the next version
accordingly.
Thanks,
Suja
next prev parent reply other threads:[~2023-12-07 7:29 UTC|newest]
Thread overview: 27+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-12-06 4:47 [Intel-xe] [v2 0/2] Add memory sysfs directory and attributes Sujaritha Sundaresan
2023-12-06 4:47 ` [Intel-xe] [v2 1/2] drm/xe: Add a new memory directory under tile Sujaritha Sundaresan
2023-12-06 11:53 ` Gupta, Anshuman
2023-12-06 12:08 ` Sundaresan, Sujaritha
2023-12-06 12:13 ` Sundaresan, Sujaritha
2023-12-07 5:12 ` Upadhyay, Tejas
2023-12-07 5:21 ` Sundaresan, Sujaritha
2023-12-07 6:06 ` Riana Tauro
2023-12-07 6:38 ` Sundaresan, Sujaritha
2023-12-07 7:28 ` Sundaresan, Sujaritha [this message]
2023-12-07 8:30 ` Upadhyay, Tejas
2023-12-07 9:55 ` Sundaresan, Sujaritha
2023-12-07 12:38 ` Upadhyay, Tejas
2023-12-07 13:04 ` Sundaresan, Sujaritha
2023-12-06 4:47 ` [Intel-xe] [v2 2/2] drm/xe: Add vram frequency sysfs attributes Sujaritha Sundaresan
2023-12-06 11:55 ` Gupta, Anshuman
2023-12-06 12:10 ` Sundaresan, Sujaritha
2023-12-07 5:36 ` Sundaresan, Sujaritha
2023-12-07 6:02 ` Riana Tauro
2023-12-07 6:45 ` Sundaresan, Sujaritha
2023-12-06 9:46 ` [Intel-xe] ✓ CI.Patch_applied: success for Add memory sysfs directory and attributes (rev2) Patchwork
2023-12-06 9:46 ` [Intel-xe] ✗ CI.checkpatch: warning " Patchwork
2023-12-06 9:47 ` [Intel-xe] ✓ CI.KUnit: success " Patchwork
2023-12-06 9:55 ` [Intel-xe] ✓ CI.Build: " Patchwork
2023-12-06 9:55 ` [Intel-xe] ✓ CI.Hooks: " Patchwork
2023-12-06 9:56 ` [Intel-xe] ✓ CI.checksparse: " Patchwork
2023-12-06 10:35 ` [Intel-xe] ✓ CI.BAT: " 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=38a32c29-fd64-4770-82cd-6e3660d14191@intel.com \
--to=sujaritha.sundaresan@intel.com \
--cc=anshuman.gupta@intel.com \
--cc=intel-xe@lists.freedesktop.org \
--cc=riana.tauro@intel.com \
--cc=rodrigo.vivi@intel.com \
--cc=tejas.upadhyay@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