From: Benjamin Poirier Date: Tue, 15 Nov 2022 21:07:15 +0000 (-0500) Subject: bridge: Remove unused function argument X-Git-Tag: v6.2.0~54 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=2ed09c3bf8aca185b2f3eb369ae435503f9b9826;p=thirdparty%2Fiproute2.git bridge: Remove unused function argument print_vnifilter_rtm() was probably modeled on print_vlan_rtm() but the 'monitor' argument is unused in the vnifilter case. Signed-off-by: Benjamin Poirier Reviewed-by: Ido Schimmel Signed-off-by: David Ahern --- diff --git a/bridge/br_common.h b/bridge/br_common.h index da677df8c..1bdee6584 100644 --- a/bridge/br_common.h +++ b/bridge/br_common.h @@ -14,7 +14,7 @@ void print_stp_state(__u8 state); int parse_stp_state(const char *arg); int print_vlan_rtm(struct nlmsghdr *n, void *arg, bool monitor, bool global_only); -int print_vnifilter_rtm(struct nlmsghdr *n, void *arg, bool monitor); +int print_vnifilter_rtm(struct nlmsghdr *n, void *arg); void br_print_router_port_stats(struct rtattr *pattr); void print_headers(FILE *fp, const char *label); diff --git a/bridge/monitor.c b/bridge/monitor.c index e321516a1..d82f45cc0 100644 --- a/bridge/monitor.c +++ b/bridge/monitor.c @@ -63,7 +63,7 @@ static int accept_msg(struct rtnl_ctrl_data *ctrl, case RTM_NEWTUNNEL: case RTM_DELTUNNEL: - return print_vnifilter_rtm(n, arg, true); + return print_vnifilter_rtm(n, arg); default: return 0; diff --git a/bridge/vni.c b/bridge/vni.c index e776797a6..940f251cc 100644 --- a/bridge/vni.c +++ b/bridge/vni.c @@ -303,7 +303,7 @@ static void print_vni(struct rtattr *t, int ifindex) print_string(PRINT_FP, NULL, "%s", _SL_); } -int print_vnifilter_rtm(struct nlmsghdr *n, void *arg, bool monitor) +int print_vnifilter_rtm(struct nlmsghdr *n, void *arg) { struct tunnel_msg *tmsg = NLMSG_DATA(n); int len = n->nlmsg_len; @@ -364,7 +364,7 @@ int print_vnifilter_rtm(struct nlmsghdr *n, void *arg, bool monitor) static int print_vnifilter_rtm_filter(struct nlmsghdr *n, void *arg) { - return print_vnifilter_rtm(n, arg, false); + return print_vnifilter_rtm(n, arg); } static int vni_show(int argc, char **argv)