diff options
author | nbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2009-09-02 15:14:37 +0000 |
---|---|---|
committer | nbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2009-09-02 15:14:37 +0000 |
commit | f8e09ed6d74f495162d2e026a6d6210e42e3ed7b (patch) | |
tree | fa40b9fee3c82aab441913f22af170db1159948c /target/linux | |
parent | e31fe7691afe97ab6c2dce0b2bb12dc54fb80b21 (diff) |
mvswitch: set the netdevice into promiscuous mode when header mode is enabled, otherwise packets may get dropped
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@17469 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target/linux')
-rw-r--r-- | target/linux/generic-2.6/files-2.6.30/drivers/net/phy/mvswitch.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/target/linux/generic-2.6/files-2.6.30/drivers/net/phy/mvswitch.c b/target/linux/generic-2.6/files-2.6.30/drivers/net/phy/mvswitch.c index 7aed70d47f..77899e0827 100644 --- a/target/linux/generic-2.6/files-2.6.30/drivers/net/phy/mvswitch.c +++ b/target/linux/generic-2.6/files-2.6.30/drivers/net/phy/mvswitch.c @@ -248,6 +248,9 @@ mvswitch_config_init(struct phy_device *pdev) pdev->advertising = ADVERTISED_100baseT_Full; dev->phy_ptr = priv; dev->irq = PHY_POLL; +#ifdef HEADER_MODE + dev->flags |= IFF_PROMISC; +#endif /* initialize default vlans */ for (i = 0; i < MV_PORTS; i++) |