diff options
author | Zhengchao Shao <shaozhengchao@huawei.com> | 2022-08-30 17:22:55 +0800 |
---|---|---|
committer | Jakub Kicinski <kuba@kernel.org> | 2022-08-31 19:39:53 -0700 |
commit | 4516c873e3b55856012ddd6db9d4366ce3c60c5d (patch) | |
tree | 400dfe32a8cec1361177ea79e6630c18e6787efd /net/sched/sch_gred.c | |
parent | 38af11717b386560f10f2891350933fc5200aeea (diff) | |
download | linux-4516c873e3b55856012ddd6db9d4366ce3c60c5d.tar.bz2 |
net: sched: gred/red: remove unused variables in struct red_stats
The variable "other" in the struct red_stats is not used. Remove it.
Signed-off-by: Zhengchao Shao <shaozhengchao@huawei.com>
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
Diffstat (limited to 'net/sched/sch_gred.c')
-rw-r--r-- | net/sched/sch_gred.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/net/sched/sch_gred.c b/net/sched/sch_gred.c index 1073c76d05c4..e7af53f607bb 100644 --- a/net/sched/sch_gred.c +++ b/net/sched/sch_gred.c @@ -829,7 +829,6 @@ static int gred_dump(struct Qdisc *sch, struct sk_buff *skb) opt.Wlog = q->parms.Wlog; opt.Plog = q->parms.Plog; opt.Scell_log = q->parms.Scell_log; - opt.other = q->stats.other; opt.early = q->stats.prob_drop; opt.forced = q->stats.forced_drop; opt.pdrop = q->stats.pdrop; @@ -895,8 +894,6 @@ append_opt: goto nla_put_failure; if (nla_put_u32(skb, TCA_GRED_VQ_STAT_PDROP, q->stats.pdrop)) goto nla_put_failure; - if (nla_put_u32(skb, TCA_GRED_VQ_STAT_OTHER, q->stats.other)) - goto nla_put_failure; nla_nest_end(skb, vq); } |