public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH] sound/hda: rate-limit timeout message
@ 2005-10-31 21:20 Randy Dunlap
  0 siblings, 0 replies; only message in thread
From: Randy Dunlap @ 2005-10-31 21:20 UTC (permalink / raw)
  To: perex, akpm; +Cc: lkml

From: Randy Dunlap <randy_d_dunlap@linux.intel.com>

Rate-limit the azx_get_response timeout message.
A continuous 2 per second is too much.

Signed-off-by: Randy Dunlap <randy_d_dunlap@linux.intel.com>
---

 sound/pci/hda/hda_intel.c |    5 ++++-
 1 files changed, 4 insertions(+), 1 deletion(-)

diff -Naurp linux-2614-work/sound/pci/hda/hda_intel.c~hda_rate_limit linux-2614-work/sound/pci/hda/hda_intel.c
--- linux-2614-work/sound/pci/hda/hda_intel.c~hda_rate_limit	2005-10-27 17:02:08.000000000 -0700
+++ linux-2614-work/sound/pci/hda/hda_intel.c	2005-10-31 13:11:33.000000000 -0800
@@ -37,6 +37,7 @@
 #include <asm/io.h>
 #include <linux/delay.h>
 #include <linux/interrupt.h>
+#include <linux/kernel.h>
 #include <linux/module.h>
 #include <linux/moduleparam.h>
 #include <linux/init.h>
@@ -508,7 +509,9 @@ static unsigned int azx_get_response(str
 
 	while (chip->rirb.cmds) {
 		if (! --timeout) {
-			snd_printk(KERN_ERR "azx_get_response timeout\n");
+			if (printk_ratelimit())
+				snd_printk(KERN_ERR
+					"azx_get_response timeout\n");
 			chip->rirb.rp = azx_readb(chip, RIRBWP);
 			chip->rirb.cmds = 0;
 			return -1;


---

^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2005-10-31 21:18 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2005-10-31 21:20 [PATCH] sound/hda: rate-limit timeout message Randy Dunlap

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox