1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40
|
#ifndef __NET_RTNETLINK_WRAPPER_H
#define __NET_RTNETLINK_WRAPPER_H
#include_next <net/rtnetlink.h>
#define rtnl_delete_link rpl_rtnl_delete_link
int rpl_rtnl_delete_link(struct net_device *dev);
#ifndef HAVE_NAME_ASSIGN_TYPE
#ifdef HAVE_RTNL_CREATE_LINK_SRC_NET
static inline struct net_device *rpl_rtnl_create_link(struct net *net, const char *ifname,
unsigned char name_assign_type,
const struct rtnl_link_ops *ops,
struct nlattr *tb[])
{
return rtnl_create_link(net, net, (char *)ifname, ops, tb);
}
#else
static inline struct net_device *rpl_rtnl_create_link(struct net *net, const char *ifname,
unsigned char name_assign_type,
const struct rtnl_link_ops *ops,
struct nlattr *tb[])
{
return rtnl_create_link(net, (char *)ifname, ops, tb);
}
#endif
#else
/* This function is only defined to avoid warning related to ifname. Some backported
* function did not changed the name to const type. */
static inline struct net_device *rpl_rtnl_create_link(struct net *net, const char *ifname,
unsigned char name_assign_type,
const struct rtnl_link_ops *ops,
struct nlattr *tb[])
{
return rtnl_create_link(net, (char *) ifname, name_assign_type, ops, tb);
}
#endif
#define rtnl_create_link rpl_rtnl_create_link
#endif
|