Update kernel headers
Update kernel headers to commit
aea5f654e6b7 ("net/sched: add skbprio scheduler")
Signed-off-by: David Ahern <dsahern@gmail.com>
This commit is contained in:
parent
5f9c8c6a16
commit
8b099da560
|
|
@ -332,6 +332,7 @@ enum {
|
||||||
IFLA_BRPORT_GROUP_FWD_MASK,
|
IFLA_BRPORT_GROUP_FWD_MASK,
|
||||||
IFLA_BRPORT_NEIGH_SUPPRESS,
|
IFLA_BRPORT_NEIGH_SUPPRESS,
|
||||||
IFLA_BRPORT_ISOLATED,
|
IFLA_BRPORT_ISOLATED,
|
||||||
|
IFLA_BRPORT_BACKUP_PORT,
|
||||||
__IFLA_BRPORT_MAX
|
__IFLA_BRPORT_MAX
|
||||||
};
|
};
|
||||||
#define IFLA_BRPORT_MAX (__IFLA_BRPORT_MAX - 1)
|
#define IFLA_BRPORT_MAX (__IFLA_BRPORT_MAX - 1)
|
||||||
|
|
|
||||||
|
|
@ -124,6 +124,21 @@ struct tc_fifo_qopt {
|
||||||
__u32 limit; /* Queue length: bytes for bfifo, packets for pfifo */
|
__u32 limit; /* Queue length: bytes for bfifo, packets for pfifo */
|
||||||
};
|
};
|
||||||
|
|
||||||
|
/* SKBPRIO section */
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Priorities go from zero to (SKBPRIO_MAX_PRIORITY - 1).
|
||||||
|
* SKBPRIO_MAX_PRIORITY should be at least 64 in order for skbprio to be able
|
||||||
|
* to map one to one the DS field of IPV4 and IPV6 headers.
|
||||||
|
* Memory allocation grows linearly with SKBPRIO_MAX_PRIORITY.
|
||||||
|
*/
|
||||||
|
|
||||||
|
#define SKBPRIO_MAX_PRIORITY 64
|
||||||
|
|
||||||
|
struct tc_skbprio_qopt {
|
||||||
|
__u32 limit; /* Queue length in packets. */
|
||||||
|
};
|
||||||
|
|
||||||
/* PRIO section */
|
/* PRIO section */
|
||||||
|
|
||||||
#define TCQ_PRIO_BANDS 16
|
#define TCQ_PRIO_BANDS 16
|
||||||
|
|
|
||||||
|
|
@ -150,6 +150,13 @@ enum {
|
||||||
RTM_NEWCACHEREPORT = 96,
|
RTM_NEWCACHEREPORT = 96,
|
||||||
#define RTM_NEWCACHEREPORT RTM_NEWCACHEREPORT
|
#define RTM_NEWCACHEREPORT RTM_NEWCACHEREPORT
|
||||||
|
|
||||||
|
RTM_NEWCHAIN = 100,
|
||||||
|
#define RTM_NEWCHAIN RTM_NEWCHAIN
|
||||||
|
RTM_DELCHAIN,
|
||||||
|
#define RTM_DELCHAIN RTM_DELCHAIN
|
||||||
|
RTM_GETCHAIN,
|
||||||
|
#define RTM_GETCHAIN RTM_GETCHAIN
|
||||||
|
|
||||||
__RTM_MAX,
|
__RTM_MAX,
|
||||||
#define RTM_MAX (((__RTM_MAX + 3) & ~3) - 1)
|
#define RTM_MAX (((__RTM_MAX + 3) & ~3) - 1)
|
||||||
};
|
};
|
||||||
|
|
|
||||||
|
|
@ -127,6 +127,10 @@ enum {
|
||||||
|
|
||||||
#define TCP_CM_INQ TCP_INQ
|
#define TCP_CM_INQ TCP_INQ
|
||||||
|
|
||||||
|
#define TCP_REPAIR_ON 1
|
||||||
|
#define TCP_REPAIR_OFF 0
|
||||||
|
#define TCP_REPAIR_OFF_NO_WP -1 /* Turn off without window probes */
|
||||||
|
|
||||||
struct tcp_repair_opt {
|
struct tcp_repair_opt {
|
||||||
__u32 opt_code;
|
__u32 opt_code;
|
||||||
__u32 opt_val;
|
__u32 opt_val;
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue