From 02b1d65639bd02002259d606e95b48efe4a875ee Mon Sep 17 00:00:00 2001 From: jsg Date: Mon, 29 Jan 2024 01:47:49 +0000 Subject: [PATCH] drm/amdkfd: Fix type of 'dbg_flags' in 'struct kfd_process' From Srinivasan Shanmugam 9b0cc30d26c32432b334ee7a5fc11b9d401c0a85 in linux-6.6.y/6.6.14 217e85f97031791fb48a2d374c7bdcf439365b21 in mainline linux --- sys/dev/pci/drm/amd/amdkfd/kfd_priv.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/dev/pci/drm/amd/amdkfd/kfd_priv.h b/sys/dev/pci/drm/amd/amdkfd/kfd_priv.h index df7a5cdb869..3287a396139 100644 --- a/sys/dev/pci/drm/amd/amdkfd/kfd_priv.h +++ b/sys/dev/pci/drm/amd/amdkfd/kfd_priv.h @@ -971,7 +971,7 @@ struct kfd_process { struct work_struct debug_event_workarea; /* Tracks debug per-vmid request for debug flags */ - bool dbg_flags; + u32 dbg_flags; atomic_t poison; /* Queues are in paused stated because we are in the process of doing a CRIU checkpoint */ -- 2.20.1