public inbox for linux-mtd@lists.infradead.org
 help / color / mirror / Atom feed
  • * Re: [PATCH v3 1/2] mtd: partitions: clarify __mtd_del_partition() name
           [not found] <20190117152929.28256-1-miquel.raynal@bootlin.com>
           [not found] ` <20190117152929.28256-2-miquel.raynal@bootlin.com>
    @ 2019-01-21 10:03 ` Boris Brezillon
      2019-01-22 11:01   ` Miquel Raynal
      1 sibling, 1 reply; 4+ messages in thread
    From: Boris Brezillon @ 2019-01-21 10:03 UTC (permalink / raw)
      To: Miquel Raynal
      Cc: Tudor Ambarus, Richard Weinberger, Marek Vasut, linux-mtd,
    	Brian Norris, David Woodhouse
    
    On Thu, 17 Jan 2019 16:29:28 +0100
    Miquel Raynal <miquel.raynal@bootlin.com> wrote:
    
    > __mtd_del_partition() is a helper that must be called after the
    > partition lock has ben taken. As there are already a few similar names
    
    		     ^been
    
    > (mtd_del_partitions(), del_mtd_partitions(), __mtd_del_partitions()),
    > make this clear by renaming the helper mtd_del_partition_locked().
    
    That's indeed a good step forward, but we still have all those variants
    using sightly different names (mtd_<action>() and <action>_mtd()).
    Would be great if we could make the names more explicit for those
    functions too (or remove those that are unneeded). 
    
    > 
    > Signed-off-by: Miquel Raynal <miquel.raynal@bootlin.com>
    > ---
    >  drivers/mtd/mtdpart.c | 10 +++++-----
    >  1 file changed, 5 insertions(+), 5 deletions(-)
    > 
    > diff --git a/drivers/mtd/mtdpart.c b/drivers/mtd/mtdpart.c
    > index b6af41b04622..32beb9c2641f 100644
    > --- a/drivers/mtd/mtdpart.c
    > +++ b/drivers/mtd/mtdpart.c
    > @@ -627,20 +627,20 @@ int mtd_add_partition(struct mtd_info *parent, const char *name,
    >  EXPORT_SYMBOL_GPL(mtd_add_partition);
    >  
    >  /**
    > - * __mtd_del_partition - delete MTD partition
    > + * mtd_del_partition_locked - delete MTD partition
    >   *
    >   * @priv: internal MTD struct for partition to be deleted
    >   *
    >   * This function must be called with the partitions mutex locked.
    >   */
    > -static int __mtd_del_partition(struct mtd_part *priv)
    > +static int mtd_del_partition_locked(struct mtd_part *priv)
    >  {
    >  	struct mtd_part *child, *next;
    >  	int err;
    >  
    >  	list_for_each_entry_safe(child, next, &mtd_partitions, list) {
    >  		if (child->parent == &priv->mtd) {
    > -			err = __mtd_del_partition(child);
    > +			err = mtd_del_partition_locked(child);
    >  			if (err)
    >  				return err;
    >  		}
    > @@ -670,7 +670,7 @@ int del_mtd_partitions(struct mtd_info *mtd)
    >  	mutex_lock(&mtd_partitions_mutex);
    >  	list_for_each_entry_safe(slave, next, &mtd_partitions, list)
    >  		if (slave->parent == mtd) {
    > -			ret = __mtd_del_partition(slave);
    > +			ret = mtd_del_partition_locked(slave);
    >  			if (ret < 0)
    >  				err = ret;
    >  		}
    > @@ -688,7 +688,7 @@ int mtd_del_partition(struct mtd_info *mtd, int partno)
    >  	list_for_each_entry_safe(slave, next, &mtd_partitions, list)
    >  		if ((slave->parent == mtd) &&
    >  		    (slave->mtd.index == partno)) {
    > -			ret = __mtd_del_partition(slave);
    > +			ret = mtd_del_partition_locked(slave);
    >  			break;
    >  		}
    >  	mutex_unlock(&mtd_partitions_mutex);
    
    
    ______________________________________________________
    Linux MTD discussion mailing list
    http://lists.infradead.org/mailman/listinfo/linux-mtd/
    
    ^ permalink raw reply	[flat|nested] 4+ messages in thread

  • end of thread, other threads:[~2019-01-22 11:12 UTC | newest]
    
    Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
    -- links below jump to the message on this page --
         [not found] <20190117152929.28256-1-miquel.raynal@bootlin.com>
         [not found] ` <20190117152929.28256-2-miquel.raynal@bootlin.com>
    2019-01-17 20:29   ` [PATCH v3 2/2] mtd: rework partitions handling Boris Brezillon
    2019-01-22 11:12     ` Miquel Raynal
    2019-01-21 10:03 ` [PATCH v3 1/2] mtd: partitions: clarify __mtd_del_partition() name Boris Brezillon
    2019-01-22 11:01   ` Miquel Raynal
    

    This is a public inbox, see mirroring instructions
    for how to clone and mirror all data and code used for this inbox