GNU Linux-libre 4.4.284-gnu1
[releases.git] / drivers / net / team / team_mode_loadbalance.c
1 /*
2  * drivers/net/team/team_mode_loadbalance.c - Load-balancing mode for team
3  * Copyright (c) 2012 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  */
10
11 #include <linux/kernel.h>
12 #include <linux/types.h>
13 #include <linux/module.h>
14 #include <linux/init.h>
15 #include <linux/errno.h>
16 #include <linux/netdevice.h>
17 #include <linux/filter.h>
18 #include <linux/if_team.h>
19
20 struct lb_priv;
21
22 typedef struct team_port *lb_select_tx_port_func_t(struct team *,
23                                                    struct lb_priv *,
24                                                    struct sk_buff *,
25                                                    unsigned char);
26
27 #define LB_TX_HASHTABLE_SIZE 256 /* hash is a char */
28
29 struct lb_stats {
30         u64 tx_bytes;
31 };
32
33 struct lb_pcpu_stats {
34         struct lb_stats hash_stats[LB_TX_HASHTABLE_SIZE];
35         struct u64_stats_sync syncp;
36 };
37
38 struct lb_stats_info {
39         struct lb_stats stats;
40         struct lb_stats last_stats;
41         struct team_option_inst_info *opt_inst_info;
42 };
43
44 struct lb_port_mapping {
45         struct team_port __rcu *port;
46         struct team_option_inst_info *opt_inst_info;
47 };
48
49 struct lb_priv_ex {
50         struct team *team;
51         struct lb_port_mapping tx_hash_to_port_mapping[LB_TX_HASHTABLE_SIZE];
52         struct sock_fprog_kern *orig_fprog;
53         struct {
54                 unsigned int refresh_interval; /* in tenths of second */
55                 struct delayed_work refresh_dw;
56                 struct lb_stats_info info[LB_TX_HASHTABLE_SIZE];
57         } stats;
58 };
59
60 struct lb_priv {
61         struct bpf_prog __rcu *fp;
62         lb_select_tx_port_func_t __rcu *select_tx_port_func;
63         struct lb_pcpu_stats __percpu *pcpu_stats;
64         struct lb_priv_ex *ex; /* priv extension */
65 };
66
67 static struct lb_priv *get_lb_priv(struct team *team)
68 {
69         return (struct lb_priv *) &team->mode_priv;
70 }
71
72 struct lb_port_priv {
73         struct lb_stats __percpu *pcpu_stats;
74         struct lb_stats_info stats_info;
75 };
76
77 static struct lb_port_priv *get_lb_port_priv(struct team_port *port)
78 {
79         return (struct lb_port_priv *) &port->mode_priv;
80 }
81
82 #define LB_HTPM_PORT_BY_HASH(lp_priv, hash) \
83         (lb_priv)->ex->tx_hash_to_port_mapping[hash].port
84
85 #define LB_HTPM_OPT_INST_INFO_BY_HASH(lp_priv, hash) \
86         (lb_priv)->ex->tx_hash_to_port_mapping[hash].opt_inst_info
87
88 static void lb_tx_hash_to_port_mapping_null_port(struct team *team,
89                                                  struct team_port *port)
90 {
91         struct lb_priv *lb_priv = get_lb_priv(team);
92         bool changed = false;
93         int i;
94
95         for (i = 0; i < LB_TX_HASHTABLE_SIZE; i++) {
96                 struct lb_port_mapping *pm;
97
98                 pm = &lb_priv->ex->tx_hash_to_port_mapping[i];
99                 if (rcu_access_pointer(pm->port) == port) {
100                         RCU_INIT_POINTER(pm->port, NULL);
101                         team_option_inst_set_change(pm->opt_inst_info);
102                         changed = true;
103                 }
104         }
105         if (changed)
106                 team_options_change_check(team);
107 }
108
109 /* Basic tx selection based solely by hash */
110 static struct team_port *lb_hash_select_tx_port(struct team *team,
111                                                 struct lb_priv *lb_priv,
112                                                 struct sk_buff *skb,
113                                                 unsigned char hash)
114 {
115         int port_index = team_num_to_port_index(team, hash);
116
117         return team_get_port_by_index_rcu(team, port_index);
118 }
119
120 /* Hash to port mapping select tx port */
121 static struct team_port *lb_htpm_select_tx_port(struct team *team,
122                                                 struct lb_priv *lb_priv,
123                                                 struct sk_buff *skb,
124                                                 unsigned char hash)
125 {
126         return rcu_dereference_bh(LB_HTPM_PORT_BY_HASH(lb_priv, hash));
127 }
128
129 struct lb_select_tx_port {
130         char *name;
131         lb_select_tx_port_func_t *func;
132 };
133
134 static const struct lb_select_tx_port lb_select_tx_port_list[] = {
135         {
136                 .name = "hash",
137                 .func = lb_hash_select_tx_port,
138         },
139         {
140                 .name = "hash_to_port_mapping",
141                 .func = lb_htpm_select_tx_port,
142         },
143 };
144 #define LB_SELECT_TX_PORT_LIST_COUNT ARRAY_SIZE(lb_select_tx_port_list)
145
146 static char *lb_select_tx_port_get_name(lb_select_tx_port_func_t *func)
147 {
148         int i;
149
150         for (i = 0; i < LB_SELECT_TX_PORT_LIST_COUNT; i++) {
151                 const struct lb_select_tx_port *item;
152
153                 item = &lb_select_tx_port_list[i];
154                 if (item->func == func)
155                         return item->name;
156         }
157         return NULL;
158 }
159
160 static lb_select_tx_port_func_t *lb_select_tx_port_get_func(const char *name)
161 {
162         int i;
163
164         for (i = 0; i < LB_SELECT_TX_PORT_LIST_COUNT; i++) {
165                 const struct lb_select_tx_port *item;
166
167                 item = &lb_select_tx_port_list[i];
168                 if (!strcmp(item->name, name))
169                         return item->func;
170         }
171         return NULL;
172 }
173
174 static unsigned int lb_get_skb_hash(struct lb_priv *lb_priv,
175                                     struct sk_buff *skb)
176 {
177         struct bpf_prog *fp;
178         uint32_t lhash;
179         unsigned char *c;
180
181         fp = rcu_dereference_bh(lb_priv->fp);
182         if (unlikely(!fp))
183                 return 0;
184         lhash = BPF_PROG_RUN(fp, skb);
185         c = (char *) &lhash;
186         return c[0] ^ c[1] ^ c[2] ^ c[3];
187 }
188
189 static void lb_update_tx_stats(unsigned int tx_bytes, struct lb_priv *lb_priv,
190                                struct lb_port_priv *lb_port_priv,
191                                unsigned char hash)
192 {
193         struct lb_pcpu_stats *pcpu_stats;
194         struct lb_stats *port_stats;
195         struct lb_stats *hash_stats;
196
197         pcpu_stats = this_cpu_ptr(lb_priv->pcpu_stats);
198         port_stats = this_cpu_ptr(lb_port_priv->pcpu_stats);
199         hash_stats = &pcpu_stats->hash_stats[hash];
200         u64_stats_update_begin(&pcpu_stats->syncp);
201         port_stats->tx_bytes += tx_bytes;
202         hash_stats->tx_bytes += tx_bytes;
203         u64_stats_update_end(&pcpu_stats->syncp);
204 }
205
206 static bool lb_transmit(struct team *team, struct sk_buff *skb)
207 {
208         struct lb_priv *lb_priv = get_lb_priv(team);
209         lb_select_tx_port_func_t *select_tx_port_func;
210         struct team_port *port;
211         unsigned char hash;
212         unsigned int tx_bytes = skb->len;
213
214         hash = lb_get_skb_hash(lb_priv, skb);
215         select_tx_port_func = rcu_dereference_bh(lb_priv->select_tx_port_func);
216         port = select_tx_port_func(team, lb_priv, skb, hash);
217         if (unlikely(!port))
218                 goto drop;
219         if (team_dev_queue_xmit(team, port, skb))
220                 return false;
221         lb_update_tx_stats(tx_bytes, lb_priv, get_lb_port_priv(port), hash);
222         return true;
223
224 drop:
225         dev_kfree_skb_any(skb);
226         return false;
227 }
228
229 static int lb_bpf_func_get(struct team *team, struct team_gsetter_ctx *ctx)
230 {
231         struct lb_priv *lb_priv = get_lb_priv(team);
232
233         if (!lb_priv->ex->orig_fprog) {
234                 ctx->data.bin_val.len = 0;
235                 ctx->data.bin_val.ptr = NULL;
236                 return 0;
237         }
238         ctx->data.bin_val.len = lb_priv->ex->orig_fprog->len *
239                                 sizeof(struct sock_filter);
240         ctx->data.bin_val.ptr = lb_priv->ex->orig_fprog->filter;
241         return 0;
242 }
243
244 static int __fprog_create(struct sock_fprog_kern **pfprog, u32 data_len,
245                           const void *data)
246 {
247         struct sock_fprog_kern *fprog;
248         struct sock_filter *filter = (struct sock_filter *) data;
249
250         if (data_len % sizeof(struct sock_filter))
251                 return -EINVAL;
252         fprog = kmalloc(sizeof(*fprog), GFP_KERNEL);
253         if (!fprog)
254                 return -ENOMEM;
255         fprog->filter = kmemdup(filter, data_len, GFP_KERNEL);
256         if (!fprog->filter) {
257                 kfree(fprog);
258                 return -ENOMEM;
259         }
260         fprog->len = data_len / sizeof(struct sock_filter);
261         *pfprog = fprog;
262         return 0;
263 }
264
265 static void __fprog_destroy(struct sock_fprog_kern *fprog)
266 {
267         kfree(fprog->filter);
268         kfree(fprog);
269 }
270
271 static int lb_bpf_func_set(struct team *team, struct team_gsetter_ctx *ctx)
272 {
273         struct lb_priv *lb_priv = get_lb_priv(team);
274         struct bpf_prog *fp = NULL;
275         struct bpf_prog *orig_fp = NULL;
276         struct sock_fprog_kern *fprog = NULL;
277         int err;
278
279         if (ctx->data.bin_val.len) {
280                 err = __fprog_create(&fprog, ctx->data.bin_val.len,
281                                      ctx->data.bin_val.ptr);
282                 if (err)
283                         return err;
284                 err = bpf_prog_create(&fp, fprog);
285                 if (err) {
286                         __fprog_destroy(fprog);
287                         return err;
288                 }
289         }
290
291         if (lb_priv->ex->orig_fprog) {
292                 /* Clear old filter data */
293                 __fprog_destroy(lb_priv->ex->orig_fprog);
294                 orig_fp = rcu_dereference_protected(lb_priv->fp,
295                                                 lockdep_is_held(&team->lock));
296         }
297
298         rcu_assign_pointer(lb_priv->fp, fp);
299         lb_priv->ex->orig_fprog = fprog;
300
301         if (orig_fp) {
302                 synchronize_rcu();
303                 bpf_prog_destroy(orig_fp);
304         }
305         return 0;
306 }
307
308 static void lb_bpf_func_free(struct team *team)
309 {
310         struct lb_priv *lb_priv = get_lb_priv(team);
311         struct bpf_prog *fp;
312
313         if (!lb_priv->ex->orig_fprog)
314                 return;
315
316         __fprog_destroy(lb_priv->ex->orig_fprog);
317         fp = rcu_dereference_protected(lb_priv->fp,
318                                        lockdep_is_held(&team->lock));
319         bpf_prog_destroy(fp);
320 }
321
322 static int lb_tx_method_get(struct team *team, struct team_gsetter_ctx *ctx)
323 {
324         struct lb_priv *lb_priv = get_lb_priv(team);
325         lb_select_tx_port_func_t *func;
326         char *name;
327
328         func = rcu_dereference_protected(lb_priv->select_tx_port_func,
329                                          lockdep_is_held(&team->lock));
330         name = lb_select_tx_port_get_name(func);
331         BUG_ON(!name);
332         ctx->data.str_val = name;
333         return 0;
334 }
335
336 static int lb_tx_method_set(struct team *team, struct team_gsetter_ctx *ctx)
337 {
338         struct lb_priv *lb_priv = get_lb_priv(team);
339         lb_select_tx_port_func_t *func;
340
341         func = lb_select_tx_port_get_func(ctx->data.str_val);
342         if (!func)
343                 return -EINVAL;
344         rcu_assign_pointer(lb_priv->select_tx_port_func, func);
345         return 0;
346 }
347
348 static int lb_tx_hash_to_port_mapping_init(struct team *team,
349                                            struct team_option_inst_info *info)
350 {
351         struct lb_priv *lb_priv = get_lb_priv(team);
352         unsigned char hash = info->array_index;
353
354         LB_HTPM_OPT_INST_INFO_BY_HASH(lb_priv, hash) = info;
355         return 0;
356 }
357
358 static int lb_tx_hash_to_port_mapping_get(struct team *team,
359                                           struct team_gsetter_ctx *ctx)
360 {
361         struct lb_priv *lb_priv = get_lb_priv(team);
362         struct team_port *port;
363         unsigned char hash = ctx->info->array_index;
364
365         port = LB_HTPM_PORT_BY_HASH(lb_priv, hash);
366         ctx->data.u32_val = port ? port->dev->ifindex : 0;
367         return 0;
368 }
369
370 static int lb_tx_hash_to_port_mapping_set(struct team *team,
371                                           struct team_gsetter_ctx *ctx)
372 {
373         struct lb_priv *lb_priv = get_lb_priv(team);
374         struct team_port *port;
375         unsigned char hash = ctx->info->array_index;
376
377         list_for_each_entry(port, &team->port_list, list) {
378                 if (ctx->data.u32_val == port->dev->ifindex &&
379                     team_port_enabled(port)) {
380                         rcu_assign_pointer(LB_HTPM_PORT_BY_HASH(lb_priv, hash),
381                                            port);
382                         return 0;
383                 }
384         }
385         return -ENODEV;
386 }
387
388 static int lb_hash_stats_init(struct team *team,
389                               struct team_option_inst_info *info)
390 {
391         struct lb_priv *lb_priv = get_lb_priv(team);
392         unsigned char hash = info->array_index;
393
394         lb_priv->ex->stats.info[hash].opt_inst_info = info;
395         return 0;
396 }
397
398 static int lb_hash_stats_get(struct team *team, struct team_gsetter_ctx *ctx)
399 {
400         struct lb_priv *lb_priv = get_lb_priv(team);
401         unsigned char hash = ctx->info->array_index;
402
403         ctx->data.bin_val.ptr = &lb_priv->ex->stats.info[hash].stats;
404         ctx->data.bin_val.len = sizeof(struct lb_stats);
405         return 0;
406 }
407
408 static int lb_port_stats_init(struct team *team,
409                               struct team_option_inst_info *info)
410 {
411         struct team_port *port = info->port;
412         struct lb_port_priv *lb_port_priv = get_lb_port_priv(port);
413
414         lb_port_priv->stats_info.opt_inst_info = info;
415         return 0;
416 }
417
418 static int lb_port_stats_get(struct team *team, struct team_gsetter_ctx *ctx)
419 {
420         struct team_port *port = ctx->info->port;
421         struct lb_port_priv *lb_port_priv = get_lb_port_priv(port);
422
423         ctx->data.bin_val.ptr = &lb_port_priv->stats_info.stats;
424         ctx->data.bin_val.len = sizeof(struct lb_stats);
425         return 0;
426 }
427
428 static void __lb_stats_info_refresh_prepare(struct lb_stats_info *s_info)
429 {
430         memcpy(&s_info->last_stats, &s_info->stats, sizeof(struct lb_stats));
431         memset(&s_info->stats, 0, sizeof(struct lb_stats));
432 }
433
434 static bool __lb_stats_info_refresh_check(struct lb_stats_info *s_info,
435                                           struct team *team)
436 {
437         if (memcmp(&s_info->last_stats, &s_info->stats,
438             sizeof(struct lb_stats))) {
439                 team_option_inst_set_change(s_info->opt_inst_info);
440                 return true;
441         }
442         return false;
443 }
444
445 static void __lb_one_cpu_stats_add(struct lb_stats *acc_stats,
446                                    struct lb_stats *cpu_stats,
447                                    struct u64_stats_sync *syncp)
448 {
449         unsigned int start;
450         struct lb_stats tmp;
451
452         do {
453                 start = u64_stats_fetch_begin_irq(syncp);
454                 tmp.tx_bytes = cpu_stats->tx_bytes;
455         } while (u64_stats_fetch_retry_irq(syncp, start));
456         acc_stats->tx_bytes += tmp.tx_bytes;
457 }
458
459 static void lb_stats_refresh(struct work_struct *work)
460 {
461         struct team *team;
462         struct lb_priv *lb_priv;
463         struct lb_priv_ex *lb_priv_ex;
464         struct lb_pcpu_stats *pcpu_stats;
465         struct lb_stats *stats;
466         struct lb_stats_info *s_info;
467         struct team_port *port;
468         bool changed = false;
469         int i;
470         int j;
471
472         lb_priv_ex = container_of(work, struct lb_priv_ex,
473                                   stats.refresh_dw.work);
474
475         team = lb_priv_ex->team;
476         lb_priv = get_lb_priv(team);
477
478         if (!mutex_trylock(&team->lock)) {
479                 schedule_delayed_work(&lb_priv_ex->stats.refresh_dw, 0);
480                 return;
481         }
482
483         for (j = 0; j < LB_TX_HASHTABLE_SIZE; j++) {
484                 s_info = &lb_priv->ex->stats.info[j];
485                 __lb_stats_info_refresh_prepare(s_info);
486                 for_each_possible_cpu(i) {
487                         pcpu_stats = per_cpu_ptr(lb_priv->pcpu_stats, i);
488                         stats = &pcpu_stats->hash_stats[j];
489                         __lb_one_cpu_stats_add(&s_info->stats, stats,
490                                                &pcpu_stats->syncp);
491                 }
492                 changed |= __lb_stats_info_refresh_check(s_info, team);
493         }
494
495         list_for_each_entry(port, &team->port_list, list) {
496                 struct lb_port_priv *lb_port_priv = get_lb_port_priv(port);
497
498                 s_info = &lb_port_priv->stats_info;
499                 __lb_stats_info_refresh_prepare(s_info);
500                 for_each_possible_cpu(i) {
501                         pcpu_stats = per_cpu_ptr(lb_priv->pcpu_stats, i);
502                         stats = per_cpu_ptr(lb_port_priv->pcpu_stats, i);
503                         __lb_one_cpu_stats_add(&s_info->stats, stats,
504                                                &pcpu_stats->syncp);
505                 }
506                 changed |= __lb_stats_info_refresh_check(s_info, team);
507         }
508
509         if (changed)
510                 team_options_change_check(team);
511
512         schedule_delayed_work(&lb_priv_ex->stats.refresh_dw,
513                               (lb_priv_ex->stats.refresh_interval * HZ) / 10);
514
515         mutex_unlock(&team->lock);
516 }
517
518 static int lb_stats_refresh_interval_get(struct team *team,
519                                          struct team_gsetter_ctx *ctx)
520 {
521         struct lb_priv *lb_priv = get_lb_priv(team);
522
523         ctx->data.u32_val = lb_priv->ex->stats.refresh_interval;
524         return 0;
525 }
526
527 static int lb_stats_refresh_interval_set(struct team *team,
528                                          struct team_gsetter_ctx *ctx)
529 {
530         struct lb_priv *lb_priv = get_lb_priv(team);
531         unsigned int interval;
532
533         interval = ctx->data.u32_val;
534         if (lb_priv->ex->stats.refresh_interval == interval)
535                 return 0;
536         lb_priv->ex->stats.refresh_interval = interval;
537         if (interval)
538                 schedule_delayed_work(&lb_priv->ex->stats.refresh_dw, 0);
539         else
540                 cancel_delayed_work(&lb_priv->ex->stats.refresh_dw);
541         return 0;
542 }
543
544 static const struct team_option lb_options[] = {
545         {
546                 .name = "bpf_hash_func",
547                 .type = TEAM_OPTION_TYPE_BINARY,
548                 .getter = lb_bpf_func_get,
549                 .setter = lb_bpf_func_set,
550         },
551         {
552                 .name = "lb_tx_method",
553                 .type = TEAM_OPTION_TYPE_STRING,
554                 .getter = lb_tx_method_get,
555                 .setter = lb_tx_method_set,
556         },
557         {
558                 .name = "lb_tx_hash_to_port_mapping",
559                 .array_size = LB_TX_HASHTABLE_SIZE,
560                 .type = TEAM_OPTION_TYPE_U32,
561                 .init = lb_tx_hash_to_port_mapping_init,
562                 .getter = lb_tx_hash_to_port_mapping_get,
563                 .setter = lb_tx_hash_to_port_mapping_set,
564         },
565         {
566                 .name = "lb_hash_stats",
567                 .array_size = LB_TX_HASHTABLE_SIZE,
568                 .type = TEAM_OPTION_TYPE_BINARY,
569                 .init = lb_hash_stats_init,
570                 .getter = lb_hash_stats_get,
571         },
572         {
573                 .name = "lb_port_stats",
574                 .per_port = true,
575                 .type = TEAM_OPTION_TYPE_BINARY,
576                 .init = lb_port_stats_init,
577                 .getter = lb_port_stats_get,
578         },
579         {
580                 .name = "lb_stats_refresh_interval",
581                 .type = TEAM_OPTION_TYPE_U32,
582                 .getter = lb_stats_refresh_interval_get,
583                 .setter = lb_stats_refresh_interval_set,
584         },
585 };
586
587 static int lb_init(struct team *team)
588 {
589         struct lb_priv *lb_priv = get_lb_priv(team);
590         lb_select_tx_port_func_t *func;
591         int i, err;
592
593         /* set default tx port selector */
594         func = lb_select_tx_port_get_func("hash");
595         BUG_ON(!func);
596         rcu_assign_pointer(lb_priv->select_tx_port_func, func);
597
598         lb_priv->ex = kzalloc(sizeof(*lb_priv->ex), GFP_KERNEL);
599         if (!lb_priv->ex)
600                 return -ENOMEM;
601         lb_priv->ex->team = team;
602
603         lb_priv->pcpu_stats = alloc_percpu(struct lb_pcpu_stats);
604         if (!lb_priv->pcpu_stats) {
605                 err = -ENOMEM;
606                 goto err_alloc_pcpu_stats;
607         }
608
609         for_each_possible_cpu(i) {
610                 struct lb_pcpu_stats *team_lb_stats;
611                 team_lb_stats = per_cpu_ptr(lb_priv->pcpu_stats, i);
612                 u64_stats_init(&team_lb_stats->syncp);
613         }
614
615
616         INIT_DELAYED_WORK(&lb_priv->ex->stats.refresh_dw, lb_stats_refresh);
617
618         err = team_options_register(team, lb_options, ARRAY_SIZE(lb_options));
619         if (err)
620                 goto err_options_register;
621         return 0;
622
623 err_options_register:
624         free_percpu(lb_priv->pcpu_stats);
625 err_alloc_pcpu_stats:
626         kfree(lb_priv->ex);
627         return err;
628 }
629
630 static void lb_exit(struct team *team)
631 {
632         struct lb_priv *lb_priv = get_lb_priv(team);
633
634         team_options_unregister(team, lb_options,
635                                 ARRAY_SIZE(lb_options));
636         lb_bpf_func_free(team);
637         cancel_delayed_work_sync(&lb_priv->ex->stats.refresh_dw);
638         free_percpu(lb_priv->pcpu_stats);
639         kfree(lb_priv->ex);
640 }
641
642 static int lb_port_enter(struct team *team, struct team_port *port)
643 {
644         struct lb_port_priv *lb_port_priv = get_lb_port_priv(port);
645
646         lb_port_priv->pcpu_stats = alloc_percpu(struct lb_stats);
647         if (!lb_port_priv->pcpu_stats)
648                 return -ENOMEM;
649         return 0;
650 }
651
652 static void lb_port_leave(struct team *team, struct team_port *port)
653 {
654         struct lb_port_priv *lb_port_priv = get_lb_port_priv(port);
655
656         free_percpu(lb_port_priv->pcpu_stats);
657 }
658
659 static void lb_port_disabled(struct team *team, struct team_port *port)
660 {
661         lb_tx_hash_to_port_mapping_null_port(team, port);
662 }
663
664 static const struct team_mode_ops lb_mode_ops = {
665         .init                   = lb_init,
666         .exit                   = lb_exit,
667         .port_enter             = lb_port_enter,
668         .port_leave             = lb_port_leave,
669         .port_disabled          = lb_port_disabled,
670         .transmit               = lb_transmit,
671 };
672
673 static const struct team_mode lb_mode = {
674         .kind           = "loadbalance",
675         .owner          = THIS_MODULE,
676         .priv_size      = sizeof(struct lb_priv),
677         .port_priv_size = sizeof(struct lb_port_priv),
678         .ops            = &lb_mode_ops,
679 };
680
681 static int __init lb_init_module(void)
682 {
683         return team_mode_register(&lb_mode);
684 }
685
686 static void __exit lb_cleanup_module(void)
687 {
688         team_mode_unregister(&lb_mode);
689 }
690
691 module_init(lb_init_module);
692 module_exit(lb_cleanup_module);
693
694 MODULE_LICENSE("GPL v2");
695 MODULE_AUTHOR("Jiri Pirko <jpirko@redhat.com>");
696 MODULE_DESCRIPTION("Load-balancing mode for team");
697 MODULE_ALIAS("team-mode-loadbalance");