* [PATCH net-next,v3 0/2] net: sched: remove unused variables
@ 2022-08-30 9:22 Zhengchao Shao
2022-08-30 9:22 ` [PATCH net-next,v3 1/2] net: sched: choke: remove unused variables in struct choke_sched_data Zhengchao Shao
` (2 more replies)
0 siblings, 3 replies; 4+ messages in thread
From: Zhengchao Shao @ 2022-08-30 9:22 UTC (permalink / raw)
To: netdev, linux-kernel, davem, edumazet, kuba, pabeni, jhs,
xiyou.wangcong, jiri
Cc: weiyongjun1, yuehaibing, shaozhengchao
The variable "other" is unused, remove it.
Zhengchao Shao (2):
net: sched: choke: remove unused variables in struct choke_sched_data
net: sched: gred/red: remove unused variables in struct red_stats
include/net/red.h | 1 -
net/sched/sch_choke.c | 2 --
net/sched/sch_gred.c | 3 ---
net/sched/sch_red.c | 1 -
4 files changed, 7 deletions(-)
--
2.17.1
^ permalink raw reply [flat|nested] 4+ messages in thread
* [PATCH net-next,v3 1/2] net: sched: choke: remove unused variables in struct choke_sched_data
2022-08-30 9:22 [PATCH net-next,v3 0/2] net: sched: remove unused variables Zhengchao Shao
@ 2022-08-30 9:22 ` Zhengchao Shao
2022-08-30 9:22 ` [PATCH net-next,v3 2/2] net: sched: gred/red: remove unused variables in struct red_stats Zhengchao Shao
2022-09-01 3:00 ` [PATCH net-next,v3 0/2] net: sched: remove unused variables patchwork-bot+netdevbpf
2 siblings, 0 replies; 4+ messages in thread
From: Zhengchao Shao @ 2022-08-30 9:22 UTC (permalink / raw)
To: netdev, linux-kernel, davem, edumazet, kuba, pabeni, jhs,
xiyou.wangcong, jiri
Cc: weiyongjun1, yuehaibing, shaozhengchao
The variable "other" in the struct choke_sched_data is not used. Remove it.
Signed-off-by: Zhengchao Shao <shaozhengchao@huawei.com>
---
v2: don't remove a field in UAPI
v1: qdisc_drop() already counts drops, unnecessary to use "other" to duplicate the same information.
---
net/sched/sch_choke.c | 2 --
1 file changed, 2 deletions(-)
diff --git a/net/sched/sch_choke.c b/net/sched/sch_choke.c
index 25d2daaa8122..3ac3e5c80b6f 100644
--- a/net/sched/sch_choke.c
+++ b/net/sched/sch_choke.c
@@ -60,7 +60,6 @@ struct choke_sched_data {
u32 forced_drop; /* Forced drops, qavg > max_thresh */
u32 forced_mark; /* Forced marks, qavg > max_thresh */
u32 pdrop; /* Drops due to queue limits */
- u32 other; /* Drops due to drop() calls */
u32 matched; /* Drops to flow match */
} stats;
@@ -464,7 +463,6 @@ static int choke_dump_stats(struct Qdisc *sch, struct gnet_dump *d)
.early = q->stats.prob_drop + q->stats.forced_drop,
.marked = q->stats.prob_mark + q->stats.forced_mark,
.pdrop = q->stats.pdrop,
- .other = q->stats.other,
.matched = q->stats.matched,
};
--
2.17.1
^ permalink raw reply related [flat|nested] 4+ messages in thread
* [PATCH net-next,v3 2/2] net: sched: gred/red: remove unused variables in struct red_stats
2022-08-30 9:22 [PATCH net-next,v3 0/2] net: sched: remove unused variables Zhengchao Shao
2022-08-30 9:22 ` [PATCH net-next,v3 1/2] net: sched: choke: remove unused variables in struct choke_sched_data Zhengchao Shao
@ 2022-08-30 9:22 ` Zhengchao Shao
2022-09-01 3:00 ` [PATCH net-next,v3 0/2] net: sched: remove unused variables patchwork-bot+netdevbpf
2 siblings, 0 replies; 4+ messages in thread
From: Zhengchao Shao @ 2022-08-30 9:22 UTC (permalink / raw)
To: netdev, linux-kernel, davem, edumazet, kuba, pabeni, jhs,
xiyou.wangcong, jiri
Cc: weiyongjun1, yuehaibing, shaozhengchao
The variable "other" in the struct red_stats is not used. Remove it.
Signed-off-by: Zhengchao Shao <shaozhengchao@huawei.com>
---
v2: don't remove a field in UAPI
v1: qdisc_drop() already counts drops, unnecessary to use "other" to duplicate the same information.
---
include/net/red.h | 1 -
net/sched/sch_gred.c | 3 ---
net/sched/sch_red.c | 1 -
3 files changed, 5 deletions(-)
diff --git a/include/net/red.h b/include/net/red.h
index be11dbd26492..454ac2b65d8c 100644
--- a/include/net/red.h
+++ b/include/net/red.h
@@ -122,7 +122,6 @@ struct red_stats {
u32 forced_drop; /* Forced drops, qavg > max_thresh */
u32 forced_mark; /* Forced marks, qavg > max_thresh */
u32 pdrop; /* Drops due to queue limits */
- u32 other; /* Drops due to drop() calls */
};
struct red_parms {
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 @@ static int gred_dump(struct Qdisc *sch, struct sk_buff *skb)
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);
}
diff --git a/net/sched/sch_red.c b/net/sched/sch_red.c
index f1e013e3f04a..f7ac40c0335e 100644
--- a/net/sched/sch_red.c
+++ b/net/sched/sch_red.c
@@ -461,7 +461,6 @@ static int red_dump_stats(struct Qdisc *sch, struct gnet_dump *d)
}
st.early = q->stats.prob_drop + q->stats.forced_drop;
st.pdrop = q->stats.pdrop;
- st.other = q->stats.other;
st.marked = q->stats.prob_mark + q->stats.forced_mark;
return gnet_stats_copy_app(d, &st, sizeof(st));
--
2.17.1
^ permalink raw reply related [flat|nested] 4+ messages in thread
* Re: [PATCH net-next,v3 0/2] net: sched: remove unused variables
2022-08-30 9:22 [PATCH net-next,v3 0/2] net: sched: remove unused variables Zhengchao Shao
2022-08-30 9:22 ` [PATCH net-next,v3 1/2] net: sched: choke: remove unused variables in struct choke_sched_data Zhengchao Shao
2022-08-30 9:22 ` [PATCH net-next,v3 2/2] net: sched: gred/red: remove unused variables in struct red_stats Zhengchao Shao
@ 2022-09-01 3:00 ` patchwork-bot+netdevbpf
2 siblings, 0 replies; 4+ messages in thread
From: patchwork-bot+netdevbpf @ 2022-09-01 3:00 UTC (permalink / raw)
To: Zhengchao Shao
Cc: netdev, linux-kernel, davem, edumazet, kuba, pabeni, jhs,
xiyou.wangcong, jiri, weiyongjun1, yuehaibing
Hello:
This series was applied to netdev/net-next.git (master)
by Jakub Kicinski <kuba@kernel.org>:
On Tue, 30 Aug 2022 17:22:53 +0800 you wrote:
> The variable "other" is unused, remove it.
>
> Zhengchao Shao (2):
> net: sched: choke: remove unused variables in struct choke_sched_data
> net: sched: gred/red: remove unused variables in struct red_stats
>
> include/net/red.h | 1 -
> net/sched/sch_choke.c | 2 --
> net/sched/sch_gred.c | 3 ---
> net/sched/sch_red.c | 1 -
> 4 files changed, 7 deletions(-)
Here is the summary with links:
- [net-next,v3,1/2] net: sched: choke: remove unused variables in struct choke_sched_data
https://git.kernel.org/netdev/net-next/c/38af11717b38
- [net-next,v3,2/2] net: sched: gred/red: remove unused variables in struct red_stats
https://git.kernel.org/netdev/net-next/c/4516c873e3b5
You are awesome, thank you!
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2022-09-01 3:00 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-08-30 9:22 [PATCH net-next,v3 0/2] net: sched: remove unused variables Zhengchao Shao
2022-08-30 9:22 ` [PATCH net-next,v3 1/2] net: sched: choke: remove unused variables in struct choke_sched_data Zhengchao Shao
2022-08-30 9:22 ` [PATCH net-next,v3 2/2] net: sched: gred/red: remove unused variables in struct red_stats Zhengchao Shao
2022-09-01 3:00 ` [PATCH net-next,v3 0/2] net: sched: remove unused variables patchwork-bot+netdevbpf
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox