[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <20230419180832.3f0b7729@kernel.org>
Date: Wed, 19 Apr 2023 18:08:32 -0700
From: Jakub Kicinski <kuba@...nel.org>
To: Pedro Tammela <pctammela@...atatu.com>
Cc: netdev@...r.kernel.org, jhs@...atatu.com, xiyou.wangcong@...il.com,
jiri@...nulli.us, davem@...emloft.net, edumazet@...gle.com,
pabeni@...hat.com
Subject: Re: [PATCH net-next v2 1/4] net/sched: sch_htb: use extack on
errors messages
On Mon, 17 Apr 2023 14:12:15 -0300 Pedro Tammela wrote:
> @@ -1917,8 +1917,8 @@ static int htb_change_class(struct Qdisc *sch, u32 classid,
> };
> err = htb_offload(dev, &offload_opt);
> if (err) {
> - pr_err("htb: TC_HTB_LEAF_ALLOC_QUEUE failed with err = %d\n",
> - err);
> + NL_SET_ERR_MSG(extack,
> + "Failed to offload leaf alloc queue");
> goto err_kill_estimator;
> }
> dev_queue = netdev_get_tx_queue(dev, offload_opt.qid);
> @@ -1937,8 +1937,8 @@ static int htb_change_class(struct Qdisc *sch, u32 classid,
> };
> err = htb_offload(dev, &offload_opt);
> if (err) {
> - pr_err("htb: TC_HTB_LEAF_TO_INNER failed with err = %d\n",
> - err);
> + NL_SET_ERR_MSG(extack,
> + "Failed to offload leaf to inner");
I missed the message changes on v1, but since the patches are already
Changes Requested in patchwork...
IDK what TC_HTB_LEAF_TO_INNER is exactly, neither do I understand
"Failed to offload leaf to inner". The first one should be "Failed to
alloc offload leaf queue" if anything.
Let's just stick to the existing messages?
Powered by blists - more mailing lists