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
dddfc7f6
Commit
dddfc7f6
authored
Oct 29, 2014
by
Stephen Hemminger
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Update kernel headers to 3.18-rc2
parent
14f8854f
Changes
7
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
116 additions
and
57 deletions
+116
-57
include/linux/bpf_common.h
include/linux/bpf_common.h
+55
-0
include/linux/filter.h
include/linux/filter.h
+1
-55
include/linux/if_ether.h
include/linux/if_ether.h
+1
-0
include/linux/if_link.h
include/linux/if_link.h
+24
-0
include/linux/if_tunnel.h
include/linux/if_tunnel.h
+17
-0
include/linux/inet_diag.h
include/linux/inet_diag.h
+11
-2
include/linux/xfrm.h
include/linux/xfrm.h
+7
-0
No files found.
include/linux/bpf_common.h
0 → 100644
View file @
dddfc7f6
#ifndef __LINUX_BPF_COMMON_H__
#define __LINUX_BPF_COMMON_H__
/* Instruction classes */
#define BPF_CLASS(code) ((code) & 0x07)
#define BPF_LD 0x00
#define BPF_LDX 0x01
#define BPF_ST 0x02
#define BPF_STX 0x03
#define BPF_ALU 0x04
#define BPF_JMP 0x05
#define BPF_RET 0x06
#define BPF_MISC 0x07
/* ld/ldx fields */
#define BPF_SIZE(code) ((code) & 0x18)
#define BPF_W 0x00
#define BPF_H 0x08
#define BPF_B 0x10
#define BPF_MODE(code) ((code) & 0xe0)
#define BPF_IMM 0x00
#define BPF_ABS 0x20
#define BPF_IND 0x40
#define BPF_MEM 0x60
#define BPF_LEN 0x80
#define BPF_MSH 0xa0
/* alu/jmp fields */
#define BPF_OP(code) ((code) & 0xf0)
#define BPF_ADD 0x00
#define BPF_SUB 0x10
#define BPF_MUL 0x20
#define BPF_DIV 0x30
#define BPF_OR 0x40
#define BPF_AND 0x50
#define BPF_LSH 0x60
#define BPF_RSH 0x70
#define BPF_NEG 0x80
#define BPF_MOD 0x90
#define BPF_XOR 0xa0
#define BPF_JA 0x00
#define BPF_JEQ 0x10
#define BPF_JGT 0x20
#define BPF_JGE 0x30
#define BPF_JSET 0x40
#define BPF_SRC(code) ((code) & 0x08)
#define BPF_K 0x00
#define BPF_X 0x08
#ifndef BPF_MAXINSNS
#define BPF_MAXINSNS 4096
#endif
#endif
/* __LINUX_BPF_COMMON_H__ */
include/linux/filter.h
View file @
dddfc7f6
...
@@ -7,7 +7,7 @@
...
@@ -7,7 +7,7 @@
#include <linux/types.h>
#include <linux/types.h>
#include <linux/bpf_common.h>
/*
/*
* Current version of the filter code architecture.
* Current version of the filter code architecture.
...
@@ -32,56 +32,6 @@ struct sock_fprog { /* Required for SO_ATTACH_FILTER. */
...
@@ -32,56 +32,6 @@ struct sock_fprog { /* Required for SO_ATTACH_FILTER. */
struct
sock_filter
*
filter
;
struct
sock_filter
*
filter
;
};
};
/*
* Instruction classes
*/
#define BPF_CLASS(code) ((code) & 0x07)
#define BPF_LD 0x00
#define BPF_LDX 0x01
#define BPF_ST 0x02
#define BPF_STX 0x03
#define BPF_ALU 0x04
#define BPF_JMP 0x05
#define BPF_RET 0x06
#define BPF_MISC 0x07
/* ld/ldx fields */
#define BPF_SIZE(code) ((code) & 0x18)
#define BPF_W 0x00
#define BPF_H 0x08
#define BPF_B 0x10
#define BPF_MODE(code) ((code) & 0xe0)
#define BPF_IMM 0x00
#define BPF_ABS 0x20
#define BPF_IND 0x40
#define BPF_MEM 0x60
#define BPF_LEN 0x80
#define BPF_MSH 0xa0
/* alu/jmp fields */
#define BPF_OP(code) ((code) & 0xf0)
#define BPF_ADD 0x00
#define BPF_SUB 0x10
#define BPF_MUL 0x20
#define BPF_DIV 0x30
#define BPF_OR 0x40
#define BPF_AND 0x50
#define BPF_LSH 0x60
#define BPF_RSH 0x70
#define BPF_NEG 0x80
#define BPF_MOD 0x90
#define BPF_XOR 0xa0
#define BPF_JA 0x00
#define BPF_JEQ 0x10
#define BPF_JGT 0x20
#define BPF_JGE 0x30
#define BPF_JSET 0x40
#define BPF_SRC(code) ((code) & 0x08)
#define BPF_K 0x00
#define BPF_X 0x08
/* ret - BPF_K and BPF_X also apply */
/* ret - BPF_K and BPF_X also apply */
#define BPF_RVAL(code) ((code) & 0x18)
#define BPF_RVAL(code) ((code) & 0x18)
#define BPF_A 0x10
#define BPF_A 0x10
...
@@ -91,10 +41,6 @@ struct sock_fprog { /* Required for SO_ATTACH_FILTER. */
...
@@ -91,10 +41,6 @@ struct sock_fprog { /* Required for SO_ATTACH_FILTER. */
#define BPF_TAX 0x00
#define BPF_TAX 0x00
#define BPF_TXA 0x80
#define BPF_TXA 0x80
#ifndef BPF_MAXINSNS
#define BPF_MAXINSNS 4096
#endif
/*
/*
* Macros for filter block array initializers.
* Macros for filter block array initializers.
*/
*/
...
...
include/linux/if_ether.h
View file @
dddfc7f6
...
@@ -128,6 +128,7 @@
...
@@ -128,6 +128,7 @@
#define ETH_P_PHONET 0x00F5
/* Nokia Phonet frames */
#define ETH_P_PHONET 0x00F5
/* Nokia Phonet frames */
#define ETH_P_IEEE802154 0x00F6
/* IEEE802.15.4 frame */
#define ETH_P_IEEE802154 0x00F6
/* IEEE802.15.4 frame */
#define ETH_P_CAIF 0x00F7
/* ST-Ericsson CAIF protocol */
#define ETH_P_CAIF 0x00F7
/* ST-Ericsson CAIF protocol */
#define ETH_P_XDSA 0x00F8
/* Multiplexed DSA protocol */
/*
/*
* This is an Ethernet frame header.
* This is an Ethernet frame header.
...
...
include/linux/if_link.h
View file @
dddfc7f6
...
@@ -213,6 +213,18 @@ enum in6_addr_gen_mode {
...
@@ -213,6 +213,18 @@ enum in6_addr_gen_mode {
IN6_ADDR_GEN_MODE_NONE
,
IN6_ADDR_GEN_MODE_NONE
,
};
};
/* Bridge section */
enum
{
IFLA_BR_UNSPEC
,
IFLA_BR_FORWARD_DELAY
,
IFLA_BR_HELLO_TIME
,
IFLA_BR_MAX_AGE
,
__IFLA_BR_MAX
,
};
#define IFLA_BR_MAX (__IFLA_BR_MAX - 1)
enum
{
enum
{
BRIDGE_MODE_UNSPEC
,
BRIDGE_MODE_UNSPEC
,
BRIDGE_MODE_HAIRPIN
,
BRIDGE_MODE_HAIRPIN
,
...
@@ -289,6 +301,10 @@ enum {
...
@@ -289,6 +301,10 @@ enum {
IFLA_MACVLAN_UNSPEC
,
IFLA_MACVLAN_UNSPEC
,
IFLA_MACVLAN_MODE
,
IFLA_MACVLAN_MODE
,
IFLA_MACVLAN_FLAGS
,
IFLA_MACVLAN_FLAGS
,
IFLA_MACVLAN_MACADDR_MODE
,
IFLA_MACVLAN_MACADDR
,
IFLA_MACVLAN_MACADDR_DATA
,
IFLA_MACVLAN_MACADDR_COUNT
,
__IFLA_MACVLAN_MAX
,
__IFLA_MACVLAN_MAX
,
};
};
...
@@ -299,6 +315,14 @@ enum macvlan_mode {
...
@@ -299,6 +315,14 @@ enum macvlan_mode {
MACVLAN_MODE_VEPA
=
2
,
/* talk to other ports through ext bridge */
MACVLAN_MODE_VEPA
=
2
,
/* talk to other ports through ext bridge */
MACVLAN_MODE_BRIDGE
=
4
,
/* talk to bridge ports directly */
MACVLAN_MODE_BRIDGE
=
4
,
/* talk to bridge ports directly */
MACVLAN_MODE_PASSTHRU
=
8
,
/* take over the underlying device */
MACVLAN_MODE_PASSTHRU
=
8
,
/* take over the underlying device */
MACVLAN_MODE_SOURCE
=
16
,
/* use source MAC address list to assign */
};
enum
macvlan_macaddr_mode
{
MACVLAN_MACADDR_ADD
,
MACVLAN_MACADDR_DEL
,
MACVLAN_MACADDR_FLUSH
,
MACVLAN_MACADDR_SET
,
};
};
#define MACVLAN_FLAG_NOPROMISC 1
#define MACVLAN_FLAG_NOPROMISC 1
...
...
include/linux/if_tunnel.h
View file @
dddfc7f6
...
@@ -53,10 +53,23 @@ enum {
...
@@ -53,10 +53,23 @@ enum {
IFLA_IPTUN_6RD_RELAY_PREFIX
,
IFLA_IPTUN_6RD_RELAY_PREFIX
,
IFLA_IPTUN_6RD_PREFIXLEN
,
IFLA_IPTUN_6RD_PREFIXLEN
,
IFLA_IPTUN_6RD_RELAY_PREFIXLEN
,
IFLA_IPTUN_6RD_RELAY_PREFIXLEN
,
IFLA_IPTUN_ENCAP_TYPE
,
IFLA_IPTUN_ENCAP_FLAGS
,
IFLA_IPTUN_ENCAP_SPORT
,
IFLA_IPTUN_ENCAP_DPORT
,
__IFLA_IPTUN_MAX
,
__IFLA_IPTUN_MAX
,
};
};
#define IFLA_IPTUN_MAX (__IFLA_IPTUN_MAX - 1)
#define IFLA_IPTUN_MAX (__IFLA_IPTUN_MAX - 1)
enum
tunnel_encap_types
{
TUNNEL_ENCAP_NONE
,
TUNNEL_ENCAP_FOU
,
TUNNEL_ENCAP_GUE
,
};
#define TUNNEL_ENCAP_FLAG_CSUM (1<<0)
#define TUNNEL_ENCAP_FLAG_CSUM6 (1<<1)
/* SIT-mode i_flags */
/* SIT-mode i_flags */
#define SIT_ISATAP 0x0001
#define SIT_ISATAP 0x0001
...
@@ -94,6 +107,10 @@ enum {
...
@@ -94,6 +107,10 @@ enum {
IFLA_GRE_ENCAP_LIMIT
,
IFLA_GRE_ENCAP_LIMIT
,
IFLA_GRE_FLOWINFO
,
IFLA_GRE_FLOWINFO
,
IFLA_GRE_FLAGS
,
IFLA_GRE_FLAGS
,
IFLA_GRE_ENCAP_TYPE
,
IFLA_GRE_ENCAP_FLAGS
,
IFLA_GRE_ENCAP_SPORT
,
IFLA_GRE_ENCAP_DPORT
,
__IFLA_GRE_MAX
,
__IFLA_GRE_MAX
,
};
};
...
...
include/linux/inet_diag.h
View file @
dddfc7f6
...
@@ -110,10 +110,10 @@ enum {
...
@@ -110,10 +110,10 @@ enum {
INET_DIAG_TCLASS
,
INET_DIAG_TCLASS
,
INET_DIAG_SKMEMINFO
,
INET_DIAG_SKMEMINFO
,
INET_DIAG_SHUTDOWN
,
INET_DIAG_SHUTDOWN
,
INET_DIAG_DCTCPINFO
,
};
};
#define INET_DIAG_MAX INET_DIAG_SHUTDOWN
#define INET_DIAG_MAX INET_DIAG_DCTCPINFO
/* INET_DIAG_MEM */
/* INET_DIAG_MEM */
...
@@ -133,5 +133,14 @@ struct tcpvegas_info {
...
@@ -133,5 +133,14 @@ struct tcpvegas_info {
__u32
tcpv_minrtt
;
__u32
tcpv_minrtt
;
};
};
/* INET_DIAG_DCTCPINFO */
struct
tcp_dctcp_info
{
__u16
dctcp_enabled
;
__u16
dctcp_ce_state
;
__u32
dctcp_alpha
;
__u32
dctcp_ab_ecn
;
__u32
dctcp_ab_tot
;
};
#endif
/* _INET_DIAG_H_ */
#endif
/* _INET_DIAG_H_ */
include/linux/xfrm.h
View file @
dddfc7f6
...
@@ -328,6 +328,8 @@ enum xfrm_spdattr_type_t {
...
@@ -328,6 +328,8 @@ enum xfrm_spdattr_type_t {
XFRMA_SPD_UNSPEC
,
XFRMA_SPD_UNSPEC
,
XFRMA_SPD_INFO
,
XFRMA_SPD_INFO
,
XFRMA_SPD_HINFO
,
XFRMA_SPD_HINFO
,
XFRMA_SPD_IPV4_HTHRESH
,
XFRMA_SPD_IPV6_HTHRESH
,
__XFRMA_SPD_MAX
__XFRMA_SPD_MAX
#define XFRMA_SPD_MAX (__XFRMA_SPD_MAX - 1)
#define XFRMA_SPD_MAX (__XFRMA_SPD_MAX - 1)
...
@@ -347,6 +349,11 @@ struct xfrmu_spdhinfo {
...
@@ -347,6 +349,11 @@ struct xfrmu_spdhinfo {
__u32
spdhmcnt
;
__u32
spdhmcnt
;
};
};
struct
xfrmu_spdhthresh
{
__u8
lbits
;
__u8
rbits
;
};
struct
xfrm_usersa_info
{
struct
xfrm_usersa_info
{
struct
xfrm_selector
sel
;
struct
xfrm_selector
sel
;
struct
xfrm_id
id
;
struct
xfrm_id
id
;
...
...
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