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
a3563ede
Commit
a3563ede
authored
Jul 28, 2015
by
Stephen Hemminger
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
update to 4.2-net-next headers
parent
ea343669
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
30 additions
and
1 deletion
+30
-1
include/linux/bpf.h
include/linux/bpf.h
+9
-0
include/linux/fib_rules.h
include/linux/fib_rules.h
+1
-1
include/linux/if_bridge.h
include/linux/if_bridge.h
+1
-0
include/linux/if_link.h
include/linux/if_link.h
+2
-0
include/linux/rtnetlink.h
include/linux/rtnetlink.h
+17
-0
No files found.
include/linux/bpf.h
View file @
a3563ede
...
...
@@ -249,6 +249,15 @@ enum bpf_func_id {
* Return: 0 on success
*/
BPF_FUNC_get_current_comm
,
/**
* bpf_get_cgroup_classid(skb) - retrieve a proc's classid
* @skb: pointer to skb
* Return: classid if != 0
*/
BPF_FUNC_get_cgroup_classid
,
BPF_FUNC_skb_vlan_push
,
/* bpf_skb_vlan_push(skb, vlan_proto, vlan_tci) */
BPF_FUNC_skb_vlan_pop
,
/* bpf_skb_vlan_pop(skb) */
__BPF_FUNC_MAX_ID
,
};
...
...
include/linux/fib_rules.h
View file @
a3563ede
...
...
@@ -43,7 +43,7 @@ enum {
FRA_UNUSED5
,
FRA_FWMARK
,
/* mark */
FRA_FLOW
,
/* flow/class id */
FRA_
UNUSED6
,
FRA_
TUN_ID
,
FRA_SUPPRESS_IFGROUP
,
FRA_SUPPRESS_PREFIXLEN
,
FRA_TABLE
,
/* Extended table id */
...
...
include/linux/if_bridge.h
View file @
a3563ede
...
...
@@ -182,6 +182,7 @@ struct br_mdb_entry {
#define MDB_TEMPORARY 0
#define MDB_PERMANENT 1
__u8
state
;
__u16
vid
;
struct
{
union
{
__be32
ip4
;
...
...
include/linux/if_link.h
View file @
a3563ede
...
...
@@ -148,6 +148,7 @@ enum {
IFLA_PHYS_SWITCH_ID
,
IFLA_LINK_NETNSID
,
IFLA_PHYS_PORT_NAME
,
IFLA_PROTO_DOWN
,
__IFLA_MAX
};
...
...
@@ -379,6 +380,7 @@ enum {
IFLA_VXLAN_REMCSUM_RX
,
IFLA_VXLAN_GBP
,
IFLA_VXLAN_REMCSUM_NOPARTIAL
,
IFLA_VXLAN_FLOWBASED
,
__IFLA_VXLAN_MAX
};
#define IFLA_VXLAN_MAX (__IFLA_VXLAN_MAX - 1)
...
...
include/linux/rtnetlink.h
View file @
a3563ede
...
...
@@ -286,6 +286,21 @@ enum rt_class_t {
/* Routing message attributes */
enum
ip_tunnel_t
{
IP_TUN_UNSPEC
,
IP_TUN_ID
,
IP_TUN_DST
,
IP_TUN_SRC
,
IP_TUN_TTL
,
IP_TUN_TOS
,
IP_TUN_SPORT
,
IP_TUN_DPORT
,
IP_TUN_FLAGS
,
__IP_TUN_MAX
,
};
#define IP_TUN_MAX (__IP_TUN_MAX - 1)
enum
rtattr_type_t
{
RTA_UNSPEC
,
RTA_DST
,
...
...
@@ -308,6 +323,8 @@ enum rtattr_type_t {
RTA_VIA
,
RTA_NEWDST
,
RTA_PREF
,
RTA_ENCAP_TYPE
,
RTA_ENCAP
,
__RTA_MAX
};
...
...
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