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
fd5c1d43
Commit
fd5c1d43
authored
Jun 09, 2014
by
Stephen Hemminger
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Update to current net-next kernel headers
Update sanitized headers
parent
316c2346
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
22 additions
and
8 deletions
+22
-8
include/linux/can.h
include/linux/can.h
+3
-3
include/linux/can/netlink.h
include/linux/can/netlink.h
+3
-3
include/linux/filter.h
include/linux/filter.h
+2
-1
include/linux/if_link.h
include/linux/if_link.h
+11
-1
include/linux/l2tp.h
include/linux/l2tp.h
+2
-0
include/linux/neighbour.h
include/linux/neighbour.h
+1
-0
No files found.
include/linux/can.h
View file @
fd5c1d43
...
...
@@ -42,8 +42,8 @@
* DAMAGE.
*/
#ifndef CAN_H
#define CAN_H
#ifndef
_
CAN_H
#define
_
CAN_H
#include <linux/types.h>
#include <linux/socket.h>
...
...
@@ -191,4 +191,4 @@ struct can_filter {
#define CAN_INV_FILTER 0x20000000U
/* to be set in can_filter.can_id */
#endif
/* CAN_H */
#endif
/*
!_UAPI_
CAN_H */
include/linux/can/netlink.h
View file @
fd5c1d43
...
...
@@ -15,8 +15,8 @@
* GNU General Public License for more details.
*/
#ifndef CAN_NETLINK_H
#define CAN_NETLINK_H
#ifndef
_
CAN_NETLINK_H
#define
_
CAN_NETLINK_H
#include <linux/types.h>
...
...
@@ -130,4 +130,4 @@ enum {
#define IFLA_CAN_MAX (__IFLA_CAN_MAX - 1)
#endif
/* CAN_NETLINK_H */
#endif
/*
!_UAPI_
CAN_NETLINK_H */
include/linux/filter.h
View file @
fd5c1d43
...
...
@@ -130,7 +130,8 @@ struct sock_fprog { /* Required for SO_ATTACH_FILTER. */
#define SKF_AD_VLAN_TAG 44
#define SKF_AD_VLAN_TAG_PRESENT 48
#define SKF_AD_PAY_OFFSET 52
#define SKF_AD_MAX 56
#define SKF_AD_RANDOM 56
#define SKF_AD_MAX 60
#define SKF_NET_OFF (-0x100000)
#define SKF_LL_OFF (-0x200000)
...
...
include/linux/if_link.h
View file @
fd5c1d43
...
...
@@ -317,6 +317,9 @@ enum {
IFLA_VXLAN_PORT
,
/* destination port */
IFLA_VXLAN_GROUP6
,
IFLA_VXLAN_LOCAL6
,
IFLA_VXLAN_UDP_CSUM
,
IFLA_VXLAN_UDP_ZERO_CSUM6_TX
,
IFLA_VXLAN_UDP_ZERO_CSUM6_RX
,
__IFLA_VXLAN_MAX
};
#define IFLA_VXLAN_MAX (__IFLA_VXLAN_MAX - 1)
...
...
@@ -397,9 +400,10 @@ enum {
IFLA_VF_UNSPEC
,
IFLA_VF_MAC
,
/* Hardware queue specific attributes */
IFLA_VF_VLAN
,
IFLA_VF_TX_RATE
,
/* TX Bandwidth Allocation */
IFLA_VF_TX_RATE
,
/*
Max
TX Bandwidth Allocation */
IFLA_VF_SPOOFCHK
,
/* Spoof Checking on/off switch */
IFLA_VF_LINK_STATE
,
/* link state enable/disable/auto switch */
IFLA_VF_RATE
,
/* Min and Max TX Bandwidth Allocation */
__IFLA_VF_MAX
,
};
...
...
@@ -421,6 +425,12 @@ struct ifla_vf_tx_rate {
__u32
rate
;
/* Max TX bandwidth in Mbps, 0 disables throttling */
};
struct
ifla_vf_rate
{
__u32
vf
;
__u32
min_tx_rate
;
/* Min Bandwidth in Mbps */
__u32
max_tx_rate
;
/* Max Bandwidth in Mbps */
};
struct
ifla_vf_spoofchk
{
__u32
vf
;
__u32
setting
;
...
...
include/linux/l2tp.h
View file @
fd5c1d43
...
...
@@ -122,6 +122,8 @@ enum {
L2TP_ATTR_STATS
,
/* nested */
L2TP_ATTR_IP6_SADDR
,
/* struct in6_addr */
L2TP_ATTR_IP6_DADDR
,
/* struct in6_addr */
L2TP_ATTR_UDP_ZERO_CSUM6_TX
,
/* u8 */
L2TP_ATTR_UDP_ZERO_CSUM6_RX
,
/* u8 */
__L2TP_ATTR_MAX
,
};
...
...
include/linux/neighbour.h
View file @
fd5c1d43
...
...
@@ -24,6 +24,7 @@ enum {
NDA_PORT
,
NDA_VNI
,
NDA_IFINDEX
,
NDA_MASTER
,
__NDA_MAX
};
...
...
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