]> www.infradead.org Git - users/dwmw2/linux.git/commit
drm/amdkfd: change kfd process kref count at creation
authorXiaogang Chen <xiaogang.chen@amd.com>
Mon, 28 Oct 2024 20:06:19 +0000 (15:06 -0500)
committerAlex Deucher <alexander.deucher@amd.com>
Mon, 11 Nov 2024 16:56:08 +0000 (11:56 -0500)
commit6cb6d437b57a16487197e4abc3ab2838d7bf473c
treed723dcf5a71343f830831c0dfce86281ed4becce
parent408d20812742014c57b145eb4509364a0c92a1bb
drm/amdkfd: change kfd process kref count at creation

kfd process kref count(process->ref) is initialized to 1 by kref_init. After
it is created not need to increase its kref. Instad add kfd process kref at kfd
process mmu notifier allocation since we already decrease the kref at
free_notifier of mmu_notifier_ops, so pair them.

When user process opens kfd node multiple times the kfd process kref is
increased each time to balance with kfd node close operation.

Signed-off-by: Xiaogang Chen <xiaogang.chen@amd.com>
Reviewed-by: Felix Kuehling <felix.kuehling@amd.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
drivers/gpu/drm/amd/amdkfd/kfd_process.c