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
a4c51eb3
Commit
a4c51eb3
authored
Dec 28, 2013
by
Stephen Hemminger
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
update to latest net-next headers
parent
29cc8640
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
32 additions
and
0 deletions
+32
-0
include/linux/if_link.h
include/linux/if_link.h
+5
-0
include/linux/pkt_sched.h
include/linux/pkt_sched.h
+27
-0
No files found.
include/linux/if_link.h
View file @
a4c51eb3
...
...
@@ -342,6 +342,11 @@ enum {
IFLA_BOND_FAIL_OVER_MAC
,
IFLA_BOND_XMIT_HASH_POLICY
,
IFLA_BOND_RESEND_IGMP
,
IFLA_BOND_NUM_PEER_NOTIF
,
IFLA_BOND_ALL_SLAVES_ACTIVE
,
IFLA_BOND_MIN_LINKS
,
IFLA_BOND_LP_INTERVAL
,
IFLA_BOND_PACKETS_PER_SLAVE
,
__IFLA_BOND_MAX
,
};
...
...
include/linux/pkt_sched.h
View file @
a4c51eb3
...
...
@@ -173,6 +173,8 @@ enum {
TCA_TBF_PTAB
,
TCA_TBF_RATE64
,
TCA_TBF_PRATE64
,
TCA_TBF_BURST
,
TCA_TBF_PBURST
,
__TCA_TBF_MAX
,
};
...
...
@@ -790,4 +792,29 @@ struct tc_fq_qd_stats {
__u32
throttled_flows
;
__u32
pad
;
};
/* Heavy-Hitter Filter */
enum
{
TCA_HHF_UNSPEC
,
TCA_HHF_BACKLOG_LIMIT
,
TCA_HHF_QUANTUM
,
TCA_HHF_HH_FLOWS_LIMIT
,
TCA_HHF_RESET_TIMEOUT
,
TCA_HHF_ADMIT_BYTES
,
TCA_HHF_EVICT_TIMEOUT
,
TCA_HHF_NON_HH_WEIGHT
,
__TCA_HHF_MAX
};
#define TCA_HHF_MAX (__TCA_HHF_MAX - 1)
struct
tc_hhf_xstats
{
__u32
drop_overlimit
;
/* number of times max qdisc packet limit
* was hit
*/
__u32
hh_overlimit
;
/* number of times max heavy-hitters was hit */
__u32
hh_tot_count
;
/* number of captured heavy-hitters so far */
__u32
hh_cur_count
;
/* number of current heavy-hitters */
};
#endif
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