From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1754605AbbAJLQE (ORCPT ); Sat, 10 Jan 2015 06:16:04 -0500 Received: from saturn.retrosnub.co.uk ([178.18.118.26]:56274 "EHLO saturn.retrosnub.co.uk" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751085AbbAJLQB (ORCPT ); Sat, 10 Jan 2015 06:16:01 -0500 Message-ID: <54B109F0.5060101@kernel.org> Date: Sat, 10 Jan 2015 11:16:00 +0000 From: Jonathan Cameron User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:31.0) Gecko/20100101 Thunderbird/31.3.0 MIME-Version: 1.0 To: Harald Geyer CC: Richard Weinberger , knaack.h@gmx.de, lars@metafoo.de, pmeerw@pmeerw.net, sanjeev_sharma@mentor.com, linux-iio@vger.kernel.org, linux-kernel@vger.kernel.org Subject: Re: [PATCHv2 2/3,RESEND] iio: dht11: Add locking References: <1417563176-31972-1-git-send-email-richard@nod.at> <54A53FBF.5000003@kernel.org> <7e4f6a70e48afe96457ebbcf07572224@imap.cosmopool.net> <54A680F8.30209@nod.at> <54A91DA1.6080107@kernel.org> <54AA97B9.7040703@nod.at> In-Reply-To: Content-Type: text/plain; charset=windows-1252 Content-Transfer-Encoding: 7bit Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On 07/01/15 12:18, Harald Geyer wrote: > Make sure that the read function is not interrupted... > > From: Richard Weinberger > Signed-off-by: Richard Weinberger > Acked-by: Harald Geyer > Reviewed-by: Sanjeev Sharma > --- > Resending again to get the metadata right. > No Signed-off-by from me, because I didn't contribute anything. Technically you 'handled' the patch which is all that actually matters for a sign-off. Anyhow I don't really care either way ;) Applied to the fixes-togreg branch of iio.git Thanks, Jonathan > No changes since v1 except reordering. > > drivers/iio/humidity/dht11.c | 5 +++++ > 1 files changed, 5 insertions(+), 0 deletions(-) > > diff --git a/drivers/iio/humidity/dht11.c b/drivers/iio/humidity/dht11.c > index f546eca..7717f5c 100644 > --- a/drivers/iio/humidity/dht11.c > +++ b/drivers/iio/humidity/dht11.c > @@ -29,6 +29,7 @@ > #include > #include > #include > +#include > #include > #include > #include > @@ -57,6 +58,7 @@ struct dht11 { > int irq; > > struct completion completion; > + struct mutex lock; > > s64 timestamp; > int temperature; > @@ -145,6 +147,7 @@ static int dht11_read_raw(struct iio_dev *iio_dev, > struct dht11 *dht11 = iio_priv(iio_dev); > int ret; > > + mutex_lock(&dht11->lock); > if (dht11->timestamp + DHT11_DATA_VALID_TIME < iio_get_time_ns()) { > reinit_completion(&dht11->completion); > > @@ -185,6 +188,7 @@ static int dht11_read_raw(struct iio_dev *iio_dev, > ret = -EINVAL; > err: > dht11->num_edges = -1; > + mutex_unlock(&dht11->lock); > return ret; > } > > @@ -268,6 +272,7 @@ static int dht11_probe(struct platform_device *pdev) > platform_set_drvdata(pdev, iio); > > init_completion(&dht11->completion); > + mutex_init(&dht11->lock); > iio->name = pdev->name; > iio->dev.parent = &pdev->dev; > iio->info = &dht11_iio_info; >