mirror of
https://github.com/torvalds/linux.git
synced 2026-05-27 16:44:58 +02:00
drm/amdkfd: Copy HW exception data to user event
Fixes issue where user events of type KFD_EVENT_TYPE_HW_EXCEPTION do not have valid data Signed-off-by: David Yat Sin <David.YatSin@amd.com> Reviewed-by: Lijo Lazar <lijo.lazar@amd.com> Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
This commit is contained in:
parent
3f3b08be58
commit
a2d3c69261
|
|
@ -880,6 +880,10 @@ static int copy_signaled_event_data(uint32_t num_events,
|
|||
dst = &data[i].memory_exception_data;
|
||||
src = &event->memory_exception_data;
|
||||
size = sizeof(struct kfd_hsa_memory_exception_data);
|
||||
} else if (event->type == KFD_EVENT_TYPE_HW_EXCEPTION) {
|
||||
dst = &data[i].memory_exception_data;
|
||||
src = &event->hw_exception_data;
|
||||
size = sizeof(struct kfd_hsa_hw_exception_data);
|
||||
} else if (event->type == KFD_EVENT_TYPE_SIGNAL &&
|
||||
waiter->event_age_enabled) {
|
||||
dst = &data[i].signal_event_data.last_event_age;
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user