Re: [PATCH] drm/xe: fix devcoredump chunk alignmnent calculation

2025-04-29 Thread Matthew Brost
On Tue, Apr 29, 2025 at 10:51:18AM -0700, Matthew Brost wrote: > On Tue, Apr 29, 2025 at 09:34:00AM +0200, Arnd Bergmann wrote: > > From: Arnd Bergmann > > > > The device core dumps are copied in 1.5GB chunks, which leads to a > > link-time error on 32-bit builds because of the 64-bit division no

Re: [PATCH] drm/xe: fix devcoredump chunk alignmnent calculation

2025-04-29 Thread Matthew Brost
On Tue, Apr 29, 2025 at 09:34:00AM +0200, Arnd Bergmann wrote: > From: Arnd Bergmann > > The device core dumps are copied in 1.5GB chunks, which leads to a > link-time error on 32-bit builds because of the 64-bit division not > getting trivially turned into mask and shift operations: > > ERROR:

[PATCH] drm/xe: fix devcoredump chunk alignmnent calculation

2025-04-29 Thread Arnd Bergmann
From: Arnd Bergmann The device core dumps are copied in 1.5GB chunks, which leads to a link-time error on 32-bit builds because of the 64-bit division not getting trivially turned into mask and shift operations: ERROR: modpost: "__moddi3" [drivers/gpu/drm/xe/xe.ko] undefined! On top of this, I