timer.c
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:2k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  1. #include <linux/version.h>
  2. #include <linux/types.h>
  3. #include <linux/unistd.h>
  4. #include <linux/sunrpc/clnt.h>
  5. #include <linux/sunrpc/xprt.h>
  6. #include <linux/sunrpc/timer.h>
  7. #define RPC_RTO_MAX (60*HZ)
  8. #define RPC_RTO_INIT (HZ/5)
  9. #define RPC_RTO_MIN (2)
  10. void
  11. rpc_init_rtt(struct rpc_rtt *rt, long timeo)
  12. {
  13. long t = (timeo - RPC_RTO_INIT) << 3;
  14. int i;
  15. rt->timeo = timeo;
  16. if (t < 0)
  17. t = 0;
  18. for (i = 0; i < 5; i++) {
  19. rt->srtt[i] = t;
  20. rt->sdrtt[i] = RPC_RTO_INIT;
  21. }
  22. atomic_set(&rt->ntimeouts, 0);
  23. }
  24. void
  25. rpc_update_rtt(struct rpc_rtt *rt, int timer, long m)
  26. {
  27. long *srtt, *sdrtt;
  28. if (timer-- == 0)
  29. return;
  30. if (m == 0)
  31. m = 1;
  32. srtt = &rt->srtt[timer];
  33. m -= *srtt >> 3;
  34. *srtt += m;
  35. if (m < 0)
  36. m = -m;
  37. sdrtt = &rt->sdrtt[timer];
  38. m -= *sdrtt >> 2;
  39. *sdrtt += m;
  40. /* Set lower bound on the variance */
  41. if (*sdrtt < RPC_RTO_MIN)
  42. *sdrtt = RPC_RTO_MIN;
  43. }
  44. /*
  45.  * Estimate rto for an nfs rpc sent via. an unreliable datagram.
  46.  * Use the mean and mean deviation of rtt for the appropriate type of rpc
  47.  * for the frequent rpcs and a default for the others.
  48.  * The justification for doing "other" this way is that these rpcs
  49.  * happen so infrequently that timer est. would probably be stale.
  50.  * Also, since many of these rpcs are
  51.  * non-idempotent, a conservative timeout is desired.
  52.  * getattr, lookup,
  53.  * read, write, commit     - A+4D
  54.  * other                   - timeo
  55.  */
  56. long
  57. rpc_calc_rto(struct rpc_rtt *rt, int timer)
  58. {
  59. long res;
  60. if (timer-- == 0)
  61. return rt->timeo;
  62. res = (rt->srtt[timer] >> 3) + rt->sdrtt[timer];
  63. if (res > RPC_RTO_MAX)
  64. res = RPC_RTO_MAX;
  65. return res;
  66. }