lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite: Windows password security audit tool. GUI, reports in PDF.
[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Date:   Sun, 27 May 2018 18:26:18 +0900
From:   Masahiro Yamada <yamada.masahiro@...ionext.com>
To:     Abhishek Sahu <absahu@...eaurora.org>
Cc:     Boris Brezillon <boris.brezillon@...tlin.com>,
        Archit Taneja <architt@...eaurora.org>,
        Richard Weinberger <richard@....at>,
        linux-arm-msm <linux-arm-msm@...r.kernel.org>,
        Miquel Raynal <miquel.raynal@...tlin.com>,
        Linux Kernel Mailing List <linux-kernel@...r.kernel.org>,
        Marek Vasut <marek.vasut@...il.com>,
        linux-mtd <linux-mtd@...ts.infradead.org>,
        Cyrille Pitchen <cyrille.pitchen@...ev4u.fr>,
        Andy Gross <andy.gross@...aro.org>,
        Brian Norris <computersforpeace@...il.com>,
        David Woodhouse <dwmw2@...radead.org>
Subject: Re: [PATCH v3 02/16] mtd: rawnand: denali: use helper function for
 ecc setup

2018-05-25 21:21 GMT+09:00 Abhishek Sahu <absahu@...eaurora.org>:
> Use the NAND core helper function nand_ecc_choose_conf to tune
> the ECC parameters instead of the function locally defined.
>
> CC: Masahiro Yamada <yamada.masahiro@...ionext.com>

You can replace the CC with my

Acked-by: Masahiro Yamada <yamada.masahiro@...ionext.com>



> Acked-by: Miquel Raynal <miquel.raynal@...tlin.com>
> Signed-off-by: Abhishek Sahu <absahu@...eaurora.org>
> ---
> * Changes from v2:
>
>   1. Changed commit message
>
> * Changes from v1:
>   NEW PATCH
>
>  drivers/mtd/nand/raw/denali.c | 30 ++----------------------------
>  1 file changed, 2 insertions(+), 28 deletions(-)
>
> diff --git a/drivers/mtd/nand/raw/denali.c b/drivers/mtd/nand/raw/denali.c
> index 2a302a1..a586a1d 100644
> --- a/drivers/mtd/nand/raw/denali.c
> +++ b/drivers/mtd/nand/raw/denali.c
> @@ -1120,33 +1120,6 @@ int denali_calc_ecc_bytes(int step_size, int strength)
>  }
>  EXPORT_SYMBOL(denali_calc_ecc_bytes);
>
> -static int denali_ecc_setup(struct mtd_info *mtd, struct nand_chip *chip,
> -                           struct denali_nand_info *denali)
> -{
> -       int oobavail = mtd->oobsize - denali->oob_skip_bytes;
> -       int ret;
> -
> -       /*
> -        * If .size and .strength are already set (usually by DT),
> -        * check if they are supported by this controller.
> -        */
> -       if (chip->ecc.size && chip->ecc.strength)
> -               return nand_check_ecc_caps(chip, denali->ecc_caps, oobavail);
> -
> -       /*
> -        * We want .size and .strength closest to the chip's requirement
> -        * unless NAND_ECC_MAXIMIZE is requested.
> -        */
> -       if (!(chip->ecc.options & NAND_ECC_MAXIMIZE)) {
> -               ret = nand_match_ecc_req(chip, denali->ecc_caps, oobavail);
> -               if (!ret)
> -                       return 0;
> -       }
> -
> -       /* Max ECC strength is the last thing we can do */
> -       return nand_maximize_ecc(chip, denali->ecc_caps, oobavail);
> -}
> -
>  static int denali_ooblayout_ecc(struct mtd_info *mtd, int section,
>                                 struct mtd_oob_region *oobregion)
>  {
> @@ -1317,7 +1290,8 @@ int denali_init(struct denali_nand_info *denali)
>         chip->ecc.mode = NAND_ECC_HW_SYNDROME;
>         chip->options |= NAND_NO_SUBPAGE_WRITE;
>
> -       ret = denali_ecc_setup(mtd, chip, denali);
> +       ret = nand_ecc_choose_conf(chip, denali->ecc_caps,
> +                                  mtd->oobsize - denali->oob_skip_bytes);
>         if (ret) {
>                 dev_err(denali->dev, "Failed to setup ECC settings.\n");
>                 goto disable_irq;
> --
> QUALCOMM INDIA, on behalf of Qualcomm Innovation Center, Inc.
> is a member of Code Aurora Forum, hosted by The Linux Foundation
>
>
> ______________________________________________________
> Linux MTD discussion mailing list
> http://lists.infradead.org/mailman/listinfo/linux-mtd/



-- 
Best Regards
Masahiro Yamada

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ