The patch titled Subject: printk: fix failure to return error in devkmsg_poll() has been added to the -mm tree. Its filename is printk-fix-failure-to-return-error-in-devkmsg_poll.patch Before you just go and hit "reply", please: a) Consider who else should be cc'ed b) Prefer to cc a suitable mailing list as well c) Ideally: find the original patch on the mailing list and do a reply-to-all to that, adding suitable additional cc's *** Remember to use Documentation/SubmitChecklist when testing your code *** The -mm tree is included into linux-next and is updated there every 3-4 working days ------------------------------------------------------ From: Nicolas Kaiser <nikai@xxxxxxxxx> Subject: printk: fix failure to return error in devkmsg_poll() Error value got overwritten instantly. Signed-off-by: Nicolas Kaiser <nikai@xxxxxxxxx> Cc: Kay Sievers <kay.sievers@xxxxxxxx> Cc: Greg KH <greg@xxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- kernel/printk.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff -puN kernel/printk.c~printk-fix-failure-to-return-error-in-devkmsg_poll kernel/printk.c --- a/kernel/printk.c~printk-fix-failure-to-return-error-in-devkmsg_poll +++ a/kernel/printk.c @@ -601,7 +601,8 @@ static unsigned int devkmsg_poll(struct /* return error when data has vanished underneath us */ if (user->seq < log_first_seq) ret = POLLIN|POLLRDNORM|POLLERR|POLLPRI; - ret = POLLIN|POLLRDNORM; + else + ret = POLLIN|POLLRDNORM; } raw_spin_unlock_irq(&logbuf_lock); _ Patches currently in -mm which might be from nikai@xxxxxxxxx are printk-fix-failure-to-return-error-in-devkmsg_poll.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