RE: [PATCH] drm/amdgpu: Report individual reset error

2025-10-05 Thread Kamal, Asad
[AMD Official Use Only - AMD Internal Distribution Only] Reviewed-by: Asad Kamal Thanks & Regards Asad -Original Message- From: Lazar, Lijo Sent: Monday, October 6, 2025 10:49 AM To: amd-gfx@lists.freedesktop.org Cc: Zhang, Hawking ; Deucher, Alexander ; Kamal, Asad Subject: [PATCH]

[PATCH v2 05/19 5.15.y] minmax: avoid overly complicated constant expressions in VM code

2025-10-05 Thread Eliav Farber
From: Linus Torvalds [ Upstream commit 3a7e02c040b130b5545e4b115aada7bacd80a2b6 ] The minmax infrastructure is overkill for simple constants, and can cause huge expansions because those simple constants are then used by other things. For example, 'pageblock_order' is a core VM constant, but bec

[PATCH v2 14/19 5.15.y] minmax.h: update some comments

2025-10-05 Thread Eliav Farber
From: David Laight [ Upstream commit 10666e99204818ef45c702469488353b5bb09ec7 ] - Change three to several. - Remove the comment about retaining constant expressions, no longer true. - Realign to nearer 80 columns and break on major punctiation. - Add a leading comment to the block before __signe

[PATCH v2 07/19 5.15.y] minmax: simplify and clarify min_t()/max_t() implementation

2025-10-05 Thread Eliav Farber
From: Linus Torvalds [ Upstream commit 017fa3e89187848fd056af757769c9e66ac3e93d ] This simplifies the min_t() and max_t() macros by no longer making them work in the context of a C constant expression. That means that you can no longer use them for static initializers or for array sizes in type

[PATCH v2 02/19 5.15.y] minmax: Introduce {min,max}_array()

2025-10-05 Thread Eliav Farber
From: Herve Codina [ Upstream commit c952c748c7a983a8bda9112984e6f2c1f6e441a5 ] Introduce min_array() (resp max_array()) in order to get the minimal (resp maximum) of values present in an array. Signed-off-by: Herve Codina Reviewed-by: Andy Shevchenko Reviewed-by: Christophe Leroy Link: http