From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id EF10AC32771 for ; Sat, 24 Sep 2022 15:56:35 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S229704AbiIXP4f (ORCPT ); Sat, 24 Sep 2022 11:56:35 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:57002 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S229915AbiIXP4d (ORCPT ); Sat, 24 Sep 2022 11:56:33 -0400 Received: from dfw.source.kernel.org (dfw.source.kernel.org [139.178.84.217]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 7F978AFAC3 for ; Sat, 24 Sep 2022 08:56:32 -0700 (PDT) Received: from smtp.kernel.org (relay.kernel.org [52.25.139.140]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by dfw.source.kernel.org (Postfix) with ESMTPS id 262FA61223 for ; Sat, 24 Sep 2022 15:56:32 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id 32749C433D6; Sat, 24 Sep 2022 15:56:23 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1664034991; bh=qTNlpHMISOV4KB0CLJWivSAEHSg4ucI5/yCwcRMQb9Q=; h=Date:From:To:Cc:Subject:In-Reply-To:References:From; b=U5SU6zfWEMemO2eUwr8AcRknz02mxUkWLX0GEjuaM6BJK5UPkwG8MOUbPUZkNfR6f qVtpLIVYRKOT/3KOLYSnsgUn7T574PZkUtYmGP7StoN6DdQ2OYZXioFFfgpBhnM5fL NwuMh4LiKHom3/wYu14i+wGNK3/n4W2hQxamwQIGZmUCmMza1YLNCwuyXwe79KPUD3 EivzdII9szCi0vc9FVO3sPR1XbIfwUT6BlrMHtN6GPh4LO8kV93eN3QzIS/iLoD5PJ 94vZLjMy8VlelkmOWYbCcvi6xilAP1WiZ/Lq5lv2tLPvEVsfRWWAvE15Zv3KO+L6sl xaKqRall014tA== Date: Sat, 24 Sep 2022 16:56:32 +0100 From: Jonathan Cameron To: Nuno =?UTF-8?B?U8Oh?= Cc: , , , , , Chunyan Zhang , Michael Hennerich , Martin Blumenstingl , Sascha Hauer , Cixi Geng , Kevin Hilman , Vladimir Zapolskiy , Pengutronix Kernel Team , Alexandru Ardelean , "Fabio Estevam" , Andriy Tryshnivskyy , Haibo Chen , "Shawn Guo" , Hans de Goede , Miquel Raynal , Jerome Brunet , "Heiko Stuebner" , Florian Boor , Ciprian Regus , Lars-Peter Clausen , Andy Shevchenko , Neil Armstrong , "Baolin Wang" , Jyoti Bhayana , Chen-Yu Tsai , Orson Zhai Subject: Re: [PATCH 15/15] iio: core: move 'mlock' to 'struct iio_dev_opaque' Message-ID: <20220924165632.2641725f@jic23-huawei> In-Reply-To: <20220920112821.975359-16-nuno.sa@analog.com> References: <20220920112821.975359-1-nuno.sa@analog.com> <20220920112821.975359-16-nuno.sa@analog.com> X-Mailer: Claws Mail 4.1.0 (GTK 3.24.34; x86_64-pc-linux-gnu) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable Precedence: bulk List-ID: X-Mailing-List: linux-iio@vger.kernel.org On Tue, 20 Sep 2022 13:28:21 +0200 Nuno S=C3=A1 wrote: > Now that there are no more users accessing 'mlock' directly, we can move > it to the iio_dev private structure. Hence, it's now explicit that new > driver's should not directly this lock. >=20 > Signed-off-by: Nuno S=C3=A1 LGTM Nice work