All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] mtdchar: fix usage of mtd_ooblayout_ecc()
@ 2018-03-05 14:53 OuYang ZhiZhong
  2018-03-05 15:32 ` Boris Brezillon
  0 siblings, 1 reply; 2+ messages in thread
From: OuYang ZhiZhong @ 2018-03-05 14:53 UTC (permalink / raw)
  To: dwmw2
  Cc: computersforpeace, boris.brezillon, marek.vasut, richard,
	vdavydov.dev, cyrille.pitchen, linux-mtd, linux-kernel,
	oyzhizhong

Section was not properly computed. The value of OOB region definition is
always ECC section 0 information in the OOB area, but we want to get all
the ECC bytes information, so we should call
mtd_ooblayout_ecc(mtd, section++, &oobregion) until it returns -ERANGE.

This is fixed by using i instead of section.

Signed-off-by: OuYang ZhiZhong <oyzhizhong@gmail.com>
---
 drivers/mtd/mtdchar.c |    8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/drivers/mtd/mtdchar.c b/drivers/mtd/mtdchar.c
index de8c902..0cc929e 100644
--- a/drivers/mtd/mtdchar.c
+++ b/drivers/mtd/mtdchar.c
@@ -468,7 +468,7 @@ static int shrink_ecclayout(struct mtd_info *mtd,
 			    struct nand_ecclayout_user *to)
 {
 	struct mtd_oob_region oobregion;
-	int i, section = 0, ret;
+	int i, ret;
 
 	if (!mtd || !to)
 		return -EINVAL;
@@ -479,7 +479,7 @@ static int shrink_ecclayout(struct mtd_info *mtd,
 	for (i = 0; i < MTD_MAX_ECCPOS_ENTRIES;) {
 		u32 eccpos;
 
-		ret = mtd_ooblayout_ecc(mtd, section, &oobregion);
+		ret = mtd_ooblayout_ecc(mtd, i, &oobregion);
 		if (ret < 0) {
 			if (ret != -ERANGE)
 				return ret;
@@ -515,7 +515,7 @@ static int shrink_ecclayout(struct mtd_info *mtd,
 static int get_oobinfo(struct mtd_info *mtd, struct nand_oobinfo *to)
 {
 	struct mtd_oob_region oobregion;
-	int i, section = 0, ret;
+	int i, ret;
 
 	if (!mtd || !to)
 		return -EINVAL;
@@ -526,7 +526,7 @@ static int get_oobinfo(struct mtd_info *mtd, struct nand_oobinfo *to)
 	for (i = 0; i < ARRAY_SIZE(to->eccpos);) {
 		u32 eccpos;
 
-		ret = mtd_ooblayout_ecc(mtd, section, &oobregion);
+		ret = mtd_ooblayout_ecc(mtd, i, &oobregion);
 		if (ret < 0) {
 			if (ret != -ERANGE)
 				return ret;
-- 
1.7.9.5

^ permalink raw reply related	[flat|nested] 2+ messages in thread

* Re: [PATCH] mtdchar: fix usage of mtd_ooblayout_ecc()
  2018-03-05 14:53 [PATCH] mtdchar: fix usage of mtd_ooblayout_ecc() OuYang ZhiZhong
@ 2018-03-05 15:32 ` Boris Brezillon
  0 siblings, 0 replies; 2+ messages in thread
From: Boris Brezillon @ 2018-03-05 15:32 UTC (permalink / raw)
  To: OuYang ZhiZhong
  Cc: dwmw2, computersforpeace, boris.brezillon, marek.vasut, richard,
	vdavydov.dev, cyrille.pitchen, linux-mtd, linux-kernel

Hi OuYang,

On Mon,  5 Mar 2018 22:53:46 +0800
OuYang ZhiZhong <oyzhizhong@gmail.com> wrote:

> Section was not properly computed. The value of OOB region definition is
> always ECC section 0 information in the OOB area, but we want to get all
> the ECC bytes information, so we should call
> mtd_ooblayout_ecc(mtd, section++, &oobregion) until it returns -ERANGE.

Oops, indeed.

> 
> This is fixed by using i instead of section.
> 

Fixes: c2b78452a9db ("mtd: use mtd_ooblayout_xxx() helpers where appropriate")
Cc: <stable@vger.kernel.org>


> Signed-off-by: OuYang ZhiZhong <oyzhizhong@gmail.com>
> ---
>  drivers/mtd/mtdchar.c |    8 ++++----
>  1 file changed, 4 insertions(+), 4 deletions(-)
> 
> diff --git a/drivers/mtd/mtdchar.c b/drivers/mtd/mtdchar.c
> index de8c902..0cc929e 100644
> --- a/drivers/mtd/mtdchar.c
> +++ b/drivers/mtd/mtdchar.c
> @@ -468,7 +468,7 @@ static int shrink_ecclayout(struct mtd_info *mtd,
>  			    struct nand_ecclayout_user *to)
>  {
>  	struct mtd_oob_region oobregion;
> -	int i, section = 0, ret;
> +	int i, ret;
>  
>  	if (!mtd || !to)
>  		return -EINVAL;
> @@ -479,7 +479,7 @@ static int shrink_ecclayout(struct mtd_info *mtd,
>  	for (i = 0; i < MTD_MAX_ECCPOS_ENTRIES;) {
>  		u32 eccpos;
>  
> -		ret = mtd_ooblayout_ecc(mtd, section, &oobregion);
> +		ret = mtd_ooblayout_ecc(mtd, i, &oobregion);

Nope, you're not fixing the problem with that: i is encoding the
->eccpos index, not the OOB section. You should really do section++,
either here, or in the for statement.

>  		if (ret < 0) {
>  			if (ret != -ERANGE)
>  				return ret;
> @@ -515,7 +515,7 @@ static int shrink_ecclayout(struct mtd_info *mtd,
>  static int get_oobinfo(struct mtd_info *mtd, struct nand_oobinfo *to)
>  {
>  	struct mtd_oob_region oobregion;
> -	int i, section = 0, ret;
> +	int i, ret;
>  
>  	if (!mtd || !to)
>  		return -EINVAL;
> @@ -526,7 +526,7 @@ static int get_oobinfo(struct mtd_info *mtd, struct nand_oobinfo *to)
>  	for (i = 0; i < ARRAY_SIZE(to->eccpos);) {
>  		u32 eccpos;
>  
> -		ret = mtd_ooblayout_ecc(mtd, section, &oobregion);
> +		ret = mtd_ooblayout_ecc(mtd, i, &oobregion);

Ditto.

>  		if (ret < 0) {
>  			if (ret != -ERANGE)
>  				return ret;

Thanks,

Boris

-- 
Boris Brezillon, Bootlin (formerly Free Electrons)
Embedded Linux and Kernel engineering
https://bootlin.com

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2018-03-05 15:32 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-03-05 14:53 [PATCH] mtdchar: fix usage of mtd_ooblayout_ecc() OuYang ZhiZhong
2018-03-05 15:32 ` Boris Brezillon

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.