Sun Nov 8 21:03:00 2015 UTC ()
Add the parent device (if present) to the device properties, making it
easier to identify devices in the tree with drvctl(8).


(joerg)
diff -r1.235 -r1.236 src/sys/kern/subr_autoconf.c

cvs diff -r1.235 -r1.236 src/sys/kern/subr_autoconf.c (expand / switch to context diff)
--- src/sys/kern/subr_autoconf.c 2015/04/13 16:46:33 1.235
+++ src/sys/kern/subr_autoconf.c 2015/11/08 21:03:00 1.236
@@ -1,4 +1,4 @@
-/* $NetBSD: subr_autoconf.c,v 1.235 2015/04/13 16:46:33 riastradh Exp $ */
+/* $NetBSD: subr_autoconf.c,v 1.236 2015/11/08 21:03:00 joerg Exp $ */
 
 /*
  * Copyright (c) 1996, 2000 Christopher G. Demetriou
@@ -77,7 +77,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: subr_autoconf.c,v 1.235 2015/04/13 16:46:33 riastradh Exp $");
+__KERNEL_RCSID(0, "$NetBSD: subr_autoconf.c,v 1.236 2015/11/08 21:03:00 joerg Exp $");
 
 #ifdef _KERNEL_OPT
 #include "opt_ddb.h"
@@ -1435,6 +1435,10 @@
 	    "device-driver", dev->dv_cfdriver->cd_name);
 	prop_dictionary_set_uint16(dev->dv_properties,
 	    "device-unit", dev->dv_unit);
+	if (parent != NULL) {
+		prop_dictionary_set_cstring(dev->dv_properties,
+		    "device-parent", device_xname(parent));
+	}
 
 	if (dev->dv_cfdriver->cd_attrs != NULL)
 		config_add_attrib_dict(dev);