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
a4c89d80
Commit
a4c89d80
authored
Jan 06, 2016
by
Stephen Hemminger
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
update most kernel headers
still have issues with xtables
parent
5cd1adba
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
24 additions
and
0 deletions
+24
-0
include/linux/bpf.h
include/linux/bpf.h
+1
-0
include/linux/if_link.h
include/linux/if_link.h
+1
-0
include/linux/ila.h
include/linux/ila.h
+22
-0
No files found.
include/linux/bpf.h
View file @
a4c89d80
...
...
@@ -269,6 +269,7 @@ enum bpf_func_id {
* Return: 0 on success
*/
BPF_FUNC_perf_event_output
,
BPF_FUNC_skb_load_bytes
,
__BPF_FUNC_MAX_ID
,
};
...
...
include/linux/if_link.h
View file @
a4c89d80
...
...
@@ -216,6 +216,7 @@ enum in6_addr_gen_mode {
IN6_ADDR_GEN_MODE_EUI64
,
IN6_ADDR_GEN_MODE_NONE
,
IN6_ADDR_GEN_MODE_STABLE_PRIVACY
,
IN6_ADDR_GEN_MODE_RANDOM
,
};
/* Bridge section */
...
...
include/linux/ila.h
View file @
a4c89d80
...
...
@@ -3,13 +3,35 @@
#ifndef _LINUX_ILA_H
#define _LINUX_ILA_H
/* NETLINK_GENERIC related info */
#define ILA_GENL_NAME "ila"
#define ILA_GENL_VERSION 0x1
enum
{
ILA_ATTR_UNSPEC
,
ILA_ATTR_LOCATOR
,
/* u64 */
ILA_ATTR_IDENTIFIER
,
/* u64 */
ILA_ATTR_LOCATOR_MATCH
,
/* u64 */
ILA_ATTR_IFINDEX
,
/* s32 */
ILA_ATTR_DIR
,
/* u32 */
__ILA_ATTR_MAX
,
};
#define ILA_ATTR_MAX (__ILA_ATTR_MAX - 1)
enum
{
ILA_CMD_UNSPEC
,
ILA_CMD_ADD
,
ILA_CMD_DEL
,
ILA_CMD_GET
,
__ILA_CMD_MAX
,
};
#define ILA_CMD_MAX (__ILA_CMD_MAX - 1)
#define ILA_DIR_IN (1 << 0)
#define ILA_DIR_OUT (1 << 1)
#endif
/* _LINUX_ILA_H */
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