Commit 101fee63 authored by Moses Reuben's avatar Moses Reuben Committed by Oded Gabbay

drm/amdkfd: send SIGSEGV to process upon KFD_EVENT_TYPE_MEMORY

Signed-off-by: default avatarMoses Reuben <moses.reuben@amd.com>
Reviewed-by: default avatarFelix Kuehling <Felix.Kuehling@amd.com>
Signed-off-by: default avatarFelix Kuehling <Felix.Kuehling@amd.com>
Acked-by: default avatarChristian König <christian.koenig@amd.com>
Signed-off-by: default avatarOded Gabbay <oded.gabbay@gmail.com>
parent e47cb828
...@@ -850,6 +850,13 @@ static void lookup_events_by_type_and_signal(struct kfd_process *p, ...@@ -850,6 +850,13 @@ static void lookup_events_by_type_and_signal(struct kfd_process *p,
ev->memory_exception_data = *ev_data; ev->memory_exception_data = *ev_data;
} }
if (type == KFD_EVENT_TYPE_MEMORY) {
dev_warn(kfd_device,
"Sending SIGSEGV to HSA Process with PID %d ",
p->lead_thread->pid);
send_sig(SIGSEGV, p->lead_thread, 0);
}
/* Send SIGTERM no event of type "type" has been found*/ /* Send SIGTERM no event of type "type" has been found*/
if (send_signal) { if (send_signal) {
if (send_sigterm) { if (send_sigterm) {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment