Re: [PATCH v11 2/9] drm/panic: Add a drm panic handler

2024-04-10 Thread Thomas Zimmermann
Hi Am 09.04.24 um 16:11 schrieb Jocelyn Falempe: Hi, On 09/04/2024 10:30, Thomas Zimmermann wrote: Hi Am 28.03.24 um 13:03 schrieb Jocelyn Falempe: +/** + * struct drm_scanout_buffer - DRM scanout buffer + * + * This structure holds the information necessary for drm_panic to draw the + * p

Re: [PATCH v11 2/9] drm/panic: Add a drm panic handler

2024-04-09 Thread Jocelyn Falempe
Hi, On 09/04/2024 10:30, Thomas Zimmermann wrote: Hi Am 28.03.24 um 13:03 schrieb Jocelyn Falempe: +/** + * struct drm_scanout_buffer - DRM scanout buffer + * + * This structure holds the information necessary for drm_panic to draw the + * panic screen, and display it. + */ +struct drm_scano

Re: [PATCH v11 2/9] drm/panic: Add a drm panic handler

2024-04-09 Thread Thomas Zimmermann
Hi Am 28.03.24 um 13:03 schrieb Jocelyn Falempe: +/** + * struct drm_scanout_buffer - DRM scanout buffer + * + * This structure holds the information necessary for drm_panic to draw the + * panic screen, and display it. + */ +struct drm_scanout_buffer { + /** +* @format: +*

[PATCH v11 2/9] drm/panic: Add a drm panic handler

2024-03-28 Thread Jocelyn Falempe
This module displays a user friendly message when a kernel panic occurs. It currently doesn't contain any debug information, but that can be added later. v2 * Use get_scanout_buffer() instead of the drm client API. (Thomas Zimmermann) * Add the panic reason to the panic message (Nerdopolis) *