linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH v3 3/3] counter: 104-quad-8: Add lock guards for filter clock prescaler
@ 2020-03-12 11:25 Syed Nayyar Waris
  2020-03-12 15:40 ` William Breathitt Gray
  0 siblings, 1 reply; 2+ messages in thread
From: Syed Nayyar Waris @ 2020-03-12 11:25 UTC (permalink / raw)
  To: vilhelm.gray; +Cc: jic23, linux-iio, linux-kernel

Add lock protection from race conditions in the 104-quad-8 counter
driver for filter clock prescaler related changes. There is no IRQ
handling so used spin_lock calls for protection.

Fixes: 9b74dddf79be ("counter: 104-quad-8: Support Filter Clock
Prescaler")

Signed-off-by: Syed Nayyar Waris <syednwaris@gmail.com>

Split the patch from generic interface and differential encoder cable
status changes. Also, include more code statements for protection using
spin_lock calls and remove protection from few code statements which are
unnecessary.
---
 drivers/counter/104-quad-8.c | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/drivers/counter/104-quad-8.c b/drivers/counter/104-quad-8.c
index 9dab190..58615e4 100644
--- a/drivers/counter/104-quad-8.c
+++ b/drivers/counter/104-quad-8.c
@@ -1230,6 +1230,8 @@ static ssize_t quad8_signal_fck_prescaler_write(struct counter_device *counter,
 	if (ret)
 		return ret;
 
+	spin_lock(&priv->lock);
+
 	priv->fck_prescaler[channel_id] = prescaler;
 
 	/* Reset Byte Pointer */
@@ -1240,6 +1242,8 @@ static ssize_t quad8_signal_fck_prescaler_write(struct counter_device *counter,
 	outb(QUAD8_CTR_RLD | QUAD8_RLD_RESET_BP | QUAD8_RLD_PRESET_PSC,
 	     base_offset + 1);
 
+	spin_unlock(&priv->lock);
+
 	return len;
 }
 
-- 
2.7.4


^ permalink raw reply related	[flat|nested] 2+ messages in thread

* Re: [PATCH v3 3/3] counter: 104-quad-8: Add lock guards for filter clock prescaler
  2020-03-12 11:25 [PATCH v3 3/3] counter: 104-quad-8: Add lock guards for filter clock prescaler Syed Nayyar Waris
@ 2020-03-12 15:40 ` William Breathitt Gray
  0 siblings, 0 replies; 2+ messages in thread
From: William Breathitt Gray @ 2020-03-12 15:40 UTC (permalink / raw)
  To: Syed Nayyar Waris; +Cc: jic23, linux-iio, linux-kernel

[-- Attachment #1: Type: text/plain, Size: 1913 bytes --]

On Thu, Mar 12, 2020 at 04:55:52PM +0530, Syed Nayyar Waris wrote:
> Add lock protection from race conditions in the 104-quad-8 counter
> driver for filter clock prescaler related changes. There is no IRQ
> handling so used spin_lock calls for protection.
> 
> Fixes: 9b74dddf79be ("counter: 104-quad-8: Support Filter Clock
> Prescaler")
> 
> Signed-off-by: Syed Nayyar Waris <syednwaris@gmail.com>
> 
> Split the patch from generic interface and differential encoder cable
> status changes. Also, include more code statements for protection using
> spin_lock calls and remove protection from few code statements which are
> unnecessary.
> ---

Hello Syed,

Remove the review comments from the commit message and I think this
patch is all right. You can also extend the Fixes line so that it
doesn't wrap around. Add the following Signed-off-by line underneath
yours and it'll remind me that I've already reviewed this patch when you
submit v4 of your patchset:

Signed-off-by: William Breathitt Gray <vilhelm.gray@gmail.com>

Thank you,

William Breathitt Gray

>  drivers/counter/104-quad-8.c | 4 ++++
>  1 file changed, 4 insertions(+)
> 
> diff --git a/drivers/counter/104-quad-8.c b/drivers/counter/104-quad-8.c
> index 9dab190..58615e4 100644
> --- a/drivers/counter/104-quad-8.c
> +++ b/drivers/counter/104-quad-8.c
> @@ -1230,6 +1230,8 @@ static ssize_t quad8_signal_fck_prescaler_write(struct counter_device *counter,
>  	if (ret)
>  		return ret;
>  
> +	spin_lock(&priv->lock);
> +
>  	priv->fck_prescaler[channel_id] = prescaler;
>  
>  	/* Reset Byte Pointer */
> @@ -1240,6 +1242,8 @@ static ssize_t quad8_signal_fck_prescaler_write(struct counter_device *counter,
>  	outb(QUAD8_CTR_RLD | QUAD8_RLD_RESET_BP | QUAD8_RLD_PRESET_PSC,
>  	     base_offset + 1);
>  
> +	spin_unlock(&priv->lock);
> +
>  	return len;
>  }
>  
> -- 
> 2.7.4
> 

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 833 bytes --]

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2020-03-12 15:40 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-03-12 11:25 [PATCH v3 3/3] counter: 104-quad-8: Add lock guards for filter clock prescaler Syed Nayyar Waris
2020-03-12 15:40 ` William Breathitt Gray

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).