diff options
| author | Kuniyuki Iwashima <kuniyu@google.com> | 2026-06-29 18:10:53 +0000 |
|---|---|---|
| committer | Paolo Abeni <pabeni@redhat.com> | 2026-07-01 18:42:33 +0200 |
| commit | 54fd3962c99df50056660747a9e783af27410126 (patch) | |
| tree | 86374255c99585e3b04ac0ef7aeb513d5793f863 /include/net | |
| parent | 66c84c6d8b99783aa7dedba18f9a109ed06cc3bc (diff) | |
| download | linux-next-54fd3962c99df50056660747a9e783af27410126.tar.gz linux-next-54fd3962c99df50056660747a9e783af27410126.zip | |
net: fib_rules: Make fib_rules_ops.delete() return void.
Since commit d954a67a7dfa ("ipv4: fib_rule: Move fib4_rules_exit()
to ->exit()."), both fib4_rule_delete() and fib6_rule_delete() always
return 0.
Let's change the return type to void.
Signed-off-by: Kuniyuki Iwashima <kuniyu@google.com>
Link: https://patch.msgid.link/20260629181226.1929658-2-kuniyu@google.com
Reviewed-by: Ido Schimmel <idosch@nvidia.com>
Signed-off-by: Paolo Abeni <pabeni@redhat.com>
Diffstat (limited to 'include/net')
| -rw-r--r-- | include/net/fib_rules.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/net/fib_rules.h b/include/net/fib_rules.h index 7dee0ae616e3..f9a4bca51eda 100644 --- a/include/net/fib_rules.h +++ b/include/net/fib_rules.h @@ -82,7 +82,7 @@ struct fib_rules_ops { struct fib_rule_hdr *, struct nlattr **, struct netlink_ext_ack *); - int (*delete)(struct fib_rule *); + void (*delete)(struct fib_rule *); int (*compare)(struct fib_rule *, struct fib_rule_hdr *, struct nlattr **); |
