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
707f612c
Commit
707f612c
authored
Oct 10, 2011
by
Stephen Hemminger
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Update to 3.1-rc9 kernel headers
Align header files with sanitized version of headers in kernel.
parent
ce691fb5
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
13 additions
and
3 deletions
+13
-3
include/linux/if_ether.h
include/linux/if_ether.h
+5
-0
include/linux/netlink.h
include/linux/netlink.h
+2
-1
include/linux/rtnetlink.h
include/linux/rtnetlink.h
+2
-0
include/linux/socket.h
include/linux/socket.h
+3
-1
include/linux/tc_ematch/tc_em_meta.h
include/linux/tc_ematch/tc_em_meta.h
+1
-1
No files found.
include/linux/if_ether.h
View file @
707f612c
...
...
@@ -78,10 +78,15 @@
*/
#define ETH_P_PAE 0x888E
/* Port Access Entity (IEEE 802.1X) */
#define ETH_P_AOE 0x88A2
/* ATA over Ethernet */
#define ETH_P_8021AD 0x88A8
/* 802.1ad Service VLAN */
#define ETH_P_TIPC 0x88CA
/* TIPC */
#define ETH_P_8021AH 0x88E7
/* 802.1ah Backbone Service Tag */
#define ETH_P_1588 0x88F7
/* IEEE 1588 Timesync */
#define ETH_P_FCOE 0x8906
/* Fibre Channel over Ethernet */
#define ETH_P_FIP 0x8914
/* FCoE Initialization Protocol */
#define ETH_P_QINQ1 0x9100
/* deprecated QinQ VLAN [ NOT AN OFFICIALLY REGISTERED ID ] */
#define ETH_P_QINQ2 0x9200
/* deprecated QinQ VLAN [ NOT AN OFFICIALLY REGISTERED ID ] */
#define ETH_P_QINQ3 0x9300
/* deprecated QinQ VLAN [ NOT AN OFFICIALLY REGISTERED ID ] */
#define ETH_P_EDSA 0xDADA
/* Ethertype DSA [ NOT AN OFFICIALLY REGISTERED ID ] */
/*
...
...
include/linux/netlink.h
View file @
707f612c
...
...
@@ -29,7 +29,7 @@
#define MAX_LINKS 32
struct
sockaddr_nl
{
sa_family_t
nl_family
;
/* AF_NETLINK */
__kernel_
sa_family_t
nl_family
;
/* AF_NETLINK */
unsigned
short
nl_pad
;
/* zero */
__u32
nl_pid
;
/* port ID */
__u32
nl_groups
;
/* multicast groups mask */
...
...
@@ -49,6 +49,7 @@ struct nlmsghdr {
#define NLM_F_MULTI 2
/* Multipart message, terminated by NLMSG_DONE */
#define NLM_F_ACK 4
/* Reply with ack, with zero or error code */
#define NLM_F_ECHO 8
/* Echo this request */
#define NLM_F_DUMP_INTR 16
/* Dump was inconsistent due to sequence change */
/* Modifiers to GET request */
#define NLM_F_ROOT 0x100
/* specify tree root */
...
...
include/linux/rtnetlink.h
View file @
707f612c
...
...
@@ -583,6 +583,8 @@ enum rtnetlink_groups {
#define RTNLGRP_PHONET_IFADDR RTNLGRP_PHONET_IFADDR
RTNLGRP_PHONET_ROUTE
,
#define RTNLGRP_PHONET_ROUTE RTNLGRP_PHONET_ROUTE
RTNLGRP_DCB
,
#define RTNLGRP_DCB RTNLGRP_DCB
__RTNLGRP_MAX
};
#define RTNLGRP_MAX (__RTNLGRP_MAX - 1)
...
...
include/linux/socket.h
View file @
707f612c
...
...
@@ -8,8 +8,10 @@
#define _K_SS_ALIGNSIZE (__alignof__ (struct sockaddr *))
/* Implementation specific desired alignment */
typedef
unsigned
short
__kernel_sa_family_t
;
struct
__kernel_sockaddr_storage
{
unsigned
shor
t
ss_family
;
/* address family */
__kernel_sa_family_
t
ss_family
;
/* address family */
/* Following field(s) are implementation specific */
char
__data
[
_K_SS_MAXSIZE
-
sizeof
(
unsigned
short
)];
/* space to achieve desired size, */
...
...
include/linux/tc_ematch/tc_em_meta.h
View file @
707f612c
...
...
@@ -67,7 +67,7 @@ enum {
TCF_META_ID_SK_FORWARD_ALLOCS
,
TCF_META_ID_SK_SNDBUF
,
TCF_META_ID_SK_ALLOCS
,
TCF_META_ID_SK_ROUTE_CAPS
,
__TCF_META_ID_SK_ROUTE_CAPS
,
/* unimplemented but in ABI already */
TCF_META_ID_SK_HASH
,
TCF_META_ID_SK_LINGERTIME
,
TCF_META_ID_SK_ACK_BACKLOG
,
...
...
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