mirror of
https://github.com/Fishwaldo/Star64_linux.git
synced 2025-06-07 15:18:15 +00:00
net: sched: red: remove unnecessary red_dump_offload_stats parameter
Offload dump helper does not use opt parameter, remove it. Signed-off-by: Jakub Kicinski <jakub.kicinski@netronome.com> Reviewed-by: John Hurley <john.hurley@netronome.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
b592843c67
commit
dad54c0fab
1 changed files with 2 additions and 2 deletions
|
@ -279,7 +279,7 @@ static int red_init(struct Qdisc *sch, struct nlattr *opt,
|
||||||
return red_change(sch, opt, extack);
|
return red_change(sch, opt, extack);
|
||||||
}
|
}
|
||||||
|
|
||||||
static int red_dump_offload_stats(struct Qdisc *sch, struct tc_red_qopt *opt)
|
static int red_dump_offload_stats(struct Qdisc *sch)
|
||||||
{
|
{
|
||||||
struct tc_red_qopt_offload hw_stats = {
|
struct tc_red_qopt_offload hw_stats = {
|
||||||
.command = TC_RED_STATS,
|
.command = TC_RED_STATS,
|
||||||
|
@ -309,7 +309,7 @@ static int red_dump(struct Qdisc *sch, struct sk_buff *skb)
|
||||||
};
|
};
|
||||||
int err;
|
int err;
|
||||||
|
|
||||||
err = red_dump_offload_stats(sch, &opt);
|
err = red_dump_offload_stats(sch);
|
||||||
if (err)
|
if (err)
|
||||||
goto nla_put_failure;
|
goto nla_put_failure;
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue