• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/db-4.7.25.NC/mp/

Lines Matching refs:gsp

420 	DB_MPOOL_STAT *gsp;
423 if ((ret = __memp_stat(env, &gsp, &fsp, flags)) != 0)
429 (u_long)gsp->st_gbytes, (u_long)0, (u_long)gsp->st_bytes);
430 __db_dl(env, "Number of caches", (u_long)gsp->st_ncache);
431 __db_dl(env, "Maximum number of caches", (u_long)gsp->st_max_ncache);
433 (u_long)0, (u_long)0, (u_long)gsp->st_regsize);
435 (u_long)0, (u_long)0, (u_long)gsp->st_mmapsize);
436 STAT_LONG("Maximum open file descriptors", gsp->st_maxopenfd);
437 STAT_LONG("Maximum sequential buffer writes", gsp->st_maxwrite);
439 gsp->st_maxwrite_sleep);
442 (u_long)gsp->st_map);
444 (u_long)gsp->st_cache_hit, DB_PCT(
445 gsp->st_cache_hit, gsp->st_cache_hit + gsp->st_cache_miss), NULL);
447 (u_long)gsp->st_cache_miss);
449 "Pages created in the cache", (u_long)gsp->st_page_create);
450 __db_dl(env, "Pages read into the cache", (u_long)gsp->st_page_in);
452 (u_long)gsp->st_page_out);
454 (u_long)gsp->st_ro_evict);
456 (u_long)gsp->st_rw_evict);
458 (u_long)gsp->st_page_trickle);
460 (u_long)gsp->st_pages);
462 (u_long)gsp->st_page_clean);
464 (u_long)gsp->st_page_dirty);
466 (u_long)gsp->st_hash_buckets);
469 (u_long)gsp->st_hash_searches);
471 (u_long)gsp->st_hash_longest);
474 (u_long)gsp->st_hash_examined);
477 (u_long)gsp->st_hash_wait, DB_PCT(
478 gsp->st_hash_wait, gsp->st_hash_wait + gsp->st_hash_nowait), NULL);
481 (u_long)gsp->st_hash_max_wait, DB_PCT(gsp->st_hash_max_wait,
482 gsp->st_hash_max_wait + gsp->st_hash_max_nowait), NULL);
485 (u_long)gsp->st_region_wait, DB_PCT(gsp->st_region_wait,
486 gsp->st_region_wait + gsp->st_region_nowait), NULL);
488 (u_long)gsp->st_mvcc_frozen);
490 (u_long)gsp->st_mvcc_thawed);
492 (u_long)gsp->st_mvcc_freed);
493 __db_dl(env, "The number of page allocations", (u_long)gsp->st_alloc);
496 (u_long)gsp->st_alloc_buckets);
499 (u_long)gsp->st_alloc_max_buckets);
501 (u_long)gsp->st_alloc_pages);
503 (u_long)gsp->st_alloc_max_pages);
504 __db_dl(env, "Threads waited on page I/O", (u_long)gsp->st_io_wait);
529 __os_ufree(env, gsp);