git: 7f9694ad7e7c - main - gicv3: Add a verbose message for unknown tables
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Wed, 23 Aug 2023 14:53:53 UTC
The branch main has been updated by andrew:
URL: https://cgit.FreeBSD.org/src/commit/?id=7f9694ad7e7c271e341cba65ce482a552ea47230
commit 7f9694ad7e7c271e341cba65ce482a552ea47230
Author: Andrew Turner <andrew@FreeBSD.org>
AuthorDate: 2023-08-22 11:30:50 +0000
Commit: Andrew Turner <andrew@FreeBSD.org>
CommitDate: 2023-08-23 14:29:34 +0000
gicv3: Add a verbose message for unknown tables
Add a message under bootverbose when we find a gicv3 its table type
that is unknown.
Reviewed by: gallatin, imp
Sponsored by: Arm Ltd
Differential Revision: https://reviews.freebsd.org/D41551
---
sys/arm64/arm64/gicv3_its.c | 3 +++
1 file changed, 3 insertions(+)
diff --git a/sys/arm64/arm64/gicv3_its.c b/sys/arm64/arm64/gicv3_its.c
index ef73c76d2062..cc743e72b032 100644
--- a/sys/arm64/arm64/gicv3_its.c
+++ b/sys/arm64/arm64/gicv3_its.c
@@ -537,6 +537,9 @@ gicv3_its_table_init(device_t dev, struct gicv3_its_softc *sc)
its_tbl_size = page_size;
break;
default:
+ if (bootverbose)
+ device_printf(dev, "Unhandled table type %lx\n",
+ type);
continue;
}
npages = howmany(its_tbl_size, PAGE_SIZE);