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
6b2ed935
Commit
6b2ed935
authored
Sep 23, 2013
by
Stephen Hemminger
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Update to 3.12-rc1 headers
parent
b43f3318
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
55 additions
and
3 deletions
+55
-3
include/linux/fib_rules.h
include/linux/fib_rules.h
+2
-2
include/linux/if_bridge.h
include/linux/if_bridge.h
+2
-1
include/linux/if_link.h
include/linux/if_link.h
+3
-0
include/linux/if_tun.h
include/linux/if_tun.h
+6
-0
include/linux/pkt_sched.h
include/linux/pkt_sched.h
+41
-0
include/linux/tcp.h
include/linux/tcp.h
+1
-0
No files found.
include/linux/fib_rules.h
View file @
6b2ed935
...
...
@@ -44,8 +44,8 @@ enum {
FRA_FWMARK
,
/* mark */
FRA_FLOW
,
/* flow/class id */
FRA_UNUSED6
,
FRA_
UNUSED7
,
FRA_
UNUSED8
,
FRA_
SUPPRESS_IFGROUP
,
FRA_
SUPPRESS_PREFIXLEN
,
FRA_TABLE
,
/* Extended table id */
FRA_FWMASK
,
/* mask for netfilter mark */
FRA_OIFNAME
,
...
...
include/linux/if_bridge.h
View file @
6b2ed935
...
...
@@ -14,6 +14,7 @@
#define _LINUX_IF_BRIDGE_H
#include <linux/types.h>
#include <linux/if_ether.h>
#define SYSFS_BRIDGE_ATTR "bridge"
#define SYSFS_BRIDGE_FDB "brforward"
...
...
@@ -88,7 +89,7 @@ struct __port_info {
};
struct
__fdb_entry
{
__u8
mac_addr
[
6
];
__u8
mac_addr
[
ETH_ALEN
];
__u8
port_no
;
__u8
is_local
;
__u32
ageing_timer_value
;
...
...
include/linux/if_link.h
View file @
6b2ed935
...
...
@@ -143,6 +143,7 @@ enum {
IFLA_NUM_TX_QUEUES
,
IFLA_NUM_RX_QUEUES
,
IFLA_CARRIER
,
IFLA_PHYS_PORT_ID
,
__IFLA_MAX
};
...
...
@@ -311,6 +312,8 @@ enum {
IFLA_VXLAN_L2MISS
,
IFLA_VXLAN_L3MISS
,
IFLA_VXLAN_PORT
,
/* destination port */
IFLA_VXLAN_GROUP6
,
IFLA_VXLAN_LOCAL6
,
__IFLA_VXLAN_MAX
};
#define IFLA_VXLAN_MAX (__IFLA_VXLAN_MAX - 1)
...
...
include/linux/if_tun.h
View file @
6b2ed935
...
...
@@ -56,6 +56,8 @@
#define TUNGETVNETHDRSZ _IOR('T', 215, int)
#define TUNSETVNETHDRSZ _IOW('T', 216, int)
#define TUNSETQUEUE _IOW('T', 217, int)
#define TUNSETIFINDEX _IOW('T', 218, unsigned int)
#define TUNGETFILTER _IOR('T', 219, struct sock_fprog)
/* TUNSETIFF ifr flags */
#define IFF_TUN 0x0001
...
...
@@ -70,6 +72,10 @@
#define IFF_DETACH_QUEUE 0x0400
/* read-only flag */
#define IFF_PERSIST 0x0800
#define IFF_NOFILTER 0x1000
/* Socket options */
#define TUN_TX_TIMESTAMP 1
/* Features for GSO (TUNSETOFFLOAD). */
#define TUN_F_CSUM 0x01
/* You can hand me unchecksummed packets. */
...
...
include/linux/pkt_sched.h
View file @
6b2ed935
...
...
@@ -744,4 +744,45 @@ struct tc_fq_codel_xstats {
};
};
/* FQ */
enum
{
TCA_FQ_UNSPEC
,
TCA_FQ_PLIMIT
,
/* limit of total number of packets in queue */
TCA_FQ_FLOW_PLIMIT
,
/* limit of packets per flow */
TCA_FQ_QUANTUM
,
/* RR quantum */
TCA_FQ_INITIAL_QUANTUM
,
/* RR quantum for new flow */
TCA_FQ_RATE_ENABLE
,
/* enable/disable rate limiting */
TCA_FQ_FLOW_DEFAULT_RATE
,
/* for sockets with unspecified sk_rate,
* use the following rate
*/
TCA_FQ_FLOW_MAX_RATE
,
/* per flow max rate */
TCA_FQ_BUCKETS_LOG
,
/* log2(number of buckets) */
__TCA_FQ_MAX
};
#define TCA_FQ_MAX (__TCA_FQ_MAX - 1)
struct
tc_fq_qd_stats
{
__u64
gc_flows
;
__u64
highprio_packets
;
__u64
tcp_retrans
;
__u64
throttled
;
__u64
flows_plimit
;
__u64
pkts_too_long
;
__u64
allocation_errors
;
__s64
time_next_delayed_flow
;
__u32
flows
;
__u32
inactive_flows
;
__u32
throttled_flows
;
__u32
pad
;
};
#endif
include/linux/tcp.h
View file @
6b2ed935
...
...
@@ -111,6 +111,7 @@ enum {
#define TCP_REPAIR_OPTIONS 22
#define TCP_FASTOPEN 23
/* Enable FastOpen on listeners */
#define TCP_TIMESTAMP 24
#define TCP_NOTSENT_LOWAT 25
/* limit number of unsent bytes in write queue */
struct
tcp_repair_opt
{
__u32
opt_code
;
...
...
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