* YOSHIFUJI Hideaki / ?$B5HF#1QL@ <[EMAIL PROTECTED]> 2006-09-19 00:08 > [NET]: Move netlink interface bits to linux/if_link.h. > > Moving netlink interface bits to linux/if.h is rather troublesome for > applications including both linux/if.h (which was changed to be included > from linux/rtnetlink.h automatically) and net/if.h.
Agreed. > [NET]: Include new rtnetlink headers for userspace backward compatibility. > > Signed-off-by: YOSHIFUJI Hideaki <[EMAIL PROTECTED]> > > diff --git a/include/linux/rtnetlink.h b/include/linux/rtnetlink.h > index 3a18add..8ec375c 100644 > --- a/include/linux/rtnetlink.h > +++ b/include/linux/rtnetlink.h > @@ -2,7 +2,12 @@ #ifndef __LINUX_RTNETLINK_H > #define __LINUX_RTNETLINK_H > > #include <linux/netlink.h> > +#ifndef __KERNEL__ > +/* Backward compatibility */ > #include <linux/if_link.h> > +#include <linux/if_addr.h> > +#include <linux/neighbour.h> > +#endif > > /**** > * Routing/neighbour discovery messages. Still acceptable but this gets ugly at some point. Applications using the interface should start making copies of the header version they use. > commit 55a08a9078b243a06223222735580df9e11a5fa6 > Author: YOSHIFUJI Hideaki <[EMAIL PROTECTED]> > Date: Sun Sep 17 13:55:02 2006 +0900 > > [NET]: Put {IFLA,IFA,NDA,NDTA}_{RTA,PAYLOAD}() macro back. > > These macros are still used by userspace applications. Same here, it doesn't make sense to export macros only of functional value and used by userspace only. The same issue will pop up once all users have been converted to use the new netlink interface. Keeping the old interface around just so userspace doesn't have to make copies doesn't make sense. I think it's better to start fixing userspace than to try and keep headers source compatible. - To unsubscribe from this list: send the line "unsubscribe netdev" in the body of a message to [EMAIL PROTECTED] More majordomo info at http://vger.kernel.org/majordomo-info.html