diff options
author | YOSHIFUJI Hideaki <yoshfuji@linux-ipv6.org> | 2005-12-21 22:57:24 +0900 |
---|---|---|
committer | YOSHIFUJI Hideaki <yoshfuji@linux-ipv6.org> | 2005-12-21 22:57:24 +0900 |
commit | 3c21edbd113788b110116141c8078623a0900b6a (patch) | |
tree | b6d7cc0655f0965725e6b3a025724ea018c53c4a /include/net | |
parent | 8de3351e6e0a1081fbf6864ae37839e327699a08 (diff) | |
download | kernel_samsung_aries-3c21edbd113788b110116141c8078623a0900b6a.zip kernel_samsung_aries-3c21edbd113788b110116141c8078623a0900b6a.tar.gz kernel_samsung_aries-3c21edbd113788b110116141c8078623a0900b6a.tar.bz2 |
[IPV6]: Defer IPv6 device initialization until the link becomes ready.
NETDEV_UP might be sent even if the link attached to the interface was
not ready. DAD does not make sense in such case, so we won't do so.
After interface
Signed-off-by: YOSHIFUJI Hideaki <yoshfuji@linux-ipv6.org>
Diffstat (limited to 'include/net')
-rw-r--r-- | include/net/if_inet6.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/net/if_inet6.h b/include/net/if_inet6.h index e97a9ac..d8234f9 100644 --- a/include/net/if_inet6.h +++ b/include/net/if_inet6.h @@ -24,6 +24,7 @@ #define IF_RA_MANAGED 0x40 #define IF_RA_RCVD 0x20 #define IF_RS_SENT 0x10 +#define IF_READY 0x80000000 /* prefix flags */ #define IF_PREFIX_ONLINK 0x01 |