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
ec69a50c
Commit
ec69a50c
authored
Dec 17, 2013
by
Stephen Hemminger
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Update header files to 3.13-rc2 net-next
parent
ddc6243e
Changes
8
Hide whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
31 additions
and
4 deletions
+31
-4
include/linux/genetlink.h
include/linux/genetlink.h
+2
-0
include/linux/if_addr.h
include/linux/if_addr.h
+5
-0
include/linux/if_link.h
include/linux/if_link.h
+16
-1
include/linux/netconf.h
include/linux/netconf.h
+1
-0
include/linux/netlink_diag.h
include/linux/netlink_diag.h
+1
-0
include/linux/packet_diag.h
include/linux/packet_diag.h
+1
-0
include/linux/pkt_sched.h
include/linux/pkt_sched.h
+4
-3
include/linux/unix_diag.h
include/linux/unix_diag.h
+1
-0
No files found.
include/linux/genetlink.h
View file @
ec69a50c
...
...
@@ -27,6 +27,8 @@ struct genlmsghdr {
*/
#define GENL_ID_GENERATE 0
#define GENL_ID_CTRL NLMSG_MIN_TYPE
#define GENL_ID_VFS_DQUOT (NLMSG_MIN_TYPE + 1)
#define GENL_ID_PMCRAID (NLMSG_MIN_TYPE + 2)
/**************************************************************************
* Controller
...
...
include/linux/if_addr.h
View file @
ec69a50c
...
...
@@ -18,6 +18,9 @@ struct ifaddrmsg {
* It makes no difference for normally configured broadcast interfaces,
* but for point-to-point IFA_ADDRESS is DESTINATION address,
* local address is supplied in IFA_LOCAL attribute.
*
* IFA_FLAGS is a u32 attribute that extends the u8 field ifa_flags.
* If present, the value from struct ifaddrmsg will be ignored.
*/
enum
{
IFA_UNSPEC
,
...
...
@@ -28,6 +31,7 @@ enum {
IFA_ANYCAST
,
IFA_CACHEINFO
,
IFA_MULTICAST
,
IFA_FLAGS
,
__IFA_MAX
,
};
...
...
@@ -44,6 +48,7 @@ enum {
#define IFA_F_DEPRECATED 0x20
#define IFA_F_TENTATIVE 0x40
#define IFA_F_PERMANENT 0x80
#define IFA_F_MANAGETEMPADDR 0x100
struct
ifa_cacheinfo
{
__u32
ifa_prefered
;
...
...
include/linux/if_link.h
View file @
ec69a50c
...
...
@@ -329,6 +329,19 @@ enum {
IFLA_BOND_UNSPEC
,
IFLA_BOND_MODE
,
IFLA_BOND_ACTIVE_SLAVE
,
IFLA_BOND_MIIMON
,
IFLA_BOND_UPDELAY
,
IFLA_BOND_DOWNDELAY
,
IFLA_BOND_USE_CARRIER
,
IFLA_BOND_ARP_INTERVAL
,
IFLA_BOND_ARP_IP_TARGET
,
IFLA_BOND_ARP_VALIDATE
,
IFLA_BOND_ARP_ALL_TARGETS
,
IFLA_BOND_PRIMARY
,
IFLA_BOND_PRIMARY_RESELECT
,
IFLA_BOND_FAIL_OVER_MAC
,
IFLA_BOND_XMIT_HASH_POLICY
,
IFLA_BOND_RESEND_IGMP
,
__IFLA_BOND_MAX
,
};
...
...
@@ -486,7 +499,9 @@ enum {
IFLA_HSR_UNSPEC
,
IFLA_HSR_SLAVE1
,
IFLA_HSR_SLAVE2
,
IFLA_HSR_MULTICAST_SPEC
,
IFLA_HSR_MULTICAST_SPEC
,
/* Last byte of supervision addr */
IFLA_HSR_SUPERVISION_ADDR
,
/* Supervision frame multicast addr */
IFLA_HSR_SEQ_NR
,
__IFLA_HSR_MAX
,
};
...
...
include/linux/netconf.h
View file @
ec69a50c
...
...
@@ -14,6 +14,7 @@ enum {
NETCONFA_FORWARDING
,
NETCONFA_RP_FILTER
,
NETCONFA_MC_FORWARDING
,
NETCONFA_PROXY_NEIGH
,
__NETCONFA_MAX
};
#define NETCONFA_MAX (__NETCONFA_MAX - 1)
...
...
include/linux/netlink_diag.h
View file @
ec69a50c
...
...
@@ -33,6 +33,7 @@ struct netlink_diag_ring {
};
enum
{
/* NETLINK_DIAG_NONE, standard nl API requires this attribute! */
NETLINK_DIAG_MEMINFO
,
NETLINK_DIAG_GROUPS
,
NETLINK_DIAG_RX_RING
,
...
...
include/linux/packet_diag.h
View file @
ec69a50c
...
...
@@ -29,6 +29,7 @@ struct packet_diag_msg {
};
enum
{
/* PACKET_DIAG_NONE, standard nl API requires this attribute! */
PACKET_DIAG_INFO
,
PACKET_DIAG_MCLIST
,
PACKET_DIAG_RX_RING
,
...
...
include/linux/pkt_sched.h
View file @
ec69a50c
...
...
@@ -763,13 +763,14 @@ enum {
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_DEFAULT_RATE
,
/* obsolete, do not use */
TCA_FQ_FLOW_MAX_RATE
,
/* per flow max rate */
TCA_FQ_BUCKETS_LOG
,
/* log2(number of buckets) */
TCA_FQ_FLOW_REFILL_DELAY
,
/* flow credit refill delay in usec */
__TCA_FQ_MAX
};
...
...
include/linux/unix_diag.h
View file @
ec69a50c
...
...
@@ -31,6 +31,7 @@ struct unix_diag_msg {
};
enum
{
/* UNIX_DIAG_NONE, standard nl API requires this attribute! */
UNIX_DIAG_NAME
,
UNIX_DIAG_VFS
,
UNIX_DIAG_PEER
,
...
...
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