diff options
author | Erik Hugne <erik.hugne@ericsson.com> | 2014-03-06 14:40:21 +0100 |
---|---|---|
committer | Jiri Slaby <jslaby@suse.cz> | 2014-04-18 11:06:57 +0200 |
commit | d80441c0019881e72774fa3f51a09997b8214a46 (patch) | |
tree | 176a16cdabbee9192d443cb2f9a1e17ab2a9fde2 /net | |
parent | 140490bca84bceb627da429ffceb03fb88b208e3 (diff) |
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 <erik.hugne@ericsson.com>
Reviewed-by: Jon Maloy <jon.maloy@ericsson.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Signed-off-by: Jiri Slaby <jslaby@suse.cz>
Diffstat (limited to 'net')
-rw-r--r-- | net/tipc/handler.c | 1 |
1 files changed, 0 insertions, 1 deletions
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; } |