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
8d62f3e2
Commit
8d62f3e2
authored
Aug 31, 2015
by
Stephen Hemminger
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
update kernel headers to 4.2-net-next
parent
f1e225be
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
11 additions
and
4 deletions
+11
-4
include/linux/if_link.h
include/linux/if_link.h
+3
-0
include/linux/netlink.h
include/linux/netlink.h
+1
-0
include/linux/rtnetlink.h
include/linux/rtnetlink.h
+7
-4
No files found.
include/linux/if_link.h
View file @
8d62f3e2
...
...
@@ -229,6 +229,7 @@ enum {
IFLA_BR_STP_STATE
,
IFLA_BR_PRIORITY
,
IFLA_BR_VLAN_FILTERING
,
IFLA_BR_VLAN_PROTOCOL
,
__IFLA_BR_MAX
,
};
...
...
@@ -407,6 +408,8 @@ enum {
IFLA_GENEVE_REMOTE
,
IFLA_GENEVE_TTL
,
IFLA_GENEVE_TOS
,
IFLA_GENEVE_PORT
,
/* destination port */
IFLA_GENEVE_COLLECT_METADATA
,
__IFLA_GENEVE_MAX
};
#define IFLA_GENEVE_MAX (__IFLA_GENEVE_MAX - 1)
...
...
include/linux/netlink.h
View file @
8d62f3e2
...
...
@@ -110,6 +110,7 @@ struct nlmsgerr {
#define NETLINK_TX_RING 7
#define NETLINK_LISTEN_ALL_NSID 8
#define NETLINK_LIST_MEMBERSHIPS 9
#define NETLINK_CAP_ACK 10
struct
nl_pktinfo
{
__u32
group
;
...
...
include/linux/rtnetlink.h
View file @
8d62f3e2
...
...
@@ -418,10 +418,13 @@ enum {
#define RTAX_MAX (__RTAX_MAX - 1)
#define RTAX_FEATURE_ECN 0x00000001
#define RTAX_FEATURE_SACK 0x00000002
#define RTAX_FEATURE_TIMESTAMP 0x00000004
#define RTAX_FEATURE_ALLFRAG 0x00000008
#define RTAX_FEATURE_ECN (1 << 0)
#define RTAX_FEATURE_SACK (1 << 1)
#define RTAX_FEATURE_TIMESTAMP (1 << 2)
#define RTAX_FEATURE_ALLFRAG (1 << 3)
#define RTAX_FEATURE_MASK (RTAX_FEATURE_ECN | RTAX_FEATURE_SACK | \
RTAX_FEATURE_TIMESTAMP | RTAX_FEATURE_ALLFRAG)
struct
rta_session
{
__u8
proto
;
...
...
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