Symbol: rstat
lib/libc/rpc/svc_vc.c
616
bool_t rstat;
lib/libc/rpc/svc_vc.c
626
rstat = xdr_replymsg(xdrs, msg);
lib/libc/rpc/svc_vc.c
628
return (rstat);
sbin/mountctl/mountctl.c
418
struct mountctl_journal_ret_status rstat[4]; /* BIG */
sbin/mountctl/mountctl.c
433
&statreq, sizeof(statreq), &rstat, sizeof(rstat));
sbin/mountctl/mountctl.c
434
if (count > 0 && rstat[0].recsize != sizeof(rstat[0])) {
sbin/mountctl/mountctl.c
440
count /= sizeof(rstat[0]);
sbin/mountctl/mountctl.c
442
func(rstat[i].id, mountpt, fd, &rstat[i]);
sbin/mountctl/mountctl.c
462
struct mountctl_journal_ret_status *rstat = info;
sbin/mountctl/mountctl.c
464
printf("%s:%s\n", mountpt, rstat->id[0] ? rstat->id : "<NOID>");
sbin/mountctl/mountctl.c
465
printf(" membufsize=%s\n", numtostr(rstat->membufsize));
sbin/mountctl/mountctl.c
466
printf(" membufused=%s\n", numtostr(rstat->membufused));
sbin/mountctl/mountctl.c
467
printf(" membufunacked=%s\n", numtostr(rstat->membufunacked));
sbin/mountctl/mountctl.c
468
printf(" total_bytes=%s\n", numtostr(rstat->bytessent));
sbin/mountctl/mountctl.c
469
printf(" fifo_stalls=%jd\n", (intmax_t)rstat->fifostalls);
sys/kern/vfs_jops.c
463
struct mountctl_journal_ret_status *rstat,
sys/kern/vfs_jops.c
482
if (buflen < sizeof(*rstat)) {
sys/kern/vfs_jops.c
484
rstat[-1].flags |= MC_JOURNAL_STATUS_MORETOCOME;
sys/kern/vfs_jops.c
489
bzero(rstat, sizeof(*rstat));
sys/kern/vfs_jops.c
490
rstat->recsize = sizeof(*rstat);
sys/kern/vfs_jops.c
491
bcopy(jo->id, rstat->id, sizeof(jo->id));
sys/kern/vfs_jops.c
492
rstat->index = index;
sys/kern/vfs_jops.c
493
rstat->membufsize = jo->fifo.size;
sys/kern/vfs_jops.c
494
rstat->membufused = jo->fifo.windex - jo->fifo.xindex;
sys/kern/vfs_jops.c
495
rstat->membufunacked = jo->fifo.rindex - jo->fifo.xindex;
sys/kern/vfs_jops.c
496
rstat->bytessent = jo->total_acked;
sys/kern/vfs_jops.c
497
rstat->fifostalls = jo->fifostalls;
sys/kern/vfs_jops.c
498
++rstat;
sys/kern/vfs_jops.c
500
*res += sizeof(*rstat);
sys/kern/vfs_jops.c
501
buflen -= sizeof(*rstat);
sys/kern/vfs_jops.c
89
struct mountctl_journal_ret_status *rstat,