Searched refs:iosram_stats (Results 1 - 2 of 2) sorted by relevance

/illumos-gate/usr/src/uts/sun4u/starcat/sys/
H A Diosramvar.h274 #define IOSRAM_STAT(field) iosram_stats.field++
275 #define IOSRAM_STAT_ADD(field, amount) iosram_stats.field += (uint64_t)amount
276 #define IOSRAM_STAT_SET(field, count) iosram_stats.field = (uint64_t)count
/illumos-gate/usr/src/uts/sun4u/starcat/io/
H A Diosram.c100 static struct iosram_stat iosram_stats; /* IOSRAM statistics */ variable in typeref:struct:iosram_stat
3384 cmn_err(CE_CONT, "iosram_stats:\n");
3385 calls = iosram_stats.read;
3387 calls, iosram_stats.bread,
3388 (uint32_t)((calls != 0) ? (iosram_stats.bread/calls) : 0));
3390 calls = iosram_stats.write;
3392 calls, iosram_stats.bwrite,
3393 (uint32_t)((calls != 0) ? (iosram_stats.bwrite/calls) : 0));
3396 iosram_stats.intr_recv, iosram_stats
[all...]

Completed in 49 milliseconds