diff options
Diffstat (limited to 'include/linux/if_team.h')
-rw-r--r-- | include/linux/if_team.h | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/include/linux/if_team.h b/include/linux/if_team.h index f6156f91eb1c..b0b83683461e 100644 --- a/include/linux/if_team.h +++ b/include/linux/if_team.h | |||
@@ -10,9 +10,9 @@ | |||
10 | #ifndef _LINUX_IF_TEAM_H_ | 10 | #ifndef _LINUX_IF_TEAM_H_ |
11 | #define _LINUX_IF_TEAM_H_ | 11 | #define _LINUX_IF_TEAM_H_ |
12 | 12 | ||
13 | |||
14 | #include <linux/netpoll.h> | 13 | #include <linux/netpoll.h> |
15 | #include <net/sch_generic.h> | 14 | #include <net/sch_generic.h> |
15 | #include <linux/types.h> | ||
16 | #include <uapi/linux/if_team.h> | 16 | #include <uapi/linux/if_team.h> |
17 | 17 | ||
18 | struct team_pcpu_stats { | 18 | struct team_pcpu_stats { |
@@ -194,6 +194,12 @@ struct team { | |||
194 | bool user_carrier_enabled; | 194 | bool user_carrier_enabled; |
195 | bool queue_override_enabled; | 195 | bool queue_override_enabled; |
196 | struct list_head *qom_lists; /* array of queue override mapping lists */ | 196 | struct list_head *qom_lists; /* array of queue override mapping lists */ |
197 | struct { | ||
198 | unsigned int count; | ||
199 | unsigned int interval; /* in ms */ | ||
200 | atomic_t count_pending; | ||
201 | struct delayed_work dw; | ||
202 | } notify_peers; | ||
197 | long mode_priv[TEAM_MODE_PRIV_LONGS]; | 203 | long mode_priv[TEAM_MODE_PRIV_LONGS]; |
198 | }; | 204 | }; |
199 | 205 | ||