From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752098AbdCCOL2 (ORCPT ); Fri, 3 Mar 2017 09:11:28 -0500 Received: from mail.free-electrons.com ([62.4.15.54]:36646 "EHLO mail.free-electrons.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751369AbdCCOLZ (ORCPT ); Fri, 3 Mar 2017 09:11:25 -0500 Date: Fri, 3 Mar 2017 15:11:07 +0100 From: Boris Brezillon To: Alban Cc: linux-kernel@vger.kernel.org, devicetree@vger.kernel.org, linux-mtd@lists.infradead.org, Cyrille Pitchen , Richard Weinberger , Marek Vasut , Brian Norris , David Woodhouse , Mark Rutland , Rob Herring , Maxime Ripard , Srinivas Kandagatla , Moritz Fischer Subject: Re: [PATCH 2/3] mtd: Add support for reading MTD devices via the nvmem API Message-ID: <20170303151107.36754d19@bbrezillon> In-Reply-To: <20170303145726.16cd67fd@tock> References: <1488484223-844-1-git-send-email-albeu@free.fr> <1488484223-844-3-git-send-email-albeu@free.fr> <20170302221803.223ff23b@bbrezillon> <20170303133629.3aac2945@tock> <20170303143658.5d89a329@bbrezillon> <20170303145726.16cd67fd@tock> X-Mailer: Claws Mail 3.13.2 (GTK+ 2.24.30; x86_64-pc-linux-gnu) MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Fri, 3 Mar 2017 14:57:26 +0100 Alban wrote: > On Fri, 3 Mar 2017 14:36:58 +0100 > Boris Brezillon wrote: > > > On Fri, 3 Mar 2017 13:36:29 +0100 > > Alban wrote: > > > > > On Thu, 2 Mar 2017 22:18:03 +0100 > > > Boris Brezillon wrote: > > > > > > > On Thu, 2 Mar 2017 20:50:22 +0100 > > > > Alban wrote: > > > > > > > > [snip] > > > > > > [snip] > > > > > > Maybe we should let notifiers return an error if they want to cancel > > > > the removal, or maybe this is a good reason to put the nvmem pointer > > > > directly in mtd_info and call mtd_nvmem_add/remove() directly from > > > > add/del_mtd_device() and allow them to return an error. > > > > > > > > Not that, if you go for this solution, you'll also get rid of the > > > > global mtd_nvmem_list list and the associated lock. > > > > > > IMHO the MTD users framework has to be re-worked to be useful. First > > > both the add and remove callbacks should have return values. Users where > > > the add failed shouldn't be removed later and users where the remove > > > fails should block the removal of the MTD. > > > > As said in my previous reply, it's not just about returning an error. I > > had a closer look at the code, and it seems that using > > __get_mtd_device() properly should prevent the problem we are talking > > about (call __get_mtd_device() after your nvmem_register() and call > > __put_mtd_device() only if nvmem_unregister() succeed). > > That's not going to work. If the notifier add increase the MTD reference > count it can never be removed again. That's not true, see the del_mtd_device() function [1], it's calling the ->remove() notifiers before even testing ->usecount, so, if you call __put_mtd_device() in your ->remove() hook you should be fine. > What could work would be to > propagate the nvmem device ref counting down to the MTD device, but that > sound complex and would require some non-trivial locking to still allow > for an "always succeed" removal. > > > > > > > Furthermore only passing the MTD device to the add/remove callback > > > force the users to keep their own list, which is annoying to say the > > > least. A simple fix would be to have the add callback return a pointer > > > that would be passed back to the remove callback. Trivial to implement > > > and the MTD user wouldn't have to keep any list. I will look into this > > > in the next days. > > > > That's a different problem, and I'm not sure I like the idea of > > changing the ->add() prototype into > > > > void *(*add)(struct mtd_info *); > > > > If we want to do that, I'd rather see an API extension allowing one to > > attach/detach/query/update user data to an MTD device. > > Under which condition would these be triggered? That sound more than is > needed. I would just use the above add along with: > > int (*remove)(struct mtd_info *, void *); > > And add a list of successfully added notifiers, along with their > data pointer, to the MTD device. That's simple and would also remove > the need for notifier to have a private list of their instances as I > had to do here. And then you're abusing the notifier concept. As said earlier, a notifier is not necessarily using the device, and thus, don't necessarily need private data. It's not only about what is the simplest solution for your use case, but also what other users want/need. [1]http://lxr.free-electrons.com/source/drivers/mtd/mtdcore.c#L592