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
29cea29d
Commit
29cea29d
authored
Apr 10, 2012
by
Stephen Hemminger
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Merge in 3.3-rc2 kernel headers
parent
9fb6dc2b
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
23 additions
and
0 deletions
+23
-0
include/linux/if.h
include/linux/if.h
+2
-0
include/linux/pkt_sched.h
include/linux/pkt_sched.h
+21
-0
No files found.
include/linux/if.h
View file @
29cea29d
...
@@ -80,6 +80,8 @@
...
@@ -80,6 +80,8 @@
* skbs on transmit */
* skbs on transmit */
#define IFF_UNICAST_FLT 0x20000
/* Supports unicast filtering */
#define IFF_UNICAST_FLT 0x20000
/* Supports unicast filtering */
#define IFF_TEAM_PORT 0x40000
/* device used as team port */
#define IFF_TEAM_PORT 0x40000
/* device used as team port */
#define IFF_SUPP_NOFCS 0x80000
/* device supports sending custom FCS */
#define IF_GET_IFACE 0x0001
/* for querying only */
#define IF_GET_IFACE 0x0001
/* for querying only */
#define IF_GET_PROTO 0x0002
#define IF_GET_PROTO 0x0002
...
...
include/linux/pkt_sched.h
View file @
29cea29d
...
@@ -127,6 +127,27 @@ struct tc_multiq_qopt {
...
@@ -127,6 +127,27 @@ struct tc_multiq_qopt {
__u16
max_bands
;
/* Maximum number of queues */
__u16
max_bands
;
/* Maximum number of queues */
};
};
/* PLUG section */
#define TCQ_PLUG_BUFFER 0
#define TCQ_PLUG_RELEASE_ONE 1
#define TCQ_PLUG_RELEASE_INDEFINITE 2
#define TCQ_PLUG_LIMIT 3
struct
tc_plug_qopt
{
/* TCQ_PLUG_BUFFER: Inset a plug into the queue and
* buffer any incoming packets
* TCQ_PLUG_RELEASE_ONE: Dequeue packets from queue head
* to beginning of the next plug.
* TCQ_PLUG_RELEASE_INDEFINITE: Dequeue all packets from queue.
* Stop buffering packets until the next TCQ_PLUG_BUFFER
* command is received (just act as a pass-thru queue).
* TCQ_PLUG_LIMIT: Increase/decrease queue size
*/
int
action
;
__u32
limit
;
};
/* TBF section */
/* TBF section */
struct
tc_tbf_qopt
{
struct
tc_tbf_qopt
{
...
...
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