File: rtnetlink.h

package info (click to toggle)
openvswitch 2.6.2~pre%2Bgit20161223-3
  • links: PTS
  • area: main
  • in suites: stretch
  • size: 42,772 kB
  • ctags: 37,668
  • sloc: sh: 499,654; ansic: 261,360; xml: 21,326; python: 14,843; makefile: 450; perl: 409
file content (40 lines) | stat: -rw-r--r-- 1,401 bytes parent folder | download | duplicates (3)
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