mirror of
https://github.com/torvalds/linux.git
synced 2024-11-12 23:23:03 +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
@ -279,7 +279,7 @@ static int red_init(struct Qdisc *sch, struct nlattr *opt,
|
||||
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 = {
|
||||
.command = TC_RED_STATS,
|
||||
@ -309,7 +309,7 @@ static int red_dump(struct Qdisc *sch, struct sk_buff *skb)
|
||||
};
|
||||
int err;
|
||||
|
||||
err = red_dump_offload_stats(sch, &opt);
|
||||
err = red_dump_offload_stats(sch);
|
||||
if (err)
|
||||
goto nla_put_failure;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user