mirror of
https://git.FreeBSD.org/src.git
synced 2024-12-13 10:02:38 +00:00
Report the correct function name in a DPRINTF.
This commit is contained in:
parent
abfdccc7ce
commit
2826f17433
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=160958
@ -235,9 +235,10 @@ rman_reserve_resource_bound(struct rman *rm, u_long start, u_long end,
|
||||
|
||||
rv = NULL;
|
||||
|
||||
DPRINTF(("rman_reserve_resource: <%s> request: [%#lx, %#lx], length "
|
||||
"%#lx, flags %u, device %s\n", rm->rm_descr, start, end, count,
|
||||
flags, dev == NULL ? "<null>" : device_get_nameunit(dev)));
|
||||
DPRINTF(("rman_reserve_resource_bound: <%s> request: [%#lx, %#lx], "
|
||||
"length %#lx, flags %u, device %s\n", rm->rm_descr, start, end,
|
||||
count, flags,
|
||||
dev == NULL ? "<null>" : device_get_nameunit(dev)));
|
||||
want_activate = (flags & RF_ACTIVE);
|
||||
flags &= ~RF_ACTIVE;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user