Re: [PATCH v3 2/2] mmc: core: Let sanitize not retry in case of timeout/failure

From: Bean Huo
Date: Mon Apr 12 2021 - 13:47:02 EST


On Mon, 2021-04-12 at 09:50 +0200, Ulf Hansson wrote:
> > diff --git a/drivers/mmc/core/block.c b/drivers/mmc/core/block.c
> > index 8bfd4d95b386..9778093d7006 100644
> > --- a/drivers/mmc/core/block.c
> > +++ b/drivers/mmc/core/block.c
> > @@ -836,7 +836,7 @@ static inline int mmc_blk_part_switch(struct
> > mmc_card *card,
> > ret = mmc_switch(card, EXT_CSD_CMD_SET_NORMAL,
> > EXT_CSD_PART_CONFIG, part_config,
> > - card->ext_csd.part_time);
> > + card->ext_csd.part_time,
> > MMC_CMD_RETRIES);
>
>
> I would rather not change the mmc_switch() function definition, but
>
> only __mmc_switch(). Just let mmc_switch() pass another in-parameter
>
> (MMC_CMD_RETRIES) to __mmc_switch(), which means all callers of
>
> mmc_switch() doesn't need to get changed, but only callers of
>
> __mmc_switch().
>
>
>
> [...]
>
>
>
Hi Uffe,
Good point, I will change it in the next version of this patch.

thanks,
Bean

> Kind regards
>
> Uffe