From: Liu Chuansheng Date: Mon, 9 Jul 2012 10:26:42 +0000 (-0400) Subject: mmc: sdio: Change pr_warning to pr_warn_ratelimited X-Git-Tag: v3.6-rc1~153^2~13 X-Git-Url: https://openfabrics.org/gitweb/?a=commitdiff_plain;h=aa6439daddf579b93ace8b45956a416234c3854c;p=~emulex%2Finfiniband.git mmc: sdio: Change pr_warning to pr_warn_ratelimited When debugging one bad issue, got lots of pr_warning messages "queuing unknown CIS tuple" which caused a printk storm and flooded the console. This patch changes the pr_warning to use pr_warn_ratelimited. Signed-off-by: Liu Chuansheng Signed-off-by: Chris Ball --- diff --git a/drivers/mmc/core/sdio_cis.c b/drivers/mmc/core/sdio_cis.c index f1c7ed8f4d8..8e94e555b78 100644 --- a/drivers/mmc/core/sdio_cis.c +++ b/drivers/mmc/core/sdio_cis.c @@ -313,7 +313,7 @@ static int sdio_read_cis(struct mmc_card *card, struct sdio_func *func) if (ret == -ENOENT) { /* warn about unknown tuples */ - pr_warning("%s: queuing unknown" + pr_warn_ratelimited("%s: queuing unknown" " CIS tuple 0x%02x (%u bytes)\n", mmc_hostname(card->host), tpl_code, tpl_link);