git: cdc72c496065 - stable/14 - kinfo_vmentry: report cdev name for device mappings
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Tue, 15 Oct 2024 15:05:40 UTC
The branch stable/14 has been updated by kib:
URL: https://cgit.FreeBSD.org/src/commit/?id=cdc72c4960656d581fd566425de7bfa50b3ef654
commit cdc72c4960656d581fd566425de7bfa50b3ef654
Author: Konstantin Belousov <kib@FreeBSD.org>
AuthorDate: 2024-10-10 09:31:37 +0000
Commit: Konstantin Belousov <kib@FreeBSD.org>
CommitDate: 2024-10-15 15:03:59 +0000
kinfo_vmentry: report cdev name for device mappings
(cherry picked from commit ac9b565b1aa1adc359a5b0a0d83d0aea63643d62)
---
sys/kern/kern_proc.c | 18 +++++++++++++++++-
1 file changed, 17 insertions(+), 1 deletion(-)
diff --git a/sys/kern/kern_proc.c b/sys/kern/kern_proc.c
index f89ffde8b5be..b8bc1a7e5dfe 100644
--- a/sys/kern/kern_proc.c
+++ b/sys/kern/kern_proc.c
@@ -40,6 +40,7 @@
#include <sys/param.h>
#include <sys/systm.h>
#include <sys/bitstring.h>
+#include <sys/conf.h>
#include <sys/elf.h>
#include <sys/eventhandler.h>
#include <sys/exec.h>
@@ -2615,9 +2616,11 @@ kern_proc_vmmap_out(struct proc *p, struct sbuf *sb, ssize_t maxlen, int flags)
struct ucred *cred;
struct vnode *vp;
struct vmspace *vm;
+ struct cdev *cdev;
+ struct cdevsw *csw;
vm_offset_t addr;
unsigned int last_timestamp;
- int error;
+ int error, ref;
key_t key;
unsigned short seq;
bool guard, super;
@@ -2715,6 +2718,19 @@ kern_proc_vmmap_out(struct proc *p, struct sbuf *sb, ssize_t maxlen, int flags)
kve->kve_ref_count = obj->ref_count;
kve->kve_shadow_count = obj->shadow_count;
+ if (obj->type == OBJT_DEVICE ||
+ obj->type == OBJT_MGTDEVICE) {
+ cdev = obj->un_pager.devp.dev;
+ if (cdev != NULL) {
+ csw = dev_refthread(cdev, &ref);
+ if (csw != NULL) {
+ strlcpy(kve->kve_path,
+ cdev->si_name, sizeof(
+ kve->kve_path));
+ dev_relthread(cdev, ref);
+ }
+ }
+ }
VM_OBJECT_RUNLOCK(obj);
if ((lobj->flags & OBJ_SYSVSHM) != 0) {
kve->kve_flags |= KVME_FLAG_SYSVSHM;