Re: [PATCH 0/4] drm/panic: Add a qr_code panic screen

2024-07-04 Thread Jocelyn Falempe
On 04/07/2024 11:18, Alice Ryhl wrote: On Wed, Jul 3, 2024 at 5:44 PM Jocelyn Falempe wrote: This series adds a new panic screen, with the kmsg data embedded in a QR-code. The main advantage of QR-code, is that you can copy/paste the debug data to a bug report. The QR-code encoder is wri

Re: [PATCH 0/4] drm/panic: Add a qr_code panic screen

2024-07-04 Thread Alice Ryhl
On Wed, Jul 3, 2024 at 5:44 PM Jocelyn Falempe wrote: > > This series adds a new panic screen, with the kmsg data embedded in a QR-code. > > The main advantage of QR-code, is that you can copy/paste the debug data to a > bug report. > > The QR-code encoder is written in rust, and is very specific

Re: [PATCH 0/4] drm/panic: Add a qr_code panic screen

2024-07-04 Thread Alice Ryhl
On Thu, Jul 4, 2024 at 7:03 AM Greg KH wrote: > > On Wed, Jul 03, 2024 at 05:33:57PM +0200, Jocelyn Falempe wrote: > > Jocelyn Falempe (4): > > drm/panic: Add integer scaling to blit() > > drm/rect: add drm_rect_overlap() > > drm/panic: simplify logo handling > > drm/panic: Add a qr_code p

Re: [PATCH 0/4] drm/panic: Add a qr_code panic screen

2024-07-04 Thread Jocelyn Falempe
On 04/07/2024 07:03, Greg KH wrote: On Wed, Jul 03, 2024 at 05:33:57PM +0200, Jocelyn Falempe wrote: This series adds a new panic screen, with the kmsg data embedded in a QR-code. The main advantage of QR-code, is that you can copy/paste the debug data to a bug report. The QR-code encoder

Re: [PATCH 0/4] drm/panic: Add a qr_code panic screen

2024-07-04 Thread Miguel Ojeda
On Thu, Jul 4, 2024 at 7:03 AM Greg KH wrote: > > Wait, we can put .rs files in any directory now? I didn't think that > worked properly yet. We can put leaves of the crate graph (e.g. in-tree we have the samples and the PHY driver), but not the rest of the graph. The former fits just fine in Kb

Re: [PATCH 0/4] drm/panic: Add a qr_code panic screen

2024-07-03 Thread Greg KH
On Wed, Jul 03, 2024 at 05:33:57PM +0200, Jocelyn Falempe wrote: > This series adds a new panic screen, with the kmsg data embedded in a QR-code. > > The main advantage of QR-code, is that you can copy/paste the debug data to a > bug report. > > The QR-code encoder is written in rust, and is ver

[PATCH 0/4] drm/panic: Add a qr_code panic screen

2024-07-03 Thread Jocelyn Falempe
This series adds a new panic screen, with the kmsg data embedded in a QR-code. The main advantage of QR-code, is that you can copy/paste the debug data to a bug report. The QR-code encoder is written in rust, and is very specific to drm_panic. The reason is that it is called in a panic handler,