[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Xen-changelog] [xen master] xen/arm: Warn when a device tree path will be re-used by Xen
commit 380467c375deaf79aaca802cf8759d68a81c4009 Author: Julien Grall <julien.grall@xxxxxxxxxx> AuthorDate: Tue Sep 29 17:21:37 2015 +0100 Commit: Ian Campbell <ian.campbell@xxxxxxxxxx> CommitDate: Thu Oct 1 13:51:39 2015 +0100 xen/arm: Warn when a device tree path will be re-used by Xen Xen is unconditionally using certain device tree paths to create DOM0 specific node (for instance /psci, /memory and /hypervisor). Print a warning message on the console to let the user know if we re-use one of these nodes. Note that the content of most of those is very common and they should have already been skipped via the compatible string or type string. This warning is here to catch unusual device-tree and compatible string that we may not yet support in Xen. Signed-off-by: Julien Grall <julien.grall@xxxxxxxxxx> Acked-by: Ian Campbell <ian.campbell@xxxxxxxxxx> --- xen/arch/arm/domain_build.c | 16 ++++++++++++++++ 1 files changed, 16 insertions(+), 0 deletions(-) diff --git a/xen/arch/arm/domain_build.c b/xen/arch/arm/domain_build.c index e8f024f..eb93a3a 100644 --- a/xen/arch/arm/domain_build.c +++ b/xen/arch/arm/domain_build.c @@ -1205,6 +1205,13 @@ static int handle_node(struct domain *d, struct kernel_info *kinfo, DT_MATCH_TIMER, { /* sentinel */ }, }; + static const struct dt_device_match reserved_matches[] __initconst = + { + DT_MATCH_PATH("/psci"), + DT_MATCH_PATH("/memory"), + DT_MATCH_PATH("/hypervisor"), + { /* sentinel */ }, + }; struct dt_device_node *child; int res; const char *name; @@ -1252,6 +1259,15 @@ static int handle_node(struct domain *d, struct kernel_info *kinfo, return 0; } + /* + * Xen is using some path for its own purpose. Warn if a node + * already exists with the same path. + */ + if ( dt_match_node(reserved_matches, node) ) + printk(XENLOG_WARNING + "WARNING: Path %s is reserved, skip the node as we may re-use the path.\n", + path); + res = handle_device(d, node); if ( res) return res; -- generated by git-patchbot for /home/xen/git/xen.git#master _______________________________________________ Xen-changelog mailing list Xen-changelog@xxxxxxxxxxxxx http://lists.xensource.com/xen-changelog
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |