Commit c61393ea authored by stephen hemminger's avatar stephen hemminger Committed by David S. Miller

ipv6: make __ipv6_isatap_ifid static

Another exported symbol only used in one file
Signed-off-by: default avatarStephen Hemminger <shemminger@vyatta.com>
Acked-by: default avatarEric Dumazet <eric.dumazet@gmail.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 1df9916e
...@@ -276,8 +276,6 @@ static inline int ipv6_addr_is_ll_all_routers(const struct in6_addr *addr) ...@@ -276,8 +276,6 @@ static inline int ipv6_addr_is_ll_all_routers(const struct in6_addr *addr)
(addr->s6_addr32[3] ^ htonl(0x00000002))) == 0; (addr->s6_addr32[3] ^ htonl(0x00000002))) == 0;
} }
extern int __ipv6_isatap_ifid(u8 *eui, __be32 addr);
static inline int ipv6_addr_is_isatap(const struct in6_addr *addr) static inline int ipv6_addr_is_isatap(const struct in6_addr *addr)
{ {
return (addr->s6_addr32[2] | htonl(0x02000000)) == htonl(0x02005EFE); return (addr->s6_addr32[2] | htonl(0x02000000)) == htonl(0x02005EFE);
......
...@@ -1544,7 +1544,7 @@ static int addrconf_ifid_infiniband(u8 *eui, struct net_device *dev) ...@@ -1544,7 +1544,7 @@ static int addrconf_ifid_infiniband(u8 *eui, struct net_device *dev)
return 0; return 0;
} }
int __ipv6_isatap_ifid(u8 *eui, __be32 addr) static int __ipv6_isatap_ifid(u8 *eui, __be32 addr)
{ {
if (addr == 0) if (addr == 0)
return -1; return -1;
...@@ -1560,7 +1560,6 @@ int __ipv6_isatap_ifid(u8 *eui, __be32 addr) ...@@ -1560,7 +1560,6 @@ int __ipv6_isatap_ifid(u8 *eui, __be32 addr)
memcpy(eui + 4, &addr, 4); memcpy(eui + 4, &addr, 4);
return 0; return 0;
} }
EXPORT_SYMBOL(__ipv6_isatap_ifid);
static int addrconf_ifid_sit(u8 *eui, struct net_device *dev) static int addrconf_ifid_sit(u8 *eui, struct net_device *dev)
{ {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment