Hi, Am 04/18/2016 um 12:58 PM schrieb Alexander Aring: > This patch introduces neighbour discovery ops callback structure. The > structure contains at first receive and transmit handling for NS/NA and > userspace option field functionality. > > These callback offers 6lowpan different handling, such as 802.15.4 short > address handling or RFC6775 (Neighbor Discovery Optimization for IPv6 over > 6LoWPANs). > > Cc: David S. Miller <da...@davemloft.net> > Cc: Alexey Kuznetsov <kuz...@ms2.inr.ac.ru> > Cc: James Morris <jmor...@namei.org> > Cc: Hideaki YOSHIFUJI <yoshf...@linux-ipv6.org> > Cc: Patrick McHardy <ka...@trash.net> > Signed-off-by: Alexander Aring <a...@pengutronix.de> > --- > include/linux/netdevice.h | 3 ++ > include/net/ndisc.h | 73 > ++++++++++++++++++++++++++++++++++++++++++----- > net/ipv6/addrconf.c | 1 + > net/ipv6/ndisc.c | 71 +++++++++++++++++++++++++++++++-------------- > net/ipv6/route.c | 2 +- > 5 files changed, 121 insertions(+), 29 deletions(-) > > diff --git a/include/linux/netdevice.h b/include/linux/netdevice.h > index 0052c42..4f1b3f2 100644 > --- a/include/linux/netdevice.h > +++ b/include/linux/netdevice.h > @@ -1677,6 +1677,9 @@ struct net_device { > #ifdef CONFIG_NET_L3_MASTER_DEV > const struct l3mdev_ops *l3mdev_ops; > #endif > +#ifdef CONFIG_IPV6 > + const struct ndisc_ops *ndisc_ops; > +#endif
Need to change it to: #if IS_ENABLED(CONFIG_IPV6) as well also on other configs which can be builded as tristate. Sorry for the noise, I will fix that in v2. :-) - Alex