diff options
author | Akinobu Mita <mita@miraclelinux.com> | 2006-09-29 05:01:27 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2006-09-29 12:18:23 -0400 |
commit | 4050914f7c2665736a82265a029466071a90094e (patch) | |
tree | 529bf07480c936bb9e3be5b80ac0eb948946056b /drivers/char/tty_io.c | |
parent | 1a036cdd955b695b7e09e6505e6d6eba697f043e (diff) |
[PATCH] rate limiting for the ldisc open failure messages
This patch limits the messages when ldisc open faulures happen. It happens
under memory pressure.
Signed-off-by: Akinobu Mita <mita@miraclelinux.com>
Acked-by: Alan Cox <alan@redhat.com>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'drivers/char/tty_io.c')
-rw-r--r-- | drivers/char/tty_io.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/drivers/char/tty_io.c b/drivers/char/tty_io.c index 635437319778..333741770f1e 100644 --- a/drivers/char/tty_io.c +++ b/drivers/char/tty_io.c | |||
@@ -2065,8 +2065,9 @@ fail_no_mem: | |||
2065 | 2065 | ||
2066 | /* call the tty release_mem routine to clean out this slot */ | 2066 | /* call the tty release_mem routine to clean out this slot */ |
2067 | release_mem_out: | 2067 | release_mem_out: |
2068 | printk(KERN_INFO "init_dev: ldisc open failed, " | 2068 | if (printk_ratelimit()) |
2069 | "clearing slot %d\n", idx); | 2069 | printk(KERN_INFO "init_dev: ldisc open failed, " |
2070 | "clearing slot %d\n", idx); | ||
2070 | release_mem(tty, idx); | 2071 | release_mem(tty, idx); |
2071 | goto end_init; | 2072 | goto end_init; |
2072 | } | 2073 | } |