All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] mmc: limit the number of retries when analyse tuples failed
@ 2021-01-12 14:17 Fengnan Chang
  2021-01-19 13:23 ` Ulf Hansson
  0 siblings, 1 reply; 2+ messages in thread
From: Fengnan Chang @ 2021-01-12 14:17 UTC (permalink / raw)
  To: ulf.hansson; +Cc: linux-mmc, Fengnan Chang

when analyse tuples failed, may enter an endless loop,so limit the number of retries.

Signed-off-by: Fengnan Chang <fengnanchang@gmail.com>
---
 drivers/mmc/core/sdio_cis.c | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/drivers/mmc/core/sdio_cis.c b/drivers/mmc/core/sdio_cis.c
index dcb3dee59fa5..a3f0c3cc0c2c 100644
--- a/drivers/mmc/core/sdio_cis.c
+++ b/drivers/mmc/core/sdio_cis.c
@@ -266,6 +266,7 @@ static int sdio_read_cis(struct mmc_card *card, struct sdio_func *func)
 
 	do {
 		unsigned char tpl_code, tpl_link;
+		int  tries = 100;
 
 		ret = mmc_io_rw_direct(card, 0, 0, ptr++, 0, &tpl_code);
 		if (ret)
@@ -318,6 +319,9 @@ static int sdio_read_cis(struct mmc_card *card, struct sdio_func *func)
 			prev = &this->next;
 
 			if (ret == -ENOENT) {
+				tries--;
+				if (!tries)
+					break;
 				/* warn about unknown tuples */
 				pr_warn_ratelimited("%s: queuing unknown"
 				       " CIS tuple 0x%02x (%u bytes)\n",
-- 
2.25.1


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

end of thread, other threads:[~2021-01-19 14:49 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-01-12 14:17 [PATCH] mmc: limit the number of retries when analyse tuples failed Fengnan Chang
2021-01-19 13:23 ` Ulf Hansson

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.