All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] ARM: samsung: adc: fix race in s3c_adc_start
@ 2012-07-12  2:12 ` Todd Poynor
  0 siblings, 0 replies; 10+ messages in thread
From: Todd Poynor @ 2012-07-12  2:12 UTC (permalink / raw)
  To: Ben Dooks, Kukjin Kim
  Cc: linux-arm-kernel, linux-samsung-soc, eunki_kim, Todd Poynor

Checking for adc->ts_pend already claimed should be done with the
lock held.

Change-Id: Ic9f15e26bd19934ab8c2885ce5df265933ac304a
Signed-off-by: Todd Poynor <toddpoynor@google.com>
---
 arch/arm/plat-samsung/adc.c |    8 +++++---
 1 files changed, 5 insertions(+), 3 deletions(-)

diff --git a/arch/arm/plat-samsung/adc.c b/arch/arm/plat-samsung/adc.c
index 33ecd0c..b1e05cc 100644
--- a/arch/arm/plat-samsung/adc.c
+++ b/arch/arm/plat-samsung/adc.c
@@ -157,11 +157,13 @@ int s3c_adc_start(struct s3c_adc_client *client,
 		return -EINVAL;
 	}
 
-	if (client->is_ts && adc->ts_pend)
-		return -EAGAIN;
-
 	spin_lock_irqsave(&adc->lock, flags);
 
+	if (client->is_ts && adc->ts_pend) {
+		spin_unlock_irqrestore(&adc->lock, flags);
+		return -EAGAIN;
+	}
+
 	client->channel = channel;
 	client->nr_samples = nr_samples;
 
-- 
1.7.7.3

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

end of thread, other threads:[~2012-07-13 11:28 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2012-07-12  2:12 [PATCH] ARM: samsung: adc: fix race in s3c_adc_start Todd Poynor
2012-07-12  2:12 ` Todd Poynor
2012-07-12 12:31 ` Ben Dooks
2012-07-12 12:31   ` Ben Dooks
2012-07-12 22:41   ` Kukjin Kim
2012-07-12 22:41     ` Kukjin Kim
2012-07-13  1:35     ` Todd Poynor
2012-07-13  1:35       ` Todd Poynor
2012-07-13 11:28       ` Kukjin Kim
2012-07-13 11:28         ` Kukjin Kim

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.