tfrc.h 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. #ifndef _TFRC_H_
  2. #define _TFRC_H_
  3. /*
  4. * net/dccp/ccids/lib/tfrc.h
  5. *
  6. * Copyright (c) 2005 The University of Waikato, Hamilton, New Zealand.
  7. * Copyright (c) 2005 Ian McDonald <ian.mcdonald@jandi.co.nz>
  8. * Copyright (c) 2005 Arnaldo Carvalho de Melo <acme@conectiva.com.br>
  9. * Copyright (c) 2003 Nils-Erik Mattsson, Joacim Haggmark, Magnus Erixzon
  10. *
  11. * This program is free software; you can redistribute it and/or modify
  12. * it under the terms of the GNU General Public License as published by
  13. * the Free Software Foundation; either version 2 of the License, or
  14. * (at your option) any later version.
  15. */
  16. #include <linux/types.h>
  17. #include <asm/div64.h>
  18. /* integer-arithmetic divisions of type (a * 1000000)/b */
  19. static inline u64 scaled_div(u64 a, u32 b)
  20. {
  21. BUG_ON(b==0);
  22. a *= 1000000;
  23. do_div(a, b);
  24. return a;
  25. }
  26. static inline u32 scaled_div32(u64 a, u32 b)
  27. {
  28. u64 result = scaled_div(a, b);
  29. if (result > UINT_MAX) {
  30. DCCP_CRIT("Overflow: a(%llu)/b(%u) > ~0U",
  31. (unsigned long long)a, b);
  32. return UINT_MAX;
  33. }
  34. return result;
  35. }
  36. extern u32 tfrc_calc_x(u16 s, u32 R, u32 p);
  37. extern u32 tfrc_calc_x_reverse_lookup(u32 fvalue);
  38. #endif /* _TFRC_H_ */