team_mode_roundrobin.c 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110
  1. /*
  2. * net/drivers/team/team_mode_roundrobin.c - Round-robin mode for team
  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. */
  10. #include <linux/kernel.h>
  11. #include <linux/types.h>
  12. #include <linux/module.h>
  13. #include <linux/init.h>
  14. #include <linux/errno.h>
  15. #include <linux/netdevice.h>
  16. #include <linux/if_team.h>
  17. struct rr_priv {
  18. unsigned int sent_packets;
  19. };
  20. static struct rr_priv *rr_priv(struct team *team)
  21. {
  22. return (struct rr_priv *) &team->mode_priv;
  23. }
  24. static struct team_port *__get_first_port_up(struct team *team,
  25. struct team_port *port)
  26. {
  27. struct team_port *cur;
  28. if (port->linkup)
  29. return port;
  30. cur = port;
  31. list_for_each_entry_continue_rcu(cur, &team->port_list, list)
  32. if (cur->linkup)
  33. return cur;
  34. list_for_each_entry_rcu(cur, &team->port_list, list) {
  35. if (cur == port)
  36. break;
  37. if (cur->linkup)
  38. return cur;
  39. }
  40. return NULL;
  41. }
  42. static bool rr_transmit(struct team *team, struct sk_buff *skb)
  43. {
  44. struct team_port *port;
  45. int port_index;
  46. port_index = rr_priv(team)->sent_packets++ % team->port_count;
  47. port = team_get_port_by_index_rcu(team, port_index);
  48. if (unlikely(!port))
  49. goto drop;
  50. port = __get_first_port_up(team, port);
  51. if (unlikely(!port))
  52. goto drop;
  53. skb->dev = port->dev;
  54. if (dev_queue_xmit(skb))
  55. return false;
  56. return true;
  57. drop:
  58. dev_kfree_skb_any(skb);
  59. return false;
  60. }
  61. static int rr_port_enter(struct team *team, struct team_port *port)
  62. {
  63. return team_port_set_team_mac(port);
  64. }
  65. static void rr_port_change_mac(struct team *team, struct team_port *port)
  66. {
  67. team_port_set_team_mac(port);
  68. }
  69. static const struct team_mode_ops rr_mode_ops = {
  70. .transmit = rr_transmit,
  71. .port_enter = rr_port_enter,
  72. .port_change_mac = rr_port_change_mac,
  73. };
  74. static struct team_mode rr_mode = {
  75. .kind = "roundrobin",
  76. .owner = THIS_MODULE,
  77. .priv_size = sizeof(struct rr_priv),
  78. .ops = &rr_mode_ops,
  79. };
  80. static int __init rr_init_module(void)
  81. {
  82. return team_mode_register(&rr_mode);
  83. }
  84. static void __exit rr_cleanup_module(void)
  85. {
  86. team_mode_unregister(&rr_mode);
  87. }
  88. module_init(rr_init_module);
  89. module_exit(rr_cleanup_module);
  90. MODULE_LICENSE("GPL v2");
  91. MODULE_AUTHOR("Jiri Pirko <jpirko@redhat.com>");
  92. MODULE_DESCRIPTION("Round-robin mode for team");
  93. MODULE_ALIAS("team-mode-roundrobin");