summaryrefslogtreecommitdiffstats
path: root/sys/kern/subr_rman.c
diff options
context:
space:
mode:
authorimp <imp@FreeBSD.org>2005-03-15 20:15:15 +0000
committerimp <imp@FreeBSD.org>2005-03-15 20:15:15 +0000
commita5a3d20d0037b1a7f6bbaa8f088f76cd4cfcab2f (patch)
treef0c52245571b8ff378b93b1ab372a89daadb5c7b /sys/kern/subr_rman.c
parentd043926750bb71ad425d59da99871a7e3dc660ff (diff)
downloadFreeBSD-src-a5a3d20d0037b1a7f6bbaa8f088f76cd4cfcab2f.zip
FreeBSD-src-a5a3d20d0037b1a7f6bbaa8f088f76cd4cfcab2f.tar.gz
Fix a debugging printf. The order of start/end was inconsistant with
all the other start/end debugs, causing momentary confusion when the output was examined.
Diffstat (limited to 'sys/kern/subr_rman.c')
-rw-r--r--sys/kern/subr_rman.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/kern/subr_rman.c b/sys/kern/subr_rman.c
index 69ed02c..aa1812a 100644
--- a/sys/kern/subr_rman.c
+++ b/sys/kern/subr_rman.c
@@ -247,7 +247,7 @@ rman_reserve_resource_bound(struct rman *rm, u_long start, u_long end,
if ((rend - rstart + 1) >= count) {
DPRINTF(("candidate region: [%#lx, %#lx], size %#lx\n",
- rend, rstart, (rend - rstart + 1)));
+ rstart, rend, (rend - rstart + 1)));
if ((s->r_end - s->r_start + 1) == count) {
DPRINTF(("candidate region is entire chunk\n"));
rv = s;
OpenPOWER on IntegriCloud