mirror of
https://git.kernel.org/pub/scm/network/iproute2/iproute2.git
synced 2024-12-04 15:24:35 +08:00
update kernel headers from 4.10 net-next
Signed-off-by: Stephen Hemminger <stephen@networkplumber.org>
This commit is contained in:
parent
9174b4cf3e
commit
a044b36af3
@ -430,6 +430,18 @@ union bpf_attr {
|
||||
* @xdp_md: pointer to xdp_md
|
||||
* @delta: An positive/negative integer to be added to xdp_md.data
|
||||
* Return: 0 on success or negative on error
|
||||
*
|
||||
* int bpf_probe_read_str(void *dst, int size, const void *unsafe_ptr)
|
||||
* Copy a NUL terminated string from unsafe address. In case the string
|
||||
* length is smaller than size, the target is not padded with further NUL
|
||||
* bytes. In case the string length is larger than size, just count-1
|
||||
* bytes are copied and the last byte is set to NUL.
|
||||
* @dst: destination address
|
||||
* @size: maximum number of bytes to copy, including the trailing NUL
|
||||
* @unsafe_ptr: unsafe address
|
||||
* Return:
|
||||
* > 0 length of the string including the trailing NUL on success
|
||||
* < 0 error
|
||||
*/
|
||||
#define __BPF_FUNC_MAPPER(FN) \
|
||||
FN(unspec), \
|
||||
@ -476,7 +488,8 @@ union bpf_attr {
|
||||
FN(set_hash_invalid), \
|
||||
FN(get_numa_node_id), \
|
||||
FN(skb_change_head), \
|
||||
FN(xdp_adjust_head),
|
||||
FN(xdp_adjust_head), \
|
||||
FN(probe_read_str),
|
||||
|
||||
/* integer value in 'imm' field of BPF_CALL instruction selects which helper
|
||||
* function eBPF program intends to call
|
||||
|
@ -845,6 +845,7 @@ enum {
|
||||
IFLA_STATS_LINK_XSTATS,
|
||||
IFLA_STATS_LINK_XSTATS_SLAVE,
|
||||
IFLA_STATS_LINK_OFFLOAD_XSTATS,
|
||||
IFLA_STATS_AF_SPEC,
|
||||
__IFLA_STATS_MAX,
|
||||
};
|
||||
|
||||
|
@ -43,4 +43,34 @@ struct mpls_label {
|
||||
|
||||
#define MPLS_LABEL_FIRST_UNRESERVED 16 /* RFC3032 */
|
||||
|
||||
/* These are embedded into IFLA_STATS_AF_SPEC:
|
||||
* [IFLA_STATS_AF_SPEC]
|
||||
* -> [AF_MPLS]
|
||||
* -> [MPLS_STATS_xxx]
|
||||
*
|
||||
* Attributes:
|
||||
* [MPLS_STATS_LINK] = {
|
||||
* struct mpls_link_stats
|
||||
* }
|
||||
*/
|
||||
enum {
|
||||
MPLS_STATS_UNSPEC, /* also used as 64bit pad attribute */
|
||||
MPLS_STATS_LINK,
|
||||
__MPLS_STATS_MAX,
|
||||
};
|
||||
|
||||
#define MPLS_STATS_MAX (__MPLS_STATS_MAX - 1)
|
||||
|
||||
struct mpls_link_stats {
|
||||
__u64 rx_packets; /* total packets received */
|
||||
__u64 tx_packets; /* total packets transmitted */
|
||||
__u64 rx_bytes; /* total bytes received */
|
||||
__u64 tx_bytes; /* total bytes transmitted */
|
||||
__u64 rx_errors; /* bad packets received */
|
||||
__u64 tx_errors; /* packet transmit problems */
|
||||
__u64 rx_dropped; /* packet dropped on receive */
|
||||
__u64 tx_dropped; /* packet dropped on transmit */
|
||||
__u64 rx_noroute; /* no route for packet dest */
|
||||
};
|
||||
|
||||
#endif /* _MPLS_H */
|
||||
|
@ -115,6 +115,8 @@ typedef __s32 sctp_assoc_t;
|
||||
#define SCTP_PR_SUPPORTED 113
|
||||
#define SCTP_DEFAULT_PRINFO 114
|
||||
#define SCTP_PR_ASSOC_STATUS 115
|
||||
#define SCTP_ENABLE_STREAM_RESET 118
|
||||
#define SCTP_RESET_STREAMS 119
|
||||
|
||||
/* PR-SCTP policies */
|
||||
#define SCTP_PR_SCTP_NONE 0x0000
|
||||
@ -138,6 +140,15 @@ typedef __s32 sctp_assoc_t;
|
||||
#define SCTP_PR_RTX_ENABLED(x) (SCTP_PR_POLICY(x) == SCTP_PR_SCTP_RTX)
|
||||
#define SCTP_PR_PRIO_ENABLED(x) (SCTP_PR_POLICY(x) == SCTP_PR_SCTP_PRIO)
|
||||
|
||||
/* For enable stream reset */
|
||||
#define SCTP_ENABLE_RESET_STREAM_REQ 0x01
|
||||
#define SCTP_ENABLE_RESET_ASSOC_REQ 0x02
|
||||
#define SCTP_ENABLE_CHANGE_ASSOC_REQ 0x04
|
||||
#define SCTP_ENABLE_STRRESET_MASK 0x07
|
||||
|
||||
#define SCTP_STREAM_RESET_INCOMING 0x01
|
||||
#define SCTP_STREAM_RESET_OUTGOING 0x02
|
||||
|
||||
/* These are bit fields for msghdr->msg_flags. See section 5.1. */
|
||||
/* On user space Linux, these live in <bits/socket.h> as an enum. */
|
||||
enum sctp_msg_flags {
|
||||
@ -1002,4 +1013,11 @@ struct sctp_info {
|
||||
__u32 __reserved3;
|
||||
};
|
||||
|
||||
struct sctp_reset_streams {
|
||||
sctp_assoc_t srs_assoc_id;
|
||||
uint16_t srs_flags;
|
||||
uint16_t srs_number_streams; /* 0 == ALL */
|
||||
uint16_t srs_stream_list[]; /* list if srs_num_streams is not 0 */
|
||||
};
|
||||
|
||||
#endif /* _SCTP_H */
|
||||
|
@ -1,7 +1,7 @@
|
||||
/*
|
||||
* include/uapi/linux/tipc.h: Header for TIPC socket interface
|
||||
*
|
||||
* Copyright (c) 2003-2006, Ericsson AB
|
||||
* Copyright (c) 2003-2006, 2015-2016 Ericsson AB
|
||||
* Copyright (c) 2005, 2010-2011, Wind River Systems
|
||||
* All rights reserved.
|
||||
*
|
||||
@ -220,7 +220,7 @@ struct sockaddr_tipc {
|
||||
#define TIPC_DESTNAME 3 /* destination name */
|
||||
|
||||
/*
|
||||
* TIPC-specific socket option values
|
||||
* TIPC-specific socket option names
|
||||
*/
|
||||
|
||||
#define TIPC_IMPORTANCE 127 /* Default: TIPC_LOW_IMPORTANCE */
|
||||
@ -229,6 +229,8 @@ struct sockaddr_tipc {
|
||||
#define TIPC_CONN_TIMEOUT 130 /* Default: 8000 (ms) */
|
||||
#define TIPC_NODE_RECVQ_DEPTH 131 /* Default: none (read only) */
|
||||
#define TIPC_SOCK_RECVQ_DEPTH 132 /* Default: none (read only) */
|
||||
#define TIPC_MCAST_BROADCAST 133 /* Default: TIPC selects. No arg */
|
||||
#define TIPC_MCAST_REPLICAST 134 /* Default: TIPC selects. No arg */
|
||||
|
||||
/*
|
||||
* Maximum sizes of TIPC bearer-related names (including terminating NULL)
|
||||
|
Loading…
Reference in New Issue
Block a user