Re: [PATCH v2 2/5] staging: most: dim2: replace BUG_ON() in service_done_flag()
From: grondon
Date: Wed Apr 01 2026 - 06:24:20 EST
From: Gabriel Rondon <grondon@xxxxxxxxx>
On Tue, 31 Mar 2026 22:40:00 +0300, Dan Carpenter wrote:
> Check them all, right? Maybe the others are similar?
Checked. Patches 3/5 through 5/5 (configure_channel, enqueue,
poison_channel) only check ch_idx range, no hdm_ch NULL check — those
are fine.
Patch 1/5 (try_start_dim_transfer) does have the same unnecessary
!hdm_ch check. hdm_ch is a parameter there, but it's already
dereferenced on the line above (head = &hdm_ch->pending_list), so a
NULL check after that is dead code. Will send a fix for that one too.
Thanks,
Gabriel