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 <davem@xxxxxxxxxxxxx> > Cc: Alexey Kuznetsov <kuznet@xxxxxxxxxxxxx> > Cc: James Morris <jmorris@xxxxxxxxx> > Cc: Hideaki YOSHIFUJI <yoshfuji@xxxxxxxxxxxxxx> > Cc: Patrick McHardy <kaber@xxxxxxxxx> > Signed-off-by: Alexander Aring <aar@xxxxxxxxxxxxxx> > --- > 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 -- To unsubscribe from this list: send the line "unsubscribe linux-bluetooth" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html