Update kernel headers from net-next (4.14-rc6)

Signed-off-by: Stephen Hemminger <stephen@networkplumber.org>
This commit is contained in:
Stephen Hemminger 2017-10-31 18:03:52 +01:00
parent c1606c44b3
commit 0ac0017a1a
2 changed files with 4 additions and 4 deletions

View File

@ -645,7 +645,7 @@ union bpf_attr {
* @map: pointer to sockmap
* @key: key to lookup sock in map
* @flags: reserved for future use
* Return: SK_PASS
* Return: SK_REDIRECT
*
* int bpf_sock_map_update(skops, map, key, flags)
* @skops: pointer to bpf_sock_ops
@ -887,8 +887,8 @@ struct xdp_md {
};
enum sk_action {
SK_DROP = 0,
SK_PASS,
SK_ABORTED = 0,
SK_DROP,
SK_REDIRECT,
};

View File

@ -378,7 +378,7 @@ struct sctp_remote_error {
__u16 sre_type;
__u16 sre_flags;
__u32 sre_length;
__be16 sre_error;
__u16 sre_error;
sctp_assoc_t sre_assoc_id;
__u8 sre_data[0];
};