This is a note to let you know that I've just added the patch titled tipc: don't log disabled tasklet handler errors to the 3.13-stable tree which can be found at: http://www.kernel.org/git/?p=linux/kernel/git/stable/stable-queue.git;a=summary The filename of the patch is: tipc-don-t-log-disabled-tasklet-handler-errors.patch and it can be found in the queue-3.13 subdirectory. If you, or anyone else, feels it should not be added to the stable tree, please let <stable@xxxxxxxxxxxxxxx> know about it. >From foo@baz Thu Apr 10 22:03:04 PDT 2014 From: Erik Hugne <erik.hugne@xxxxxxxxxxxx> Date: Thu, 6 Mar 2014 14:40:21 +0100 Subject: tipc: don't log disabled tasklet handler errors From: Erik Hugne <erik.hugne@xxxxxxxxxxxx> [ Upstream commit 2892505ea170094f982516bb38105eac45f274b1 ] Failure to schedule a TIPC tasklet with tipc_k_signal because the tasklet handler is disabled is not an error. It means TIPC is currently in the process of shutting down. We remove the error logging in this case. Signed-off-by: Erik Hugne <erik.hugne@xxxxxxxxxxxx> Reviewed-by: Jon Maloy <jon.maloy@xxxxxxxxxxxx> Signed-off-by: David S. Miller <davem@xxxxxxxxxxxxx> Signed-off-by: Greg Kroah-Hartman <gregkh@xxxxxxxxxxxxxxxxxxx> --- net/tipc/handler.c | 1 - 1 file changed, 1 deletion(-) --- a/net/tipc/handler.c +++ b/net/tipc/handler.c @@ -58,7 +58,6 @@ unsigned int tipc_k_signal(Handler routi spin_lock_bh(&qitem_lock); if (!handler_enabled) { - pr_err("Signal request ignored by handler\n"); spin_unlock_bh(&qitem_lock); return -ENOPROTOOPT; } Patches currently in stable-queue which might be from erik.hugne@xxxxxxxxxxxx are queue-3.13/tipc-fix-connection-refcount-leak.patch queue-3.13/tipc-drop-subscriber-connection-id-invalidation.patch queue-3.13/tipc-allow-connection-shutdown-callback-to-be-invoked.patch queue-3.13/tipc-fix-spinlock-recursion-bug-for-failed-subscriptions.patch queue-3.13/tipc-fix-memory-leak-during-module-removal.patch queue-3.13/tipc-don-t-log-disabled-tasklet-handler-errors.patch -- To unsubscribe from this list: send the line "unsubscribe stable" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html