altqstat, cbq: follow uint64_t changes

PR kern/56319
This commit is contained in:
ozaki-r 2021-07-21 06:48:28 +00:00
parent f5e9a1cfbc
commit e60c9f37ff
1 changed files with 4 additions and 4 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: qdisc_cbq.c,v 1.10 2021/07/21 06:45:10 ozaki-r Exp $ */
/* $NetBSD: qdisc_cbq.c,v 1.11 2021/07/21 06:48:28 ozaki-r Exp $ */
/* $KAME: qdisc_cbq.c,v 1.7 2003/09/17 14:27:37 kjc Exp $ */
/*
* Copyright (C) 1999-2000
@ -105,9 +105,9 @@ cbq_stat_loop(int fd, const char *ifname, int count, int interval)
printf("\tpriority: %d depth: %d",
sp->priority, sp->depth);
printf(" offtime: %ld [ns] wrr_allot: %d bytes\n",
printf(" offtime: %"PRIi64" [ns] wrr_allot: %d bytes\n",
sp->offtime, sp->wrr_allot);
printf("\tpsPerByte: %ld", sp->ps_per_byte);
printf("\tpsPerByte: %"PRIu64, sp->ps_per_byte);
printf("\t(%sbps)", rate2str(flow_bps));
if (lp->handle != NULL_CLASS_HANDLE) {
printf(",\tMeasured: %s [bps]\n",
@ -139,7 +139,7 @@ cbq_stat_loop(int fd, const char *ifname, int count, int interval)
sp->maxidle >> RM_FILTER_GAIN,
sp->minidle / RM_POWER);
#else
printf("\tAvgIdle: %ld [ns],\t(maxidle: %ld minidle: %ld [ns])\n",
printf("\tAvgIdle: %"PRIi64" [ns],\t(maxidle: %"PRIi64" minidle: %"PRIi64" [ns])\n",
sp->avgidle, sp->maxidle, sp->minidle);
#endif
}