|
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [PATCH 2/2] Fix address display in gnttab failure paths
Signed-off-by: Rafał Wojdyła <omeg@xxxxxxxxxxxxxxxxxxxxxx>
---
src/xen/grant_table.c | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/src/xen/grant_table.c b/src/xen/grant_table.c
index a9099c6..17d088d 100644
--- a/src/xen/grant_table.c
+++ b/src/xen/grant_table.c
@@ -192,7 +192,7 @@ GrantTableUnmapForeignPage(
}
if (op.status != GNTST_okay) {
- Warning("%u.%u failed (%d)\n",
+ Warning("0x%08x%08x failed (%d)\n",
Address.HighPart,
Address.LowPart,
op.status);
@@ -260,7 +260,7 @@ GrantTableMapForeignPages(
status = STATUS_SUCCESS;
for (i = 0; i < NumberPages; i++) {
if (ops[i].status != GNTST_okay) {
- Warning("op[%u] %u:%u -> %u.%u failed (%d)\n",
+ Warning("op[%u] %u:%u -> 0x%08x%08x failed (%d)\n",
i, ops[i].dom, ops[i].ref,
(ULONG)(ops[i].host_addr >> 32),
(ULONG)ops[i].host_addr,
@@ -347,7 +347,7 @@ GrantTableUnmapForeignPages(
status = STATUS_SUCCESS;
for (i = 0; i < NumberPages; i++) {
if (ops[i].status != GNTST_okay) {
- Warning("op[%u] %u.%u failed (%d)\n",
+ Warning("op[%u] 0x%08x%08x failed (%d)\n",
i,
(ULONG)(ops[i].host_addr >> 32),
(ULONG)ops[i].host_addr,
--
2.54.0
|
![]() |
Lists.xenproject.org is hosted with RackSpace, monitoring our |