From mboxrd@z Thu Jan 1 00:00:00 1970 From: Cong Wang Subject: [Patch net-next] net_sched: fix an extack message in tcf_block_find() Date: Thu, 27 Sep 2018 13:42:18 -0700 Message-ID: <20180927204219.17846-1-xiyou.wangcong@gmail.com> Cc: jiri@resnulli.us, jhs@mojatatu.com, vladbu@mellanox.com, Cong Wang To: netdev@vger.kernel.org Return-path: Received: from mail-pg1-f181.google.com ([209.85.215.181]:46480 "EHLO mail-pg1-f181.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1727358AbeI1DCn (ORCPT ); Thu, 27 Sep 2018 23:02:43 -0400 Received: by mail-pg1-f181.google.com with SMTP id b129-v6so2757125pga.13 for ; Thu, 27 Sep 2018 13:42:36 -0700 (PDT) Sender: netdev-owner@vger.kernel.org List-ID: It is clearly a copy-n-paste. Signed-off-by: Cong Wang --- net/sched/cls_api.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/net/sched/cls_api.c b/net/sched/cls_api.c index 3de47e99b788..8dd7f8af6d54 100644 --- a/net/sched/cls_api.c +++ b/net/sched/cls_api.c @@ -655,7 +655,7 @@ static struct tcf_block *tcf_block_find(struct net *net, struct Qdisc **q, *q = qdisc_refcount_inc_nz(*q); if (!*q) { - NL_SET_ERR_MSG(extack, "Parent Qdisc doesn't exists"); + NL_SET_ERR_MSG(extack, "Can't increase Qdisc refcount"); err = -EINVAL; goto errout_rcu; } -- 2.14.4