From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S933297AbbLHIPB (ORCPT ); Tue, 8 Dec 2015 03:15:01 -0500 Received: from down.free-electrons.com ([37.187.137.238]:58068 "EHLO mail.free-electrons.com" rhost-flags-OK-OK-OK-FAIL) by vger.kernel.org with ESMTP id S932837AbbLHIO7 convert rfc822-to-8bit (ORCPT ); Tue, 8 Dec 2015 03:14:59 -0500 Date: Tue, 8 Dec 2015 09:14:51 +0100 From: Boris Brezillon To: Priit Laes Cc: David Woodhouse , Brian Norris , linux-mtd@lists.infradead.org, Daniel Mack , Haojian Zhuang , Robert Jarzmik , Kukjin Kim , Krzysztof Kozlowski , linux-samsung-soc@vger.kernel.org, linux-arm-kernel@lists.infradead.org, Ralf Baechle , linux-mips@linux-mips.org, Josh Wu , Ezequiel Garcia , Maxime Ripard , Chen-Yu Tsai , linux-sunxi@googlegroups.com, Stefan Agner , Kyungmin Park , Greg Kroah-Hartman , devel@driverdev.osuosl.org, linux-kernel@vger.kernel.org, punnaiah choudary kalluri Subject: Re: [linux-sunxi] [PATCH 01/23] mtd: kill the ecclayout->oobavail field Message-ID: <20151208091451.4eef0b50@bbrezillon> In-Reply-To: <1449556985.25438.8.camel@plaes.org> References: <1449527178-5930-1-git-send-email-boris.brezillon@free-electrons.com> <1449527178-5930-2-git-send-email-boris.brezillon@free-electrons.com> <1449556985.25438.8.camel@plaes.org> X-Mailer: Claws Mail 3.11.1 (GTK+ 2.24.27; x86_64-pc-linux-gnu) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8BIT Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Hi Priit, On Tue, 08 Dec 2015 08:43:05 +0200 Priit Laes wrote: > On Mon, 2015-12-07 at 23:25 +0100, Boris Brezillon wrote: > > ecclayout->oobavail is just redundant with the mtd->oobavail field. > > Moreover, it prevents static const definition of ecc layouts since > > the > > NAND framework is calculating this value based on the ecclayout- > > >oobfree > > field. > > > > Signed-off-by: Boris Brezillon > > --- > >  drivers/mtd/devices/docg3.c                   |  5 ++- > >  drivers/mtd/mtdswap.c                         | 16 ++++----- > >  drivers/mtd/nand/brcmnand/brcmnand.c          |  3 -- > >  drivers/mtd/nand/docg4.c                      |  1 - > >  drivers/mtd/nand/hisi504_nand.c               |  1 - > >  drivers/mtd/nand/nand_base.c                  | 12 +++---- > >  drivers/mtd/onenand/onenand_base.c            | 16 ++++----- > >  drivers/mtd/tests/oobtest.c                   | 49 +++++++++++++-- > > ------------ > >  drivers/staging/mt29f_spinand/mt29f_spinand.c |  1 - > >  fs/jffs2/wbuf.c                               |  6 ++-- > >  include/linux/mtd/mtd.h                       |  1 - > >  11 files changed, 48 insertions(+), 63 deletions(-) > > > [..] > >   > > diff --git a/drivers/mtd/nand/brcmnand/brcmnand.c > > b/drivers/mtd/nand/brcmnand/brcmnand.c > > index 35d78f7..a906ec2 100644 > > --- a/drivers/mtd/nand/brcmnand/brcmnand.c > > +++ b/drivers/mtd/nand/brcmnand/brcmnand.c > > @@ -845,9 +845,6 @@ static struct nand_ecclayout *brcmnand_create_layout(int ecc_level, > >   break; > >   } > >  out: > > - /* Sum available OOB */ > > - for (i = 0; i < MTD_MAX_OOBFREE_ENTRIES_LARGE; i++) > > - layout->oobavail += layout->oobfree[i].length; > >   return layout; > >  } > > You can get rid of the 'out' label and replace the single goto in this > function with 'return layout'. Yep, I'll fix that. > > [...] > >   > > diff --git a/drivers/mtd/nand/nand_base.c > > b/drivers/mtd/nand/nand_base.c > > index 0748a13..1107f5c1 100644 > > --- a/drivers/mtd/nand/nand_base.c > > +++ b/drivers/mtd/nand/nand_base.c > > @@ -2037,7 +2037,7 @@ static int nand_do_read_oob(struct mtd_info > > *mtd, loff_t from, > >   stats = mtd->ecc_stats; > >   > >   if (ops->mode == MTD_OPS_AUTO_OOB) > > - len = chip->ecc.layout->oobavail; > > + len = mtd->oobavail; > >   else > >   len = mtd->oobsize; > >   > > @@ -2728,7 +2728,7 @@ static int nand_do_write_oob(struct mtd_info > > *mtd, loff_t to, > >    __func__, (unsigned int)to, (int)ops- > > >ooblen); > >   > >   if (ops->mode == MTD_OPS_AUTO_OOB) > > - len = chip->ecc.layout->oobavail; > > + len = mtd->oobavail; > >   else > >   len = mtd->oobsize; > >   > [...] > > diff --git a/drivers/mtd/onenand/onenand_base.c > > b/drivers/mtd/onenand/onenand_base.c > > index 43b3392..d70bbfd 100644 > > --- a/drivers/mtd/onenand/onenand_base.c > > +++ b/drivers/mtd/onenand/onenand_base.c > > @@ -1125,7 +1125,7 @@ static int onenand_mlc_read_ops_nolock(struct > > mtd_info *mtd, loff_t from, > >   (int)len); > >   > >   if (ops->mode == MTD_OPS_AUTO_OOB) > > - oobsize = this->ecclayout->oobavail; > > + oobsize = mtd->oobavail; > >   else > >   oobsize = mtd->oobsize; > >   > > @@ -1230,7 +1230,7 @@ static int onenand_read_ops_nolock(struct > > mtd_info *mtd, loff_t from, > >   (int)len); > >   > >   if (ops->mode == MTD_OPS_AUTO_OOB) > > - oobsize = this->ecclayout->oobavail; > > + oobsize = mtd->oobavail; > >   else > >   oobsize = mtd->oobsize; > >   > > @@ -1365,7 +1365,7 @@ static int onenand_read_oob_nolock(struct > > mtd_info *mtd, loff_t from, > >   ops->oobretlen = 0; > >   > >   if (mode == MTD_OPS_AUTO_OOB) > > - oobsize = this->ecclayout->oobavail; > > + oobsize = mtd->oobavail; > >   else > >   oobsize = mtd->oobsize; > >   > > @@ -1887,7 +1887,7 @@ static int onenand_write_ops_nolock(struct > > mtd_info *mtd, loff_t to, > >   return 0; > >   > >   if (ops->mode == MTD_OPS_AUTO_OOB) > > - oobsize = this->ecclayout->oobavail; > > + oobsize = mtd->oobavail; > >   else > >   oobsize = mtd->oobsize; > >   > > @@ -2063,7 +2063,7 @@ static int onenand_write_oob_nolock(struct > > mtd_info *mtd, loff_t to, > >   ops->oobretlen = 0; > >   > >   if (mode == MTD_OPS_AUTO_OOB) > > - oobsize = this->ecclayout->oobavail; > > + oobsize = mtd->oobavail; > >   else > >   oobsize = mtd->oobsize; > > This identical construction seems to occur multiple times in multiple > files. Would it make sense to create a macro for it? Right, I'll make another patch move this logic into an inline function. Thanks for the review. Boris -- Boris Brezillon, Free Electrons Embedded Linux and Kernel engineering http://free-electrons.com From mboxrd@z Thu Jan 1 00:00:00 1970 From: Boris Brezillon Subject: Re: [PATCH 01/23] mtd: kill the ecclayout->oobavail field Date: Tue, 8 Dec 2015 09:14:51 +0100 Message-ID: <20151208091451.4eef0b50@bbrezillon> References: <1449527178-5930-1-git-send-email-boris.brezillon@free-electrons.com> <1449527178-5930-2-git-send-email-boris.brezillon@free-electrons.com> <1449556985.25438.8.camel@plaes.org> Reply-To: boris.brezillon-wi1+55ScJUtKEb57/3fJTNBPR1lH4CV8@public.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable Return-path: In-Reply-To: <1449556985.25438.8.camel-q/aMd4JkU83YtjvyW6yDsg@public.gmane.org> List-Post: , List-Help: , List-Archive: , List-Unsubscribe: , To: Priit Laes Cc: David Woodhouse , Brian Norris , linux-mtd-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r@public.gmane.org, Daniel Mack , Haojian Zhuang , Robert Jarzmik , Kukjin Kim , Krzysztof Kozlowski , linux-samsung-soc-u79uwXL29TY76Z2rM5mHXA@public.gmane.org, linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r@public.gmane.org, Ralf Baechle , linux-mips-6z/3iImG2C8G8FEW9MqTrA@public.gmane.org, Josh Wu , Ezequiel Garcia , Maxime Ripard , Chen-Yu Tsai , linux-sunxi-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org, Stefan Agner , Kyungmin Park , Greg Kroah-Hartman , devel-gWbeCf7V1WCQmaza687I9mD2FQJk+8+b@public.gmane.org, linux-kernel-u79uwXL29TY76Z2rM5mHXA@public.gmane.org, punnaiah choudary kalluri List-Id: linux-samsung-soc@vger.kernel.org Hi Priit, On Tue, 08 Dec 2015 08:43:05 +0200 Priit Laes wrote: > On Mon, 2015-12-07 at 23:25 +0100, Boris Brezillon wrote: > > ecclayout->oobavail is just redundant with the mtd->oobavail field. > > Moreover, it prevents static const definition of ecc layouts since > > the > > NAND framework is calculating this value based on the ecclayout- > > >oobfree > > field. > >=20 > > Signed-off-by: Boris Brezillon > > --- > > =C2=A0drivers/mtd/devices/docg3.c=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0= =C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2= =A0|=C2=A0=C2=A05 ++- > > =C2=A0drivers/mtd/mtdswap.c=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0= =C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2= =A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0| 16 ++++----- > > =C2=A0drivers/mtd/nand/brcmnand/brcmnand.c=C2=A0=C2=A0=C2=A0=C2=A0=C2= =A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0|=C2=A0=C2=A03 -- > > =C2=A0drivers/mtd/nand/docg4.c=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2= =A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0= =C2=A0=C2=A0=C2=A0|=C2=A0=C2=A01 - > > =C2=A0drivers/mtd/nand/hisi504_nand.c=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2= =A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0|=C2=A0=C2=A01 - > > =C2=A0drivers/mtd/nand/nand_base.c=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0= =C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0| 1= 2 +++---- > > =C2=A0drivers/mtd/onenand/onenand_base.c=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0= =C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0| 16 ++++----- > > =C2=A0drivers/mtd/tests/oobtest.c=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0= =C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2= =A0| 49 +++++++++++++-- > > ------------ > > =C2=A0drivers/staging/mt29f_spinand/mt29f_spinand.c |=C2=A0=C2=A01 - > > =C2=A0fs/jffs2/wbuf.c=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0= =C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2= =A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0|=C2=A0=C2= =A06 ++-- > > =C2=A0include/linux/mtd/mtd.h=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0= =C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2= =A0=C2=A0=C2=A0=C2=A0|=C2=A0=C2=A01 - > > =C2=A011 files changed, 48 insertions(+), 63 deletions(-) > >=20 > [..] > > =C2=A0 > > diff --git a/drivers/mtd/nand/brcmnand/brcmnand.c > > b/drivers/mtd/nand/brcmnand/brcmnand.c > > index 35d78f7..a906ec2 100644 > > --- a/drivers/mtd/nand/brcmnand/brcmnand.c > > +++ b/drivers/mtd/nand/brcmnand/brcmnand.c > > @@ -845,9 +845,6 @@ static struct nand_ecclayout *brcmnand_create_layou= t(int ecc_level, > > =C2=A0 break; > > =C2=A0 } > > =C2=A0out: > > - /* Sum available OOB */ > > - for (i =3D 0; i < MTD_MAX_OOBFREE_ENTRIES_LARGE; i++) > > - layout->oobavail +=3D layout->oobfree[i].length; > > =C2=A0 return layout; > > =C2=A0} >=20 > You can get rid of the 'out' label and replace the single goto in this > function with 'return layout'. Yep, I'll fix that. >=20 > [...] > > =C2=A0 > > diff --git a/drivers/mtd/nand/nand_base.c > > b/drivers/mtd/nand/nand_base.c > > index 0748a13..1107f5c1 100644 > > --- a/drivers/mtd/nand/nand_base.c > > +++ b/drivers/mtd/nand/nand_base.c > > @@ -2037,7 +2037,7 @@ static int nand_do_read_oob(struct mtd_info > > *mtd, loff_t from, > > =C2=A0 stats =3D mtd->ecc_stats; > > =C2=A0 > > =C2=A0 if (ops->mode =3D=3D MTD_OPS_AUTO_OOB) > > - len =3D chip->ecc.layout->oobavail; > > + len =3D mtd->oobavail; > > =C2=A0 else > > =C2=A0 len =3D mtd->oobsize; > > =C2=A0 > > @@ -2728,7 +2728,7 @@ static int nand_do_write_oob(struct mtd_info > > *mtd, loff_t to, > > =C2=A0 =C2=A0__func__, (unsigned int)to, (int)ops- > > >ooblen); > > =C2=A0 > > =C2=A0 if (ops->mode =3D=3D MTD_OPS_AUTO_OOB) > > - len =3D chip->ecc.layout->oobavail; > > + len =3D mtd->oobavail; > > =C2=A0 else > > =C2=A0 len =3D mtd->oobsize; > > =C2=A0 > [...] > > diff --git a/drivers/mtd/onenand/onenand_base.c > > b/drivers/mtd/onenand/onenand_base.c > > index 43b3392..d70bbfd 100644 > > --- a/drivers/mtd/onenand/onenand_base.c > > +++ b/drivers/mtd/onenand/onenand_base.c > > @@ -1125,7 +1125,7 @@ static int onenand_mlc_read_ops_nolock(struct > > mtd_info *mtd, loff_t from, > > =C2=A0 (int)len); > > =C2=A0 > > =C2=A0 if (ops->mode =3D=3D MTD_OPS_AUTO_OOB) > > - oobsize =3D this->ecclayout->oobavail; > > + oobsize =3D mtd->oobavail; > > =C2=A0 else > > =C2=A0 oobsize =3D mtd->oobsize; > > =C2=A0 > > @@ -1230,7 +1230,7 @@ static int onenand_read_ops_nolock(struct > > mtd_info *mtd, loff_t from, > > =C2=A0 (int)len); > > =C2=A0 > > =C2=A0 if (ops->mode =3D=3D MTD_OPS_AUTO_OOB) > > - oobsize =3D this->ecclayout->oobavail; > > + oobsize =3D mtd->oobavail; > > =C2=A0 else > > =C2=A0 oobsize =3D mtd->oobsize; > > =C2=A0 > > @@ -1365,7 +1365,7 @@ static int onenand_read_oob_nolock(struct > > mtd_info *mtd, loff_t from, > > =C2=A0 ops->oobretlen =3D 0; > > =C2=A0 > > =C2=A0 if (mode =3D=3D MTD_OPS_AUTO_OOB) > > - oobsize =3D this->ecclayout->oobavail; > > + oobsize =3D mtd->oobavail; > > =C2=A0 else > > =C2=A0 oobsize =3D mtd->oobsize; > > =C2=A0 > > @@ -1887,7 +1887,7 @@ static int onenand_write_ops_nolock(struct > > mtd_info *mtd, loff_t to, > > =C2=A0 return 0; > > =C2=A0 > > =C2=A0 if (ops->mode =3D=3D MTD_OPS_AUTO_OOB) > > - oobsize =3D this->ecclayout->oobavail; > > + oobsize =3D mtd->oobavail; > > =C2=A0 else > > =C2=A0 oobsize =3D mtd->oobsize; > > =C2=A0 > > @@ -2063,7 +2063,7 @@ static int onenand_write_oob_nolock(struct > > mtd_info *mtd, loff_t to, > > =C2=A0 ops->oobretlen =3D 0; > > =C2=A0 > > =C2=A0 if (mode =3D=3D MTD_OPS_AUTO_OOB) > > - oobsize =3D this->ecclayout->oobavail; > > + oobsize =3D mtd->oobavail; > > =C2=A0 else > > =C2=A0 oobsize =3D mtd->oobsize; >=20 > This identical construction seems to occur multiple times in multiple > files. Would it make sense to create a macro for it? Right, I'll make another patch move this logic into an inline function. Thanks for the review. Boris --=20 Boris Brezillon, Free Electrons Embedded Linux and Kernel engineering http://free-electrons.com --=20 You received this message because you are subscribed to the Google Groups "= linux-sunxi" group. To unsubscribe from this group and stop receiving emails from it, send an e= mail to linux-sunxi+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org For more options, visit https://groups.google.com/d/optout. From mboxrd@z Thu Jan 1 00:00:00 1970 From: boris.brezillon@free-electrons.com (Boris Brezillon) Date: Tue, 8 Dec 2015 09:14:51 +0100 Subject: [linux-sunxi] [PATCH 01/23] mtd: kill the ecclayout->oobavail field In-Reply-To: <1449556985.25438.8.camel@plaes.org> References: <1449527178-5930-1-git-send-email-boris.brezillon@free-electrons.com> <1449527178-5930-2-git-send-email-boris.brezillon@free-electrons.com> <1449556985.25438.8.camel@plaes.org> Message-ID: <20151208091451.4eef0b50@bbrezillon> To: linux-arm-kernel@lists.infradead.org List-Id: linux-arm-kernel.lists.infradead.org Hi Priit, On Tue, 08 Dec 2015 08:43:05 +0200 Priit Laes wrote: > On Mon, 2015-12-07 at 23:25 +0100, Boris Brezillon wrote: > > ecclayout->oobavail is just redundant with the mtd->oobavail field. > > Moreover, it prevents static const definition of ecc layouts since > > the > > NAND framework is calculating this value based on the ecclayout- > > >oobfree > > field. > > > > Signed-off-by: Boris Brezillon > > --- > > ?drivers/mtd/devices/docg3.c???????????????????|??5 ++- > > ?drivers/mtd/mtdswap.c?????????????????????????| 16 ++++----- > > ?drivers/mtd/nand/brcmnand/brcmnand.c??????????|??3 -- > > ?drivers/mtd/nand/docg4.c??????????????????????|??1 - > > ?drivers/mtd/nand/hisi504_nand.c???????????????|??1 - > > ?drivers/mtd/nand/nand_base.c??????????????????| 12 +++---- > > ?drivers/mtd/onenand/onenand_base.c????????????| 16 ++++----- > > ?drivers/mtd/tests/oobtest.c???????????????????| 49 +++++++++++++-- > > ------------ > > ?drivers/staging/mt29f_spinand/mt29f_spinand.c |??1 - > > ?fs/jffs2/wbuf.c???????????????????????????????|??6 ++-- > > ?include/linux/mtd/mtd.h???????????????????????|??1 - > > ?11 files changed, 48 insertions(+), 63 deletions(-) > > > [..] > > ? > > diff --git a/drivers/mtd/nand/brcmnand/brcmnand.c > > b/drivers/mtd/nand/brcmnand/brcmnand.c > > index 35d78f7..a906ec2 100644 > > --- a/drivers/mtd/nand/brcmnand/brcmnand.c > > +++ b/drivers/mtd/nand/brcmnand/brcmnand.c > > @@ -845,9 +845,6 @@ static struct nand_ecclayout *brcmnand_create_layout(int ecc_level, > > ? break; > > ? } > > ?out: > > - /* Sum available OOB */ > > - for (i = 0; i < MTD_MAX_OOBFREE_ENTRIES_LARGE; i++) > > - layout->oobavail += layout->oobfree[i].length; > > ? return layout; > > ?} > > You can get rid of the 'out' label and replace the single goto in this > function with 'return layout'. Yep, I'll fix that. > > [...] > > ? > > diff --git a/drivers/mtd/nand/nand_base.c > > b/drivers/mtd/nand/nand_base.c > > index 0748a13..1107f5c1 100644 > > --- a/drivers/mtd/nand/nand_base.c > > +++ b/drivers/mtd/nand/nand_base.c > > @@ -2037,7 +2037,7 @@ static int nand_do_read_oob(struct mtd_info > > *mtd, loff_t from, > > ? stats = mtd->ecc_stats; > > ? > > ? if (ops->mode == MTD_OPS_AUTO_OOB) > > - len = chip->ecc.layout->oobavail; > > + len = mtd->oobavail; > > ? else > > ? len = mtd->oobsize; > > ? > > @@ -2728,7 +2728,7 @@ static int nand_do_write_oob(struct mtd_info > > *mtd, loff_t to, > > ? ?__func__, (unsigned int)to, (int)ops- > > >ooblen); > > ? > > ? if (ops->mode == MTD_OPS_AUTO_OOB) > > - len = chip->ecc.layout->oobavail; > > + len = mtd->oobavail; > > ? else > > ? len = mtd->oobsize; > > ? > [...] > > diff --git a/drivers/mtd/onenand/onenand_base.c > > b/drivers/mtd/onenand/onenand_base.c > > index 43b3392..d70bbfd 100644 > > --- a/drivers/mtd/onenand/onenand_base.c > > +++ b/drivers/mtd/onenand/onenand_base.c > > @@ -1125,7 +1125,7 @@ static int onenand_mlc_read_ops_nolock(struct > > mtd_info *mtd, loff_t from, > > ? (int)len); > > ? > > ? if (ops->mode == MTD_OPS_AUTO_OOB) > > - oobsize = this->ecclayout->oobavail; > > + oobsize = mtd->oobavail; > > ? else > > ? oobsize = mtd->oobsize; > > ? > > @@ -1230,7 +1230,7 @@ static int onenand_read_ops_nolock(struct > > mtd_info *mtd, loff_t from, > > ? (int)len); > > ? > > ? if (ops->mode == MTD_OPS_AUTO_OOB) > > - oobsize = this->ecclayout->oobavail; > > + oobsize = mtd->oobavail; > > ? else > > ? oobsize = mtd->oobsize; > > ? > > @@ -1365,7 +1365,7 @@ static int onenand_read_oob_nolock(struct > > mtd_info *mtd, loff_t from, > > ? ops->oobretlen = 0; > > ? > > ? if (mode == MTD_OPS_AUTO_OOB) > > - oobsize = this->ecclayout->oobavail; > > + oobsize = mtd->oobavail; > > ? else > > ? oobsize = mtd->oobsize; > > ? > > @@ -1887,7 +1887,7 @@ static int onenand_write_ops_nolock(struct > > mtd_info *mtd, loff_t to, > > ? return 0; > > ? > > ? if (ops->mode == MTD_OPS_AUTO_OOB) > > - oobsize = this->ecclayout->oobavail; > > + oobsize = mtd->oobavail; > > ? else > > ? oobsize = mtd->oobsize; > > ? > > @@ -2063,7 +2063,7 @@ static int onenand_write_oob_nolock(struct > > mtd_info *mtd, loff_t to, > > ? ops->oobretlen = 0; > > ? > > ? if (mode == MTD_OPS_AUTO_OOB) > > - oobsize = this->ecclayout->oobavail; > > + oobsize = mtd->oobavail; > > ? else > > ? oobsize = mtd->oobsize; > > This identical construction seems to occur multiple times in multiple > files. Would it make sense to create a macro for it? Right, I'll make another patch move this logic into an inline function. Thanks for the review. Boris -- Boris Brezillon, Free Electrons Embedded Linux and Kernel engineering http://free-electrons.com