Re: [PATCH v2 2/2] drm/nouveau: nouveau_fence: Standardize list iterations

2025-04-23 Thread Danilo Krummrich
On Tue, Apr 15, 2025 at 02:19:01PM +0200, Philipp Stanner wrote: > nouveau_fence.c iterates over lists in a non-canonical way. Since the > operations done are just basic for-each-loops, they should be written in > the standard form. > > Use for_each_safe() instead of the custom loop iterations. P

Re: [PATCH v2 2/2] drm/nouveau: nouveau_fence: Standardize list iterations

2025-04-15 Thread Christian König
Am 15.04.25 um 14:19 schrieb Philipp Stanner: > nouveau_fence.c iterates over lists in a non-canonical way. Since the > operations done are just basic for-each-loops, they should be written in > the standard form. > > Use for_each_safe() instead of the custom loop iterations. > > Signed-off-by: Phi