diff options
author | Takashi Iwai <tiwai@suse.de> | 2016-01-25 11:24:56 +0100 |
---|---|---|
committer | Takashi Iwai <tiwai@suse.de> | 2016-01-25 11:52:23 +0100 |
commit | da10816e3d923565b470fec78a674baba794ed33 (patch) | |
tree | 0ecf05bfb2a891063dc51363ef23085b64d9501b /sound/core/seq | |
parent | 599151336638d57b98d92338aa59c048e3a3e97d (diff) | |
download | op-kernel-dev-da10816e3d923565b470fec78a674baba794ed33.zip op-kernel-dev-da10816e3d923565b470fec78a674baba794ed33.tar.gz |
ALSA: seq: Degrade the error message for too many opens
ALSA OSS sequencer spews a kernel error message ("ALSA: seq_oss: too
many applications") when user-space tries to open more than the
limit. This means that it can easily fill the log buffer.
Since it's merely a normal error, it's safe to suppress it via
pr_debug() instead.
Cc: <stable@vger.kernel.org>
Signed-off-by: Takashi Iwai <tiwai@suse.de>
Diffstat (limited to 'sound/core/seq')
-rw-r--r-- | sound/core/seq/oss/seq_oss_init.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/core/seq/oss/seq_oss_init.c b/sound/core/seq/oss/seq_oss_init.c index b1221b2..6779e82b 100644 --- a/sound/core/seq/oss/seq_oss_init.c +++ b/sound/core/seq/oss/seq_oss_init.c @@ -202,7 +202,7 @@ snd_seq_oss_open(struct file *file, int level) dp->index = i; if (i >= SNDRV_SEQ_OSS_MAX_CLIENTS) { - pr_err("ALSA: seq_oss: too many applications\n"); + pr_debug("ALSA: seq_oss: too many applications\n"); rc = -ENOMEM; goto _error; } |