diff options
author | imp <imp@FreeBSD.org> | 2015-01-15 00:46:30 +0000 |
---|---|---|
committer | imp <imp@FreeBSD.org> | 2015-01-15 00:46:30 +0000 |
commit | d70d76bce5ec0209c7d8fe8719212ec165b20e65 (patch) | |
tree | cf8a7d2761c579bafe7167d96df4499407ecfed7 /usr.sbin/kldxref | |
parent | 66acb8032efd831ea7db1ea658043333fadd2c48 (diff) | |
download | FreeBSD-src-d70d76bce5ec0209c7d8fe8719212ec165b20e65.zip FreeBSD-src-d70d76bce5ec0209c7d8fe8719212ec165b20e65.tar.gz |
Reserve and ignore the a new module metadata type MDT_PNP_INFO for
associating an optional PNP hint table with this module. In the
future, when these are added, these changes will silently ignore the
new type they would otherwise warn about. It will always be safe to
ignore this data. Get this into the builds today for some future
proofing.
MFC After: 3 days
Diffstat (limited to 'usr.sbin/kldxref')
-rw-r--r-- | usr.sbin/kldxref/kldxref.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/usr.sbin/kldxref/kldxref.c b/usr.sbin/kldxref/kldxref.c index 73c6004..c3784ef 100644 --- a/usr.sbin/kldxref/kldxref.c +++ b/usr.sbin/kldxref/kldxref.c @@ -172,6 +172,10 @@ parse_entry(struct mod_metadata *md, const char *cval, record_string(kldname); } break; + case MDT_PNP_INFO: + if (dflag) { + printf(" pnp info for bus %s\n", cval); + } default: warnx("unknown metadata record %d in file %s", md->md_type, kldname); } |