diff options
author | Ian Moffett <ian@osmora.org> | 2025-02-21 13:15:10 -0500 |
---|---|---|
committer | Ian Moffett <ian@osmora.org> | 2025-02-21 13:26:21 -0500 |
commit | d7e2dc844666cf3f488fd69409640f1f8a9844d4 (patch) | |
tree | 2535df387fe0d21408c46ae4da81e7cc66432858 /share/misc | |
parent | 5d7bb645345ff30124767289f3fa1b552df76cf1 (diff) |
kernel: Update kernel log style
Kernel logs must now all be lowercase for consistency. A new style
called Peripheral Description Notation (PDN) has also been introduced
to describe devices.
Signed-off-by: Ian Moffett <ian@osmora.org>
Diffstat (limited to 'share/misc')
-rw-r--r-- | share/misc/pdn | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/share/misc/pdn b/share/misc/pdn new file mode 100644 index 0000000..139343c --- /dev/null +++ b/share/misc/pdn @@ -0,0 +1,10 @@ +hba0 at pci0: HBA instance 0 is connected to PCI bus 0 + +... can be more specific (with BDF + slot) + +hba0 at pci0:2922.00.3 + ^ ^ ^ ^ + bus dev func slot + +hba* at pci0: (hba<wildcard>) All HBA instances on PCI bus 0 +hba0 at pci?: (* .. <pci:unknown>) HBA instance 0 on PCI bus ? (could be any) |