mm: introduce find_dev_pagemap()
[deliverable/linux.git] / include / linux / if_team.h
CommitLineData
3d249d4c
JP
1/*
2 * include/linux/if_team.h - Network team device driver header
3 * Copyright (c) 2011 Jiri Pirko <jpirko@redhat.com>
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
9 */
3d249d4c
JP
10#ifndef _LINUX_IF_TEAM_H_
11#define _LINUX_IF_TEAM_H_
12
bd2d0837 13#include <linux/netpoll.h>
6c85f2bd 14#include <net/sch_generic.h>
fc423ff0 15#include <linux/types.h>
607ca46e 16#include <uapi/linux/if_team.h>
bd2d0837 17
3d249d4c
JP
18struct team_pcpu_stats {
19 u64 rx_packets;
20 u64 rx_bytes;
21 u64 rx_multicast;
22 u64 tx_packets;
23 u64 tx_bytes;
24 struct u64_stats_sync syncp;
25 u32 rx_dropped;
26 u32 tx_dropped;
27};
28
29struct team;
30
31struct team_port {
32 struct net_device *dev;
19a0b58e 33 struct hlist_node hlist; /* node in enabled ports hash list */
3d249d4c
JP
34 struct list_head list; /* node in ordinary list */
35 struct team *team;
19a0b58e 36 int index; /* index of enabled port. If disabled, it's set to -1 */
3d249d4c 37
71472ec1
JP
38 bool linkup; /* either state.linkup or user.linkup */
39
40 struct {
41 bool linkup;
42 u32 speed;
43 u8 duplex;
44 } state;
45
46 /* Values set by userspace */
47 struct {
48 bool linkup;
49 bool linkup_enabled;
50 } user;
51
52 /* Custom gennetlink interface related flags */
53 bool changed;
54 bool removed;
55
3d249d4c
JP
56 /*
57 * A place for storing original values of the device before it
58 * become a port.
59 */
60 struct {
61 unsigned char dev_addr[MAX_ADDR_LEN];
62 unsigned int mtu;
63 } orig;
64
bd2d0837
JP
65#ifdef CONFIG_NET_POLL_CONTROLLER
66 struct netpoll *np;
67#endif
68
a86fc6b7 69 s32 priority; /* lower number ~ higher priority */
8ff5105a
JP
70 u16 queue_id;
71 struct list_head qom_list; /* node in queue override mapping list */
d80b35be 72 struct rcu_head rcu;
5149ee58 73 long mode_priv[0];
3d249d4c
JP
74};
75
68c45042
JP
76static inline bool team_port_enabled(struct team_port *port)
77{
78 return port->index != -1;
79}
80
81static inline bool team_port_txable(struct team_port *port)
82{
83 return port->linkup && team_port_enabled(port);
84}
52a4fd77 85
bd2d0837
JP
86#ifdef CONFIG_NET_POLL_CONTROLLER
87static inline void team_netpoll_send_skb(struct team_port *port,
88 struct sk_buff *skb)
89{
90 struct netpoll *np = port->np;
91
92 if (np)
93 netpoll_send_skb(np, skb);
94}
95#else
96static inline void team_netpoll_send_skb(struct team_port *port,
97 struct sk_buff *skb)
98{
99}
100#endif
101
3d249d4c
JP
102struct team_mode_ops {
103 int (*init)(struct team *team);
104 void (*exit)(struct team *team);
105 rx_handler_result_t (*receive)(struct team *team,
106 struct team_port *port,
107 struct sk_buff *skb);
108 bool (*transmit)(struct team *team, struct sk_buff *skb);
109 int (*port_enter)(struct team *team, struct team_port *port);
110 void (*port_leave)(struct team *team, struct team_port *port);
1d76efe1 111 void (*port_change_dev_addr)(struct team *team, struct team_port *port);
4bccfd17
JP
112 void (*port_enabled)(struct team *team, struct team_port *port);
113 void (*port_disabled)(struct team *team, struct team_port *port);
3d249d4c
JP
114};
115
acbba0d0
JP
116extern int team_modeop_port_enter(struct team *team, struct team_port *port);
117extern void team_modeop_port_change_dev_addr(struct team *team,
118 struct team_port *port);
119
3d249d4c
JP
120enum team_option_type {
121 TEAM_OPTION_TYPE_U32,
122 TEAM_OPTION_TYPE_STRING,
2615598f 123 TEAM_OPTION_TYPE_BINARY,
14f066ba 124 TEAM_OPTION_TYPE_BOOL,
69821638 125 TEAM_OPTION_TYPE_S32,
3d249d4c
JP
126};
127
85d59a87
JP
128struct team_option_inst_info {
129 u32 array_index;
130 struct team_port *port; /* != NULL if per-port */
131};
132
80f7c668
JP
133struct team_gsetter_ctx {
134 union {
135 u32 u32_val;
136 const char *str_val;
137 struct {
138 const void *ptr;
139 u32 len;
140 } bin_val;
14f066ba 141 bool bool_val;
69821638 142 s32 s32_val;
80f7c668 143 } data;
85d59a87 144 struct team_option_inst_info *info;
80f7c668
JP
145};
146
3d249d4c
JP
147struct team_option {
148 struct list_head list;
149 const char *name;
80f7c668 150 bool per_port;
b1303326 151 unsigned int array_size; /* != 0 means the option is array */
3d249d4c 152 enum team_option_type type;
85d59a87 153 int (*init)(struct team *team, struct team_option_inst_info *info);
80f7c668
JP
154 int (*getter)(struct team *team, struct team_gsetter_ctx *ctx);
155 int (*setter)(struct team *team, struct team_gsetter_ctx *ctx);
3d249d4c
JP
156};
157
0f1aad2b
JP
158extern void team_option_inst_set_change(struct team_option_inst_info *opt_inst_info);
159extern void team_options_change_check(struct team *team);
160
3d249d4c 161struct team_mode {
3d249d4c
JP
162 const char *kind;
163 struct module *owner;
164 size_t priv_size;
5149ee58 165 size_t port_priv_size;
3d249d4c 166 const struct team_mode_ops *ops;
8fd72856 167 enum netdev_lag_tx_type lag_tx_type;
3d249d4c
JP
168};
169
170#define TEAM_PORT_HASHBITS 4
171#define TEAM_PORT_HASHENTRIES (1 << TEAM_PORT_HASHBITS)
172
173#define TEAM_MODE_PRIV_LONGS 4
174#define TEAM_MODE_PRIV_SIZE (sizeof(long) * TEAM_MODE_PRIV_LONGS)
175
176struct team {
177 struct net_device *dev; /* associated netdevice */
178 struct team_pcpu_stats __percpu *pcpu_stats;
179
61dc3461 180 struct mutex lock; /* used for overall locking, e.g. port lists write */
3d249d4c
JP
181
182 /*
19a0b58e 183 * List of enabled ports and their count
3d249d4c 184 */
19a0b58e
JP
185 int en_port_count;
186 struct hlist_head en_port_hlist[TEAM_PORT_HASHENTRIES];
187
188 struct list_head port_list; /* list of all ports */
3d249d4c
JP
189
190 struct list_head option_list;
80f7c668 191 struct list_head option_inst_list; /* list of option instances */
3d249d4c
JP
192
193 const struct team_mode *mode;
194 struct team_mode_ops ops;
e185483e 195 bool user_carrier_enabled;
8ff5105a
JP
196 bool queue_override_enabled;
197 struct list_head *qom_lists; /* array of queue override mapping lists */
9d0d68fa 198 bool port_mtu_change_allowed;
fc423ff0
JP
199 struct {
200 unsigned int count;
201 unsigned int interval; /* in ms */
202 atomic_t count_pending;
203 struct delayed_work dw;
204 } notify_peers;
492b200e
JP
205 struct {
206 unsigned int count;
207 unsigned int interval; /* in ms */
208 atomic_t count_pending;
209 struct delayed_work dw;
210 } mcast_rejoin;
3d249d4c
JP
211 long mode_priv[TEAM_MODE_PRIV_LONGS];
212};
213
e15c3c22
AW
214static inline int team_dev_queue_xmit(struct team *team, struct team_port *port,
215 struct sk_buff *skb)
216{
217 BUILD_BUG_ON(sizeof(skb->queue_mapping) !=
218 sizeof(qdisc_skb_cb(skb)->slave_dev_queue_mapping));
219 skb_set_queue_mapping(skb, qdisc_skb_cb(skb)->slave_dev_queue_mapping);
220
221 skb->dev = port->dev;
222 if (unlikely(netpoll_tx_running(team->dev))) {
223 team_netpoll_send_skb(port, skb);
224 return 0;
225 }
226 return dev_queue_xmit(skb);
227}
228
3d249d4c
JP
229static inline struct hlist_head *team_port_index_hash(struct team *team,
230 int port_index)
231{
19a0b58e 232 return &team->en_port_hlist[port_index & (TEAM_PORT_HASHENTRIES - 1)];
3d249d4c
JP
233}
234
235static inline struct team_port *team_get_port_by_index(struct team *team,
236 int port_index)
237{
3d249d4c
JP
238 struct team_port *port;
239 struct hlist_head *head = team_port_index_hash(team, port_index);
240
b67bfe0d 241 hlist_for_each_entry(port, head, hlist)
3d249d4c
JP
242 if (port->index == port_index)
243 return port;
244 return NULL;
245}
735d381f
JP
246
247static inline int team_num_to_port_index(struct team *team, int num)
248{
249 int en_port_count = ACCESS_ONCE(team->en_port_count);
250
251 if (unlikely(!en_port_count))
252 return 0;
253 return num % en_port_count;
254}
255
3d249d4c
JP
256static inline struct team_port *team_get_port_by_index_rcu(struct team *team,
257 int port_index)
258{
3d249d4c
JP
259 struct team_port *port;
260 struct hlist_head *head = team_port_index_hash(team, port_index);
261
b67bfe0d 262 hlist_for_each_entry_rcu(port, head, hlist)
3d249d4c
JP
263 if (port->index == port_index)
264 return port;
265 return NULL;
266}
267
753f9939
JP
268static inline struct team_port *
269team_get_first_port_txable_rcu(struct team *team, struct team_port *port)
270{
271 struct team_port *cur;
272
273 if (likely(team_port_txable(port)))
274 return port;
275 cur = port;
276 list_for_each_entry_continue_rcu(cur, &team->port_list, list)
b79462a8 277 if (team_port_txable(cur))
753f9939
JP
278 return cur;
279 list_for_each_entry_rcu(cur, &team->port_list, list) {
280 if (cur == port)
281 break;
b79462a8 282 if (team_port_txable(cur))
753f9939
JP
283 return cur;
284 }
285 return NULL;
286}
287
358b8382
JP
288extern int team_options_register(struct team *team,
289 const struct team_option *option,
290 size_t option_count);
3d249d4c 291extern void team_options_unregister(struct team *team,
358b8382 292 const struct team_option *option,
3d249d4c 293 size_t option_count);
0402788a
JP
294extern int team_mode_register(const struct team_mode *mode);
295extern void team_mode_unregister(const struct team_mode *mode);
3d249d4c 296
6c85f2bd
JP
297#define TEAM_DEFAULT_NUM_TX_QUEUES 16
298#define TEAM_DEFAULT_NUM_RX_QUEUES 16
299
3d249d4c 300#endif /* _LINUX_IF_TEAM_H_ */
This page took 0.644787 seconds and 5 git commands to generate.