75e63c2494
Refresh patches for all targets supporting 3.18 and not marked broken.
Compile-tested on all targets using 3.18 and not marked broken.
Changes to generic/610-netfilter_match_bypass_default_checks.patch based
on 84d489f64f
.
Signed-off-by: Stijn Tintel <stijn@linux-ipv6.be>
17 lines
520 B
Diff
17 lines
520 B
Diff
--- a/drivers/net/ethernet/amd/au1000_eth.c
|
|
+++ b/drivers/net/ethernet/amd/au1000_eth.c
|
|
@@ -1113,10 +1113,14 @@ static void au1000_multicast_list(struct
|
|
writel(reg, &aup->mac->control);
|
|
}
|
|
|
|
+#define AU1000_KNOWN_PHY_IOCTLS (SIOCGMIIPHY & 0xfff0)
|
|
static int au1000_ioctl(struct net_device *dev, struct ifreq *rq, int cmd)
|
|
{
|
|
struct au1000_private *aup = netdev_priv(dev);
|
|
|
|
+ if((cmd & AU1000_KNOWN_PHY_IOCTLS) != AU1000_KNOWN_PHY_IOCTLS)
|
|
+ return -EINVAL;
|
|
+
|
|
if (!netif_running(dev))
|
|
return -EINVAL;
|
|
|