mirror of
https://git.FreeBSD.org/src.git
synced 2024-12-20 11:11:24 +00:00
Fix debug messages of bd_io().
MFC after: 1 week
This commit is contained in:
parent
4ee23f5ee8
commit
ef7b7ac106
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=200631
@ -1266,11 +1266,11 @@ bd_io(struct open_disk *od, daddr_t dblk, int blks, caddr_t dest, int write)
|
|||||||
}
|
}
|
||||||
|
|
||||||
if (write)
|
if (write)
|
||||||
DEBUG("%d sectors from %lld to %p (0x%x) %s", x, dblk, p, VTOP(p),
|
DEBUG("Write %d sector(s) from %p (0x%x) to %lld %s", x,
|
||||||
result ? "failed" : "ok");
|
p, VTOP(p), dblk, result ? "failed" : "ok");
|
||||||
else
|
else
|
||||||
DEBUG("%d sectors from %p (0x%x) to %lld %s", x, p, VTOP(p), dblk,
|
DEBUG("Read %d sector(s) from %lld to %p (0x%x) %s", x,
|
||||||
result ? "failed" : "ok");
|
dblk, p, VTOP(p), result ? "failed" : "ok");
|
||||||
if (result) {
|
if (result) {
|
||||||
return(-1);
|
return(-1);
|
||||||
}
|
}
|
||||||
|
@ -906,11 +906,11 @@ bd_io(struct open_disk *od, daddr_t dblk, int blks, caddr_t dest, int write)
|
|||||||
}
|
}
|
||||||
|
|
||||||
if (write)
|
if (write)
|
||||||
DEBUG("%d sectors from %lld to %p (0x%x) %s", x, dblk, p, VTOP(p),
|
DEBUG("Write %d sector(s) from %p (0x%x) to %lld %s", x,
|
||||||
result ? "failed" : "ok");
|
p, VTOP(p), dblk, result ? "failed" : "ok");
|
||||||
else
|
else
|
||||||
DEBUG("%d sectors from %p (0x%x) to %lld %s", x, p, VTOP(p), dblk,
|
DEBUG("Read %d sector(s) from %lld to %p (0x%x) %s", x,
|
||||||
result ? "failed" : "ok");
|
dblk, p, VTOP(p), result ? "failed" : "ok");
|
||||||
if (result) {
|
if (result) {
|
||||||
return(-1);
|
return(-1);
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user