From: Erik Hugne Date: Thu, 6 Mar 2014 13:40:21 +0000 (+0100) Subject: tipc: don't log disabled tasklet handler errors X-Git-Tag: submit/tizen_common/20140905.094502~69 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=c8fe9b15c483a70400aafc9535c7f1f60809e8b7;p=sdk%2Femulator%2Femulator-kernel.git tipc: don't log disabled tasklet handler errors [ 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 Reviewed-by: Jon Maloy Signed-off-by: David S. Miller Signed-off-by: Jiri Slaby --- diff --git a/net/tipc/handler.c b/net/tipc/handler.c index b36f0fcd9bdf..79b991e044a9 100644 --- a/net/tipc/handler.c +++ b/net/tipc/handler.c @@ -57,7 +57,6 @@ unsigned int tipc_k_signal(Handler routine, unsigned long argument) struct queue_item *item; if (!handler_enabled) { - pr_err("Signal request ignored by handler\n"); return -ENOPROTOOPT; }