Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 57719
b: refs/heads/master
c: 74235a2
h: refs/heads/master
i:
  57717: e6c6b48
  57715: cfa4439
  57711: 2f3a910
v: v3
  • Loading branch information
Herbert Xu authored and David S. Miller committed Jun 14, 2007
1 parent 4346a41 commit 0d5a731
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 23 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: d7ea5b91fad553e445bbe5d958b6a7b16222c092
refs/heads/master: 74235a25c673f80147c1f975304888e8212a14d5
33 changes: 11 additions & 22 deletions trunk/net/ipv6/addrconf.c
Original file line number Diff line number Diff line change
Expand Up @@ -2154,6 +2154,15 @@ static void addrconf_dev_config(struct net_device *dev)

ASSERT_RTNL();

if ((dev->type != ARPHRD_ETHER) &&
(dev->type != ARPHRD_FDDI) &&
(dev->type != ARPHRD_IEEE802_TR) &&
(dev->type != ARPHRD_ARCNET) &&
(dev->type != ARPHRD_INFINIBAND)) {
/* Alas, we support only Ethernet autoconfiguration. */
return;
}

idev = addrconf_add_dev(dev);
if (idev == NULL)
return;
Expand Down Expand Up @@ -2241,36 +2250,16 @@ static void addrconf_ip6_tnl_config(struct net_device *dev)
ip6_tnl_add_linklocal(idev);
}

static int ipv6_hwtype(struct net_device *dev)
{
if ((dev->type == ARPHRD_ETHER) ||
(dev->type == ARPHRD_LOOPBACK) ||
(dev->type == ARPHRD_SIT) ||
(dev->type == ARPHRD_TUNNEL6) ||
(dev->type == ARPHRD_FDDI) ||
(dev->type == ARPHRD_IEEE802_TR) ||
(dev->type == ARPHRD_ARCNET) ||
(dev->type == ARPHRD_INFINIBAND))
return 1;

return 0;
}

static int addrconf_notify(struct notifier_block *this, unsigned long event,
void * data)
{
struct net_device *dev = (struct net_device *) data;
struct inet6_dev *idev;
struct inet6_dev *idev = __in6_dev_get(dev);
int run_pending = 0;

if (!ipv6_hwtype(dev))
return NOTIFY_OK;

idev = __in6_dev_get(dev);

switch(event) {
case NETDEV_REGISTER:
if (!idev) {
if (!idev && dev->mtu >= IPV6_MIN_MTU) {
idev = ipv6_add_dev(dev);
if (!idev)
printk(KERN_WARNING "IPv6: add_dev failed for %s\n",
Expand Down

0 comments on commit 0d5a731

Please sign in to comment.