diff options
author | Günther Kelleter <guenther.kelleter@devolo.de> | 2017-02-15 10:36:49 +0100 |
---|---|---|
committer | Stijn Tintel <stijn@linux-ipv6.be> | 2017-02-22 11:57:27 +0100 |
commit | 7fd494d4b23697a329dcde89df412edaaf96a83d (patch) | |
tree | 43540dece9a08a6af57af9606ce51d63670fc687 /target/linux/generic/files | |
parent | f6d94b0dd67f4d5e5dbadbd97a765732d6a0e757 (diff) | |
download | mtk-20170518-7fd494d4b23697a329dcde89df412edaaf96a83d.zip mtk-20170518-7fd494d4b23697a329dcde89df412edaaf96a83d.tar.gz mtk-20170518-7fd494d4b23697a329dcde89df412edaaf96a83d.tar.bz2 |
ar8216: flush ARL table during reset after init_globals
commit 33b72b8e0faf7a39faabece584fd6da61cd8f8df
"ar8216: adjust ATU flushing in case of link changes"
introduced portwise flushing on link down events. Now the ARL table could
be in a chaotic state after boot where ar8xxx_sw_get_arl_table looped
forever (depending on the entries collected while booting).
Fixes FS#384.
Signed-off-by: Günther Kelleter <guenther.kelleter@devolo.de>
(cherry picked from commit 237454991618e0e8b7ceb8a8a2a43fca12c1a454)
Signed-off-by: Stijn Tintel <stijn@linux-ipv6.be>
Diffstat (limited to 'target/linux/generic/files')
-rw-r--r-- | target/linux/generic/files/drivers/net/phy/ar8216.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/target/linux/generic/files/drivers/net/phy/ar8216.c b/target/linux/generic/files/drivers/net/phy/ar8216.c index 27b062b..01dc065 100644 --- a/target/linux/generic/files/drivers/net/phy/ar8216.c +++ b/target/linux/generic/files/drivers/net/phy/ar8216.c @@ -1194,6 +1194,7 @@ ar8xxx_sw_reset_switch(struct switch_dev *dev) priv->arl_age_time = AR8XXX_DEFAULT_ARL_AGE_TIME; chip->init_globals(priv); + chip->atu_flush(priv); mutex_unlock(&priv->reg_mutex); |