Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
I
iproute2
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
iproute2
Commits
f2264071
Commit
f2264071
authored
Oct 03, 2012
by
Stephen Hemminger
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Update headers to 3.7-pre-rc
Get latest headers from merge
parent
808ed6e1
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
55 additions
and
0 deletions
+55
-0
include/linux/if_arp.h
include/linux/if_arp.h
+1
-0
include/linux/if_link.h
include/linux/if_link.h
+34
-0
include/linux/if_tunnel.h
include/linux/if_tunnel.h
+3
-0
include/linux/ip6_tunnel.h
include/linux/ip6_tunnel.h
+17
-0
No files found.
include/linux/if_arp.h
View file @
f2264071
...
...
@@ -92,6 +92,7 @@
#define ARPHRD_PHONET 820
/* PhoNet media type */
#define ARPHRD_PHONET_PIPE 821
/* PhoNet pipe header */
#define ARPHRD_CAIF 822
/* CAIF media type */
#define ARPHRD_IP6GRE 823
/* GRE over IPv6 */
#define ARPHRD_VOID 0xFFFF
/* Void type, nothing is known */
#define ARPHRD_NONE 0xFFFE
/* zero header length */
...
...
include/linux/if_link.h
View file @
f2264071
...
...
@@ -270,6 +270,22 @@ enum macvlan_mode {
#define MACVLAN_FLAG_NOPROMISC 1
/* VXLAN section */
enum
{
IFLA_VXLAN_UNSPEC
,
IFLA_VXLAN_ID
,
IFLA_VXLAN_GROUP
,
IFLA_VXLAN_LINK
,
IFLA_VXLAN_LOCAL
,
IFLA_VXLAN_TTL
,
IFLA_VXLAN_TOS
,
IFLA_VXLAN_LEARNING
,
IFLA_VXLAN_AGEING
,
IFLA_VXLAN_LIMIT
,
__IFLA_VXLAN_MAX
};
#define IFLA_VXLAN_MAX (__IFLA_VXLAN_MAX - 1)
/* SR-IOV virtual function management section */
enum
{
...
...
@@ -384,4 +400,22 @@ struct ifla_port_vsi {
__u8
pad
[
3
];
};
/* IPoIB section */
enum
{
IFLA_IPOIB_UNSPEC
,
IFLA_IPOIB_PKEY
,
IFLA_IPOIB_MODE
,
IFLA_IPOIB_UMCAST
,
__IFLA_IPOIB_MAX
};
enum
{
IPOIB_MODE_DATAGRAM
=
0
,
/* using unreliable datagram QPs */
IPOIB_MODE_CONNECTED
=
1
,
/* using connected QPs */
};
#define IFLA_IPOIB_MAX (__IFLA_IPOIB_MAX - 1)
#endif
/* _LINUX_IF_LINK_H */
include/linux/if_tunnel.h
View file @
f2264071
...
...
@@ -71,6 +71,9 @@ enum {
IFLA_GRE_TTL
,
IFLA_GRE_TOS
,
IFLA_GRE_PMTUDISC
,
IFLA_GRE_ENCAP_LIMIT
,
IFLA_GRE_FLOWINFO
,
IFLA_GRE_FLAGS
,
__IFLA_GRE_MAX
,
};
...
...
include/linux/ip6_tunnel.h
View file @
f2264071
...
...
@@ -31,4 +31,21 @@ struct ip6_tnl_parm {
struct
in6_addr
raddr
;
/* remote tunnel end-point address */
};
struct
ip6_tnl_parm2
{
char
name
[
IFNAMSIZ
];
/* name of tunnel device */
int
link
;
/* ifindex of underlying L2 interface */
__u8
proto
;
/* tunnel protocol */
__u8
encap_limit
;
/* encapsulation limit for tunnel */
__u8
hop_limit
;
/* hop limit for tunnel */
__be32
flowinfo
;
/* traffic class and flowlabel for tunnel */
__u32
flags
;
/* tunnel flags */
struct
in6_addr
laddr
;
/* local tunnel end-point address */
struct
in6_addr
raddr
;
/* remote tunnel end-point address */
__be16
i_flags
;
__be16
o_flags
;
__be32
i_key
;
__be32
o_key
;
};
#endif
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment