The patch titled rate limiting for the ldisc open failure messages has been removed from the -mm tree. Its filename is rate-limiting-for-the-ldisc-open-failure-messages.patch This patch was dropped because it was merged into mainline or a subsystem tree ------------------------------------------------------ Subject: rate limiting for the ldisc open failure messages From: Akinobu Mita <mita@xxxxxxxxxxxxxxxx> This patch limits the messages when ldisc open faulures happen. It happens under memory pressure. Signed-off-by: Akinobu Mita <mita@xxxxxxxxxxxxxxxx> Acked-by: Alan Cox <alan@xxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxx> --- drivers/char/tty_io.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff -puN drivers/char/tty_io.c~rate-limiting-for-the-ldisc-open-failure-messages drivers/char/tty_io.c --- a/drivers/char/tty_io.c~rate-limiting-for-the-ldisc-open-failure-messages +++ a/drivers/char/tty_io.c @@ -2065,8 +2065,9 @@ fail_no_mem: /* call the tty release_mem routine to clean out this slot */ release_mem_out: - printk(KERN_INFO "init_dev: ldisc open failed, " - "clearing slot %d\n", idx); + if (printk_ratelimit()) + printk(KERN_INFO "init_dev: ldisc open failed, " + "clearing slot %d\n", idx); release_mem(tty, idx); goto end_init; } _ Patches currently in -mm which might be from mita@xxxxxxxxxxxxxxxx are origin.patch git-jfs.patch - To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html