netlink: remove now-unused rtnl_iface_find_cloner_locked().

This commit is contained in:
Alexander V. Chernikov 2023-04-25 15:04:11 +00:00
parent 9e81e2c452
commit 04349d3094

View File

@ -79,8 +79,6 @@ static SLIST_HEAD(, nl_cloner) nl_cloners = SLIST_HEAD_INITIALIZER(nl_cloners);
static struct sx rtnl_cloner_lock;
SX_SYSINIT(rtnl_cloner_lock, &rtnl_cloner_lock, "rtnl cloner lock");
static struct nl_cloner *rtnl_iface_find_cloner_locked(const char *name);
/*
* RTM_GETLINK request
* sendto(3, {{len=32, type=RTM_GETLINK, flags=NLM_F_REQUEST|NLM_F_DUMP, seq=1641940952, pid=0},
@ -1016,19 +1014,6 @@ rtnl_iface_del_cloner(struct nl_cloner *cloner)
sx_xunlock(&rtnl_cloner_lock);
}
static struct nl_cloner *
rtnl_iface_find_cloner_locked(const char *name)
{
struct nl_cloner *cloner;
SLIST_FOREACH(cloner, &nl_cloners, next) {
if (!strcmp(name, cloner->name))
return (cloner);
}
return (NULL);
}
void
rtnl_ifaces_init(void)
{