aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStephen Hemminger <stephen@networkplumber.org>2023-06-01 10:10:31 -0700
committerStephen Hemminger <stephen@networkplumber.org>2023-06-02 09:33:34 -0700
commit57699ec4616bf51efdb62859a668dc4046041884 (patch)
tree4e3577a9d1f40e8a32eaba44b7c76a31ba65a375
parent957a3b16f041986965b05752c0107a9f1a8b7133 (diff)
downloadiproute2-57699ec4616bf51efdb62859a668dc4046041884.tar.gz
bridge: make print_vlan_info static
Function defined and used in only one file. Signed-off-by: Stephen Hemminger <stephen@networkplumber.org>
-rw-r--r--bridge/br_common.h1
-rw-r--r--bridge/vlan.c3
2 files changed, 2 insertions, 2 deletions
diff --git a/bridge/br_common.h b/bridge/br_common.h
index 1bdee6584..704e76b0a 100644
--- a/bridge/br_common.h
+++ b/bridge/br_common.h
@@ -6,7 +6,6 @@
#define MDB_RTR_RTA(r) \
((struct rtattr *)(((char *)(r)) + RTA_ALIGN(sizeof(__u32))))
-void print_vlan_info(struct rtattr *tb, int ifindex);
int print_linkinfo(struct nlmsghdr *n, void *arg);
int print_mdb_mon(struct nlmsghdr *n, void *arg);
int print_fdb(struct nlmsghdr *n, void *arg);
diff --git a/bridge/vlan.c b/bridge/vlan.c
index 5b304ea94..dfc62f83a 100644
--- a/bridge/vlan.c
+++ b/bridge/vlan.c
@@ -18,6 +18,7 @@
static unsigned int filter_index, filter_vlan;
static int vlan_rtm_cur_ifidx = -1;
+static void print_vlan_info(struct rtattr *tb, int ifindex);
enum vlan_show_subject {
VLAN_SHOW_VLAN,
@@ -1309,7 +1310,7 @@ static int vlan_global_show(int argc, char **argv)
return 0;
}
-void print_vlan_info(struct rtattr *tb, int ifindex)
+static void print_vlan_info(struct rtattr *tb, int ifindex)
{
struct rtattr *i, *list = tb;
int rem = RTA_PAYLOAD(list);