team_mode_random.c 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. /*
  2. * drivers/net/team/team_mode_random.c - Random mode for team
  3. * Copyright (c) 2013 Jiri Pirko <jiri@resnulli.us>
  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/skbuff.h>
  15. #include <linux/reciprocal_div.h>
  16. #include <linux/if_team.h>
  17. static u32 random_N(unsigned int N)
  18. {
  19. return reciprocal_divide(prandom_u32(), N);
  20. }
  21. static bool rnd_transmit(struct team *team, struct sk_buff *skb)
  22. {
  23. struct team_port *port;
  24. int port_index;
  25. port_index = random_N(team->en_port_count);
  26. port = team_get_port_by_index_rcu(team, port_index);
  27. port = team_get_first_port_txable_rcu(team, port);
  28. if (unlikely(!port))
  29. goto drop;
  30. if (team_dev_queue_xmit(team, port, skb))
  31. return false;
  32. return true;
  33. drop:
  34. dev_kfree_skb_any(skb);
  35. return false;
  36. }
  37. static const struct team_mode_ops rnd_mode_ops = {
  38. .transmit = rnd_transmit,
  39. .port_enter = team_modeop_port_enter,
  40. .port_change_dev_addr = team_modeop_port_change_dev_addr,
  41. };
  42. static const struct team_mode rnd_mode = {
  43. .kind = "random",
  44. .owner = THIS_MODULE,
  45. .ops = &rnd_mode_ops,
  46. };
  47. static int __init rnd_init_module(void)
  48. {
  49. return team_mode_register(&rnd_mode);
  50. }
  51. static void __exit rnd_cleanup_module(void)
  52. {
  53. team_mode_unregister(&rnd_mode);
  54. }
  55. module_init(rnd_init_module);
  56. module_exit(rnd_cleanup_module);
  57. MODULE_LICENSE("GPL v2");
  58. MODULE_AUTHOR("Jiri Pirko <jiri@resnulli.us>");
  59. MODULE_DESCRIPTION("Random mode for team");
  60. MODULE_ALIAS("team-mode-random");