public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
From: Jonathan Cameron <jic23@kernel.org>
To: Sanjay Chitroda <sanjayembeddedse@gmail.com>
Cc: dlechner@baylibre.com, nuno.sa@analog.com, andy@kernel.org,
	mingo@kernel.org, christophe.jaillet@wanadoo.fr,
	nabijaczleweli@nabijaczleweli.xyz, kees@kernel.org,
	kyungmin.park@samsung.com, k.wrona@samsung.com,
	linux-iio@vger.kernel.org, linux-kernel@vger.kernel.org
Subject: Re: [PATCH v7 2/9] iio: ssp_sensors: factor out pending list add/remove helper(s)
Date: Tue, 5 May 2026 17:38:59 +0100	[thread overview]
Message-ID: <20260505173859.19b79034@jic23-huawei> (raw)
In-Reply-To: <F6B75893-D8A8-4072-BB26-83F630805700@gmail.com>

On Sun, 03 May 2026 16:53:27 +0530
Sanjay Chitroda <sanjayembeddedse@gmail.com> wrote:

> On 26 April 2026 7:38:30 pm IST, Jonathan Cameron <jic23@kernel.org> wrote:
> >On Sun, 26 Apr 2026 14:47:03 +0530
> >Sanjay Chitroda <sanjayembeddedse@gmail.com> wrote:
> >  
> >> From: Sanjay Chitroda <sanjayembeddedse@gmail.com>
> >> 
> >> The SSP SPI transfer path manipulates the pending message list in
> >> multiple places, each time open-coding the same locking and list
> >> operations.
> >> 
> >> Re-factor the pending list add and delete logic into small helper
> >> functions and drop use_no_irq variable to avoid duplication and
> >> simplify transfer flow to follow.
> >> 
> >> No functional change intended.
> >> 
> >> Signed-off-by: Sanjay Chitroda <sanjayembeddedse@gmail.com>
> >> Suggested-by: Andy Shevchenko <andriy.shevchenko@intel.com>
> >> Reviewed-by: Andy Shevchenko <andriy.shevchenko@intel.com>
> >> ---
> >> Changes in v7:
> >> - Following suggestion from Andy, keep helper API definition in single
> >>   line and re-place the comment section
> >> - v6 change: https://lore.kernel.org/all/20260415050749.3858046-4-sanjayembedded@gmail.com/
> >> Changes in v6:
> >> - Include tag for the suggestion of helper functions
> >> - Drop completely use_no_irq variable with review comment from Andy
> >> - v5 change: https://lore.kernel.org/all/20260406080852.2727453-4-sanjayembedded@gmail.com/
> >> ---
> >>  drivers/iio/common/ssp_sensors/ssp_spi.c | 58 ++++++++++++++----------
> >>  1 file changed, 33 insertions(+), 25 deletions(-)
> >> 
> >> diff --git a/drivers/iio/common/ssp_sensors/ssp_spi.c b/drivers/iio/common/ssp_sensors/ssp_spi.c
> >> index 08ed92859be0..870214551f0b 100644
> >> --- a/drivers/iio/common/ssp_sensors/ssp_spi.c
> >> +++ b/drivers/iio/common/ssp_sensors/ssp_spi.c
> >> @@ -174,15 +174,35 @@ static int ssp_check_lines(struct ssp_data *data, bool state)
> >>  	return 0;
> >>  }
> >>  
> >> +static inline void ssp_pending_add(struct ssp_data *data, struct ssp_msg *msg)
> >> +{
> >> +	/*
> >> +	 * Check if this is a short one way message or the whole transfer has
> >> +	 * second part after an interrupt.
> >> +	 */
> >> +	if (msg->length == 0)
> >> +		return;  
> >
> >I know Andy suggested your bring these into the helpers, but to me
> >it's obscuring flow as it looks at the caller like it was added
> >to the pending list when it wasn't..  And we end up with multiple
> >checks on msg_length where we had one before.
> >
> >One option would be to have it return a bool to indicate whether
> >it was added to the pending list or not.
> >
> >Andy, would that work for you?
> >  
> >> +
> >> +	mutex_lock(&data->pending_lock);
> >> +	list_add_tail(&msg->list, &data->pending_list);
> >> +	mutex_unlock(&data->pending_lock);
> >> +}
> >> +
> >> +static inline void ssp_pending_del(struct ssp_data *data, struct ssp_msg *msg)
> >> +{
> >> +	/* See ssp_pending_add() for transfer length logic */
> >> +	if (msg->length == 0)  
> >Not useful to know if this happened at caller, so no need to return
> >bool from this.  
> >> +		return;
> >> +
> >> +	mutex_lock(&data->pending_lock);
> >> +	list_del(&msg->list);
> >> +	mutex_unlock(&data->pending_lock);
> >> +}
> >> +
> >>  static int ssp_do_transfer(struct ssp_data *data, struct ssp_msg *msg,
> >>  			   struct completion *done, int timeout)
> >>  {
> >>  	int status;
> >> -	/*
> >> -	 * check if this is a short one way message or the whole transfer has
> >> -	 * second part after an interrupt
> >> -	 */
> >> -	const bool use_no_irq = msg->length == 0;
> >>  
> >>  	if (data->shut_down)
> >>  		return -EPERM;
> >> @@ -202,35 +222,23 @@ static int ssp_do_transfer(struct ssp_data *data, struct ssp_msg *msg,
> >>  		goto _error_locked;
> >>  	}
> >>  
> >> -	if (!use_no_irq) {
> >> -		mutex_lock(&data->pending_lock);
> >> -		list_add_tail(&msg->list, &data->pending_list);
> >> -		mutex_unlock(&data->pending_lock);
> >> -	}
> >> +	ssp_pending_add(data, msg);  
> >
> >With suggestion above this would become
> >  
> Thank you for the input.
> Agree will include in next series.
> 
> >	use_irq = ssp_pending_add(data, msg);  
> >>  
> >>  	status = ssp_check_lines(data, true);
> >>  	if (status < 0) {
> >> -		if (!use_no_irq) {
> >> -			mutex_lock(&data->pending_lock);
> >> -			list_del(&msg->list);
> >> -			mutex_unlock(&data->pending_lock);
> >> -		}
> >> +		ssp_pending_del(data, msg);
> >>  		goto _error_locked;
> >>  	}
> >>  
> >>  	mutex_unlock(&data->comm_lock);
> >>  
> >> -	if (!use_no_irq && done)
> >> -		if (wait_for_completion_timeout(done,
> >> -						msecs_to_jiffies(timeout)) ==
> >> -		    0) {
> >> -			mutex_lock(&data->pending_lock);
> >> -			list_del(&msg->list);
> >> -			mutex_unlock(&data->pending_lock);
> >> +	if (msg->length && done &&  
> >then
> >	if (use_irq && done &&
> >	    !wait_for_completion_timeout()  
> >> +	    !wait_for_completion_timeout(done, msecs_to_jiffies(timeout))) {
> >> +		ssp_pending_del(data, msg);
> >>  
> >> -			data->timeout_cnt++;
> >> -			return -ETIMEDOUT;
> >> -		}
> >> +		data->timeout_cnt++;
> >> +		return -ETIMEDOUT;
> >> +	}
> >>  
> >>  	return 0;
> >>    
> >The mix of using a goto error handling block and not in here is not elegant but
> >it's would take quite a bit of reorganizing to tidy that up.  One option would be to
> >factor out this bit
> >	mutex_lock(&data->comm_lock);
> >
> >	status = ssp_check_lines(data, false);
> >	if (status < 0)
> >		goto _error_locked;
> >
> >	status = spi_write(data->spi, msg->buffer, SSP_HEADER_SIZE);
> >	if (status < 0) {
> >		gpiod_set_value_cansleep(data->ap_mcu_gpiod, 1);
> >		dev_err(SSP_DEV, "%s spi_write fail\n", __func__);
> >		goto _error_locked;
> >	}
> >
> >	if (!use_no_irq) {
> >		mutex_lock(&data->pending_lock);
> >		list_add_tail(&msg->list, &data->pending_list);
> >		mutex_unlock(&data->pending_lock);
> >	}
> >
> >	status = ssp_check_lines(data, true);
> >	if (status < 0) {
> >		if (!use_no_irq) {
> >			mutex_lock(&data->pending_lock);
> >			list_del(&msg->list);
> >			mutex_unlock(&data->pending_lock);
> >		}
> >		goto _error_locked;
> >	}
> >
> >	mutex_unlock(&data->comm_lock);
> >
> >into a helper, use guard() for the outer mutex and then direct returns.
> >  
> Hi Jonathan,
> 
> Thank you for review and point,
> 
> If we convert this change to sub-function then suggested use_irq would be shifted to sub-function; then how would you suggest to handle that bool ?
> - keep msg->length as it is
> - in sub function __ssp_do_transfer(data, msg), should we pass additional parameter to bool for further execution?
Pass in any additional parameters you need. If it becomes too long then 
this was a bad idea and you should ignore me ;)

J
> 
> Or any better alternative to handle both ?
> 
> Thanks,
> Sanjay Chitroda
> 
> >Then we only have a simple check on return value from that to decide
> >to increment the counter and exit on error.
> >  


  reply	other threads:[~2026-05-05 16:39 UTC|newest]

Thread overview: 33+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2026-04-26  9:17 [PATCH v7 0/9] iio: ssp_sensors: improve resource cleanup Sanjay Chitroda
2026-04-26  9:17 ` [PATCH v7 1/9] iio: ssp_sensors: cleanup codestyle warning Sanjay Chitroda
2026-04-26 13:53   ` Jonathan Cameron
2026-04-29 18:12     ` Sanjay Chitroda
2026-04-26  9:17 ` [PATCH v7 2/9] iio: ssp_sensors: factor out pending list add/remove helper(s) Sanjay Chitroda
2026-04-26 14:08   ` Jonathan Cameron
2026-04-27  8:05     ` Andy Shevchenko
2026-05-03 11:23     ` Sanjay Chitroda
2026-05-05 16:38       ` Jonathan Cameron [this message]
2026-04-26  9:17 ` [PATCH v7 3/9] iio: ssp_sensors: cancel delayed work_refresh on remove Sanjay Chitroda
2026-04-26 14:09   ` Jonathan Cameron
2026-04-29 18:06     ` Sanjay Chitroda
2026-04-29 18:09       ` Jonathan Cameron
2026-04-26  9:17 ` [PATCH v7 4/9] iio: ssp_sensors: factor out mcu enable/disable helper(s) Sanjay Chitroda
2026-04-26 14:13   ` Jonathan Cameron
2026-04-26  9:17 ` [PATCH v7 5/9] iio: ssp_sensors: use local struct device Sanjay Chitroda
2026-04-26 14:16   ` Jonathan Cameron
2026-04-27  8:09     ` Andy Shevchenko
2026-05-03 12:06       ` Sanjay Chitroda
2026-04-26  9:17 ` [PATCH v7 6/9] iio: ssp_sensors: Drop duplicated wdt timer and work cleanup Sanjay Chitroda
2026-04-27  8:17   ` Andy Shevchenko
2026-05-03 13:06     ` Sanjay Chitroda
2026-04-26  9:17 ` [PATCH v7 7/9] iio: ssp_sensors: convert probe and teardown to devm-managed resources Sanjay Chitroda
2026-04-26  9:17 ` [PATCH v7 8/9] iio: ssp_sensors: Use dev_err_probe Sanjay Chitroda
2026-04-26 14:24   ` Jonathan Cameron
2026-04-27  8:20     ` Andy Shevchenko
2026-04-27  8:19   ` Andy Shevchenko
2026-04-26  9:17 ` [PATCH v7 9/9] iio: ssp_sensors: reuse embedded RX buffer for SPI transfers Sanjay Chitroda
2026-04-26 14:31   ` Jonathan Cameron
2026-05-03 15:02     ` Sanjay Chitroda
2026-04-26 14:35   ` Jonathan Cameron
2026-05-03 14:17     ` Sanjay Chitroda
2026-05-04  8:41       ` Andy Shevchenko

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20260505173859.19b79034@jic23-huawei \
    --to=jic23@kernel.org \
    --cc=andy@kernel.org \
    --cc=christophe.jaillet@wanadoo.fr \
    --cc=dlechner@baylibre.com \
    --cc=k.wrona@samsung.com \
    --cc=kees@kernel.org \
    --cc=kyungmin.park@samsung.com \
    --cc=linux-iio@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=mingo@kernel.org \
    --cc=nabijaczleweli@nabijaczleweli.xyz \
    --cc=nuno.sa@analog.com \
    --cc=sanjayembeddedse@gmail.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox