Lines Matching defs:g_cache_softc
50 struct g_cache_softc { struct
51 struct g_geom *sc_geom;
52 int sc_type;
53 u_int sc_bshift;
54 u_int sc_bsize;
55 off_t sc_tail;
56 struct mtx sc_mtx;
57 struct callout sc_callout;
60 uma_zone_t sc_zone;
62 u_int sc_maxent; /* max entries */
63 u_int sc_nent; /* allocated entries */
64 u_int sc_nused; /* re-useable entries */
65 u_int sc_invalid; /* invalid entries */
67 uintmax_t sc_reads; /* #reads */
68 uintmax_t sc_readbytes; /* bytes read */
69 uintmax_t sc_cachereads; /* #reads from cache */
70 uintmax_t sc_cachereadbytes; /* bytes read from cache */
71 uintmax_t sc_cachehits; /* cache hits */
72 uintmax_t sc_cachemisses; /* cache misses */
73 uintmax_t sc_cachefull; /* #times a cache was full */
74 uintmax_t sc_writes; /* #writes */
75 uintmax_t sc_wrotebytes; /* bytes written */