mp_trickle.c
上传用户:romrleung
上传日期:2022-05-23
资源大小:18897k
文件大小:2k
源码类别:

MySQL数据库

开发平台:

Visual C++

  1. /*-
  2.  * See the file LICENSE for redistribution information.
  3.  *
  4.  * Copyright (c) 1996-2002
  5.  * Sleepycat Software.  All rights reserved.
  6.  */
  7. #include "db_config.h"
  8. #ifndef lint
  9. static const char revid[] = "$Id: mp_trickle.c,v 11.24 2002/08/06 06:13:53 bostic Exp $";
  10. #endif /* not lint */
  11. #ifndef NO_SYSTEM_INCLUDES
  12. #include <sys/types.h>
  13. #include <stdlib.h>
  14. #endif
  15. #include "db_int.h"
  16. #include "dbinc/db_shash.h"
  17. #include "dbinc/mp.h"
  18. /*
  19.  * __memp_trickle --
  20.  * Keep a specified percentage of the buffers clean.
  21.  *
  22.  * PUBLIC: int __memp_trickle __P((DB_ENV *, int, int *));
  23.  */
  24. int
  25. __memp_trickle(dbenv, pct, nwrotep)
  26. DB_ENV *dbenv;
  27. int pct, *nwrotep;
  28. {
  29. DB_MPOOL *dbmp;
  30. MPOOL *c_mp, *mp;
  31. u_int32_t clean, dirty, i, total, dtmp;
  32. int ret, wrote;
  33. PANIC_CHECK(dbenv);
  34. ENV_REQUIRES_CONFIG(dbenv,
  35.     dbenv->mp_handle, "memp_trickle", DB_INIT_MPOOL);
  36. dbmp = dbenv->mp_handle;
  37. mp = dbmp->reginfo[0].primary;
  38. if (nwrotep != NULL)
  39. *nwrotep = 0;
  40. if (pct < 1 || pct > 100)
  41. return (EINVAL);
  42. /*
  43.  * If there are sufficient clean buffers, no buffers or no dirty
  44.  * buffers, we're done.
  45.  *
  46.  * XXX
  47.  * Using hash_page_dirty is our only choice at the moment, but it's not
  48.  * as correct as we might like in the presence of pools having more
  49.  * than one page size, as a free 512B buffer isn't the same as a free
  50.  * 8KB buffer.
  51.  *
  52.  * Loop through the caches counting total/dirty buffers.
  53.  */
  54. for (ret = 0, i = dirty = total = 0; i < mp->nreg; ++i) {
  55. c_mp = dbmp->reginfo[i].primary;
  56. total += c_mp->stat.st_pages;
  57. __memp_stat_hash(&dbmp->reginfo[i], c_mp, &dtmp);
  58. dirty += dtmp;
  59. }
  60. clean = total - dirty;
  61. if (clean == total || (clean * 100) / total >= (u_long)pct)
  62. return (0);
  63. if (nwrotep == NULL)
  64. nwrotep = &wrote;
  65. ret = __memp_sync_int(dbenv, NULL,
  66.     ((total * pct) / 100) - clean, DB_SYNC_TRICKLE, nwrotep);
  67. mp->stat.st_page_trickle += *nwrotep;
  68. return (ret);
  69. }