mirror of
https://github.com/openwrt/openwrt.git
synced 2024-12-20 06:08:08 +00:00
realtek: remove unused FDB print routing
remove fdb_dump debugging function Signed-off-by: Birger Koblitz <git@birger-koblitz.de>
This commit is contained in:
parent
cf4edabefd
commit
d497262748
@ -18,27 +18,6 @@ extern const struct dsa_switch_ops rtl930x_switch_ops;
|
|||||||
|
|
||||||
DEFINE_MUTEX(smi_lock);
|
DEFINE_MUTEX(smi_lock);
|
||||||
|
|
||||||
// TODO: unused
|
|
||||||
static void dump_fdb(struct rtl838x_switch_priv *priv)
|
|
||||||
{
|
|
||||||
struct rtl838x_l2_entry e;
|
|
||||||
int i;
|
|
||||||
|
|
||||||
mutex_lock(&priv->reg_mutex);
|
|
||||||
|
|
||||||
for (i = 0; i < priv->fib_entries; i++) {
|
|
||||||
priv->r->read_l2_entry_using_hash(i >> 2, i & 0x3, &e);
|
|
||||||
|
|
||||||
if (!e.valid) /* Check for invalid entry */
|
|
||||||
continue;
|
|
||||||
|
|
||||||
pr_debug("-> port %02d: mac %pM, vid: %d, rvid: %d, MC: %d, %d\n",
|
|
||||||
e.port, &e.mac[0], e.vid, e.rvid, e.is_ip_mc, e.is_ipv6_mc);
|
|
||||||
}
|
|
||||||
|
|
||||||
mutex_unlock(&priv->reg_mutex);
|
|
||||||
}
|
|
||||||
|
|
||||||
int rtl83xx_port_get_stp_state(struct rtl838x_switch_priv *priv, int port)
|
int rtl83xx_port_get_stp_state(struct rtl838x_switch_priv *priv, int port)
|
||||||
{
|
{
|
||||||
u32 msti = 0;
|
u32 msti = 0;
|
||||||
|
Loading…
Reference in New Issue
Block a user