On Mon, 15 Dec 2025 11:54:56 +0000 Lukas Zapolskas <[email protected]> wrote:
> group->task_info.pid, group->task_info.comm);
>
> group->fatal_queues |= BIT(cs_id);
> +
> + if (panthor_vm_has_unhandled_faults(group->vm)) {
> + struct panthor_vm_fault *fault;
> +
> + fault = panthor_vm_get_fault(group->vm);
> + if (fault)
> + group->fatal = *fault;
group->vm can't be NULL, meaning fault can't be NULL either.
> + }
> }
